.horizontal-scroll-block {
    position: relative;
    background-color: #1A1A1A;
    color: #fff;
    overflow: visible !important;
}

.scroll-section {
    position: relative;
    width: 100%;
    overflow: visible !important;
    max-width: 100%;
}

.scroll-section__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.scroll-section__track {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    /* padding: 0 10vw; */
    padding-left: var(--size--container);
    padding-right: var(--size--container);
    will-change: transform;
}

.story_col {
    flex: none;
    position: relative;
    z-index: 2;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    display: flex;
    position: relative;
}

.scroll-section__01 {
    height: 100%;
    padding-top: 31.7391vh;
    padding-right: 15.75rem;
}




/* SCROLL INDICATOR */
.scroll-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    background: #e6ff00;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.indicator-text {
    font-size: 12px;
    font-family: var(--font-mono, monospace);
    opacity: 0.6;
    letter-spacing: 0.1em;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.3;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* PROGRESS LINE */
.scroll_part {
    position: relative;
}

.scroll-line-dashed-global {
    position: absolute;
    top: 43%;
    left: 150px;
    right: 0;
    height: 1px;
    transform: translateY(-50%);
    border-bottom: 2px dashed rgba(255, 255, 255, 0.15);
    /* Continuous dashed guide */
    z-index: 1;
    pointer-events: none;
}

.scroll-line-wrapper {
    display: none;
    /* Only show if parent has .scroll_part */
    position: absolute;
    top: 43%;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 100;
}

.scroll-line-marker {
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    z-index: 110;
    background: #1A1A1A;
    /* Matches section background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll_part .scroll-line-wrapper {
    display: block;
    border: 1px solid #999;
    border-style: dashed;
}

.scroll-line-fill {
    position: absolute;
    inset: 0;
    width: 0%;
    /* Controlled by JS */
    border-bottom: 1px dashed #e6ff00;
    /* Yellow dashed progress */
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .scroll-section__01 {
        padding-right: 0;
    }

    /* .scroll-section .story_col-images {
        margin-right: 0;
    } */
    .scroll-section .story_img_1 {
        height: 27vh;
        margin-bottom: 15.9783vh;
    }

    .scroll-section .story_img_2 {
        height: 20.4434vh;
        margin-top: 27vh;
        margin-left: -9.5rem;
        margin-right: 0;
        /* margin-right: 7rem; */
    }

    .scroll-section .story_col_image_3 {
        height: 20.4434vh;
        margin-top: 27vh;
        margin-left: -9.5rem;
        margin-right: 3rem;
    }

    .scroll-section .container-horiz-bottom {
        padding-left: 0;
    }

    .scroll-section .story_col_image_4 {
        display: flex;
        margin-right: 0;
        height: 27vh;
        border-radius: var(--size--4);
        align-self: flex-end;
        margin-bottom: 15.9783vh;
    }

    .container-horiz-top.container-horiz-top-01 {
        /* padding-top: 80px; */
    }

    .story_col_images-wrapper.story_col-images {
        margin-right: 0;
    }
}