/*
 * Scoped, minimal Font Awesome 6/7 icon support - intentionally NOT the full upstream
 * all.min.css. The full stylesheet redefines shared selectors (".fa", ".fa-solid", etc.)
 * that the existing Font Awesome 4.7 icons throughout this app also use, via a broad
 * `:is(.fas,.far,.fab,.fa-solid,.fa-regular,.fa-brands,.fa-classic,.fa):before` rule -
 * loading it broke every FA4 icon whose name also exists in FA6/7 (different codepoint,
 * same class name, so the glyph content got hijacked while the font-family stayed FA4's).
 * Add new icons here one at a time, each under its own project-only class name so nothing
 * collides with ".fa"/".fa-solid"/".fas" etc.
 */
@font-face {
    font-family: "SeibFA7Solid";
    src: url("../webfonts/fa-solid-900.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
    font-display: block;
}

.seib-fa7-icon {
    font-family: "SeibFA7Solid";
    font-weight: 900;
    font-style: normal;
    display: inline-block;
    line-height: 1;
}

.seib-fa7-tower-broadcast::before {
    content: "\f519";
}
