/* Timeline Section */

/* Each slide draws a segment of the green line at its bottom, creating a continuous line */
.timeline-slider .card-slider .swiper-slide {
    padding-bottom: 40px;
    position: relative;
}

.timeline-slider .card-slider .swiper-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: -20px;
    height: 4px;
    background-color: var(--color-green);
    pointer-events: none;
}

.timeline-slider .card-slider .swiper-slide:last-child::after {
    right: 0;
}
