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

.ht-e05d3aac-track-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    flex-grow: 1;
    position: relative;
    padding: 150px 20px; /* Space for alternating content above/below */
    margin: 0 40px; /* Space for arrows */
}

.ht-e05d3aac-track-container::-webkit-scrollbar {
    display: none;
}

.ht-e05d3aac-track {
    display: flex;
    position: relative;
    min-width: max-content;
    align-items: center;
}

/* Horizontal Line */
.ht-e05d3aac-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #e5e5e5;
    transform: translateY(-50%);
    z-index: 1;
}

.ht-e05d3aac-event {
    position: relative;
    width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

/* Marker */
.ht-e05d3aac-marker {
    width: 40px;
    height: 40px;
    background-color: #0073e6;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    box-shadow: 0 0 0 4px #fff, 0 2px 5px rgba(0,0,0,0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ht-e05d3aac-marker svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.ht-e05d3aac-event:hover .ht-e05d3aac-marker {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 0 4px #fff, 0 4px 10px rgba(0,0,0,0.15);
}

/* Content Box */
.ht-e05d3aac-content-box {
    width: 100%;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpIn 0.6s ease forwards;
}

@keyframes fadeUpIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ht-e05d3aac-pos-top .ht-e05d3aac-content-box {
    margin-bottom: 60px; /* Space above line */
}

.ht-e05d3aac-pos-bottom .ht-e05d3aac-content-box {
    margin-top: 60px; /* Space below line */
}

/* Typography */
.ht-e05d3aac-date {
    font-size: 0.9em;
    font-weight: bold;
    color: #0073e6;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ht-e05d3aac-title {
    margin: 0 0 10px;
    font-size: 1.2em;
    color: #333;
}

.ht-e05d3aac-desc {
    font-size: 0.95em;
    color: #666;
    line-height: 1.5;
}

/* Navigation Arrows */
.ht-e05d3aac-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    z-index: 10;
    transition: background-color 0.2s, color 0.2s;
}

.ht-e05d3aac-nav-btn:hover {
    background-color: #f5f5f5;
}

.ht-e05d3aac-prev {
    left: 0;
}

.ht-e05d3aac-next {
    right: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .ht-e05d3aac-event {
        width: 250px;
    }
    
    .ht-e05d3aac-track-container {
        padding: 120px 10px;
        margin: 0 30px;
    }
}
