/* Font Awesome legacy family-name compatibility shim.
   The FA Pro 7 webfonts register only "Font Awesome 7 Pro" / "Font Awesome 7 Brands",
   but third-party CSS we don't own (e.g. vendor/css/datatables/responsive.dataTables.min.css)
   still draws pseudo-element icons with the old Free family names from FA 5/6.
   Alias those names onto the FA 7 Pro webfonts so such rules keep rendering.
   App-owned CSS should reference "Font Awesome 7 Pro" directly (legacy SCSS via
   $FontAwesome in _variables.scss) — this file is a safety net for vendor CSS only.
   Loaded from layout.tag / campaignLayout.tag immediately after fontawesome/css/all.css. */

@font-face {
  font-family: "Font Awesome 5 Free";
  font-display: block;
  font-weight: 900;
  src: url("../vendor/fonts/fontawesome/webfonts/fa-solid-900.woff2") format("woff2");
}
@font-face {
  font-family: "Font Awesome 5 Free";
  font-display: block;
  font-weight: 400;
  src: url("../vendor/fonts/fontawesome/webfonts/fa-regular-400.woff2") format("woff2");
}
@font-face {
  font-family: "Font Awesome 6 Free";
  font-display: block;
  font-weight: 900;
  src: url("../vendor/fonts/fontawesome/webfonts/fa-solid-900.woff2") format("woff2");
}
@font-face {
  font-family: "Font Awesome 6 Free";
  font-display: block;
  font-weight: 400;
  src: url("../vendor/fonts/fontawesome/webfonts/fa-regular-400.woff2") format("woff2");
}
