/* Minimal modern CSS reset */
/* 1. Box sizing */
*, *::before, *::after { box-sizing: border-box; }

/* 2. Remove default margin */
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd { margin: 0; }

/* 3. Set core body defaults */
html:focus-within { scroll-behavior: smooth; }
body { min-height: 100vh; text-rendering: optimizeLegibility; line-height: 1.5; }

/* 4. Improve media defaults */
img, picture, video, canvas, svg { display: block; max-width: 100%; }

/* 5. Inherit fonts for form controls */
input, button, textarea, select { font: inherit; }

/* 6. Remove animations for people who’ve turned them off */
@media (prefers-reduced-motion: reduce) {
  html:focus-within { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* 7. Links */
a { text-decoration-skip-ink: auto; }

/* 8. Lists */
ul[role='list'], ol[role='list'] { list-style: none; }
