/**
 * Font Awesome 6 Free - Minimal Build
 * Contains only icons used in this theme
 *
 * Icons included:
 * - fa-check, fa-spinner, fa-user, fa-school, fa-map-marker-alt (fa-location-dot)
 * - fa-plus, fa-eye, fa-edit (fa-pen-to-square), fa-copy, fa-external-link-alt (fa-up-right-from-square)
 * - fa-download, fa-circle-play
 * - fa-facebook-f, fa-x-twitter, fa-youtube, fa-instagram
 */

/* Font Awesome core styles */
.fa,
.fas,
.far,
.fal,
.fab,
.fa-solid,
.fa-regular,
.fa-brands {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

/* .fa is treated as solid (FA4/5 backwards compat) */
.fa {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

/* Font Awesome Solid (fas) */
.fas,
.fa-solid {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

/* Font Awesome Regular (far) */
.far,
.fa-regular {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

/* Font Face - FA6 Free Solid (local, CSP-compliant) */
@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");
}

/* Font Face - FA6 Free Brands (local, CSP-compliant) */
@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../fonts/fa-brands-400.woff2") format("woff2");
}

/* Font Awesome Brands (fab) */
.fab,
.fa-brands {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

/* Icon definitions - Solid */
.fa-check::before { content: "\f00c"; }
.fa-spinner::before { content: "\f110"; }
.fa-user::before { content: "\f007"; }
.fa-school::before { content: "\f549"; }
.fa-map-marker-alt::before,
.fa-location-dot::before { content: "\f3c5"; }
.fa-plus::before { content: "\2b"; }
.fa-eye::before { content: "\f06e"; }
.fa-edit::before,
.fa-pen-to-square::before { content: "\f044"; }
.fa-copy::before { content: "\f0c5"; }
.fa-external-link-alt::before,
.fa-up-right-from-square::before { content: "\f35d"; }
.fa-download::before { content: "\f019"; }
.fa-circle-play::before,
.fa-play-circle::before { content: "\f144"; }

/* Icon definitions - Brands */
.fa-facebook-f::before { content: "\f39e"; }
.fa-x-twitter::before  { content: "\e61b"; }
.fa-youtube::before    { content: "\f167"; }
.fa-instagram::before  { content: "\f16d"; }

/* Animations */
.fa-spin {
  animation: fa-spin 2s infinite linear;
}

@keyframes fa-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Sizing */
.fa-2x { font-size: 2em; }
.fa-3x { font-size: 3em; }
.fa-lg { font-size: 1.33333em; line-height: 0.75em; vertical-align: -0.0667em; }
.fa-sm { font-size: 0.875em; }
.fa-xs { font-size: 0.75em; }

/* Fixed width */
.fa-fw {
  text-align: center;
  width: 1.25em;
}
