.rooms {
    padding-bottom: 60px;
}

.galery {
    text-align: center;
}

.title {
    font-size: 38px;
    color: #868B65;
    padding: 0;
    text-align: center;
    font-weight: bold;
    text-transform: capitalize;
    text-decoration: underline;
    margin-bottom: 28px;
    padding: 0;
    margin-top: 30px;
}

.description {
    text-align: center;
}

.card-details img {
    max-width: 80%;
    margin: 0 auto;
    display: block;
}

.room-card-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: center;
    margin: 30px 0;
}

.room-card-features-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.room-card-features-item svg {
    width: 24px;
    height: 22px;
    margin-bottom: 10px;
}

.room-card-features-item h4 {
    font-size: 11px;
}

.quick-links-see-more, .quick-links-see-more--desktop {
    margin-top: 30px;
    text-decoration: none;
    color: #888B68;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    position: relative;
    display: none;
}

.quick-links-see-more--desktop {
    display: inline-block;
}

.quick-links-see-more::after, .quick-links-see-more--desktop::after {
    content: "";
    background: url(../../assets/common/cta.svg) no-repeat;
    width: 18px;
    height: 18px;
    top: 1px;
    position: absolute;
    right: -25px;
    transform: rotate(90deg);
}

.quick-link-check-availability {
    text-decoration: none;
    text-align: center;
    margin: 0 auto;
    display: inline-block;
    margin-top: 100px;
    background-color: #A2AA79;
    color: white;
    font-weight: bold;
    padding: 8px 28px;
    font-size: 16px;
    border-radius: 24px;
    border: 2px solid #888B68;
}

/* .galery li {
    width: 400px !important;
}

.galery img {
    max-width: 100% !important;
    height: 100% !important;
    object-fit: cover;
} */




@media screen and (min-width: 768px) {
    .rooms {
        display: flex;
        gap: 30px;
    }
    .title {
        font-size: 23px;
        text-align: left;
        margin-top: 30px;
    }
    .card-details img {
        max-width: 100%;
    }
    .description {
        text-align: left;
    }

    .details {
        width: 35%;
    }

    .galery {
        width: 75%;
    }

    .room-card-features {
        gap: 12px;
        align-items: center;
    }

    .room-card-features-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
    }

    .room-card-features-item svg {
        width: 24px;
        height: 22px;
        margin-bottom: 10px;
    }

    .room-card-features-item h4 {
        font-size: 9px;
        text-transform: capitalize;
    }

    .quick-links-see-more {
        display: inline-block
    }
    .quick-links-see-more--desktop {
        display: none;
    }
}