.bandeau_news { 
   max-width: 900px; 
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff; 
    padding: 30px; 
    border-radius: 24px; 
    text-align: center; 
    font-size: 1.8rem; 
    box-shadow: 0 10px 25px rgba(30, 60, 114, 0.2);
    border: none;
    font-weight: bold; /* ou 700 pour un gras standard */
    /* Centrage horizontal avec maintien de l'espace en bas */
    margin: 0 auto 25px auto;
}


/* --- MODULE NEWS - STRUCTURE GENERALE --- */
.news-feed {
    max-width: 1200px;
    margin: 20px auto;
    padding: 10px;
}

.news-card {
    display: flex;
    gap: 30px;
    background: #fff;
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    /* transition: transform 0.2s;  <-- Tu peux supprimer cette ligne */
}

.news-image img {
    width: 280px; 
    height: 180px; 
    object-fit: cover;
    border-radius: 10px;
}

.news-body {
    flex: 2;
}

.news-card:hover {
    /* On enlève le translateY ici */
    box-shadow: 0 6px 25px rgba(0,0,0,0.1); /* On peut garder une ombre plus forte ou l'enlever aussi */
}

/* --- TEXTES ET LIENS --- */
.titre_news {
    font-size: 1.3rem;
    color: #2c6faa;
    font-weight: bold;
    margin-bottom: 5px;
    line-height: 1.2;
}

.titre_categorie {
    font-size: 0.85rem;
    color: #e67e22;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.texte_extrait {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.lire_suite {
    display: inline-block;
    margin-top: 10px;
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

/* --- PAGINATION --- */
.pagination {
    margin: 40px 0;
    text-align: center; /* Important pour centrer les numéros */
}

.btn-page, .num-page {
    padding: 8px 15px;
    margin: 0 4px;
    border-radius: 20px;
    background: #fff;
    color: #2c6faa;
    text-decoration: none;
    border: 1px solid #2c6faa;
    transition: 0.3s;
}

.active-page, .btn-page:hover {
    background: #2c6faa;
    color: #fff !important;
}




/* --- ADAPTATION MOBILE (TOUJOURS EN DERNIER) --- */
@media (max-width: 768px) {
    .news-card {
        flex-direction: column;
        gap: 15px;
    }
    .news-image img {
        width: 100%;
        height: 200px;
    }
    .news-feed {
        width: 98%;
    }
}