/* FPD Phase-1 parity shims — our own overrides, loaded LAST so they win over the
   ported legacy theme CSS. Keep this small and documented; each rule notes why. */

/* The ported theme ends up with a rogue runtime `.collapse{visibility:collapse}`
   rule (in an adopted stylesheet) that hides the desktop main nav. It does NOT
   affect the live site's render. Restore the nav to visible to match live.
   Mobile is unaffected — the off-canvas menu stays hidden via the theme's
   `#topNav .nav-main-collapse.collapse:not(.show){display:none}` rule. */
.nav-main-collapse {
  visibility: visible !important;
}
