/*
 * Material Symbols (Outlined) — selbst gehostet, DSGVO-konform.
 * Die Schriftdatei enthaelt nur die in den Views verwendeten Icons und wird
 * mit `php artisan icons:build` erzeugt. Nicht von Hand austauschen.
 */

@font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: 100 700;
    font-display: block;
    src: url('/fonts/material-symbols-outlined.woff2') format('woff2');
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    /* Kein festes font-size: die Groesse kommt ueber Tailwind (text-xl, text-2xl, ...) */
    font-size: inherit;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    vertical-align: middle;
    font-feature-settings: 'liga';
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    font-optical-sizing: auto;
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0;
}

/*
 * Gefuellte Variante ueber die FILL-Achse. Bewusst als eigene Klasse und nicht
 * als Inline-Style: font-variation-settings ersetzt beim Setzen immer alle
 * Achsen, ein Inline-Wert wuerde wght und GRAD mit zuruecksetzen.
 */
.material-symbols-outlined.is-filled {
    font-variation-settings:
        'FILL' 1,
        'wght' 400,
        'GRAD' 0;
}
