/* ─────────────────────────────────────────────
   confidentialite.css — Politique de confidentialité
   Dépend de : common.css
   Utilise depuis common.css :
     .page-hero, .page-hero-eyebrow, .section-label,
     .info-block, .sella-table
───────────────────────────────────────────── */

/* ── NAVIGATION RAPIDE ── */
.privacy-nav {
    background: #f8f8f8;
    border-bottom: 1px solid var(--border);
    padding: 20px 64px;
    display: flex;
    gap: 32px;
    overflow-x: auto;
}

.privacy-nav a {
    font-size: 14px;
    color: var(--gray-500);
    text-decoration: none;
    white-space: nowrap;
    font-weight: 400;
    transition: color .2s;
}
.privacy-nav a:hover { color: var(--red); }

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

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

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

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

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

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

.privacy-section li { margin-bottom: 6px; }

/* ── ENCADRÉ HIGHLIGHT ── */
.privacy-highlight {
    background: rgba(204,31,31,0.04);
    border: 1px solid rgba(204,31,31,0.12);
    border-radius: 4px;
    padding: 20px 24px;
    margin-top: 16px;
}
.privacy-highlight p {
    margin: 0;
    font-size: 14px;
    color: var(--gray-700);
}
.privacy-highlight a { color: var(--red); }

/* ── GRILLE DROITS ── */
.privacy-rights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.privacy-right-card {
    background: #f8f8f8;
    border-radius: 4px;
    padding: 20px;
    border-top: 3px solid var(--red);
}

.privacy-right-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.privacy-right-card p {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .privacy-nav { padding: 16px 24px; }
    .privacy-rights { grid-template-columns: 1fr 1fr; }
}
.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-eyebrow::after {
        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 ul {
        padding-left: 20px;
        margin-bottom: 10px;
    }

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

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

    .ml-update {
        font-size: 0.875rem;
        color: var(--gray-300);
        margin-bottom: 40px;
        font-style: italic;
    }