.ht-wrapper-b61e59af {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.ht-container-b61e59af {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 100px 20px;
    position: relative;
    gap: 30px;
}

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

.ht-line-b61e59af {
    position: absolute;
    top: 50%;
    left: 0;
    width: max(100%, max-content);
    height: 4px;
    background-color: #e0e0e0;
    transform: translateY(-50%);
    z-index: 1;
    min-width: 100%;
}

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

.ht-event-b61e59af.pos-top {
    justify-content: flex-end;
    padding-bottom: 70px;
}

.ht-event-b61e59af.pos-bottom {
    justify-content: flex-start;
    padding-top: 70px;
}

.ht-marker-wrapper-b61e59af {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 3px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #333;
    z-index: 3;
    transition: all 0.3s ease;
}

.ht-marker-wrapper-b61e59af svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.ht-content-b61e59af {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    width: 100%;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.ht-content-b61e59af:hover {
    transform: translateY(-5px);
}

.ht-date-b61e59af {
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 8px;
    display: block;
}

.ht-title-b61e59af {
    margin: 0 0 10px 0;
    font-size: 1.25em;
    color: #222;
}

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

.ht-nav-b61e59af {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 10px;
    padding-right: 20px;
}

.ht-nav-btn-b61e59af {
    background: #333;
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, opacity 0.3s ease;
}

.ht-nav-btn-b61e59af:hover {
    background: #555;
}

.ht-nav-btn-b61e59af:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.ht-nav-btn-b61e59af svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .ht-event-b61e59af {
        flex: 0 0 280px;
    }
}

@media (max-width: 767px) {
    .ht-event-b61e59af {
        flex: 0 0 85vw; /* Much better for mobile, uses percentage of viewport */
        max-width: 320px;
    }
    
    .ht-container-b61e59af {
        padding: 80px 15px;
        scroll-snap-type: x mandatory;
    }
    
    .ht-event-b61e59af {
        scroll-snap-align: center;
    }
    
    .ht-nav-b61e59af {
        padding-right: 15px;
    }
}
