/* Container chứa 8 amenities */
.amenities-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: stretch !important;
    width: 100% !important;
}

/* Desktop: 4 ô mỗi hàng */
.amenities-grid > .wp-block-spectra-container {
    flex: 0 0 calc(25% - 20px) !important;
    width: calc(25% - 20px) !important;
    max-width: calc(25% - 20px) !important;
    box-sizing: border-box !important;
}

/* Tablet: 2 ô mỗi hàng */
@media (max-width: 1024px) {
    .amenities-grid > .wp-block-spectra-container {
        flex: 0 0 calc(50% - 20px) !important;
        width: calc(50% - 20px) !important;
        max-width: calc(50% - 20px) !important;
    }
}

/* Mobile: 1 ô mỗi hàng */
@media (max-width: 767px) {
    .amenities-grid > .wp-block-spectra-container {
        flex: 0 0 calc(100% - 20px) !important;
        width: calc(100% - 20px) !important;
        max-width: calc(100% - 20px) !important;
    }
}

/* Cuộn mượt đến section booking */
html {
    scroll-behavior: smooth;
}

/* Tránh sticky header che phần booking */
#booking {
    scroll-margin-top: 100px;
}

/* =========================
   ABOUT US
========================= */

/* Tránh hình và chữ bị tràn hoặc bị ép */
.about-us-layout,
.about-us-image,
.about-us-content {
    box-sizing: border-box !important;
    min-width: 0 !important;
}

/* Hình ảnh */
.about-us-image figure {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}

.about-us-image img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 8px !important;
}

/* Không cho chữ bị tách từng ký tự */
.about-us-content,
.about-us-content h1,
.about-us-content h2,
.about-us-content h3,
.about-us-content h4,
.about-us-content h5,
.about-us-content h6,
.about-us-content p {
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
}

/* Chỉ thay đổi giao diện điện thoại */
@media (max-width: 767px) {

    /* Chuyển hình và chữ từ nằm ngang thành nằm dọc */
    .about-us-layout {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 25px !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
        box-sizing: border-box !important;
    }

    /* Container hình */
    .about-us-image {
        order: 1 !important;
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Container chữ */
    .about-us-content {
        order: 2 !important;
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 0 10px !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;

        text-align: center !important;
        box-sizing: border-box !important;
    }

    /* Tiêu đề 11 Years */
    .about-us-content h3 {
        width: 100% !important;
        max-width: 100% !important;
        margin: 5px 0 22px !important;
        text-align: center !important;
        font-size: 27px !important;
        line-height: 1.3 !important;
    }

    /* Tất cả đoạn văn */
    .about-us-content p {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 24px !important;
        text-align: center !important;
        font-size: 18px !important;
        line-height: 1.55 !important;
    }
}