/*
  Font Awesome 6.7.2 — subsetted to ONLY the icons used on this site.
  Source CDN was 73 KB CSS + 158 KB solid woff2 + 119 KB brands woff2.
  This subset is ~1.5 KB CSS + 2.4 KB solid + 1 KB brands = ~5 KB total.

  ADDING A NEW ICON:
    1. Use it in a Blade template (e.g. <i class="fa-solid fa-my-icon"></i>)
    2. Re-run the subset script (see /tmp/fa-subset/ workflow in repo notes)
       — or temporarily revert this file to the FA CDN <link> in
       header-css.blade.php while adding the icon, then re-subset.
*/

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url('../fonts/fa-solid-900-subset.woff2') format('woff2');
}
@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('../fonts/fa-brands-400-subset.woff2') format('woff2');
}

.fa,
.fas,
.fa-solid,
.fab,
.fa-brands {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

.fa,
.fas,
.fa-solid {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}

.fab,
.fa-brands {
  font-family: 'Font Awesome 6 Brands';
  font-weight: 400;
}

/* Solid icons */
.fa-arrow-pointer:before      { content: "\f245"; }
.fa-arrow-right:before        { content: "\f061"; }
.fa-calendar-days:before      { content: "\f073"; }
.fa-chevron-right:before      { content: "\f054"; }
.fa-circle-arrow-right:before { content: "\f0a9"; }
.fa-circle-half-stroke:before { content: "\f042"; }
.fa-download:before           { content: "\f019"; }
.fa-droplet-slash:before      { content: "\f5c7"; }
.fa-file-download:before      { content: "\f56d"; }
.fa-file-pdf:before           { content: "\f1c1"; }
.fa-font:before               { content: "\f031"; }
.fa-link:before               { content: "\f0c1"; }
.fa-location-arrow:before     { content: "\f124"; }
.fa-location-dot:before       { content: "\f3c5"; }
.fa-long-arrow-left:before    { content: "\f177"; }
.fa-long-arrow-right:before   { content: "\f178"; }
.fa-rotate-left:before        { content: "\f2ea"; }
.fa-star:before               { content: "\f005"; }
.fa-universal-access:before   { content: "\f29a"; }
.fa-xmark:before              { content: "\f00d"; }

/* Brand icons */
.fa-facebook-f:before { content: "\f39e"; }
.fa-instagram:before  { content: "\f16d"; }
.fa-linkedin-in:before { content: "\f0e1"; }
.fa-youtube:before    { content: "\f167"; }
