/* Site-wide accessibility baseline.
   Loaded on every page so these do not have to be remembered per page. */

/* Skip link. Off-screen until focused, then pinned top-left. Keyboard
   users otherwise tab the whole nav on every single page. */
.skip-link{
  position:absolute;left:-9999px;top:0;z-index:100000;
  background:#00d4ff;color:#05050a;font-weight:800;font-size:14px;
  padding:10px 16px;border-radius:0 0 8px 0;text-decoration:none;
}
.skip-link:focus{left:0}

/* The default focus ring is often invisible on this site's dark ground.
   :focus-visible only, so it never appears on a mouse click. */
:focus-visible{
  outline:2px solid #00d4ff;
  outline-offset:2px;
  border-radius:3px;
}

/* Two @keyframes in admin.css had no guard. This covers the whole site
   rather than one stylesheet. */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.001ms!important;
    animation-iteration-count:1!important;
    transition-duration:.001ms!important;
    scroll-behavior:auto!important;
  }
}

/* For text that exists only for screen readers. */
.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}
