/* Page "À propos" — hero + statistiques */

.apropos-page { max-width: 1000px; margin: 0 auto; }
.hero-apropos {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--uc-green-50), #e8f5e9);
    border-radius: var(--uc-radius-lg);
    margin-bottom: 50px;
}
.hero-apropos h1 { font-size: 36px; }
.hero-apropos p { font-size: 16px; color: var(--uc-muted); max-width: 700px; margin: 16px auto 0; }
.section-titre { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.section-sous-titre { color: var(--uc-muted); font-size: 14px; margin-bottom: 30px; }
.stat-grande { margin-bottom: 24px; }
.stat-grande .chiffre { font-size: 52px; font-weight: 700; color: var(--uc-title); line-height: 1; }
.stat-grande .label { font-size: 14px; color: var(--uc-muted); margin-top: 4px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 50px; }
.stat-box {
    background: var(--uc-surface);
    border: 1px solid var(--uc-border);
    border-radius: var(--uc-radius-lg);
    padding: 24px;
    text-align: center;
}
.stat-box .chiffre { font-size: 36px; font-weight: 700; color: var(--uc-green); }
.stat-box .label { font-size: 13px; color: var(--uc-muted); margin-top: 6px; }
.materiau-ligne { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.materiau-nom { width: 100px; font-size: 14px; font-weight: 600; }
.materiau-barre-fond { flex: 1; background: var(--uc-divider); border-radius: 10px; height: 10px; }
.materiau-barre { height: 10px; border-radius: 10px; background: var(--uc-green); }
.materiau-nb { font-size: 13px; color: var(--uc-muted); width: 90px; text-align: right; }
.don-vente { display: flex; gap: 20px; margin-bottom: 50px; }
.don-box, .vente-box { flex: 1; border-radius: var(--uc-radius-lg); padding: 24px; text-align: center; }
.don-box { background: var(--uc-green-50); border: 2px solid var(--uc-green); }
.vente-box { background: var(--uc-blue-100); border: 2px solid var(--uc-blue); }
.don-box .chiffre { font-size: 40px; font-weight: 700; color: var(--uc-green); }
.vente-box .chiffre { font-size: 40px; font-weight: 700; color: var(--uc-blue); }
.don-box .sous-label { font-size: 20px; color: var(--uc-green); margin-top: 6px; }
.vente-box .sous-label { font-size: 20px; color: var(--uc-blue); margin-top: 6px; }

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: 1fr; }
    .don-vente { flex-direction: column; }
    .hero-apropos { padding: 40px 16px; }
}
