.ht-wrapper-0a2f9df0 {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.ht-scroll-container-0a2f9df0 {
    overflow-x: auto;
    overflow-y: visible; /* Changed from hidden to visible */
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
    position: relative;
    padding: 180px 40px; /* Increased padding to give tiles more room */
    margin: -30px 0; /* Offset padding if needed visually */
}
.ht-scroll-container-0a2f9df0::-webkit-scrollbar {
    display: none;
}

.ht-line-0a2f9df0 {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #ddd;
    transform: translateY(-50%);
    min-width: 100%;
    z-index: 1;
}

.ht-events-0a2f9df0 {
    display: inline-flex;
    position: relative;
    min-width: max-content;
    gap: 80px;
    align-items: center; /* Ensure vertical centering */
    padding-bottom: 20px; /* Extra breathing room at the very bottom */
}

.ht-item-0a2f9df0 {
    position: relative;
    width: 250px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 2;
}
.ht-item-0a2f9df0.ht-visible-0a2f9df0 {
    opacity: 1;
    transform: translateY(0);
}

.ht-marker-wrap-0a2f9df0 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.ht-marker-0a2f9df0 {
    width: 40px;
    height: 40px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

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

.ht-content-0a2f9df0 {
    position: absolute;
    width: 100%;
    text-align: center;
    background-color: #fffff0;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    z-index: 10;
}

.ht-pos-top-0a2f9df0 .ht-content-0a2f9df0 {
    bottom: 40px;
}

.ht-pos-bottom-0a2f9df0 .ht-content-0a2f9df0 {
    top: 40px;
}

.ht-date-0a2f9df0 {
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.ht-title-0a2f9df0 {
    margin: 0 0 10px;
    font-size: 18px;
}

.ht-desc-0a2f9df0 {
    margin: 0;
    font-size: 14px;
}

.ht-nav-btn-0a2f9df0 {
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: absolute;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.ht-nav-btn-0a2f9df0:hover {
    background: rgba(0,0,0,0.8);
}
.ht-nav-prev-0a2f9df0 {
    left: 0;
}
.ht-nav-next-0a2f9df0 {
    right: 0;
}

@media (max-width: 768px) {
    .ht-events-0a2f9df0 {
        gap: 40px;
    }
    .ht-item-0a2f9df0 {
        width: 200px;
    }
}