/*
 * Habit of Care Font Awesome compatibility layer.
 *
 * The platform historically mixed Font Awesome Free with kit-only styles
 * (duotone, sharp, light and thin). If the private kit is unavailable those
 * elements render as empty/tofu squares. The companion script replaces those
 * styles and Pro-only icon names with Font Awesome Free 6.5.2 equivalents.
 */
:where(
  .fa-duotone,
  .fa-sharp-duotone,
  .fa-sharp,
  .fa-light,
  .fa-thin,
  .fa-regular,
  .fad,
  .fal,
  .fat,
  .far,
  .fass
):not(.fa-brands):not(.fab) {
  font-family: "Font Awesome 6 Free" !important;
  font-style: normal;
  font-weight: 900 !important;
}

