/* Horizontal Timeline d9cd739f */

.ht-wrapper-d9cd739f {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

/* Viewport */
.ht-viewport-d9cd739f {
    overflow: hidden;
    flex: 1;
    position: relative;
}

/* Track */
.ht-track-d9cd739f {
    display: flex;
    align-items: center;
    position: relative;
    padding: 180px 40px;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

/* Horizontal Line */
.ht-line-d9cd739f {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #E0E0E0;
    transform: translateY(-50%);
    border-radius: 3px;
    z-index: 0;
}

.ht-line-progress-d9cd739f {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background-color: #6C63FF;
    border-radius: 3px;
    transition: width 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Event Item */
.ht-event-d9cd739f {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 240px;
    max-width: 280px;
    flex-shrink: 0;
    margin: 0 20px;
    z-index: 1;
}

/* Above: card → stem → marker (top to bottom) */
.ht-event-above-d9cd739f {
    flex-direction: column;
}

/* Below: marker → stem → card (top to bottom) */
.ht-event-below-d9cd739f {
    flex-direction: column-reverse;
}

/* Stem connector */
.ht-stem-d9cd739f {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #6C63FF, #E0E0E0);
    flex-shrink: 0;
}

.ht-event-below-d9cd739f .ht-stem-d9cd739f {
    background: linear-gradient(to top, #6C63FF, #E0E0E0);
}

/* Marker */
.ht-marker-d9cd739f {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #6C63FF;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ht-marker-d9cd739f:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(108, 99, 255, 0.5);
}

.ht-marker-d9cd739f i,
.ht-marker-d9cd739f svg {
    font-size: inherit;
    width: 1em;
    height: 1em;
}

/* Card */
.ht-card-d9cd739f {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 3px solid #6C63FF;
    text-align: center;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ht-card-d9cd739f:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.ht-event-below-d9cd739f .ht-card-d9cd739f {
    border-top: none;
    border-bottom: 3px solid #6C63FF;
}

.ht-card-date-d9cd739f {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6C63FF;
    margin-bottom: 8px;
}

.ht-card-title-d9cd739f {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A2E;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.ht-card-desc-d9cd739f {
    font-size: 13px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

/* Navigation Buttons */
.ht-nav-btn-d9cd739f {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background-color: #6C63FF;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.3s ease, transform 0.2s ease, opacity 0.3s ease;
    box-shadow: 0 3px 12px rgba(108, 99, 255, 0.3);
    z-index: 5;
}

.ht-nav-btn-d9cd739f:hover {
    transform: scale(1.1);
}

.ht-nav-btn-d9cd739f:active {
    transform: scale(0.95);
}

.ht-nav-btn-d9cd739f:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}

/* Animations */
.ht-wrapper-d9cd739f[data-animation="fade-up"] .ht-event-d9cd739f {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ht-wrapper-d9cd739f[data-animation="fade-up"] .ht-event-d9cd739f.ht-visible-d9cd739f {
    opacity: 1;
    transform: translateY(0);
}

.ht-wrapper-d9cd739f[data-animation="scale"] .ht-event-d9cd739f {
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ht-wrapper-d9cd739f[data-animation="scale"] .ht-event-d9cd739f.ht-visible-d9cd739f {
    opacity: 1;
    transform: scale(1);
}

.ht-wrapper-d9cd739f[data-animation="slide"] .ht-event-above-d9cd739f {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ht-wrapper-d9cd739f[data-animation="slide"] .ht-event-below-d9cd739f {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ht-wrapper-d9cd739f[data-animation="slide"] .ht-event-d9cd739f.ht-visible-d9cd739f {
    opacity: 1;
    transform: translateY(0);
}

.ht-wrapper-d9cd739f[data-animation="none"] .ht-event-d9cd739f {
    opacity: 1;
}

/* Responsive */
@media (max-width: 767px) {
    .ht-wrapper-d9cd739f {
        flex-direction: column;
        gap: 16px;
    }

    .ht-viewport-d9cd739f {
        order: 1;
        width: 100%;
    }

    .ht-track-d9cd739f {
        padding: 140px 20px;
    }

    .ht-event-d9cd739f {
        min-width: 200px;
        max-width: 220px;
        margin: 0 12px;
    }

    .ht-nav-prev-d9cd739f,
    .ht-nav-next-d9cd739f {
        order: 2;
    }

    .ht-wrapper-d9cd739f > .ht-nav-prev-d9cd739f {
        order: 0;
    }

    .ht-wrapper-d9cd739f {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .ht-viewport-d9cd739f {
        order: 0;
        flex-basis: 100%;
    }

    .ht-nav-prev-d9cd739f {
        order: 1;
    }

    .ht-nav-next-d9cd739f {
        order: 2;
    }

    .ht-card-title-d9cd739f {
        font-size: 14px;
    }

    .ht-card-desc-d9cd739f {
        font-size: 12px;
    }
}
