/* expert-html-css starter — plain CSS for what Tailwind should not own */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -100%;
  z-index: 100;
  padding: 0.5rem 0.75rem;
  background: #fff;
  color: #111;
  text-decoration: none;
}

.skip-link:focus {
  top: 0.75rem;
}

/* Desktop enhancements — project lock: 769px+ */
@media (min-width: 769px) {
  /* Add desktop-only custom rules here when Tailwind utilities are not enough */
}
