/* ─── Reset ──────────────────────────────────────────────── */
/*
  Minimal reset: removes default margins/padding and box model
  surprises. Keeps the document usable without imposing opinions
  beyond what the design system needs.
*/

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

[hidden] {
  display: none !important;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
