/* WP2Static — FontAwesome icon fallback / safety-net CSS
   History: this file originally shipped with @font-face rules pointing at
   an Avada-theme font path that doesn't exist on this Bridge-theme site,
   which broke every icon sitewide. It was emptied out in an earlier pass.
   This version goes further: rather than relying only on the theme's own
   font-awesome.min.css cascade order, it explicitly re-declares the exact
   same font-family + real (confirmed-existing) webfont path with maximum
   specificity, so icon rendering can't be silently lost again regardless
   of stylesheet load order on any given server/CDN. */

@font-face {
    font-family: "FontAwesome";
    src: url("/assets/themes/bridge/css/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"),
         url("/assets/themes/bridge/css/font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"),
         url("/assets/themes/bridge/css/font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype");
    font-weight: normal;
    font-style: normal;
}

i.fa, span.fa, .fa {
    font-family: "FontAwesome" !important;
    font-weight: normal !important;
    font-style: normal !important;
    speak: none;
    display: inline-block;
    text-rendering: auto;
}
