.ss-wrapper-e4f49065 {
    display: flex;
    flex-direction: row;
    position: relative;
    width: 100%;
}

.ss-left-e4f49065 {
    flex: 1;
    display: flex;
    position: relative;
    padding-right: 40px;
}

.ss-progress-container-e4f49065 {
    width: 30px;
    position: relative;
    flex-shrink: 0;
}

.ss-progress-track-e4f49065 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 5px;
    width: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
}

.ss-progress-fill-e4f49065 {
    width: 100%;
    background-color: #2e8b57;
    height: 0%;
    border-radius: 2px;
}

.ss-content-list-e4f49065 {
    flex: 1;
    padding-bottom: 20vh; /* Extra space to scroll past the last item */
}

.ss-item-e4f49065 {
    margin-bottom: 100px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.ss-item-e4f49065.active {
    opacity: 1;
}

.ss-highlight-wrap-e4f49065 {
    margin-bottom: 15px;
}

.ss-highlight-e4f49065 {
    background-color: #d82b57;
    color: #fff;
    padding: 4px 8px;
    font-weight: bold;
    display: inline-block;
    border-radius: 4px;
    font-size: 14px;
}

.ss-heading-e4f49065 {
    margin: 0 0 15px 0;
    font-size: 24px;
    line-height: 1.3;
}

.ss-desc-e4f49065 {
    font-size: 16px;
    line-height: 1.6;
    /* Added hide logic for desktop */
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease, margin 0.4s ease;
}

/* Reveal description only when active */
.ss-item-e4f49065.active .ss-desc-e4f49065 {
    opacity: 1;
    max-height: 500px; /* Arbitrary large height to allow content */
    margin-top: 15px;
}


.ss-right-e4f49065 {
    flex: 1;
    position: relative;
}

.ss-sticky-container-e4f49065 {
    position: sticky;
    top: 15vh;
    height: 70vh;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.ss-desktop-image-e4f49065 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.ss-desktop-image-e4f49065.active {
    opacity: 1;
}

.ss-mobile-image-e4f49065 {
    display: none;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.ss-mobile-image-e4f49065 img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile Stacking */
@media (max-width: 767px) {
    .ss-wrapper-e4f49065 {
        flex-direction: column;
    }
    .ss-right-e4f49065, .ss-progress-container-e4f49065 {
        display: none;
    }
    .ss-left-e4f49065 {
        padding-right: 0;
    }
    
    /* Modify for horizontal scroll */
    .ss-content-list-e4f49065 {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 20px;
        scroll-snap-type: none; /* Disable snap */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    }
    
    .ss-item-e4f49065 {
        opacity: 1; /* All visible on mobile */
        margin-bottom: 0;
        margin-right: 20px;
        min-width: 250px; /* Ensure items don't shrink too much */
        flex: 0 0 auto; /* Prevent flexing */
    }
    
    .ss-item-e4f49065:last-child {
        margin-right: 0;
    }
    
    .ss-mobile-image-e4f49065 {
        display: block;
    }
    /* Always show descriptions on mobile */
    .ss-desc-e4f49065 {
        opacity: 1;
        max-height: none;
        margin-top: 15px;
        overflow: visible;
    }
}
