body {
    background-color: #F9F7F2;
    color: #1A1A1A;
    font-family: 'Open Sans', sans-serif;
}

h1,
h2,
h3,
.font-serif {
    font-family: 'Playfair Display', serif;
}

/* Ajoute ceci dans ton fichier CSS ou bloc <style> */
.article-content {
    white-space: pre-wrap;
    /* Respecte les sauts de ligne du clavier */
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 1.5rem;
    display: block;
}

/* Style pour les liens */
.article-content a {
    color: #4A0E0E !important;
    /* Ton Mahogany */
    font-weight: bold !important;
    text-decoration: underline !important;
}

.article-content a:hover {
    color: #B08D57 !important;
    /* Ton Goldenrod */
}

/* Style pour les listes (si tu mets des tirets) */
.article-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article-content li {
    list-style-type: disc;
    margin-bottom: 0.5rem;
}