/* ==========================================================================
   Reset — modern baseline, zero specificity via :where()
   ========================================================================== */

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

:where(html) {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

:where(body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd) {
  margin: 0;
}

:where(ul, ol) {
  margin-block: 0;
  padding-inline-start: 0;
  list-style: none;
}

:where(h1, h2, h3, h4, h5, h6) {
  font-size: inherit;
  font-weight: inherit;
  overflow-wrap: break-word;
}

:where(p) {
  overflow-wrap: break-word;
}

:where(a) {
  color: inherit;
}

:where(img, picture, video, canvas, svg) {
  display: block;
  max-inline-size: 100%;
  block-size: auto;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(button) {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

:where(fieldset) {
  margin: 0;
  padding: 0;
  border: none;
}

:where(address) {
  font-style: normal;
}
