/*
 * Backward-compat aliases for old Font Awesome family names.
 *
 * Hooks.php replaced Elementor's bundled Font Awesome with a self-hosted FA 7
 * build, which only registers the "Font Awesome 7 Free"/"FontAwesome" (v4)
 * family names. But years of page content across the site (inline <style>
 * blocks pasted into WYSIWYG/Elementor content, not theme-controlled) hardcode
 * the literal family name "Font Awesome 5 Free" / "Font Awesome 5 Brands".
 * With no font registered under those exact names, those glyphs render blank.
 *
 * These @font-face rules point the old FA5 family names at the same
 * self-hosted webfont files already loaded above — no extra HTTP requests,
 * just restoring the name the old content expects.
 */
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url('../fonts/fontawesome/fa-solid-900.woff2') format('woff2');
}

@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('../fonts/fontawesome/fa-regular-400.woff2') format('woff2');
}

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