/** --------------------------------------------------------------
# Accessibility
-------------------------------------------------------------- */

  *:focus:not(:focus-visible) {
      outline: none;
  }

  *:focus-visible {
      outline: 2px solid var(--focus-ring);
      outline-offset: 2px;
  }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;

  clip-path: inset(50%);
}

/* Fokus sichtbar machen (wichtig!) */
.screen-reader-text:focus,
.screen-reader-text:active {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;

  clip-path: none;

  padding: 0.75rem 1rem;
  background-color: #f1f1f1;
  color: #21759b;

  font-size: 0.875rem;
  font-weight: 700;

  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

