/* NEUTRALIZED (EchoPx fix).
   The original WP2Static export injected a Font Awesome 6 layer here: an @font-face
   pointing at /assets/themes/Avada/.../fa-*.woff2 fonts that do NOT exist in this
   export, plus glyph re-definitions using FA6 codepoints. Because this file loaded
   AFTER the theme's working Font Awesome 4 stylesheet, it overrode it and turned every
   .fa icon (feature icons, social icons, back-to-top) into a blank box.

   Fix: map all Font Awesome classes back to the FA4 "FontAwesome" webfont that IS
   present (declared by font-awesome.min.css) and drop the FA6 @font-face + conflicting
   glyph map so the theme's FA4 glyph definitions apply. */
.fa,
.fas, .fa-solid,
.far, .fa-regular,
.fab, .fa-brands {
  font-family: "FontAwesome" !important;
  font-weight: normal !important;
  -webkit-font-smoothing: antialiased;
}
