#edito {

    background-color: var(--clr-gold);
    color: var(--clr-blue);

    font-size: 16px;
    line-height: 1.2em;
}

#edito h1 {
    font-size: 30px;
    line-height: 1.2em;
    font-family: var(--vef-font-family-ss);
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 40px;
}

#edito h1 strong {
    font-weight: 500;
}



/* Section Pictos - Mobile First */
#pictos {
    padding-top: 40px;
    padding-bottom: 40px;
}

ul.pictos {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
}

ul.pictos > li {
    width: calc(50% - 30px);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}

ul.pictos > li > i {
    font-size: 40px;
    color: var(--clr-blue);
}

ul.pictos > li > p {
    font-size: 14px;
    color: var(--clr-blue);
    margin: 0;
    font-weight: 400;
    line-height: 1.2;
}

@media (min-width: 700px) {
    #edito {

        font-size: 22px;
    }

    #edito h1 {
        font-size: 36px;
    }


    #pictos {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    ul.pictos > li {
        width: calc((100% - (4 * var(--gap-cards))) / 5);
    }


}