/* Purpose:
Separates accessibility focus used to announce route changes from the interactive-control focus indicator.

Responsibilities:
- Keep programmatically focused route headings visually neutral while retaining their active-element and screen-reader announcement behavior.

Boundaries:
This correction applies only to non-interactive h1 route targets made programmatically focusable with tabindex="-1"; links, buttons, inputs, and all other keyboard-operable controls retain the shared gold focus-visible treatment.

Key decisions and invariants:
Blazor FocusOnNavigate remains authoritative for route-change focus. Presentation must not make its non-interactive heading target look like an actionable control.
*/
h1[tabindex="-1"]:focus,
h1[tabindex="-1"]:focus-visible {
    outline: none;
}
