.ht-29ae9096-container {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 40px 20px;
    gap: 40px;
    scroll-behavior: smooth;
}

.ht-29ae9096-container::-webkit-scrollbar {
    height: 8px;
}
.ht-29ae9096-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}
.ht-29ae9096-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}
.ht-29ae9096-container::-webkit-scrollbar-thumb:hover {
    background: #888;
}

.ht-29ae9096-container::before {
    content: '';
    position: absolute;
    top: 55px;
    left: 40px;
    right: 40px;
    height: 4px;
    background-color: #ddd;
    z-index: 1;
}

.ht-29ae9096-item {
    position: relative;
    flex: 0 0 280px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ht-29ae9096-node {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #3498db;
    border: 4px solid #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.ht-29ae9096-item:hover .ht-29ae9096-node {
    background-color: #2980b9;
    transform: scale(1.1);
}

.ht-29ae9096-date {
    font-size: 0.85em;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #777;
}

.ht-29ae9096-title {
    font-size: 1.2em;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #333;
}

.ht-29ae9096-description {
    font-size: 0.9em;
    color: #666;
    line-height: 1.5;
}

@media screen and (max-width: 767px) {
    .ht-29ae9096-container {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 40px;
        gap: 30px;
    }
    
    .ht-29ae9096-container::before {
        top: 40px;
        bottom: 40px;
        left: 54px;
        right: auto;
        width: 4px;
        height: auto;
    }
    
    .ht-29ae9096-item {
        flex: 1 1 auto;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        width: 100%;
        gap: 20px;
    }
    
    .ht-29ae9096-node {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .ht-29ae9096-content {
        margin-top: 4px;
    }
}
