.hst-37929-container {
    position: relative;
    background: #fff;
}

.hst-37929-container.active-scroll {
    height: var(--scroll-height);
}

.hst-37929-sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hst-37929-scroll-area {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hst-37929-track {
    display: flex;
    width: max-content;
    padding-left: 20px;
    padding-right: 15vw; /* FIX */
    gap: 40px;
}

.hst-37929-item {
    width: 25vw;
    min-width: 300px;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.hst-37929-item.active {
    opacity: 1;
    transform: scale(1.05);
}

.hst-37929-item-image {
    max-width: 150px;
    margin-bottom: 20px;
}

.hst-37929-step {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.hst-37929-item.active .hst-37929-step {
    color: #00d2ff;
}

.hst-37929-item-title {
    font-size: 24px;
    color: #aaa;
}

.hst-37929-item.active .hst-37929-item-title {
    color: #000;
}

.hst-37929-line-container {
    height: 2px;
    background: #eee;
    margin: 20px 0;
    position: relative;
}

.hst-37929-line-inner {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #00d2ff, #3a7bd5);
}

.hst-37929-progress-dot {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(90deg, #00d2ff, #3a7bd5);
    box-shadow: 0 0 10px rgba(0,210,255,0.6);
    left: 5vw;
}

.hst-37929-item-desc {
    font-size: 14px;
    color: #aaa;
    opacity: 0.4;
}

.hst-37929-item.active .hst-37929-item-desc {
    opacity: 1;
}