.scroll-sync-wrapper-e60dbeb0 {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.scroll-sync-sticky-viewport-e60dbeb0 {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
}

/* Adjust for Admin Bar */
body.admin-bar .scroll-sync-sticky-viewport-e60dbeb0 {
    height: calc(100vh - var(--wp-admin--admin-bar--height, 32px));
    top: var(--wp-admin--admin-bar--height, 32px);
}
@media screen and (max-width: 782px) {
    body.admin-bar .scroll-sync-sticky-viewport-e60dbeb0 {
        height: calc(100vh - 46px);
        top: 46px;
    }
}

.scroll-sync-grid-e60dbeb0 {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    width: 100%;
    align-items: center;
    box-sizing: border-box;
}

/* Left Sticky Titles Column styling */
.scroll-sync-left-col-e60dbeb0 {
    display: block;
}

.scroll-sync-titles-container-e60dbeb0 {
    display: flex;
    flex-direction: column;
}

.scroll-sync-title-item-e60dbeb0 {
    transition: opacity 0.5s ease, color 0.5s ease;
    cursor: pointer;
}

/* Middle Image container stack */
.scroll-sync-middle-col-e60dbeb0 {
    display: block;
    width: 100%;
}

.scroll-sync-images-container-e60dbeb0 {
    position: relative;
    width: 100%;
    height: 60vh;
}

.scroll-sync-image-item-e60dbeb0 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.6s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-sync-image-item-e60dbeb0.is-active {
    opacity: 1;
    visibility: visible;
}

.scroll-sync-image-item-e60dbeb0 img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Text container stack */
.scroll-sync-right-col-e60dbeb0 {
    display: block;
    width: 100%;
}

.scroll-sync-texts-container-e60dbeb0 {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 250px;
}

.scroll-sync-text-item-e60dbeb0 {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.scroll-sync-text-item-e60dbeb0.is-active {
    opacity: 1;
    visibility: visible;
}

/* Mobile & Tablet responsive tweaks */
@media screen and (max-width: 1024px) {
    .scroll-sync-sticky-viewport-e60dbeb0 {
        position: static;
        height: auto !important;
        overflow: visible;
        padding: 40px 20px;
    }
    .scroll-sync-grid-e60dbeb0 {
        grid-template-columns: 1fr;
        gap: 40px !important;
    }
    .scroll-sync-images-container-e60dbeb0 {
        height: 400px;
    }
    .scroll-sync-image-item-e60dbeb0 {
        position: absolute;
    }
    .scroll-sync-texts-container-e60dbeb0 {
        min-height: 200px;
    }
    .scroll-sync-text-item-e60dbeb0 {
        top: 0;
        transform: none;
    }
}
