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

/* 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;
    font-family: inherit;
}

/* Croisillon bleu finlandais en arrière-plan */
body::before,
body::after {
    content: "";
    position: fixed;
    background-color: #003580; /* bleu drapeau finlandais */
    z-index: -1;
}

/* Partie verticale de la croix */
body::before {
    top: 0;
    bottom: 0;
    left: 20%;
    width: 6%; /* environ 3/18ème de la largeur */
}

/* Partie horizontale de la croix */
body::after {
    top: 40%;
    left: 0;
    right: 0;
    height: 6%; /* environ 3/18ème de la hauteur */
}

/* Liens globaux : bleu drapeau finlandais, hover gris foncé */
a {
    color: #003580;            /* bleu finlandais */
    text-decoration: none;
}
a:hover,
a:focus {
    color: #555555;            /* gris foncé au hover */
    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 blanc, bord bleu finlandais */
.blog-card {
    background-color: #ffffff;             /* blanc */
    border: 1px solid #003580;             /* bord bleu finlandais */
    border-radius: 8px;
    padding: 1rem;
    width: 300px;
    box-shadow: 0 0 10px rgba(0, 53, 128, 0.2); /* ombre bleue douce */
}

/* Titres dans les cartes : bleu finlandais */
.blog-card h2 {
    color: #003580;             /* bleu */
    font-size: 1.2em;
    margin-top: 0;
}

/* Boutons éventuels : fond bleu finlandais, texte blanc, hover gris foncé */
.button {
    display: inline-block;
    background-color: #003580;  /* bleu */
    color: #ffffff;             /* texte blanc */
    padding: 0.5em 1em;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.button:hover {
    background-color: #555555;  /* gris foncé */
}
