/**
 * Bloc Boutons
 */

.blocBoutons {
    width: 100%;
    padding: 40px 0;
}

.blocBoutons__list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.blocBoutons--align-left .blocBoutons__list {
    justify-content: flex-start;
}

.blocBoutons--align-right .blocBoutons__list {
    justify-content: flex-end;
}

@media (max-width: 767px) {
    .blocBoutons__list {
        flex-direction: column;
        align-items: stretch;
    }

    .blocBoutons__list .btn.btn-primary {
        justify-content: center;
        text-align: center;
    }
}

.blocTexte + .blocBoutons {
    margin-top: 0;
    padding-top: 0;
}