.angie-timeline-wrapper-6af196e0 {
    padding: 20px 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 50px;
}

.angie-timeline-6af196e0 {
    position: relative;
    padding: 100px 0; /* Add space for up/down items */
    margin: 0;
    list-style: none;
    display: flex;
    min-width: max-content;
    align-items: center;
}

.angie-timeline-6af196e0::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px; /* Default thicker line */
    background-color: #cbd5e1;
    transform: translateY(-50%);
    border-radius: 4px;
}

.angie-timeline-item-6af196e0 {
    position: relative;
    width: 280px;
    flex-shrink: 0;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

/* Connector lines from main line to content box */
.timeline-connector-6af196e0 {
    position: absolute;
    left: 50%;
    width: 2px;
    background-color: #cbd5e1;
    z-index: 0;
    transition: all 0.3s ease;
}

.timeline-up-6af196e0 .timeline-connector-6af196e0 {
    bottom: 50%;
    height: 60px;
}

.timeline-down-6af196e0 .timeline-connector-6af196e0 {
    top: 50%;
    height: 60px;
}

.timeline-node-6af196e0 {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #3b82f6;
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px #e2e8f0;
    z-index: 2;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-panel-6af196e0 {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
    border-top: 4px solid #3b82f6;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-up-6af196e0 .timeline-panel-6af196e0 {
    margin-bottom: 150px; /* Push up */
}

.timeline-down-6af196e0 .timeline-panel-6af196e0 {
    margin-top: 150px; /* Push down */
}

/* Hover Animations */
.angie-timeline-item-6af196e0:hover .timeline-node-6af196e0 {
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.timeline-up-6af196e0:hover .timeline-panel-6af196e0 {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.timeline-down-6af196e0:hover .timeline-panel-6af196e0 {
    transform: translateY(10px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.angie-timeline-item-6af196e0:hover .timeline-connector-6af196e0 {
    width: 4px;
    margin-left: -1px; /* Adjust for increased width */
}

.timeline-date-6af196e0 {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-title-6af196e0 {
    margin: 0 0 12px 0;
    font-size: 1.25rem;
    color: #0f172a;
    font-weight: 700;
}

.timeline-content-6af196e0 {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .angie-timeline-item-6af196e0 {
        width: 240px;
        padding: 0 10px;
    }
}