/* Typography by purpose:
   16px (--text-body)  — paragraphs, descriptions, editor/log/results text
   14px (--text-small) — nav, buttons, inputs, file names, supporting labels
   12px (--text-min)   — dates, tags, version labels, decorative HUD text
   Nothing below 12px, anywhere. */

body {
  font-size: var(--text-body);
  line-height: var(--leading-normal);
  font-weight: 400;
}

h1, h2, h3 { line-height: var(--leading-tight); }

a { color: var(--color-accent); }

/* In-content links styled like surrounding terminal text */
.accent-link {
  color: var(--color-accent);
  text-decoration: none;
}
.accent-link:hover, .accent-link:focus-visible { text-decoration: underline; }

.accent { color: var(--color-accent); font-weight: 500; }
.hl { color: var(--color-text); font-weight: 500; }

/* Small uppercase label used for block/group headings */
.meta-label {
  color: var(--color-text-muted);
  font-size: var(--text-min);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

code {
  font-family: var(--font-mono);
  color: var(--color-text-soft);
}

/* Form controls inherit the site font and meet the same minimums */
button, select, input, textarea {
  font-family: var(--font-mono);
  font-size: var(--text-small);
}
