/* Blackbox-owned CSS tweaks to DS component output. Loaded after
   vendor/blackbox-ds/_ds_bundle.css so this wins the cascade. Keep the
   vendored bundle pristine - put DS overrides here instead, so a future
   resync can copy a fresh _ds_bundle.css/.js over the vendored files
   wholesale, with no diff-and-reapply. Behavioral tweaks CSS can't express
   go in frontend/ds-overrides.jsx instead. */

/* Footer defaults linkHref/linkLabel to "/healthz" and always renders the
   link (see the DS's Footer component). BlackBox doesn't want a visible
   health-check link in its footer. Hidden via CSS rather than reimplementing
   Footer's JSX: display:none also removes the <a> from the accessibility
   tree (behaviorally equivalent to never rendering it), without blackbox
   owning a hand-maintained copy of Footer's markup that could drift from
   the DS's own styling. Footer sets `display: flex` inline on the <a>
   (component styling, not a token), which normally beats any external
   stylesheet regardless of load order - !important is the standard,
   narrowly-scoped way to override an inline style you don't control.
   Scoped to #bb-footer-root (Footer's mount point, see main.jsx) rather than
   the current href value, so it keeps working if the link target changes. */
#bb-footer-root a {
  display: none !important;
}
