/* ==========================================================
   TheHourlyNews Design System v1.0
   Design Tokens
   ========================================================== */

   :root {

    /* =======================================================
       COLORS
    ======================================================= */

    --color-background: #F7F7F4;
    --color-surface: #FFFFFF;

    --color-text: #111111;
    --color-text-secondary: #666666;

    --color-border: #E5E7EB;

    --color-primary: #0B57D0;
    --color-primary-hover: #0842A0;

    --color-breaking: #C62828;
    --color-success: #11875D;

    /* =======================================================
       TYPOGRAPHY
    ======================================================= */

    --font-heading: "Newsreader", Georgia, serif;
    --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
                 "Segoe UI", sans-serif;

    /* =======================================================
       FONT SIZES
    ======================================================= */

    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-md: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 3rem;
    --fs-4xl: 4rem;

    /* =======================================================
       FONT WEIGHTS
    ======================================================= */

    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    /* =======================================================
       SPACING SYSTEM (8pt Grid)
    ======================================================= */

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

    /* =======================================================
       LAYOUT
    ======================================================= */

    --container-width: 1320px;
    --reading-width: 760px;

    /* =======================================================
       BORDER RADIUS
    ======================================================= */

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;

    /* =======================================================
       SHADOWS
    ======================================================= */

    --shadow-sm: 0 2px 8px rgba(0,0,0,.04);
    --shadow-md: 0 8px 30px rgba(0,0,0,.08);

    /* =======================================================
       TRANSITIONS
    ======================================================= */

    --transition-fast: .2s ease;
    --transition: .3s ease;

}