/* Font Awesome 6 loader (small local shim)
   Loads Font Awesome Free 6.x from CDN to upgrade the theme without bundling files.
 
   Notes:
   - Uses CDNJS for Font Awesome 6.4.0 (free). You can change the URL to a different version/provider.
   - Some icon class names changed in FA6 (use `fas`/`far`/`fab` etc.). This shim keeps a minimal `.fa` fallback.
*/

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");

/* Backwards-compatibility fallback: many templates use `class="fa fa-..."`.
   Map the legacy `.fa` to Font Awesome 6's Free font family with a bold weight so common icons still render.
   This is a minimal shim and may not cover every edge-case; test pages and adjust if needed. */
.fa {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important; /* solid by default */
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}
