.notre-histoire {
    color: var(--white);
    margin: 3rem 0;
    max-height: 800px;
    overflow: scroll;
}

.yearly-update-header {
    display: flex;
    gap: 16px;
}

.straight-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.straight-line .cercle-jaune-wrapper {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-left: 30px; */
}

.straight-line .cercle-jaune {
    width: 20px;
    height: 20px;
    background-color: var(--white);
    /* Default white */
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    /* Smooth animation */
    transform: scale(1);
}

/* Active state for the circle in view */
.straight-line .cercle-jaune.active {
    background-color: #f3c204;
    box-shadow: 0 0 10px rgba(243, 194, 4, 0.5);
}

.straight-line .ligne-verticale-wrapper {
    display: flex;
    justify-content: end;
    margin-left: 3.5px;
}

.straight-line .ligne-verticale-wrapper-top {
    height: 50px;
}

.straight-line .ligne-verticale-wrapper-bottom {
    min-height: 200px;
}

.straight-line .ligne-verticale-wrapper .ligne-verticale {
    border-left: solid;
    border-width: 2.5px;
    border-color: white;
    border-radius: 5px;
    margin-right: 5px;
}

.year-update {
    padding-top: 50px;
}

.year-desktop {
    display: none;
    font-size: var(--font-size-32);
    color: var(--white);
}

.year-update .year-mobile {
    display: flex;
    align-items: center;
    font-size: var(--font-size-32);
    font-weight: 400;
    color: var(--white);
}

.year-update .year-header {
    min-height: 150px;
}

.year-update .title-details {
    margin-bottom: 20px;
    font-size: var(--font-size-18);
    text-transform: uppercase;
    line-height: 1.5em;
    color: var(--white);
    /* min-height: 18px; */
}

.year-update .year-text {
    line-height: 18px;
    font-size: var(--font-size-16);
}

@media (min-width: 768px) {
    #content .our-history-section {
        padding-left: calc(10% + 40px);
        padding-right: calc(10% + 40px);
    }

    .yearly-update-header {
        gap: 50px;
    }

    .year-update .title-details {
        width: auto;
        font-size: var(--font-size-20);
    }

    .year-update .year-text {
        width: 75%;
        font-size: var(--font-size-20);
    }

}

@media (min-width: 1024px) {
    .notre-histoire {
        width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .yearly-update-header {
        position: relative;
        padding-left: 100px;
    }

    .year-update .year-mobile {
        position: absolute;
        left: 0;
        top: 60px;
    }

    /* Active state for the circle in view */
    .straight-line .cercle-jaune.active {
        transform: scale(1.4);
    }

    .straight-line .ligne-verticale-wrapper-bottom {
        min-height: 150px;
    }
}