/* Skip-Link — A11y P1-9.
   Erlaubt Tastatur-Nutzern, ueber Navigation/Banner direkt zum Hauptinhalt
   zu springen. Standard-Pattern: out-of-the-way bis Fokus, dann sichtbar
   oben links.

   Wichtig:
   - position:absolute + negative left versteckt sicher (display:none
     entzieht den Fokus, das wollen wir nicht).
   - :focus muss z-index hoch genug haben, um ueber Impersonation-Banner
     und Mobile-Bottom-Nav zu liegen.
*/

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: #000;
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
  border-radius: 4px;
  z-index: 9999;
  outline: 2px solid #fff;
  outline-offset: 2px;
}
