/* Horizontal Timeline 3de247b9 */
.ht-wrapper-3de247b9 {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.ht-viewport-3de247b9 {
    overflow: hidden;
    flex: 1;
    position: relative;
}

.ht-track-3de247b9 {
    display: flex;
    align-items: center;
    position: relative;
    padding: 180px 40px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

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

.ht-timeline-line-progress-3de247b9 {
    height: 3px;
    background-color: #6C63FF;
    width: 0;
    border-radius: 3px;
    transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Event */
.ht-event-3de247b9 {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 220px;
    max-width: 220px;
    z-index: 1;
    flex-shrink: 0;
    margin: 0 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.ht-event-3de247b9.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Above: card on top, stem, marker at center */
.ht-above-3de247b9 {
    flex-direction: column;
}

.ht-above-3de247b9 .ht-card-3de247b9 {
    order: 1;
}

.ht-above-3de247b9 .ht-stem-3de247b9 {
    order: 2;
}

.ht-above-3de247b9 .ht-marker-3de247b9,
.ht-above-3de247b9 .ht-marker-link-3de247b9 {
    order: 3;
}

/* Below: marker at center, stem, card below */
.ht-below-3de247b9 {
    flex-direction: column;
}

.ht-below-3de247b9 .ht-marker-3de247b9,
.ht-below-3de247b9 .ht-marker-link-3de247b9 {
    order: 1;
}

.ht-below-3de247b9 .ht-stem-3de247b9 {
    order: 2;
}

.ht-below-3de247b9 .ht-card-3de247b9 {
    order: 3;
}

/* Marker */
.ht-marker-3de247b9 {
    width: 44px;
    height: 44px;
    line-height: 44px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 3px solid #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #6C63FF;
    z-index: 2;
    position: relative;
    transition: all 0.35s ease;
    flex-shrink: 0;
    cursor: pointer;
}

.ht-marker-3de247b9 svg {
    width: 18px;
    height: 18px;
}

.ht-marker-3de247b9 i {
    font-size: 16px;
}

.ht-event-3de247b9.is-active .ht-marker-3de247b9 {
    background-color: #6C63FF;
    border-color: #6C63FF;
    color: #FFFFFF;
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.4);
}

.ht-marker-3de247b9:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 10px rgba(108, 99, 255, 0.25);
}

/* Marker link */
.ht-marker-link-3de247b9 {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Title link */
.ht-card-title-link-3de247b9 {
    text-decoration: none;
    color: inherit;
    display: block;
}

.ht-card-title-link-3de247b9:hover .ht-card-title-3de247b9 {
    color: #6C63FF;
}

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

.ht-event-3de247b9.is-active .ht-stem-3de247b9 {
    background: linear-gradient(to bottom, #6C63FF, transparent);
}

/* Card */
.ht-card-3de247b9 {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 18px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    width: 100%;
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ht-event-3de247b9.is-active .ht-card-3de247b9 {
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.15);
    border-color: rgba(108, 99, 255, 0.2);
}

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

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

/* Description — full HTML support */
.ht-card-desc-3de247b9 {
    font-size: 13px;
    color: #555555;
    line-height: 1.55;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.ht-card-desc-3de247b9 p {
    margin: 0 0 8px 0;
}

.ht-card-desc-3de247b9 p:last-child {
    margin-bottom: 0;
}

.ht-card-desc-3de247b9 a {
    color: #6C63FF;
    text-decoration: underline;
}

.ht-card-desc-3de247b9 a:hover {
    opacity: 0.8;
}

.ht-card-desc-3de247b9 ul,
.ht-card-desc-3de247b9 ol {
    margin: 4px 0;
    padding-left: 18px;
    text-align: left;
}

.ht-card-desc-3de247b9 li {
    margin-bottom: 4px;
}

.ht-card-desc-3de247b9 li:last-child {
    margin-bottom: 0;
}

.ht-card-desc-3de247b9 strong,
.ht-card-desc-3de247b9 b {
    font-weight: 700;
}

.ht-card-desc-3de247b9 em,
.ht-card-desc-3de247b9 i:not([class]) {
    font-style: italic;
}

.ht-card-desc-3de247b9 u {
    text-decoration: underline;
}

.ht-card-desc-3de247b9 s,
.ht-card-desc-3de247b9 del {
    text-decoration: line-through;
}

.ht-card-desc-3de247b9 h1,
.ht-card-desc-3de247b9 h2,
.ht-card-desc-3de247b9 h3,
.ht-card-desc-3de247b9 h4,
.ht-card-desc-3de247b9 h5,
.ht-card-desc-3de247b9 h6 {
    margin: 0 0 8px 0;
    line-height: 1.3;
    color: inherit;
}

.ht-card-desc-3de247b9 h1 { font-size: 20px; }
.ht-card-desc-3de247b9 h2 { font-size: 18px; }
.ht-card-desc-3de247b9 h3 { font-size: 16px; }
.ht-card-desc-3de247b9 h4 { font-size: 15px; }
.ht-card-desc-3de247b9 h5 { font-size: 14px; }
.ht-card-desc-3de247b9 h6 { font-size: 13px; }

.ht-card-desc-3de247b9 blockquote {
    margin: 8px 0;
    padding: 8px 12px;
    border-left: 3px solid #6C63FF;
    background: rgba(108, 99, 255, 0.05);
    font-style: italic;
}

.ht-card-desc-3de247b9 img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 6px 0;
    display: block;
}

.ht-card-desc-3de247b9 br {
    display: block;
    content: "";
    margin-top: 4px;
}

.ht-card-desc-3de247b9 table {
    width: 100%;
    border-collapse: collapse;
    margin: 8px 0;
    font-size: 12px;
}

.ht-card-desc-3de247b9 table th,
.ht-card-desc-3de247b9 table td {
    padding: 4px 6px;
    border: 1px solid #E0E0E0;
    text-align: left;
}

.ht-card-desc-3de247b9 table th {
    background: rgba(0, 0, 0, 0.03);
    font-weight: 700;
}

.ht-card-desc-3de247b9 code {
    background: rgba(0, 0, 0, 0.06);
    padding: 1px 4px;
    border-radius: 3px;
    font-family: monospace;
    font-size: 12px;
}

.ht-card-desc-3de247b9 pre {
    background: rgba(0, 0, 0, 0.06);
    padding: 8px 10px;
    border-radius: 6px;
    overflow-x: auto;
    font-family: monospace;
    font-size: 12px;
    margin: 8px 0;
    text-align: left;
}

.ht-card-desc-3de247b9 hr {
    border: none;
    border-top: 1px solid #E0E0E0;
    margin: 8px 0;
}

.ht-card-desc-3de247b9 sup {
    font-size: 0.75em;
    vertical-align: super;
}

.ht-card-desc-3de247b9 sub {
    font-size: 0.75em;
    vertical-align: sub;
}

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

.ht-nav-btn-3de247b9:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 18px rgba(108, 99, 255, 0.45);
}

.ht-nav-btn-3de247b9:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: scale(1);
    box-shadow: none;
}

/* Responsive */
@media (max-width: 767px) {
    .ht-track-3de247b9 {
        padding: 150px 20px;
    }

    .ht-event-3de247b9 {
        min-width: 180px;
        max-width: 180px;
        margin: 0 12px;
    }

    .ht-card-3de247b9 {
        padding: 14px 12px;
    }

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

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

    .ht-nav-btn-3de247b9 {
        width: 36px;
        height: 36px;
    }

    .ht-stem-3de247b9 {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .ht-event-3de247b9 {
        min-width: 160px;
        max-width: 160px;
        margin: 0 8px;
    }

    .ht-wrapper-3de247b9 {
        gap: 6px;
    }
}
