/*!
 * Line Awesome Free 1.3.0 — hand-built subset.
 * Original: SIL OFL 1.1 (font) / MIT (CSS), https://icons8.com/line-awesome
 *
 * The upstream dist is 89,693 bytes and defines 1,659 icons. This site renders
 * exactly nine, all from the `las` (solid) family — verified by scanning every
 * prerendered page in .next/server/app. That made the vendored file 99.1% dead
 * weight on the render-blocking critical path.
 *
 * Changes from upstream, all deliberate:
 *   - Only the nine icons below are declared. To add one, copy its
 *     `.la-NAME:before{content:"\fXXX"}` rule from the upstream dist.
 *   - Only the solid @font-face is kept. The brands (`lab`) and regular (`lar`)
 *     families are never referenced, so their font files are no longer shipped.
 *   - `font-display: auto` -> `swap`. `auto` resolves to a blocking period in
 *     every major browser, so icons could hold up first paint.
 *   - `.eot`/`.ttf`/`.svg` sources dropped. Those exist for IE11 and Android 4,
 *     neither of which can run React 19.
 *
 * Class names and glyph codepoints are unchanged, so markup and the theme's
 * `i` selectors keep working exactly as before.
 */

@font-face {
    font-family: 'Line Awesome Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url(/fonts/la-solid-900.woff2) format("woff2"),
         url(/fonts/la-solid-900.woff) format("woff");
}

.la,
.las {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: 'Line Awesome Free';
    font-weight: 900;
}

.la-angle-double-right:before { content: "\f101"; }
.la-arrow-right:before        { content: "\f061"; }
.la-bullhorn:before           { content: "\f0a1"; }
.la-check:before              { content: "\f00c"; }
.la-envelope:before           { content: "\f0e0"; }
.la-home:before               { content: "\f015"; }
.la-long-arrow-alt-up:before  { content: "\f30c"; }
.la-phone:before              { content: "\f095"; }
.la-user:before               { content: "\f007"; }
