/* ============================================================
   xmesh DS · _reset.css — modern, minimal reset.

   Always-on within the `./base` entry (ADR 0011, spine AD-3): it
   normalizes the box model and user-agent defaults but sets NO colors
   and NO typography, so importing the baseline never restyles a
   consumer's content beyond the reset itself. Imported into @layer
   reset by styles/base.css, so a consumer's own rules win without
   `!important`.
   ============================================================ */

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

* {
  margin: 0;
}

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

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
