/*
Theme Name:  DeskPost
Theme URI:   https://deskpost.in
Author:      DeskPost
Description: Official theme for deskpost.in — dark editorial news theme with Jost + Geist typography.
Version:     1.0.0
License:     GNU General Public License v2
Tags:        news, dark, responsive, mobile-first
*/

/* ─── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800&family=Geist:wght@100;200;300;400;500;600&display=swap');

/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
  --bg:           #000000;
  --bg-surface:   #050505;
  --bg-card:      #0a0a0a;
  --bg-input:     #111111;
  --border:       #141414;
  --border-mid:   #1e1e1e;
  --border-light: #2a2a2a;

  --text-primary:   #ffffff;
  --text-secondary: #888888;
  --text-muted:     #444444;
  --text-ghost:     #2a2a2a;

  --accent-india:   #ff3b30;
  --accent-world:   #30d158;
  --accent-tech:    #0a84ff;
  --accent-viral:   #ff9f0a;
  --accent-sports:  #bf5af2;
  --accent-jobs:    #30d158;
  --accent-default: #636366;

  --font-logo:    'Jost', sans-serif;
  --font-body:    'Geist', sans-serif;

  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    14px;
  --radius-pill:  20px;

  --nav-height:   56px;
  --max-width:    1200px;
  --article-width: 720px;
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; background: none; border: none; font: inherit; }
ul, ol { list-style: none; }
