/* Style des cartes d'actualités */
.news-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Image et Badge de date */
.news-img-wrap {
    position: relative;
    overflow: hidden;
}

.news-img-wrap img {
    transition: transform 0.5s ease;
}

.news-card:hover .news-img-wrap img {
    transform: scale(1.1);
}

.date-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #eea412;
    /* Orange ESPGMP */
    color: white;
    padding: 8px 15px;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Contenu de la carte */
.news-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category-label {
    color: #eea412;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-title a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s;
}

.news-title a:hover {
    color: #eea412;
}

.news-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Lien "Lire la suite" élégant */
.read-more-link {
    font-weight: 600;
    color: #222;
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: auto;
    display: inline-block;
}

.read-more-link i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.read-more-link:hover i {
    transform: translateX(5px);
}

/* Titre moderne */
.modern-subtitle {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #333;
}

.modern-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #eea412;
}

/* ===== HERO NEWS ===== */
.hero-news {
    position: relative;
    height: 420px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-news::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4));
}

.hero-news .container {
    position: relative;
    z-index: 2;
}

/* ===== ARTICLE CARD ===== */
.article-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.article-image {
    height: 380px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== ARTICLE CONTENT ===== */
.article-body {
    font-size: 1.08rem;
    line-height: 1.9;
    color: #444;
}

/* ===== SIDEBAR ===== */
.sidebar-card {
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.sidebar-card:hover {
    transform: translateY(-3px);
}

/* ===== SOCIAL BUTTONS ===== */
.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}