.bloc-chiffres-cles {
    margin: 24px 0;
    padding: 80px 0 90px;
    background: var(--secondary-gris-perle) url('/profiles/fabernovel/themes/custom/datasyndex/img/header-bg.png') repeat-x bottom center;
    text-align: center;
}

.bloc-chiffres-cles .container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bloc-chiffres-cles .block-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media screen and (min-width: 1280px) {
    .bloc-chiffres-cles {
        margin: 40px 0;
    }

    .bloc-chiffres-cles .container {
        gap: 48px;
    }

    .bloc-chiffres-cles .block-header {
        gap: 32px;
    }
}

.chiffres {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.chiffre {
    flex: 0 0 50%;
    gap: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.chiffre-title {
    background: var(--primary-rouge-framboise, #E93F6D);
    padding: 4px 8px;
    color: var(--primary-blanc);
    font-family: var(--title-font-family);
    font-size: 60px;
    font-weight: 700;
    line-height: 130%; /* 72px */
    letter-spacing: -1.2px;
    text-transform: uppercase;
    display: inline-block;
}

.chiffre-description {
    font-weight: 600;
}

@media screen and (min-width: 1280px) {
    .chiffres {
        flex-wrap: nowrap;
    }
    .chiffre {
        flex: 0 0 20%;
        margin-bottom: 0;
    }
}

/**
 * ============================
 * Bloc Atouts
 * ============================
 */

.bloc-atouts {
    margin: 24px 0;
}

.bloc-atouts .container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media screen and (min-width: 1280px) {
    .bloc-atouts {
        margin: 40px 0;
    }

    .bloc-atouts .container {
        flex-direction: row;
        gap: 32px;
    }
    .bloc-atouts .container > * {
        flex: 1;
    }
}

.atout {
    position: relative;
}

.atout .atout__content {
    flex: 1;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    border-radius: 4px;
    box-sizing: border-box;
    height: 100%;
}

@media screen and (min-width: 1280px) {
    .atout .atout__content {
        padding: 40px;
    }
}

.atout.atout--vert .atout__content {
    background: var(--secondary-vert-pomme);
}

.atout.atout--bleu .atout__content {
    background: var(--secondary-bleu-ciel);
}

.atout.atout--rouge .atout__content {
    background: #EC8389;
}

.atout-title {
    font-family: var(--title-font-family);
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
}

.atout-text {
    font-size: 16px;
}

.atout-icon {
    height: 84px;
    width: auto;
}