/* Small, non-visual accessibility layer for the static build. */
:where(a, button, input, textarea, select):focus-visible {
  outline: 2px solid #c5a059;
  outline-offset: 3px;
}

:where(button, a)[aria-disabled="true"] {
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Location rows sit on a deep navy surface; keep their labels readable. */
#location .min-w-0 > span,
#location .flex-shrink-0 span {
  color: #f4ede4 !important;
}

#location span[style*="font-size:var(--type-body"],
#location span[style*="font-size:clamp"] {
  color: #f4ede4 !important;
}

#location .grid span {
  color: #f4ede4 !important;
}

/* The generated static markup can carry the old dark inline color before hydration. */
span[style*="color:#081c32"],
span[style*="color:#081c31"] {
  color: #f4ede4 !important;
}
