.mahii-timeline {
    position: relative;
    --timeline-height: 0px; /* Variable CSS pour la hauteur dynamique */
}

.mahii-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% - 1px);
    width: 2px;
    height: var(--timeline-height); /* Utiliser la variable CSS */
    background-color: #000;
    z-index: -1;
    transition: height 0.3s ease-out; /* Animation fluide */
}

.mahii-timeline-single {
    display: flex;
    flex-direction: column;
}

.mahii-timeline-single-title {
    display: inline-block;
    margin: 30px auto;
    padding: 10px 20px;
    background-color: #FFF;
    border-radius: 20px;
}

@media (min-width: 1024px) {

    .mahii-timeline-single-content {
        display: flex;
        gap: 50px;
        align-items: center;
    }

    .mahii-timeline-single-content > div {
        width: 50%;
    }

    .mahii-timeline .mahii-timeline-single:nth-child(even) .mahii-timeline-single-content {
        flex-direction: row-reverse;
    }

    .mahii-timeline .mahii-timeline-single:nth-child(even) .mahii-timeline-single-content > div {
        text-align: right;
    }

    
}