/* Commentaire: Feuille de style pour la page Actualités. */

.news-summary {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.news-summary__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.85rem;
    font-weight: 700;
    color: #67081d;
    margin-bottom: 0.75rem;
}

.news-summary__title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.news-summary__text {
    font-size: 1.05rem;
    max-width: 760px;
    margin-bottom: 0;
    color: #2b2b2b;
}

.news-filters {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    margin-bottom: 2.5rem;
}

.news-filters__count {
    font-weight: 600;
    color: #6c757d;
}

.news-card {
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.news-card__media {
    background: #f3f3f3;
}

.news-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card__meta {
    margin-bottom: 0.75rem;
}

.news-card__title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.news-card__excerpt {
    font-size: 1rem;
    color: #4b4b4b;
    margin-bottom: 1.5rem;
}

.news-empty {
    padding: 2rem;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 768px) {
    .news-summary {
        padding: 2rem 1.5rem;
    }

    .news-filters {
        padding: 1.5rem;
    }
}
