.paragraphs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

    @media (max-width: 991px) {
        justify-content: space-between;
    }

    .col-1 {
        width: calc(100% / 12 * 1);
    }

    .col-2 {
        width: calc(100% / 12 * 2);
    }

    .col-3 {
        width: calc(100% / 12 * 3);
    }

    .col-4 {
        width: calc(100% / 12 * 4);
    }

    .col-5 {
        width: calc(100% / 12 * 5);
    }

    .col-6 {
        width: calc(100% / 12 * 6);
    }

    .col-7 {
        width: calc(100% / 12 * 7);
    }

    .col-8 {
        width: calc(100% / 12 * 8);
    }

    .col-9 {
        width: calc(100% / 12 * 9);
    }

    .col-10 {
        width: calc(100% / 12 * 10);
    }

    .col-11 {
        width: calc(100% / 12 * 11);
    }

    .col-12 {
        width: 100%;
    }

    .col-auto {
        width: auto;

        @media (min-width: 992px) {
            flex: 1;
        }
    }

    /* Responsive */
    [class*="col-"] {
        @media (min-width: 572px) {
            margin: 0 -20px;
            padding: 0 20px;
        }

        @media (min-width: 573px) and (max-width: 991px) {
            width: 50% !important;
        }

        @media (max-width: 572px) {
            width: 100% !important;
        }
    }

    .section__btn {

        a,
        .bouton {
            margin: auto;
        }
    }
}

/*
 * Encadré formule/équation — composant réutilisable.
 * Usage : saisir un <blockquote> dans le wysiwyg ACF.
 * Applicable dans tout wysiwyg du thème (paragraphs, content, basic_2cols…).
 */
.paragraphs blockquote,
.builder blockquote {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 1.5rem 0;
    padding: 1.75rem 2rem;
    background-color: var(--color-bg-section-alt);
    border-radius: var(--border-radius);
    font-family: var(--serif-italic-font);
    font-style: italic;
    font-weight: var(--semibold);
    color: var(--color-primary);
    font-size: 1.25rem;
    letter-spacing: 0.01em;

    @media (min-width: 992px) {
        font-size: 1.5rem;
    }

    sub,
    sup {
        font-size: 0.65em;
    }

    p {
        margin: 0;
        font-size: 24px;
    }
}