/* a-propos.css — Styles spécifiques à la page À propos */

/* Team grid centré pour 3 cartes */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Value icon avec Lucide */
.value-icon {
    width: 80px;
    height: 80px;
    background: var(--grad-card);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 1px solid rgba(233, 30, 140, 0.15);
    box-shadow: var(--shadow-sm);
}
.value-icon svg,
.value-icon i { width: 36px; height: 36px; color: var(--mpat-pink); }

/* Team avatar avec Lucide */
.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: visible;
    margin: 0 auto;
    border: 3px solid rgba(233, 30, 140, 0.3);
    box-shadow: 0 0 0 6px rgba(233, 30, 140, 0.08);
    background: var(--grad-card);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.team-avatar svg,
.team-avatar i { width: 44px; height: 44px; color: var(--mpat-purple); }

/* Avantages checklist icon */
.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--mpat-pink);
}
.check-icon svg,
.check-icon i { width: 20px; height: 20px; }
