.wh-container-0a9fcbe5 {
    --image-col-width: 50%;
    --text-col-width: 50%;
    --stacking-distance: 30px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    box-sizing: border-box;
}

.wh-panels-list-0a9fcbe5 {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
}

.wh-panel-0a9fcbe5 {
    position: relative;
    width: 100%;
    background-color: var(--panel-bg, #FDFBF7);
    color: var(--panel-text, #2D3628);
    overflow: hidden;
    box-sizing: border-box;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.wh-panel-bg-overlay-0a9fcbe5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.wh-panel-inner-0a9fcbe5 {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}

.wh-media-col-0a9fcbe5 {
    flex: 0 0 var(--image-col-width);
    max-width: var(--image-col-width);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.wh-img-wrapper-0a9fcbe5 {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.wh-text-col-0a9fcbe5 {
    flex: 0 0 var(--text-col-width);
    max-width: var(--text-col-width);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding: 20px;
}

/* Default editorial style spacing & font mappings */
.wh-text-header-0a9fcbe5 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.wh-num-0a9fcbe5 {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

.wh-eyebrow-0a9fcbe5 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: var(--panel-accent, #8B9A82);
}

.wh-title-0a9fcbe5 {
    font-family: serif; /* Editorial serif fallback */
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 0 0 20px 0;
    font-weight: 400;
}

.wh-desc-0a9fcbe5 {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 30px;
}

.wh-icon-0a9fcbe5 {
    margin-top: 15px;
    font-size: 28px;
    color: var(--panel-accent, #8B9A82);
}
.wh-icon-0a9fcbe5 svg {
    width: 28px;
    height: 28px;
    fill: var(--panel-accent, #8B9A82);
}

.wh-btn-0a9fcbe5 {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid var(--panel-text, #2D3628);
    background: transparent;
    color: var(--panel-text, #2D3628);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.wh-btn-0a9fcbe5:hover {
    background: var(--panel-text, #2D3628);
    color: var(--panel-bg, #FDFBF7);
}

/* Background layout full width visual text */
.wh-panel-0a9fcbe5.wh-pos-background .wh-text-col-0a9fcbe5 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Desktop Scroll Stacking Layout */
@media (min-width: 1025px) {
    .wh-panel-0a9fcbe5 {
        position: sticky;
        /* Dynamic sticky top based on admin bar and stacking order */
        top: calc(80px + (var(--stacking-distance) * var(--panel-index)));
    }

    /* Stacking layers with shadow stacking effects */
    .wh-container-0a9fcbe5.wh-keep-prev-0a9fcbe5 .wh-panel-0a9fcbe5 {
        transform-origin: top center;
    }

    /* Scroll animations classes set via Javascript */
    .wh-panel-0a9fcbe5.wh-passed {
        transform: scale(calc(1 - (0.015 * (4 - var(--panel-index)))));
        opacity: 0.9;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    }
}

/* Mobile responsive layout */
@media (max-width: 1024px) {
    .wh-media-col-0a9fcbe5, .wh-text-col-0a9fcbe5 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .wh-panel-inner-0a9fcbe5 {
        flex-direction: column-reverse;
    }
    .wh-panel-0a9fcbe5.wh-pos-left .wh-panel-inner-0a9fcbe5 {
        flex-direction: column-reverse;
    }
    .wh-panel-0a9fcbe5.wh-pos-right .wh-panel-inner-0a9fcbe5 {
        flex-direction: column;
    }
    .wh-media-col-0a9fcbe5 {
        margin-top: 25px;
    }
    .wh-img-wrapper-0a9fcbe5 {
        aspect-ratio: 1.5;
    }

    /* Simple fade and rise enter reveal on mobile */
    .wh-panel-0a9fcbe5 {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    .wh-panel-0a9fcbe5.wh-mobile-visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reduced motion settings */
@media (prefers-reduced-motion: reduce) {
    .wh-panel-0a9fcbe5 {
        position: static !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
