/* Section Actualités Modernes */
.modern-news-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.modern-news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Article principal */
.featured-news-card {
    background: var(--blanc);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.featured-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.featured-news-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.featured-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-news-card:hover .featured-news-image img {
    transform: scale(1.05);
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.featured-news-content {
    padding: 2rem;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.news-date {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.news-badge {
    background: var(--jaune-or);
    color: var(--bleu-institutionnel);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.featured-news-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-news-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bleu-institutionnel);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.news-read-more:hover {
    color: var(--jaune-or);
    transform: translateX(5px);
}

/* Articles secondaires */
.compact-news-card {
    background: var(--blanc);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.compact-news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.compact-news-content {
    flex: 1;
}

.compact-news-card .news-date {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    display: block;
}

.compact-news-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.compact-news-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.compact-news-link {
    color: var(--bleu-institutionnel);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.compact-news-link:hover {
    color: var(--jaune-or);
}

.compact-news-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.news-cta {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .modern-news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .featured-news-image {
        height: 200px;
    }
    
    .featured-news-content {
        padding: 1.5rem;
    }
    
    .featured-news-card h3 {
        font-size: 1.25rem;
    }
    
    .compact-news-card {
        flex-direction: column;
        text-align: center;
    }
    
    .compact-news-image {
        width: 100%;
        height: 120px;
        order: -1;
    }
}

@media (max-width: 480px) {
    .modern-news-section {
        padding: 3rem 0;
    }
    
    .compact-news-card {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }
}