/* Why Stay Here Section - robust image rendering */
.why-stay-here-section {
    background: var(--wsh-section-bg, #efefef);
    padding: 56px 24px;
}

.why-stay-here-section * {
    box-sizing: border-box;
}

.wsh-shell {
    width: min(1220px, 100%);
    margin: 0 auto;
}

.wsh-heading {
    margin: 0 0 28px;
    text-align: center;
    color: var(--wsh-heading-color, #111111);
    font-family: var(--lumana-header-font);
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.16;
    /*font-weight: 400;*/
    letter-spacing: -0.03em;
}

.wsh-cards {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 0;
    min-height: var(--wsh-card-height, 580px);
    border-radius: var(--wsh-radius, 30px);
    overflow: hidden;
    background: #b7b7b7;
    isolation: isolate;
}

.wsh-shared-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
}

.wsh-card {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    min-height: var(--wsh-card-height, 580px);
    cursor: pointer;
    outline: none;
    overflow: hidden;
    isolation: isolate;
    transition: flex .45s cubic-bezier(.22,.61,.36,1), transform .35s ease;
}

.wsh-card + .wsh-card {
    border-left: 1px solid var(--wsh-divider-color, rgba(255,255,255,.48));
}

.wsh-card.is-active {
    flex: 1.9 1 0;
}

.wsh-card-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
}

.wsh-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg,
        rgba(255,255,255,.08) 0%,
        var(--wsh-overlay-base, rgba(33,33,33,.18)) 42%,
        rgba(0,0,0,.22) 72%,
        rgba(0,0,0,.28) 100%);
    transition: background .35s ease, backdrop-filter .35s ease;
}

.wsh-card.has-image .wsh-card-overlay {
    background: linear-gradient(180deg,
        rgba(255,255,255,.05) 0%,
        rgba(0,0,0,.07) 35%,
        rgba(0,0,0,.35) 78%,
        rgba(0,0,0,.42) 100%);
}

.wsh-card.is-active .wsh-card-overlay {
    background: linear-gradient(180deg,
        rgba(255,255,255,.12) 0%,
        rgba(255,255,255,.06) 30%,
        var(--wsh-overlay-active, rgba(0,0,0,.30)) 100%);
    backdrop-filter: blur(3px);
}

.wsh-card.has-image.is-active .wsh-card-overlay {
    background: linear-gradient(180deg,
        rgba(255,255,255,.08) 0%,
        rgba(0,0,0,.06) 36%,
        rgba(0,0,0,.38) 100%);
}

.wsh-card-inner {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 26px 14px 24px;
}

.wsh-card-content {
    width: 100%;
    color: var(--wsh-title-color, #ffffff);
}

.wsh-item-number {
    color: var(--wsh-number-color, #ffffff);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(30px, 3vw, 46px);
    line-height: .95;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
    text-shadow: 0 2px 18px rgba(0,0,0,.18);
}

.wsh-item-title {
    margin: 0;
    color: var(--wsh-title-color, #ffffff);
    font-family:var(--lumana-segoe-font);
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.03em;
    max-width: 220px;
    text-shadow: 0 2px 18px rgba(0,0,0,.16);
}

.wsh-item-description {
    max-width: 280px;
    margin-top: 12px;
    color: var(--wsh-desc-color, #ffffff);
    font-family:var(--lumana-segoe-font) ;
    font-size: 14px;
    line-height: 1.28;
    font-weight: 500;
    opacity: 0;
    transform: translateY(8px);
    max-height: 0;
    overflow: hidden;
    transition: opacity .28s ease, transform .28s ease, max-height .35s ease;
    text-shadow: 0 2px 18px rgba(0,0,0,.14);
}

.wsh-card.is-active .wsh-item-description {
    opacity: 1;
    transform: translateY(0);
    max-height: 260px;
}

.wsh-card:not(.is-active) .wsh-item-title {
    max-width: 160px;
}

.wsh-card:focus-visible {
    box-shadow: inset 0 0 0 2px rgba(255,255,255,.75);
}

@media (max-width: 1024px) {
    .why-stay-here-section {
        padding: 44px 18px;
    }

    .wsh-cards {
        min-height: 520px;
    }

    .wsh-card-inner {
        padding: 22px 12px 20px;
    }
}

@media (max-width: 820px) {
    .wsh-cards {
        flex-direction: column;
        min-height: auto;
    }

    .wsh-card,
    .wsh-card.is-active {
        flex: none;
        min-height: 180px;
    }

    .wsh-card + .wsh-card {
        border-left: 0;
        border-top: 1px solid var(--wsh-divider-color, rgba(255,255,255,.48));
    }

    .wsh-card .wsh-item-description {
        opacity: 1;
        max-height: 220px;
        transform: none;
    }

    .wsh-item-title,
    .wsh-card:not(.is-active) .wsh-item-title {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .why-stay-here-section {
        padding: 34px 12px;
    }

    .wsh-heading {
        margin-bottom: 18px;
        font-size: clamp(24px, 8vw, 32px);
    }

    .wsh-card,
    .wsh-card.is-active {
        min-height: 170px;
    }

    .wsh-card-inner {
        padding: 18px 14px;
    }

    .wsh-item-number {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .wsh-item-title {
        font-size: 20px;
    }

    .wsh-item-description {
        font-size: 13px;
        margin-top: 10px;
    }
}
