/*!
 * Minimal local subset of Font Awesome Free 6.5.2 (fontawesome.com)
 * License: CSS - MIT, Font - SIL OFL 1.1 (https://fontawesome.com/license/free)
 *
 * Replaces the full CDN stylesheet
 *   https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css
 * The whole site only uses two solid icons (pagination arrows):
 *   fas fa-arrow-left, fas fa-arrow-right
 * so only the solid @font-face + those two glyphs are kept.
 * Font file: assets/fonts/fa-solid-900.woff2 — SUBSETTED to U+f060,U+f061 only
 * (pyftsubset, 528 bytes; original 6.5.2 fa-solid-900.woff2 is 153 KB on cdnjs).
 * If new icons are added to the site: add their glyph rules here AND re-subset
 * the font with the new unicodes (or restore the full original woff2):
 *   pyftsubset fa-solid-900.woff2 --unicodes=U+f060,U+f061,U+XXXX --flavor=woff2
 * Brand icons (telegram/whatsapp etc.) need fa-brands-400.woff2 — not included.
 */

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

.fa,
.fas,
.fa-solid {
  -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;
}

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

.fa-arrow-left::before {
  content: "\f060";
}

.fa-arrow-right::before {
  content: "\f061";
}
