/* Listing page extracted styles. */
:root {
    --listing-card-height: 280px;
    --hero-min-height: 200px;
}

.listing-page__hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
}

.listing-page__hero-copy {
    padding: 32px 34px;
    border: 1px solid rgba(189, 204, 217, .65);
    border-radius: 28px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 52px rgba(16, 36, 52, .08);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    min-height: var(--hero-min-height);
}

.listing-page__hero-title {
    font-size: clamp(2rem, 3.8vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: -.03em;
    margin-bottom: 14px;
    max-width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-wrap: balance;
}

.listing-page__hero-title--monthwise {
    display: block;
    max-width: none;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
    text-wrap: auto;
}

.listing-page__hero-description {
    --listing-description-collapsed-height: 168px;
    font-size: 16px;
    line-height: 1.75;
    color: #50616d;
}

.listing-page__hero-description-content {
    overflow: visible;
}

.listing-page__hero-description--all-collapsible.is-collapsed .listing-page__hero-description-content {
    max-height: var(--listing-description-collapsed-height);
    overflow: hidden;
    position: relative;
}

.listing-page__hero-description--all-collapsible.is-collapsed .listing-page__hero-description-content::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 56px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, .96));
}

.listing-page__hero-description-toggle.readmore-desc {
    display: none;
    margin-top: 8px;
    border: 0;
    background: transparent;
    color: #1098cb;
    font: inherit;
    font-weight: 700;
    padding: 0;
    text-decoration: underline;
    cursor: pointer;
}

.listing-page__hero-description--all-collapsible .listing-page__hero-description-toggle.readmore-desc {
    display: inline-block;
}

.listing-page__hero-description-toggle:focus {
    outline: 2px solid #1098cb;
    outline-offset: 3px;
}

.listing-page__hero-actions-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(197, 209, 220, .8);
}

.listing-page__hero-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 8px 18px;
    border-radius: 12px;
    border: 1px solid #d7e0e7;
    background: #fff;
    color: #14213d;
    text-decoration: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
}

.listing-page__hero-chip-icon {
    display: inline-flex;
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
}

.listing-page__hero-chip-icon svg {
    width: 100%;
    height: 100%;
}

.listing-page__hero-chip--whatsapp {
    background: linear-gradient(135deg, #2fd768, #1fbe57);
    border-color: #2fd768;
    color: #fff;
}

.listing-page__hero-chip--call {
    background: linear-gradient(135deg, #1a2340, #111a32);
    border-color: #1a2340;
    color: #fff;
}

.need-help-sheet {
    position: fixed;
    inset: 0;
    z-index: 1000000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    visibility: hidden;
    pointer-events: none;
}

.need-help-sheet.is-open {
    visibility: visible;
    pointer-events: auto;
}

.need-help-sheet__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 28, 42, .42);
    opacity: 0;
    transition: opacity .22s ease;
}

.need-help-sheet.is-open .need-help-sheet__backdrop {
    opacity: 1;
}

.need-help-sheet__panel {
    position: relative;
    width: 100%;
    height: 65vh;
    max-height: 65vh;
    background: #fff;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -18px 45px rgba(18, 39, 56, .24);
    transform: translateY(100%);
    transition: transform .26s ease;
    padding: 18px 20px 24px;
    overflow-y: auto;
}

.need-help-sheet.is-open .need-help-sheet__panel {
    transform: translateY(0);
}

.need-help-sheet__handle {
    width: 48px;
    height: 5px;
    border-radius: 999px;
    background: #d8e2e8;
    margin: 0 auto 18px;
}

.need-help-sheet__close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #f2f6f8;
    color: #183244;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.need-help-sheet__title {
    margin: 0 42px 10px 0;
    color: #14213d;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
}

.need-help-sheet__copy {
    margin: 0 0 18px;
    color: #5d7480;
    font-size: 15px;
    line-height: 1.65;
}

.need-help-sheet__actions {
    display: grid;
    gap: 10px;
}

.need-help-sheet__action {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    width: 100%;
    padding: 13px 15px;
    border: 1px solid #e4edf2;
    border-radius: 15px;
    background: #f9fcfd;
    color: #14213d;
    text-align: left;
    text-decoration: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(18, 39, 56, .06);
}

.need-help-sheet__action:hover,
.need-help-sheet__action:focus {
    color: #14213d;
    text-decoration: none;
    border-color: #bfd2dc;
    background: #fff;
}

.need-help-sheet__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #eaf6fa;
    font-size: 17px;
    flex: 0 0 30px;
}

body.need-help-sheet-open {
    overflow: hidden;
}

.horizontal-listing-item {
    min-height: var(--listing-card-height);
    content-visibility: auto;
    contain-intrinsic-size: 280px;
}

.hl-item-image {
    aspect-ratio: 697 / 480;
    min-height: 200px;
    background: #f5f5f5;
    position: relative;
}

.hl-item-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.listing-tour-card__image {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.extra-dest {
    display: none;
}

.extra-dest.is-visible {
    display: inline;
}

.toggle-destinations {
    cursor: pointer;
}

.lx-listing {
    min-height: 500px;
}

.search-result-blog-image {
    width: auto;
    max-width: 100%;
}

.listing-page #applied-filters button.badge {
    border: 0;
    font-family: inherit;
}

.listing-page .clear-all-filters {
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    padding: 0;
    text-decoration: none;
}

.listing-page .clear-all-filters:hover,
.listing-page .clear-all-filters:focus {
    text-decoration: underline;
}

@media screen and (max-width: 991px) {
    .listing-page__hero-copy {
        padding: 22px 20px;
        border-radius: 22px;
    }

    .listing-page__hero-description--mobile-collapsible.is-collapsed .listing-page__hero-description-content {
        max-height: var(--listing-description-collapsed-height);
        overflow: hidden;
        position: relative;
    }

    .listing-page__hero-description--mobile-collapsible.is-collapsed .listing-page__hero-description-content::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        height: 56px;
        pointer-events: none;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, .96));
    }

    .listing-page__hero-description--mobile-collapsible .listing-page__hero-description-toggle.readmore-desc {
        display: inline-block;
    }
}

@media screen and (max-width: 767.98px) {
    .listing-page {
        z-index: auto !important;
        isolation: auto !important;
    }

    .front-plan-cta,
    .site-footer {
        position: relative;
        z-index: 0 !important;
    }

    .listing-page .footer-filter {
        position: fixed !important;
        z-index: 2147482800 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateZ(0);
    }

    body.mobile-filter-open .listing-page .footer-filter {
        z-index: 2147482700 !important;
    }

    body.need-help-sheet-open .listing-page .footer-filter,
    body.modal-open .listing-page .footer-filter {
        z-index: 1 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

@media screen and (max-width: 575px) {
    .listing-page__hero-copy {
        padding: 18px 16px;
    }

    .listing-page__hero-title {
        font-size: 1.9rem;
        line-height: 1.08;
    }

    .listing-page__hero-description {
        --listing-description-collapsed-height: 139px;
        font-size: 14px;
        line-height: 1.65;
    }

    .listing-page__hero-actions-bar {
        margin-top: 18px;
        padding-top: 18px;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .listing-page__hero-chip {
        flex: 1 1 0;
        justify-content: center;
        width: auto;
        min-height: 40px;
        padding: 8px 7px;
        font-size: 12px;
        border-radius: 12px;
    }

    .listing-page__hero-chip-icon {
        width: 16px;
        height: 16px;
        flex-basis: 16px;
    }

    .listing-page__hero-chip-label {
        text-align: center;
        line-height: 1.2;
    }
}
