/*
 * Crawlable hotel destination pages (/hotels/<country>-hotels/...).
 *
 * These pages render inside header_user.php with the SAME `dark-theme`
 * body class as /hotels/ and hotel-details.php, and reuse those pages'
 * card markup (.hotel-card-v3 and friends, styled in
 * includes/hero_search_widget.php). This file only adds what those do not
 * already provide: breadcrumbs, page headings, link lists and pagination.
 *
 * So everything here is written for a DARK surface. Do not add a light
 * background to any container -- it will not match the cards sitting
 * inside it.
 */

:root {
    --hs-gold: #ff9800;
    --hs-neon: #39FF14;
    --hs-panel: #1a2236;
    --hs-panel-2: #131a2b;
    --hs-line: rgba(255, 255, 255, .08);
    --hs-text: #e8ecf4;
    --hs-muted: #94a3b8;
}

.hs-dark-wrap {
    max-width: 1480px;
    margin: 0 auto;
    padding: 18px 0 64px;
    color: var(--hs-text);
}

/* Breadcrumbs ------------------------------------------------------- */
.hs-breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
    margin: 0 0 18px;
    font-size: .82rem;
    color: var(--hs-muted);
}
.hs-breadcrumb li + li::before {
    content: "\203A";
    margin-right: 6px;
    color: #64748b;
}
.hs-breadcrumb a { color: var(--hs-gold); text-decoration: none; }
.hs-breadcrumb a:hover { text-decoration: underline; color: #ffb74d; }
.hs-breadcrumb li[aria-current] { color: #fff; font-weight: 600; }

/* Page head --------------------------------------------------------- */
.hs-head { margin-bottom: 24px; }
.hs-head h1 {
    font-size: clamp(1.5rem, 3vw, 2.15rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.22;
}
.hs-head h1 .hs-accent { color: var(--hs-gold); }
.hs-head .hs-sub {
    color: var(--hs-muted);
    font-size: .95rem;
    max-width: 860px;
    line-height: 1.7;
    margin: 0;
}
.hs-count { color: var(--hs-neon); font-weight: 700; }

/* Link lists (hub + country pages) ---------------------------------- */
.hs-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.hs-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid var(--hs-line);
    border-radius: 14px;
    background: var(--hs-panel);
    text-decoration: none;
    color: var(--hs-text);
    font-size: .92rem;
    font-weight: 600;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.hs-links a:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 152, 0, .55);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .38);
    color: #fff;
}
.hs-links .hs-n {
    color: var(--hs-gold);
    font-size: .78rem;
    font-weight: 700;
    white-space: nowrap;
    background: rgba(255, 152, 0, .12);
    border-radius: 999px;
    padding: 3px 10px;
}

/* Buttons ----------------------------------------------------------- */
.hs-btn {
    display: inline-block;
    padding: 12px 26px;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: #1a1a1a !important;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: .92rem;
    border: none;
    box-shadow: 0 8px 20px rgba(255, 152, 0, .28);
}
.hs-btn:hover { filter: brightness(1.06); color: #1a1a1a; }
.hs-btn-ghost {
    background: transparent;
    color: var(--hs-gold) !important;
    border: 1px solid rgba(255, 152, 0, .5);
    box-shadow: none;
}
.hs-btn-ghost:hover { background: rgba(255, 152, 0, .1); color: var(--hs-gold) !important; }

/* Pagination -------------------------------------------------------- */
.hs-pager { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 34px; justify-content: center; }
.hs-pager a, .hs-pager span {
    padding: 9px 15px;
    border: 1px solid var(--hs-line);
    border-radius: 10px;
    text-decoration: none;
    color: var(--hs-text);
    font-size: .88rem;
    background: var(--hs-panel);
}
.hs-pager a:hover { border-color: rgba(255, 152, 0, .5); color: #fff; }
.hs-pager .hs-current {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: #1a1a1a;
    border-color: transparent;
    font-weight: 800;
}

.hs-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--hs-muted);
    background: var(--hs-panel);
    border: 1px solid var(--hs-line);
    border-radius: 18px;
}
.hs-empty h1, .hs-empty h2 { font-size: 1.4rem; color: #fff; margin-bottom: 10px; }

/* =====================================================================
 * Hotel detail page
 *
 * Mirrors hotel-details.php's structure: full-bleed photo hero with the
 * name over it, a horizontal fact bar beneath, then content panels.
 * ===================================================================== */

.hs-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 18px;
    background: var(--hs-panel-2);
}
.hs-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Dark scrim so white text stays readable over any photo -- hotel photos
   are frequently bright skies and pale facades. */
