/* Design tokens — QuoteCard */
:root {
  --color-bg: #FAF7F2;
  --color-surface: #FFFFFF;
  --color-text: #1F1F27;
  --color-text-muted: #6B6B7A;
  --color-accent: #2563EB;
  --color-accent-soft: #DBEAFE;
  --color-border: #E5E5EA;
  --color-success: #059669;

  --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-8: 48px;
  --space-10: 64px;

  --radius: 8px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);

  --breakpoint-tablet: 768px;
  --breakpoint-desktop: 1200px;
}
