.cinematic-hero-22c7abd5 {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    background-color: #111;
}

.chs-slides-container-22c7abd5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.chs-slide-22c7abd5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0s linear 1.2s;
    z-index: 1;
}

.chs-slide-22c7abd5.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0s linear 0s;
}

.chs-slide-bg-22c7abd5 {
    position: absolute;
    top: -2%;
    left: -2%;
    width: 104%;
    height: 104%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
}

/* Default resting state for inactive slides: midway scale to avoid visible reset flash */
.chs-slide-22c7abd5:not(.active) .chs-slide-bg-22c7abd5 {
    transform: scale(1.08);
}

/* Zoom IN effect (odd slides: 1, 3, 5...) */
.chs-slide-22c7abd5.chs-zoom-in-22c7abd5.active .chs-slide-bg-22c7abd5 {
    animation: chs-kenburns-in-22c7abd5 8s ease-out forwards;
}

/* Zoom OUT effect (even slides: 2, 4, 6...) */
.chs-slide-22c7abd5.chs-zoom-out-22c7abd5.active .chs-slide-bg-22c7abd5 {
    animation: chs-kenburns-out-22c7abd5 8s ease-out forwards;
}

@keyframes chs-kenburns-in-22c7abd5 {
    from { transform: scale(1.0); }
    to { transform: scale(1.15); }
}

@keyframes chs-kenburns-out-22c7abd5 {
    from { transform: scale(1.15); }
    to { transform: scale(1.0); }
}

.chs-slide-overlay-22c7abd5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.chs-content-wrap-22c7abd5 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 10% 8%;
    z-index: 10;
    box-sizing: border-box;
}

.chs-content-inner-22c7abd5 {
    max-width: 800px;
    width: 100%;
    transform: translateY(40px);
    opacity: 0;
    transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 1s ease-out;
    transition-delay: 0.3s;
}

.chs-slide-22c7abd5.active .chs-content-inner-22c7abd5 {
    transform: translateY(0);
    opacity: 1;
}

.chs-subtitle-22c7abd5 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 500;
}

.chs-title-22c7abd5 {
    font-size: clamp(36px, 6vw, 80px);
    line-height: 1.1;
    margin-bottom: 40px;
    font-weight: 700;
}

.chs-btn-22c7abd5 {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.chs-navigation-22c7abd5 {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 5;
    pointer-events: none;
}

.chs-nav-btn-22c7abd5 {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.chs-nav-icon-22c7abd5 {
    position: relative;
    z-index: 10;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.chs-nav-btn-22c7abd5:hover .chs-nav-icon-22c7abd5 {
    background: #fff;
    color: #000;
    transform: scale(0.9);
}

.chs-nav-preview-wrap-22c7abd5 {
    position: absolute;
    top: 50%;
    width: 120px;
    height: 100vh;
    overflow: hidden;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
    pointer-events: none;
}

.chs-preview-prev-wrap-22c7abd5 {
    left: -40px;
    transform: translateY(-50%) translateX(-100%);
}

.chs-preview-next-wrap-22c7abd5 {
    right: -40px;
    transform: translateY(-50%) translateX(100%);
}

.chs-nav-btn-22c7abd5:hover .chs-nav-preview-wrap-22c7abd5 {
    opacity: 1;
}

.chs-nav-btn-22c7abd5.chs-prev-22c7abd5:hover .chs-preview-prev-wrap-22c7abd5 {
    transform: translateY(-50%) translateX(0);
}

.chs-nav-btn-22c7abd5.chs-next-22c7abd5:hover .chs-preview-next-wrap-22c7abd5 {
    transform: translateY(-50%) translateX(0);
}

.chs-preview-img-22c7abd5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.chs-preview-img-22c7abd5.show {
    opacity: 1;
}

.chs-preview-img-22c7abd5::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.chs-pagination-22c7abd5 {
    position: absolute;
    bottom: 50px;
    left: 8%;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.chs-dot-22c7abd5 {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.chs-dot-22c7abd5.active {
    background: #fff;
    transform: scale(1.3);
}

/* CRITICAL: Shape divider must have a high z-index to overlay the preview images */
.chs-shape-divider-22c7abd5 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 20;
    pointer-events: none;
}

.chs-shape-divider-22c7abd5 svg {
    display: block;
    width: calc(100% + 1.3px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .chs-content-wrap-22c7abd5 {
        padding: 15% 5%;
        align-items: center;
        text-align: center;
    }
    
    .chs-title-22c7abd5 {
        font-size: 32px;
    }
    
    .chs-navigation-22c7abd5 {
        display: none;
    }
    
    .chs-pagination-22c7abd5 {
        left: 50%;
        transform: translateX(-50%);
        bottom: 30px;
    }
}
