/** ChallengeFlow: 40-accessibility.css */
@layer accessibility {
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation: none;
      transition: none;
    }
    html {
      scroll-behavior: auto;
    }
    .app>section:not(.world-fullscreen) {
      animation: none;
    }
    .challenge-card:hover {
      transform: none;
    }
  }

  @media (prefers-contrast: more) {
    :root {
      --line: rgba(255,255,255,.20);
      --line-strong: rgba(255,255,255,.34);
    }
    .panel, .update-card, .challenge-card {
      border-width: 1px;
      border-color: var(--line-strong);
    }
    .muted, .meta { color: #8a8e97; }
    .ghost-button, .feed-autocomplete input, .country-search,
    .form-grid input, .form-grid textarea, .form-grid select {
      border-color: var(--line-strong);
    }
  }
}
