/* Purpose: Global theme overrides that neutralise stray legacy / third-party CSS that leaks
   site-wide (Furnive theme + WPCode "Css" snippet left over from the old build). Loaded LAST so
   these win the cascade — the theme itself owns the fix, no third-party plugin required. */

/* Legacy WPCode snippet ships `.page-id-44204 a:hover, a:focus { color:#fff }`. The second
   selector `a:focus` is unscoped, so EVERY focused/clicked link turns white — its text vanishes
   on light backgrounds the instant you click it, right before the page navigates. Restore the
   normal (non-focus) colour on focus site-wide; hover styling stays with base.css.
   `html` prefix raises specificity above the stray `a:focus` regardless of load order. */
html a:focus,
html a:focus-visible {
  color: inherit;
}
