/* Base */
body {
    font-family: 'Georgia', serif;
    background-color: #ffffff; /* fond blanc */
    color: #000000;            /* texte noir */
    margin: 0;
    padding: 0;
}

/* En-tête & pied de page : gris clair, lisible partout */
header, footer {
    background-color: #f0f0f0; /* gris très clair */
    color: #000000;            /* texte noir */
    text-align: center;
    padding: 1em 0;
}

/* Liens globaux : jaune (belge), rouge au hover */
a {
    color: #FFD700;            /* jaune belge */
    text-decoration: none;
}
a:hover,
a:focus {
    color: #E30613;            /* rouge belge */
    text-decoration: underline;
    outline: none;
}

/* Grille liste d’articles */
.blog-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
}

/* Cartes d’articles : fond neutre, accents belges */
.blog-card {
    background-color: #f7f7f7;                     /* neutre clair */
    border: 1px solid #FFD700;                     /* bord jaune */
    border-radius: 8px;
    padding: 1rem;
    width: 300px;
    box-shadow: 0 0 10px rgba(227, 6,
