/* Actualités juridiques */
.news-index-hero {
    padding: 82px 0 76px;
    background: #f6fbfd;
    border-bottom: 1px solid var(--line-soft);
}

.news-index-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
    gap: clamp(48px, 8vw, 110px);
    align-items: center;
}

.news-index-hero h1 {
    max-width: 850px;
    margin: 13px 0 22px;
    font-size: clamp(2.8rem, 5vw, 4.9rem);
    letter-spacing: -.058em;
}

.news-index-hero .lead {
    max-width: 730px;
    margin: 0;
    font-size: 1.02rem;
}

.news-index-hero aside {
    padding: 28px;
    color: #fff;
    background: #173f66;
    border-radius: 16px;
    box-shadow: 0 24px 55px rgba(23, 63, 102, .17);
}

.news-index-hero aside > svg {
    width: 30px;
    height: 30px;
    margin-bottom: 26px;
    color: #72d2c6;
}

.news-index-hero aside strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
}

.news-index-hero aside p {
    margin: 0;
    color: #dce8f2;
    font-size: .76rem;
    line-height: 1.65;
}

.news-index-list {
    background: #fff;
}

.news-index-grid {
    display: grid;
    gap: 34px;
}

.news-featured-card {
    display: grid;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
}

.news-featured-image {
    display: block;
    min-height: 420px;
    overflow: hidden;
}

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

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

.news-featured-card > div {
    display: flex;
    padding: clamp(30px, 5vw, 64px);
    flex-direction: column;
    justify-content: center;
}

.news-card-meta {
    display: flex;
    margin: 0 0 18px;
    color: var(--ink-soft);
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    font-size: .66rem;
}

.news-card-meta span:first-child {
    padding: 5px 8px;
    color: var(--blue-dark);
    background: var(--blue-pale);
    border-radius: 6px;
    font-weight: 800;
}

.news-card-meta time::after {
    margin-left: 9px;
    color: #aebdca;
    content: "·";
}

.news-featured-card h3 {
    margin: 0 0 17px;
    font-size: clamp(1.7rem, 3vw, 2.55rem);
    line-height: 1.1;
}

.news-featured-card h3 a {
    color: var(--ink);
}

.news-featured-card > div > p:not(.news-card-meta) {
    margin: 0 0 24px;
    color: var(--ink-soft);
    font-size: .82rem;
    line-height: 1.7;
}

.news-card-action {
    display: inline-flex;
    color: var(--blue-dark);
    align-items: center;
    gap: 8px;
    font-size: .72rem;
    font-weight: 800;
}

.news-card-action svg {
    width: 16px;
    height: 16px;
    transition: transform .2s ease;
}

.news-card-action:hover svg {
    transform: translateX(3px);
}

@media (max-width: 980px) {
    .news-index-hero-grid {
        grid-template-columns: 1fr;
    }

    .news-index-hero aside {
        max-width: 680px;
    }
}

@media (max-width: 760px) {
    .news-index-hero {
        padding: 54px 0 58px;
    }

    .news-index-hero h1 {
        font-size: clamp(2.45rem, 11vw, 3.55rem);
    }

    .news-featured-card {
        grid-template-columns: 1fr;
    }

    .news-featured-image {
        min-height: 0;
        aspect-ratio: 1200 / 630;
    }
}
