/* 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 : jaune clair pour rappel, texte noir */
header, footer {
    background-color: #FEEA7F; /* jaune clair pastel pour douceur */
    color: #000000;            /* texte noir */
    text-align: center;
    padding: 1em 0;
    font-family: inherit;
}
/* Barres verticales bleu & rouge en arrière-plan */
body::before,
body::after {
    content: "";
    position: fixed;
    z-index: -1;
}
/* Partie verticale bleue */
body::before {
    top: 0;
    bottom: 0;
    left: 0;
    width: 15%; /* bleu à gauche du drapeau */
    background-color: #002B7F; /* bleu drapeau roumain */
}
/* Partie verticale rouge */
body::after {
    top: 0;
    bottom: 0;
    right: 0;
    width: 15%; /* rouge à droite du drapeau */
    background-color: #CE1126; /* rouge drapeau roumain */
}
/* Liens globaux : bleu foncé du drapeau, hover jaune */
a {
    color: #002B7F;            /* bleu drapeau roumain */
    text-decoration: none;
}
a:hover,
a:focus {
    color: #FCD116;            /* jaune drapeau roumain */
    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 jaune */
.blog-card {
    background-color: #ffffff;             /* blanc */
    border: 1px solid #FCD116;             /* bord jaune */
    border-radius: 8px;
    padding: 1rem;
    width: 300px;
    box-shadow: 0 0 10px rgba(252, 209, 22, 0.3); /* ombre jaune douce */
}
/* Titres dans les cartes : rouge */
.blog-card h2 {
    color: #CE1126;             /* rouge drapeau roumain */
    font-size: 1.2em;
    margin-top: 0;
}
/* Boutons éventuels : fond rouge, texte blanc, hover bleu */
.button {
    display: inline-block;
    background-color: #CE1126;  /* rouge */
    color: #ffffff;             /* texte blanc */
    padding: 0.5em 1em;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.button:hover {
    background-color: #002B7F;  /* bleu */
}
