/* 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 : bleu NL, rouge au hover */
a {
    color: #21468B;            /* bleu drapeau NL */
    text-decoration: none;
}
a:hover,
a:focus {
    color: #AE1C28;            /* rouge drapeau NL */
    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 : neutres avec accents NL */
.blog-card {
    background-color: #f7f7f7;              /* neutre clair */
    border: 1px solid #21468B;              /* bord bleu */
    border-radius: 8px;
    padding: 1rem;
    width: 300px;
    box-shadow: 0 0 10px rgba(174, 28, 40, 0.25); /* ombre rouge douce */
}

/* Titres en bleu */
h1, h2 {
    font-weight: normal;
    color: #21468B; /* bleu NL */
}

/* Extraits en rouge */
.excerpt {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: #AE1C28; /* rouge NL */
}

/* Liens du footer clairement visibles sur gris clair */
footer nav a {
    margin: 0 0.5rem;
    color: #21468B; /* bleu sur gris clair */
}
footer nav a:hover,
footer nav a:focus {
    color: #AE1C28; /* rouge au survol */
    text-decoration: underline;
}
