/* === TYPOGRAPHIE === */

/* Gestion globale des tirets de coupure */
body, p, .content, .title, .subtitle, h1, h2, h3, h4, h5, h6 {
    hyphens: auto;
    word-break: break-word;
}

.text-body {
    font-family: var(--font-family);
    font-size: var(--font-size-lg);
    hyphens: auto;
    word-break: break-word;
}

.text-body.is-xl {
    font-size: var(--font-size-xl);
}

.text-body.is-white {
    color: var(--text-on-primary);
}


@media only screen and (max-width : 768px) {
    .text-body {
        font-size: var(--font-size-xl);
    }
}