/* HERO ACTUALITÉS */
.news-hero {
    background: radial-gradient(1200px 520px at 20% 0%, rgba(76, 73, 212, .12), transparent 60%),
        radial-gradient(900px 480px at 90% 0%, rgba(198, 166, 100, .12), transparent 60%);
    padding: clamp(2.4rem, 6vw, 4.4rem) 0 2.4rem;
}

.news-hero-inner {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.news-hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .45rem .9rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: .4px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(76, 73, 212, .25);
    color: var(--anthracite);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    margin-bottom: .7rem;
}

.news-hero h1 {
    font-size: clamp(2rem, 3.4vw, 3rem);
    margin-bottom: .6rem;
}

.news-hero h1 span {
    color: var(--champagne);
}

.news-hero p {
    max-width: 640px;
    margin: 0 auto;
    color: #3A3844;
}

/* SECTIONS ACTUALITÉS (alternance de fonds) */
.news-section {
    padding: clamp(2.4rem, 5vw, 4rem) 0;
}

.news-section-featured {
    background: #FFFFFF;
}

.news-section-archive {
    background: #F4F3FF;
}

/* GRILLE DES ARTICLES EN VEDETTE */
.news-grid {
    display: grid;
    gap: var(--g-gap);
}

.news-grid-featured {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr) minmax(0, 1.4fr);
}

@media (max-width: 1000px) {
    .news-grid-featured {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .news-grid-featured {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* CARTE ARTICLE */
.news-card {
    text-align: left;
}

.news-card-main {
    grid-row: span 2;
}

@media (max-width: 1000px) {
    .news-card-main {
        grid-row: auto;
    }
}

.news-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .6rem;
    font-size: .9rem;
    color: #7A7787;
    margin-bottom: .6rem;
}

.news-card h3 {
    text-align: left;
    margin-bottom: .4rem;
}

.news-card h3 a {
    text-decoration: none;
}

.news-card h3 a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.news-card p {
    text-align: left;
    margin-bottom: .9rem;
    color: #4C485A;
}

/* PILLS / TAGS */
.news-pill {
    display: inline-flex;
    align-items: center;
    padding: .2rem .65rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    background: rgba(76, 73, 212, .1);
    color: var(--warm-gray);
}

.news-pill-soft {
    background: rgba(198, 166, 100, .12);
}

/* LIEN "LIRE L’ARTICLE" */
.news-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-weight: 600;
    font-size: .95rem;
    color: var(--primary);
}

.news-link svg {
    width: 17px;
    height: 17px;
}

/* LISTE / ARCHIVE SIMPLE */
.news-list {
    display: grid;
    gap: .9rem;
    margin-top: .6rem;
}

.news-list-item {
    padding: .85rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(76, 73, 212, .10);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
    transition: transform .2s ease, box-shadow .25s ease, background .25s ease;
}

.news-list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .12);
    background: #FFFFFF;
}

.news-list-meta {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .85rem;
    color: #7A7787;
    margin-bottom: .2rem;
}

.news-list-tag {
    padding: .15rem .55rem;
    border-radius: 999px;
    border: 1px solid rgba(76, 73, 212, .22);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.news-list-item h3 {
    text-align: left;
    font-size: 1.02rem;
    margin: 0;
}

.news-list-item h3 a {
    text-decoration: none;
}

.news-list-item h3 a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}