/* ═══════════════════════════════════════════════════════════════
   Prix du Plein — Styles pour les pages statiques (presse, mentions légales)
   ═══════════════════════════════════════════════════════════════ */

/* ── Cartes de contenu ─────────────────────────────────────────── */
.card {
    background: white;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    padding: 24px 28px;
    margin-bottom: 20px;
}
.card h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
}
.card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    margin-top: 16px;
    margin-bottom: 8px;
}
.card p {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 10px;
}
.card p:last-child { margin-bottom: 0; }
.card ul {
    padding-left: 20px;
    margin-top: 4px;
}
.card ul li {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 6px;
}
.card a { color: #1565c0; font-weight: 600; }
.card a:hover { text-decoration: underline; }

/* ── Carte contact ─────────────────────────────────────────────── */
.contact-card {
    background: linear-gradient(135deg, #e3f2fd, #f8f9ff);
    border-radius: 14px;
    border: 1px solid #bbdefb;
    padding: 24px 28px;
    margin-bottom: 20px;
}
.contact-card h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1565c0;
    margin-bottom: 14px;
}
.contact-card p {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 8px;
}
.contact-card p:last-child { margin-bottom: 0; }
.contact-card a { color: #1565c0; font-weight: 600; }
.contact-card a:hover { text-decoration: underline; }

/* ── Grille de statistiques ────────────────────────────────────── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin-top: 8px;
}
.stat {
    background: #f8f9ff;
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
}
.stat .val {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1565c0;
    line-height: 1.2;
}
.stat .lbl {
    font-size: 0.75rem;
    color: #888;
    margin-top: 4px;
    font-weight: 500;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 640px) {
    .card, .contact-card { padding: 18px 16px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .stat .val { font-size: 1.3rem; }
}
