/* Horizontal Timeline – 1ae1cb8b */

.ht-1ae1cb8b-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    gap: 12px;
}

.ht-1ae1cb8b-track-container {
    overflow: hidden;
    flex: 1;
    position: relative;
}

.ht-1ae1cb8b-track {
    display: flex;
    align-items: center;
    position: relative;
    padding: 180px 40px;
    gap: 20px;
    min-width: max-content;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ht-1ae1cb8b-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 3px;
    background-color: #E0E0E0;
    z-index: 0;
    pointer-events: none;
}

/* ── Event Item ── */
.ht-1ae1cb8b-event {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.ht-1ae1cb8b-event--above {
    flex-direction: column;
}

.ht-1ae1cb8b-event--below {
    flex-direction: column-reverse;
}

/* ── Marker ── */
.ht-1ae1cb8b-marker {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #6C63FF;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    line-height: 1;
}

.ht-1ae1cb8b-marker svg {
    width: 16px;
    height: 16px;
}

.ht-1ae1cb8b-event:hover .ht-1ae1cb8b-marker {
    transform: scale(1.15);
    box-shadow: 0 4px 16px rgba(108, 99, 255, 0.4);
}

/* ── Connector ── */
.ht-1ae1cb8b-connector {
    width: 2px;
    height: 30px;
    background-color: #D0D0D0;
    flex-shrink: 0;
}

/* ── Card ── */
.ht-1ae1cb8b-card {
    width: 220px;
    background-color: #FFFFFF;
    padding: 16px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ht-1ae1cb8b-event:hover .ht-1ae1cb8b-card {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.ht-1ae1cb8b-event--below:hover .ht-1ae1cb8b-card {
    transform: translateY(4px);
}

.ht-1ae1cb8b-date {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #6C63FF;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.ht-1ae1cb8b-desc {
    font-size: 13px;
    color: #555555;
    margin: 0;
    line-height: 1.5;
}

/* ── Navigation ── */
.ht-1ae1cb8b-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #6C63FF;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease, transform 0.2s ease, opacity 0.3s ease;
    z-index: 5;
    padding: 0;
}

.ht-1ae1cb8b-nav-btn:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

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

.ht-1ae1cb8b-nav-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
}

/* ── Entrance Animation ── */
.ht-1ae1cb8b-animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.ht-1ae1cb8b-animate-in.ht-1ae1cb8b-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .ht-1ae1cb8b-track {
        padding: 150px 20px;
        gap: 12px;
    }

    .ht-1ae1cb8b-card {
        width: 170px;
        padding: 12px 14px;
    }

    .ht-1ae1cb8b-marker {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .ht-1ae1cb8b-connector {
        height: 20px;
    }

    .ht-1ae1cb8b-title {
        font-size: 14px;
    }

    .ht-1ae1cb8b-desc {
        font-size: 12px;
    }

    .ht-1ae1cb8b-nav-btn {
        width: 32px;
        height: 32px;
    }
}
