/* DropBlockCMS — Minimal reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  min-height: 100vh;
  /* Guards the Container block's full-bleed breakout (scope-briefs/008, article.css .block-container):
     `width: 100vw` measures the viewport WITHOUT subtracting the scrollbar's own width in some
     browsers, so a full-bleed element ends up a few px wider than the true visible area — without
     this, that shows up as a real, scrollable horizontal overflow (confirmed on a live walk-test,
     2026-08-28) rather than the invisible few-px clip this line turns it into everywhere else. */
  overflow-x: hidden;
  background: var(--color-surface-page);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: var(--color-brand-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-weight: inherit; }
table { border-collapse: collapse; }
:focus-visible { outline: 2px solid var(--color-brand-primary); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