.hs-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 15, 28, .35) 0%, rgba(10, 15, 28, .82) 100%);
}
.hs-hero-inner { position: relative; z-index: 2; padding: 34px 30px; width: 100%; }
.hs-hero h1 {
    font-size: clamp(1.8rem, 4.4vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.1;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .55);
}
.hs-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 20px;
    color: #e2e8f0;
    font-size: .95rem;
}
.hs-hero-meta .hs-stars { color: #ffc107; font-size: 1.05rem; letter-spacing: 2px; }
.hs-hero-meta i { color: var(--hs-gold); margin-right: 5px; }

/* Fact bar ---------------------------------------------------------- */
.hs-factbar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2px;
    background: var(--hs-line);
    border: 1px solid var(--hs-line);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 26px;
}
.hs-fact {
    background: var(--hs-panel);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hs-fact-ico {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 11px;
    background: rgba(255, 152, 0, .13);
    color: var(--hs-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.hs-fact-k {
    font-size: .66rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--hs-neon);
    font-weight: 800;
    margin-bottom: 2px;
}
.hs-fact-v { font-size: .92rem; color: #fff; font-weight: 700; line-height: 1.3; }

/* Panels ------------------------------------------------------------ */
.hs-panel {
    background: var(--hs-panel);
    border: 1px solid var(--hs-line);
    border-radius: 18px;
    padding: 24px 26px;
    margin-bottom: 22px;
}
.hs-panel h2 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hs-panel h2 i { color: var(--hs-gold); }
.hs-desc { font-size: .95rem; line-height: 1.85; color: #cbd5e1; }
.hs-desc p { margin: 0 0 12px; }
.hs-desc b, .hs-desc strong { color: #fff; }

/* Gallery ----------------------------------------------------------- */
.hs-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 12px; }
.hs-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
    background: var(--hs-panel-2);
    border: 1px solid var(--hs-line);
}

/* Chips ------------------------------------------------------------- */
.hs-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.hs-chip {
    padding: 7px 13px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--hs-line);
    border-radius: 999px;
    font-size: .82rem;
    color: #cbd5e1;
}
.hs-chip i { color: var(--hs-neon); margin-right: 6px; font-size: .72rem; }

/* Booking call-to-action -------------------------------------------- */
.hs-cta {
    background: linear-gradient(135deg, rgba(255, 152, 0, .14), rgba(255, 152, 0, .05));
    border: 1px solid rgba(255, 152, 0, .3);
    border-radius: 18px;
    padding: 26px;
    text-align: center;
    margin-bottom: 22px;
}
.hs-cta h2 { margin: 0 0 6px; font-size: 1.2rem; color: #fff; justify-content: center; }
.hs-cta p { margin: 0 0 16px; color: var(--hs-muted); font-size: .9rem; }

@media (max-width: 820px) {
    .hs-hero { min-height: 280px; }
    .hs-hero-inner { padding: 22px 18px; }
}

/* =====================================================================
 * Card badges and info cells
 *
 * MIRRORS the inline <style> block in hotels/index.php (around line 400).
 * Those rules live inside that page rather than a stylesheet, so they are
 * not available to any other page -- without these the star badge lands on
 * top of the flag in the corner instead of opposite it, which is exactly
 * how this page first rendered.
 *
 * Kept as a copy rather than by editing hotels/index.php: that page is the
 * live hotel search and its style block is load-bearing. If the badges are
 * ever restyled, both places need the change.
 * ===================================================================== */

.hotel-stars-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 152, 0, 0.35);
}
.hotel-stars-badge i {
    font-size: 0.72rem;
    color: #ffc107;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}
@media (max-width: 480px) {
    .hotel-stars-badge { padding: 5px 8px; gap: 2px; }
    .hotel-stars-badge i { font-size: 0.62rem; }
}

.hotel-flag-badge {
    width: 34px;
    height: 24px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .45);
    display: block;
}

.hotel-card-v3 .visa-info-header-row .visa-info-cell,
.hotel-card-v3 .visa-info-data-row .visa-info-cell {
    min-width: 0;
    overflow: hidden;
}
.hotel-card-v3 .visa-info-data-row .visa-info-cell span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* The photo must always occupy the same box even while an image is being
   retried or has failed, or the cards in a row stop lining up. */
.hotel-card-v3 .hotel-img-wrapper { position: relative; background: #131a2b; }
.hotel-card-v3 .hotel-img-v3 {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    background: #131a2b;
}

/* Equal-height cards. Bootstrap's row/col gives each column full height,
   but the card inside still shrinks to its content, so a hotel with a
   short address left its footer floating above its neighbours'. */
.package-grid-row .hotel-card-v3 { height: 100%; }
.hotel-card-v3 .hotel-content-v3 { flex: 1 1 auto; }

.hs-rate-notice {
    background: rgba(255, 152, 0, .1);
    border: 1px solid rgba(255, 152, 0, .32);
    color: #ffcc80;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: .88rem;
    font-weight: 600;
    margin-bottom: 18px;
}
.seo-price-spinner i { color: #ff9800; font-size: .8rem; }

/* =====================================================================
 * Hotel detail page -- layout copied from hotels/hotel-details.php
 *
 * Extracted verbatim from that page's inline <style> block so the SEO
 * hotel page is visually identical rather than an approximation of it.
 * It is a copy because those rules live inside the page rather than in
 * a stylesheet, and hotel-details.php is the live booking page -- not
 * something to refactor for this. Restyle both together.
 * ===================================================================== */

    .hotel-hero-v2 {
        height: 420px;
        position: relative;
        width: 100%;
        overflow: hidden;
        display: flex;
        align-items: flex-start;
        color: #fff;
        margin-top: 0;
        background-color: #0f172a; /* Fallback color */
    }

    .hero-bg-image {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .hotel-hero-v2::before {
        content: '';
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: linear-gradient(to bottom, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.8));
        z-index: 2;
    }

    .hotel-hero-v2::after {
        content: '';
        position: absolute;
        /* Shorter than the 150px it was: the facts bar overlaps the last ~100px
           of the hero, and with a 150px fade the image was already washed out
           everywhere the bar sits, so the bar looked like it was floating on the
           page background instead of over the photo. */
        bottom: 0; left: 0; width: 100%; height: 110px;
        background: linear-gradient(to top, var(--bg-light), transparent);
        z-index: 3;
    }

    .hero-content {
        position: relative;
        z-index: 4;
        width: 100%;
        padding-top: 120px;
    }

    .hotel-title {
        font-size: 4.5rem;
        font-weight: 900;
        letter-spacing: -2px;
        text-shadow: 0 10px 30px rgba(0,0,0,0.3);
        margin-bottom: 20px;
        color: #00ff88; /* Fluorescent green color */
        line-height: 1.1;
    }

    .hero-meta-info {
        display: flex;
        gap: 25px;
        align-items: center;
        flex-wrap: wrap;
    }

    .meta-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 600;
    }

    .meta-item i {
        color: var(--primary-color);
    }

    .star-rating {
        color: #ffc107;
    }

    /* Quick Facts Bar - the bar's own look lives in
       includes/hotel_booking/hotel_facts_bar.php so this page and
       guest-details.php stay identical. Only the hero overlap, which is
       specific to this page, is set here. */
    .hotel-quick-facts-wrap {
        position: relative;
        z-index: 10;
    }

    .hotel-quick-facts {
        /* Pulled up so the whole bar sits over the hero photo - its translucent
           background then reads as glass over the image. */
        margin-top: -100px;
    }

    /* Gallery Section */
    .gallery-card {
        background: rgba(30, 41, 59, 0.4);
        border: 1px solid var(--glass-border);
        padding: 10px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        backdrop-filter: blur(10px);
        margin-bottom: 40px;
    }

    .main-gallery-img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 15px;
        cursor: pointer;
        transition: transform 0.5s ease;
    }

    .main-gallery-wrapper {
        position: relative;
        overflow: hidden;
        border-radius: 15px;
    }

    .main-gallery-wrapper:hover .main-gallery-img {
        transform: scale(1.03);
    }

    .content-tabs-nav {
        display: flex;
        justify-content: flex-start;
        background: rgba(30, 41, 59, 0.72);
        border: none;
        border-radius: 16px 16px 0 0;
        padding: 10px 12px 0;
        margin-bottom: 0;
        box-shadow: none;
        gap: 10px;
        overflow-x: auto;
        scrollbar-width: none;
        position: sticky;
        top: 85px;
        z-index: 20;
        backdrop-filter: blur(10px);
        -webkit-overflow-scrolling: touch;
        border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    }
    .content-tabs-nav::-webkit-scrollbar { display: none; }
    
    .tab-btn {
        flex: 0 0 auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 14px 22px;
        border: 1px solid rgba(148, 163, 184, 0.55);
        border-bottom: 0;
        background: linear-gradient(180deg, #e2e8f0, #cbd5e1);
        color: #0f172a;
        font-size: 0.98rem;
        font-weight: 800;
        border-radius: 12px 12px 0 0;
        transition: all 0.3s ease;
        white-space: nowrap;
        position: relative;
        border-top: 3px solid transparent;
        cursor: pointer;
        margin: 0;
        box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
    }
    .tab-btn i {
        font-size: 1.1rem;
        margin-bottom: 0;
        margin-right: 10px;
        color: #475569;
        transition: transform 0.3s ease;
    }
    .tab-btn:hover {
        background: linear-gradient(180deg, #f1f5f9, #e2e8f0);
        border-top-color: var(--primary-color);
        color: #0f172a;
        transform: translateY(-1px);
        box-shadow: 0 12px 26px rgba(15, 23, 42, 0.22);
    }
    .tab-btn.active {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: #0f172a;
        border-color: var(--primary-color);
        border-top-color: var(--primary-color);
        z-index: 2;
        box-shadow: 0 12px 28px rgba(245, 124, 0, 0.26);
        transform: translateY(-2px);
    }
    .tab-btn.active i { color: #0f172a; }



    .dynamic-tab-content {
        display: none;
        animation: fadeInTab 0.4s ease-out;
        background: rgba(30, 41, 59, 0.4);
        border: 1px solid var(--glass-border);
        border-top: none; /* Connect to navbar */
        border-radius: 0 0 12px 12px;
        padding: 24px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin-bottom: 30px;
        backdrop-filter: blur(10px);
        color: #e2e8f0;
    }
    .dynamic-tab-content.active {
        display: block;
    }

    @keyframes fadeInTab {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }


/* =====================================================================
 * Booking panel (right column of the hotel page)
 *
 * Visually matches hotel-details.php's "Book Your Stay" widget, but is a
 * plain date/occupancy form rather than a copy of .booking-widget-v2 --
 * that widget renders a live room-rate table, which this page deliberately
 * does not fetch. It hands off to hotel-details.php instead.
 * ===================================================================== */

.hs-book-panel {
    background: rgba(30, 41, 59, .55);
    border: 1px solid rgba(148, 163, 184, .22);
    border-radius: 18px;
    padding: 22px 20px 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 100px;
}
.hs-book-title {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: .5px;
    color: #fff;
    margin: 0 0 16px;
}
.hs-book-note {
    background: rgba(255, 152, 0, .12);
    border: 1px solid rgba(255, 152, 0, .3);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: .84rem;
    color: #ffcc80;
    margin-bottom: 18px;
    line-height: 1.55;
}
.hs-book-note i { color: var(--hs-gold); margin-right: 6px; }

.hs-book-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.hs-book-row-3 { grid-template-columns: repeat(3, 1fr); }
.hs-book-field { min-width: 0; text-align: center; }
.hs-book-label {
    display: block;
    font-size: .78rem;
    font-weight: 700;
    color: #7dd3fc;
    margin-bottom: 7px;
}
.hs-book-input {
    width: 100%;
    padding: 11px 12px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, .3);
    background: rgba(15, 23, 42, .75);
    color: #fff;
    font-size: .88rem;
    font-weight: 600;
}
.hs-book-input:focus { outline: none; border-color: var(--hs-gold); }
/* The native date picker's indicator is black-on-dark by default. */
.hs-book-input::-webkit-calendar-picker-indicator { filter: invert(1); opacity: .75; cursor: pointer; }
.hs-book-hint { display: block; font-size: .68rem; color: #64748b; margin-top: 5px; }

.hs-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(15, 23, 42, .75);
    border: 1px solid rgba(148, 163, 184, .3);
    border-radius: 10px;
    padding: 5px;
}
.hs-step-btn {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 152, 0, .18);
    color: var(--hs-gold);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
}
.hs-step-btn:hover { background: rgba(255, 152, 0, .34); }
.hs-step-val { min-width: 26px; text-align: center; color: #fff; font-weight: 800; font-size: .95rem; }

/* Fact list used by the Contact tab. */
.hs-facts { list-style: none; padding: 0; margin: 0; font-size: .9rem; }
.hs-facts li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(148, 163, 184, .14);
    display: flex;
    gap: 14px;
    color: #cbd5e1;
}
.hs-facts li:last-child { border-bottom: 0; }
.hs-facts .hs-k { color: #94a3b8; min-width: 130px; flex-shrink: 0; font-weight: 600; }

@media (max-width: 991.98px) {
    .hs-book-panel { position: static; margin-top: 22px; }
}

/* Region groups on the destination hub ------------------------------- */
.hs-region { margin-bottom: 30px; }
.hs-region-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 14px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--hs-line);
}
.hs-region-head small { font-size: .78rem; font-weight: 600; color: var(--hs-muted); }

/* Country row with flag on the destination hub ----------------------- */
.hs-country {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;   /* long names ellipsis rather than pushing the count out */
}
.hs-country em {
    font-style: normal;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Fixed box, so a row whose flag fails to load still aligns with the rest. */
.hs-flag {
    width: 30px;
    height: 20px;
    flex: 0 0 30px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .45);
    display: block;
}

/* City thumbnail on the country page --------------------------------- */
.hs-citypic {
    width: 46px;
    height: 34px;
    flex: 0 0 46px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    background: var(--hs-panel-2);
}
.hs-citypic.is-blank { background: var(--hs-panel-2); opacity: .6; }

/* Facility group heading on the hotel page ---------------------------- */
/* TBO's facility list is grouped under headings (hotel_facilities.php),
   matching the curated Zaereen hotel pages. Only the heading needed a
   rule -- the chips below it already had one. margin-top on the sibling
   selector so the first heading sits tight under the tab, and later ones
   get air between groups. */
.hs-amen-head {
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--hs-gold, #c9a227);
    margin: 0 0 10px;
}
.hs-chips + .hs-amen-head {
    margin-top: 22px;
}

/* Address under the hotel title -------------------------------------- */
/* Lives on the dark hero, so it is keyed off the same white-alpha as the
   rating line above it rather than the body ink. Check-in/out times used
   to share this list and have been removed; they remain on the Contact
   tab. A single item is left, so it no longer needs to be a flex row. */
.hs-headmeta {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    font-size: .95rem;
    color: rgba(255, 255, 255, .72);
}
.hs-headmeta li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    max-width: 68ch;
}
/* Fixed icon column so a wrapped address lines up under itself, and the
   icon stays on the first line rather than centring on the block. */
.hs-headmeta li i {
    flex: 0 0 16px;
    margin-top: 4px;
    font-size: .82rem;
    color: var(--hs-gold, #c9a227);
}
