/* ============================================
   Editorial — Design Tokens
   Premium newspaper/magazine aesthetic.
   Serif authority, thin rules, elegant spacing,
   refined reading experience.
   ============================================ */

:root {
  /* Border radius — sharp, architectural */
  --rad: 2px;

  /* Shadows — minimal, editorial restraint */
  --t-shadow: none;
  --t-shadow-hover: 0 1px 6px color-mix(in srgb, var(--txt) 6%, transparent);
  --t-shadow-lg: 0 4px 16px color-mix(in srgb, var(--txt) 8%, transparent);

  /* Hover / interaction — understated, classy */
  --t-hover-scale: 1;
  --t-speed: .25s;
  --t-ease: ease-in-out;

  /* Spacing multiplier — generous for readability */
  --t-space: 1.15;

  /* Typography — serif-forward, newspaper feel */
  --t-body-lh: 1.78;
  --t-heading-weight: 700;
  --t-heading-spacing: -.025em;
  --t-label-transform: uppercase;
  --t-label-spacing: .12em;

  /* Surface effects — none */
  --t-surface-blur: 0;
  --t-grain: none;

  /* Dividers — thin editorial rules */
  --t-divider-width: 1px;
  --t-divider-style: solid;

  /* Glow — off */
  --t-glow: none;

  /* FAB — sharp */
  --t-fab-radius: 2px;

  /* Font stacks — serif headings, sans body */
  --t-serif: Georgia, 'Noto Serif', 'Times New Roman', serif;
  --t-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif;
}
