/* ─────────────────────────────────────────────
    mentions_legales.css — Page mentions légales
    Dépend de : common.css
    Utilise depuis common.css :
        .page-hero, .page-hero-eyebrow, .section-label,
        .info-block
───────────────────────────────────────────── */

/* ── CORPS DE PAGE ── */
.legal-body {
    max-width: 860px;
    margin: 0 auto;
    padding: 72px 24px 96px;
}

/* ── SECTIONS ── */
.legal-section {
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border);
}
.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.legal-section p,
.legal-section li {
    font-size: 14px;
    line-height: 1.9;
    color: var(--gray-500);
}

.legal-section p + p { margin-top: 12px; }

.legal-section ul {
    padding-left: 20px;
    margin-top: 12px;
}

.legal-section li { 
    margin-bottom: 6px; 
}
.ml-hero {
        background: var(--gray-900);
        color: #fff;
        padding: 60px 0 40px;
    }

    .ml-eyebrow {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 0.875rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--red);
        margin-bottom: 16px;
    }

    .ml-eyebrow::before {
        content: '';
        display: block;
        width: 28px;
        height: 2px;
        background: var(--red);
    }

    .ml-title {
        font-family: var(--font-display);
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 900;
        color: #fff;
        margin: 0;
    }

    .ml-content {
        padding: 60px 0 80px;
        background: #fff;
    }

    .ml-inner {
        max-width: 760px;
        margin: 0 auto;
    }

    .ml-section {
        margin-bottom: 40px;
        padding-bottom: 40px;
        border-bottom: 1px solid var(--border);
    }

    .ml-section:last-child {
        border-bottom: none;
    }

    .ml-section h2 {
        font-family: var(--font-display);
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--gray-900);
        margin-bottom: 16px;
    }

    .ml-section p {
        font-size: 0.875rem;
        color: var(--gray-500);
        line-height: 1.9;
        margin-bottom: 10px;
    }

    .ml-section a {
        color: var(--red);
        text-decoration: underline;
    }