/* ============================================================
   BASE — Reset
   Predictable box model + zeroed body margin + responsive media +
   reset of WP/browser-default margins on flow content. Stays light:
   modern browsers handle most cases.
   ============================================================ */

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

html,
body {
  margin: 0;
  padding: 0;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/* WordPress + browser defaults add inconsistent margins/list-styles
   on flow content. Reset them; .body-prose and block CSS reapply rhythm. */
h1, h2, h3, h4, h5, h6,
p, ul, ol, dl,
figure, blockquote {
  margin: 0;
  padding: 0;
  font-weight: inherit;
}

ul,
ol {
  list-style: none;
}

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