/*
 * material-icons.css — S83 (D-S83-H)
 *
 * Font Material Icons auto-hébergée pour la Vitrine Nemba Onyumbe.
 * Téléchargée depuis google-webfonts-helper (gwfh.mranftl.com), version 145.
 *
 * Rationale Thierry S83 : zéro dépendance CDN externe pour souveraineté + privacy
 * (Google Fonts log les IP des visiteurs RGPD-sensible) + performance offline-first
 * RDC (pas de 2e DNS+TLS lookup en 4G capricieuse).
 *
 * Utilisation : <span class="material-icons">favorite</span> ou favorite_border, etc.
 * La propriété font-feature-settings: 'liga' permet l'écriture par nom d'icône
 * plutôt que codepoint Unicode (pattern Google standard).
 */

/* material-icons-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url('material-icons-v145-latin-regular.woff2') format('woff2');
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
}
