/* Accessibility safeguards shared by all public routes. */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}
[data-unavailable="true"] {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.85;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}
