/* reset.css — Modern minimal reset */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  tab-size: 4;
}

body {
  margin: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Links — remove browser defaults */
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: none;
}

/* Images — prevent overflow, remove gap */
img, svg, video {
  display: block;
  max-width: 100%;
}

/* Form elements — inherit font from parent */
button, input, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
input, textarea, select {
  cursor: text;
}
button {
  cursor: pointer;
}

/* Lists */
ul, ol {
  list-style: none;
}

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

/* Headings — only normalize line-height; sizes are explicit in style.css and page styles */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
}

/* Remove default fieldset styles */
fieldset {
  border: none;
  padding: 0;
}

/* Horizontal rule */
hr {
  border: none;
  border-top: 1px solid currentColor;
  margin: 0;
}
