/* static/css/base.css */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-14);
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
}

a { color: var(--color-primary-600); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; }
hr { border: none; border-top: 1px solid var(--color-border); margin: var(--space-16) 0; }

h1,h2,h3,h4 { margin: 0 0 var(--space-12); line-height: 1.25; }
h1 { font-size: var(--text-22); }
h2 { font-size: var(--text-18); }
h3 { font-size: var(--text-16); }

p { margin: 0 0 var(--space-12); }

.muted { color: var(--color-muted); }
.num { font-variant-numeric: tabular-nums; }
.small { font-size: var(--text-13); }

:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: var(--radius-8); }