/* Minimal reset / normalize */
:root { -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; }

/* Box sizing */
*, *::before, *::after { box-sizing: border-box; }

/* Remove default margins */
html, body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
}

/* Body defaults */
html, body { min-height: 100%; }
body {
  /*line-height: 1.5;*/
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  /*background: #fff;*/
  /*color: #111;*/
  /*font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;*/
}

/* Remove list styles where appropriate */
ul[role="list"], ol[role="list"], ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Make images and media responsive */
img, picture, video, canvas, svg {
  /*display: block; */
  max-width: 100%;
  height: auto;
}

/* Forms: inherit fonts and reset margins */
input, button, textarea, select {
  font: inherit;
  margin: 0;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
}

/* Buttons: reset */
button { background: none; padding: 0; cursor: pointer; }

/* Links: remove default styles but keep accessibility focus */
a {
  color: inherit;
  /*text-decoration: none; */
}
a:focus, button:focus, input:focus, textarea:focus {
  /*outline: 2px solid Highlight;*/
  /*outline-offset: 2px;*/
}

/* Table reset */
table { border-collapse: collapse; border-spacing: 0; }

/* Reduce animations for motion-sensitive users */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
