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

.htl-c7c0bd30-viewport {
    overflow: hidden;
    flex: 1;
    position: relative;
    padding: 10px 0;
}

.htl-c7c0bd30-slider {
    display: flex;
    gap: 0;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.htl-c7c0bd30-event {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 340px;
}

/* Track line */
.htl-c7c0bd30-track {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    background-color: #E0E0E0;
    border-radius: 2px;
    z-index: 0;
}

.htl-c7c0bd30-track-progress {
    height: 100%;
    width: 0;
    background-color: #6C63FF;
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Card areas */
.htl-c7c0bd30-card-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    min-height: 130px;
}

.htl-c7c0bd30-card-bottom {
    justify-content: flex-start;
}

/* Connector line */
.htl-c7c0bd30-connector {
    width: 2px;
    height: 24px;
    background: linear-gradient(to bottom, #6C63FF, #B8B5FF);
    flex-shrink: 0;
}

/* Content card */
.htl-c7c0bd30-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 16px;
    width: 190px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(108, 99, 255, 0.1);
}

.htl-c7c0bd30-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.15);
}

.htl-c7c0bd30-card-date {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #6C63FF;
    display: block;
    margin-bottom: 6px;
}

.htl-c7c0bd30-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #1A1A2E;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.htl-c7c0bd30-card-desc {
    font-size: 13px;
    color: #555555;
    margin: 0;
    line-height: 1.5;
}

/* Marker */
.htl-c7c0bd30-marker-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

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

.htl-c7c0bd30-event.is-active .htl-c7c0bd30-marker {
    transform: scale(1.2);
    background-color: #4A3FD4;
    box-shadow: 0 6px 25px rgba(108, 99, 255, 0.5);
}

.htl-c7c0bd30-event .htl-c7c0bd30-card {
    opacity: 0;
    transform: translateY(20px);
}

.htl-c7c0bd30-event.is-visible .htl-c7c0bd30-card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.htl-c7c0bd30-event.htl-c7c0bd30-above.is-visible .htl-c7c0bd30-card {
    transform: translateY(0);
}

.htl-c7c0bd30-event.htl-c7c0bd30-above .htl-c7c0bd30-card {
    transform: translateY(20px);
}

.htl-c7c0bd30-event.htl-c7c0bd30-below .htl-c7c0bd30-card {
    transform: translateY(-20px);
}

.htl-c7c0bd30-event.htl-c7c0bd30-below.is-visible .htl-c7c0bd30-card {
    transform: translateY(0);
}

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

.htl-c7c0bd30-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
}

.htl-c7c0bd30-nav-btn:active {
    transform: scale(0.95);
}

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

/* Responsive */
@media (max-width: 767px) {
    .htl-c7c0bd30-event {
        flex: 0 0 180px;
        min-height: 300px;
    }

    .htl-c7c0bd30-card {
        width: 160px;
        padding: 12px;
    }

    .htl-c7c0bd30-card-title {
        font-size: 13px;
    }

    .htl-c7c0bd30-card-desc {
        font-size: 12px;
    }

    .htl-c7c0bd30-nav-btn {
        width: 36px;
        height: 36px;
    }

    .htl-c7c0bd30-wrapper {
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .htl-c7c0bd30-event {
        flex: 0 0 160px;
        min-height: 280px;
    }

    .htl-c7c0bd30-card {
        width: 140px;
        padding: 10px;
    }
}
