/* blog-v2.css — carries the v2 editorial language onto the blog pages.
   Loaded AFTER each post's inline <style>, so these token-level overrides
   win the cascade without touching per-post layout rules. */

@font-face {
  font-family: 'Termina-v2';
  src: url('/fonts/v2/Termina-Medium.otf') format('opentype');
  font-weight: 500;
  font-display: swap;
}

:root {
  --dark: #1d1d1b;
  --dark-2: #232321;
  --dark-3: #2c2c29;
  --bg: #eae4da;
  --bg-card: #f3efe8;
  --text: #1d1d1b;
  --border: rgba(29, 29, 27, 0.12);
  --radius-sm: 0;
  --radius-md: 0;
}

/* Editorial display headings */
h1, h2, h3 {
  font-family: "Styrene A", system-ui, sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

/* Termina wide-caps for the small UI furniture */
.category-tag,
.breadcrumb,
.btn-try,
.post-meta,
.header-nav a {
  font-family: 'Termina-v2', "Styrene A", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.category-tag { font-size: 10px; }
.breadcrumb, .post-meta { font-size: 11px; letter-spacing: 0.1em; }
.header-nav a { font-size: 11px; }
.btn-try {
  font-size: 11px;
  border-radius: 0 !important;
  font-weight: 500 !important;
}

/* Square everything that the inline styles round */
img, .card, blockquote, pre, table {
  border-radius: 0 !important;
}
