/* © 2026 Cantines Pour Tout Nîmes — cantinespourtoutnimes.fr — Tous droits réservés */

/* === LAYOUT === */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

/* === BREADCRUMB === */
.breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 32px;
    color: #888;
}

.breadcrumb a {
    color: var(--bleu);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--orange);
}

.breadcrumb span {
    margin: 0 8px;
    color: #ccc;
}

/* === TITRES === */
.legal-page h1 {
    font-size: 2rem;
    color: var(--bleu);
    margin-bottom: 8px;
}

.legal-page .last-updated {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.3rem;
    color: var(--bleu);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gris);
}

/* === CONTENU === */
.legal-page p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #444;
    margin-bottom: 12px;
}

/* === CHAMPS À REMPLIR === */
.placeholder {
    font-weight: 600;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .legal-page {
        padding: 32px 16px 60px;
    }

    .legal-page h1 {
        font-size: 1.5rem;
    }

    .legal-page h2 {
        font-size: 1.1rem;
    }
}