/* 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: 1.2em 0;
    font-family: inherit;
    box-shadow: inset 0 -1px 3px rgba(0,0,0,0.1);
}

/* Suppression de la croix bleue en arrière-plan */
body::before,
body::after {
    content: none;
}

/* Liens globaux : bleu ciel pastel, hover rose poudré */
a {
    color: #7eaed9; /* bleu ciel doux */
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
}

a:hover,
a:focus {
    color: #e7b7b7; /* rose poudré */
    border-bottom: 1px solid #e7b7b7;
    outline: none;
}

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

/* Cartes d’articles : ombre rose pâle légère, bord rond */
.blog-card {
    background-color: #ffffff;
    border: 1px solid #d9c8c8; /* gris clair rosé */
    border-radius: 12px;
    padding: 1.5rem 1.2rem;
    width: 320px;
    box-shadow: 0 4px 10px rgba(231, 183, 183, 0.15); /* ombre rose pâle */
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.blog-card:hover {
    box-shadow: 0 8px 20px rgba(231, 183, 183, 0.3);
    transform: translateY(-4px);
}

/* Titres dans les cartes : bleu pastel */
.blog-card h2 {
    color: #7eaed9; /* bleu ciel doux */
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-weight: bold;
}

/* Extraits texte dans les cartes : gris moyen */
.blog-card p {
    color: #555555;
    line-height: 1.5;
    font-size: 1em;
    margin-bottom: 1rem;
}

/* Boutons : rose poudré, texte noir, hover bleu pastel */
.button {
    display: inline-block;
    background-color: #e7b7b7;  /* rose poudré */
    color: #000000;             /* texte noir */
    padding: 0.55em 1.2em;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(231, 183, 183, 0.4);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.button:hover {
    background-color: #7eaed9;  /* bleu ciel doux */
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(126, 174, 217, 0.6);
}
