/* ===============================
   ACCESSIBILITY STYLES – SCREEN READER SUPPORT, FOCUS INDICATORS, ETC.
   =============================== */

:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  padding: 8px 12px;
  background: white;
  border: 2px solid currentColor;
  border-radius: 8px;
  z-index: 9999;
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.fieldset-title{
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.85;
  margin-right: 6px;
}