.timeline-20217c40-container {
    position: relative;
    padding: 60px 0 100px;
    margin: 0 20px;
    --timeline-pulse-color: rgba(216, 27, 96, 0.7);
}

.timeline-20217c40-bar {
    position: relative;
    height: 8px;
    border-radius: 4px;
    width: 100%;
}

.timeline-20217c40-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
    border-radius: 4px;
}

.timeline-20217c40-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #D81B60;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.timeline-20217c40-nodes {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 8px;
}

.timeline-20217c40-node {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-20217c40-node .node-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #fff;
    border: 4px solid #e0e0e0;
    transition: all 0.3s ease;
    z-index: 2;
}

.timeline-20217c40-node.current .node-circle {
    animation: timeline-pulse-20217c40 2s infinite;
}

@keyframes timeline-pulse-20217c40 {
    0% {
        box-shadow: 0 0 0 0 var(--timeline-pulse-color);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.timeline-20217c40-content {
    position: absolute;
    top: 30px;
    width: max-content;
    text-align: center;
    transform: translateX(-50%);
    left: 50%;
    color: #333;
}

.timeline-20217c40-content .timeline-title {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 4px;
}

.timeline-20217c40-content .timeline-desc {
    font-size: 0.9em;
    margin-bottom: 4px;
    opacity: 0.8;
}

.timeline-20217c40-content .timeline-date {
    font-size: 0.85em;
    font-weight: 500;
}

@media (max-width: 768px) {
    .timeline-20217c40-container {
        padding: 20px 0 20px 40px;
    }
    .timeline-20217c40-bar {
        width: 8px;
        height: 100%;
        position: absolute;
        top: 0;
        left: 20px;
    }
    .timeline-20217c40-track, .timeline-20217c40-progress {
        width: 100%;
        height: 100%;
    }
    .timeline-20217c40-progress {
        height: auto;
    }
    .timeline-20217c40-nodes {
        position: static;
        width: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 60px;
    }
    .timeline-20217c40-node {
        position: relative;
        top: auto;
        left: auto !important;
        transform: none;
        align-items: flex-start;
    }
    .timeline-20217c40-node .node-circle {
        position: absolute;
        left: -32px;
        top: 0;
        transform: none;
    }
    .timeline-20217c40-content {
        position: static;
        transform: none;
        text-align: left;
    }
}
