/* GPUBeat — Techy theme
 * Bloomberg terminal × Linear app
 * Design tokens + utility primitives + component classes
 * (Ports styles.css + extracts inline styles from JSX prototypes)
 */

/* ─── Design tokens ─────────────────────────────────────────────── */
:root {
  /* Surfaces */
  --bg:               #0A0A0B;
  --surface-1:        #141416;
  --surface-2:        #1E1E20;
  --surface-3:        #26262A;
  --border:           #2A2A2D;
  --border-strong:    #3A3A3F;
  --border-faint:     #1A1A1D;

  /* Text */
  --text:             #F2F2F2;
  --text-2:           #C9CDD4;
  --text-3:           #9CA3AF;
  --text-4:           #6B7280;
  --text-5:           #4B5563;

  /* Accents */
  --cyan:             #00E5FF;
  --cyan-dim:         #00B8CC;
  --cyan-soft:        rgba(0, 229, 255, 0.12);
  --amber:            #FFB800;
  --amber-soft:       rgba(255, 184, 0, 0.12);
  --up:               #22C55E;
  --down:             #EF4444;

  /* Category accents */
  --cat-frontier:     #00E5FF;
  --cat-chips:        #FFB800;
  --cat-inference:    #A78BFA;
  --cat-training:     #34D399;
  --cat-opensource:   #FB923C;
  --cat-capital:      #F87171;
  --cat-geopol:       #F472B6;

  /* Typography */
  --f-sans:           "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-serif:          "Source Serif 4", "Source Serif Pro", Georgia, serif;
  --f-mono:           "JetBrains Mono", "SF Mono", ui-monospace, Menlo, monospace;
  --f-headline:       var(--f-sans);

  /* Scale */
  --container:        1320px;
  --gutter:           32px;
  --gutter-sm:        20px;
  --rule:             1px;

  /* Default accent (overridable per body / section) */
  --accent:           var(--cyan);
}

/* ─── Reset / base ──────────────────────────────────────────────── */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-sans);
  font-feature-settings: "ss01","cv11","kern";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, svg, video { display: block; max-width: 100%; height: auto; }
::selection { background: var(--cyan); color: #001014; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }

.gp-container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.gp-skip-link { position: absolute; left: -9999px; top: 0; }
.gp-skip-link:focus { position: static; padding: 8px 12px; background: var(--cyan); color: #001014; z-index: 999; }

/* ─── Utility primitives ───────────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-sans);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-2); line-height: 1;
}
.tag::before {
  content: ""; width: 6px; height: 6px;
  background: var(--accent, var(--cyan)); flex: 0 0 6px;
}
.tag.no-dot::before { display: none; }
.tag.tag-pill {
  padding: 5px 8px 5px 7px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  color: var(--accent);
}

.meta {
  font-family: var(--f-mono);
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-3); line-height: 1;
}
.meta .sep, .meta-sep { margin: 0 8px; color: var(--text-5); }
.meta .sep::before, .meta-sep::before { content: "›"; }

.num {
  font-family: var(--f-mono);
  font-variant-numeric: tabular-nums;
}

.up   { color: var(--up); }
.down { color: var(--down); }
.cyan { color: var(--cyan); }
.amber{ color: var(--amber); }

/* ─── Headlines ────────────────────────────────────────────────── */
.hl {
  font-family: var(--f-headline);
  letter-spacing: -0.018em;
  line-height: 1.05;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  text-wrap: balance;
}
.hl.serif {
  font-family: var(--f-serif);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.08;
}
.dek {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.45;
  color: var(--text-3);
  margin: 0;
  text-wrap: pretty;
}

/* ─── Card hover (cyan glow, no lift) ───────────────────────────── */
.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: color .12s ease;
}
.card-link:hover .hl { color: var(--accent, var(--cyan)); }
.card-link:hover .card-img::after { opacity: 1; }
.card-img {
  position: relative;
  overflow: hidden;
  background: var(--surface-1);
  border: 1px solid var(--border);
}
.card-img::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px var(--accent, var(--cyan));
  opacity: 0; transition: opacity .15s ease;
  pointer-events: none;
}
.card-img > svg, .card-img > img { width: 100%; height: 100%; display: block; object-fit: cover; }

/* ─── Rules ────────────────────────────────────────────────────── */
.rule        { height: 1px; background: var(--border); border: 0; margin: 0; }
.rule-strong { height: 1px; background: var(--border-strong); border: 0; margin: 0; }

/* ─── Strip header (section heading row) ──────────────────────── */
.strip-head {
  display: flex; align-items: baseline; justify-content: space-between;
  border-top: 1px solid var(--border-strong);
  padding-top: 14px;
  margin-bottom: 20px;
}
.strip-head .lhs { display: flex; align-items: baseline; gap: 14px; }
.strip-head h2 {
  font-family: var(--f-sans); font-size: 18px; font-weight: 600;
  letter-spacing: -0.01em; margin: 0; color: var(--text);
}
.strip-head .tagline {
  font-family: var(--f-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-4);
}
.strip-head .strip-all {
  font-family: var(--f-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-3); text-decoration: none;
}
.strip-head .strip-all:hover { color: var(--accent, var(--cyan)); }
.strip-head .accent-bar {
  height: 3px; width: 32px;
  background: var(--accent, var(--cyan));
}

/* ─── Logo ──────────────────────────────────────────────────────── */
.gp-logo {
  display: inline-flex; align-items: center; gap: 9px;
  text-decoration: none; color: var(--text);
  font-family: var(--f-sans); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1;
}
.gp-logo svg { display: block; }
.gp-logo .gp-logo-dot { color: var(--cyan); }

/* ─── Header ───────────────────────────────────────────────────── */
.gp-header { background: var(--bg); border-bottom: 1px solid var(--border); }
.gp-header-utility {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 28px; height: 32px;
  border-bottom: 1px solid var(--border-faint);
  font-family: var(--f-mono); font-size: 11px; color: var(--text-4);
}
.gp-header-utility a { color: var(--text-3); text-decoration: none; }
.gp-header-utility a.signin { color: var(--cyan); }
.gp-header-utility .gp-util-left { display: flex; gap: 18px; align-items: center; }
.gp-header-utility .gp-util-right { display: flex; gap: 16px; }
.gp-header-utility .gp-util-bullet { color: var(--text-5); }

.gp-header-brand {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; padding: 20px 28px 18px; gap: 24px;
}
.gp-header-brand .gp-brand-left { display: flex; align-items: center; gap: 14px; }
.gp-header-brand .gp-tagline {
  font-family: var(--f-mono); font-size: 10.5px; color: var(--text-4);
  letter-spacing: 0.06em; text-transform: uppercase;
  padding-left: 14px; border-left: 1px solid var(--border); line-height: 1.3;
}
.gp-header-brand .gp-brand-right {
  display: flex; justify-content: flex-end; align-items: center; gap: 10px;
}
.gp-subscribe-btn {
  background: var(--cyan); color: #001014; border: 0;
  padding: 9px 14px; font-family: var(--f-sans);
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.01em;
  cursor: pointer; text-decoration: none; display: inline-block;
}
.gp-search-trigger {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surface-1); border: 1px solid var(--border);
  color: var(--text-3); padding: 8px 12px 8px 10px;
  font-family: var(--f-mono); font-size: 11.5px;
  cursor: pointer; min-width: 220px; justify-content: space-between;
}
.gp-search-trigger .gp-search-shortcut {
  font-size: 10px; padding: 2px 6px;
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--text-3);
}

.gp-nav {
  display: flex; align-items: center; gap: 0;
  padding: 0 28px; border-top: 1px solid var(--border-faint);
}
.gp-nav-item {
  display: inline-flex; align-items: center;
  padding: 14px 16px;
  font-family: var(--f-sans); font-size: 13px; font-weight: 500;
  color: var(--text-2); text-decoration: none;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  letter-spacing: -0.005em; transition: color .12s;
}
.gp-nav-item:hover, .gp-nav-item.active {
  color: var(--accent, var(--cyan));
  border-bottom-color: var(--accent, var(--cyan));
}
.gp-nav-item .gp-nav-num {
  color: var(--text-5); margin-right: 8px;
  font-family: var(--f-mono); font-size: 10.5px;
}
.gp-nav-item.gp-nav-stack {
  color: var(--cyan); border-left: 1px solid var(--border);
  margin-left: auto;
}

/* ─── Ticker ───────────────────────────────────────────────────── */
.gp-ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #0c0c0e;
  overflow: hidden; position: relative;
  height: 36px;
}
.gp-ticker-marquee {
  display: flex; gap: 0;
  animation: gp-tickermove 80s linear infinite;
  white-space: nowrap;
  height: 36px;
  align-items: center;
  padding-left: 28px;
}
.gp-ticker:hover .gp-ticker-marquee { animation-play-state: paused; }
@keyframes gp-tickermove {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.33%); }
}
.gp-ticker-item {
  display: inline-flex; align-items: baseline; gap: 8px;
  padding-right: 36px;
  font-family: var(--f-mono); font-size: 11.5px;
  border-right: 1px solid var(--border);
}
.gp-ticker-item .gp-ticker-label { color: var(--cyan); letter-spacing: 0.04em; }
.gp-ticker-item .gp-ticker-value { color: var(--text); font-weight: 500; }
.gp-ticker-item .gp-ticker-sub   { color: var(--text-4); }
.gp-ticker-item .gp-ticker-note  { color: var(--text-4); font-size: 10.5px; margin-left: 4px; }

/* ─── TODAY rail (homepage) ────────────────────────────────────── */
.gp-today {
  border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 120px 1fr;
  align-items: stretch;
}
.gp-today-meta {
  padding: 14px 16px 14px 0; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: center;
}
.gp-today-meta .gp-today-label {
  font-family: var(--f-mono); font-size: 10.5px; color: var(--cyan);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.gp-today-meta .gp-today-date {
  font-family: var(--f-mono); font-size: 10.5px; color: var(--text-4);
  margin-top: 4px;
}
.gp-today-list { display: flex; overflow: hidden; }
.gp-today-item {
  flex: 1; padding: 12px 16px;
  border-right: 1px solid var(--border);
  text-decoration: none; color: var(--text-2);
  display: flex; flex-direction: column; gap: 6px;
  min-width: 0; transition: background .12s;
}
.gp-today-item:last-child { border-right: 0; }
.gp-today-item:hover { background: rgba(255,255,255,0.02); }
.gp-today-item .gp-today-row {
  display: flex; justify-content: space-between; align-items: center;
}
.gp-today-item .gp-today-time {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--accent, var(--cyan)); letter-spacing: 0.08em;
}
.gp-today-item .gp-today-dot {
  width: 6px; height: 6px; background: var(--accent, var(--cyan));
}
.gp-today-item .hl {
  font-size: 12px; line-height: 1.25; font-weight: 500; color: var(--text);
}

/* ─── Hero block (1 + 4) ───────────────────────────────────────── */
.gp-hero-grid {
  display: grid; grid-template-columns: 1.55fr 1fr;
  gap: 40px; padding: 28px 0 40px;
}
.gp-hero-side { display: flex; flex-direction: column; gap: 18px; }
.gp-hero-side-head {
  font-family: var(--f-mono); font-size: 10.5px; color: var(--text-4);
  letter-spacing: 0.08em; text-transform: uppercase;
  padding-bottom: 8px; border-bottom: 1px solid var(--border-strong);
  display: flex; justify-content: space-between;
}
.gp-hero-side-head .gp-time { color: var(--cyan); }

/* Hero card (large) */
.gp-hero-card .card-img { aspect-ratio: 16 / 10; }
.gp-hero-card .gp-hero-meta-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px; padding-top: 16px;
}
.gp-hero-card .gp-hero-meta-row .meta { margin-left: auto; color: var(--text-4); }
.gp-hero-card .hl { font-size: 38px; line-height: 1.04; margin-bottom: 12px; }
.gp-hero-card .dek { font-size: 17px; margin-bottom: 16px; color: var(--text-2); }
.gp-breaking-pill {
  font-family: var(--f-mono); font-size: 10px; color: var(--amber);
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
}

/* Article meta (byline) */
.gp-byline { display: flex; align-items: center; gap: 10px; }
.gp-byline .gp-avatar {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, #2A6FDB, #00E5FF);
  flex: 0 0 22px; font-size: 9px; color: #001014;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--f-sans);
}
.gp-byline .gp-byline-name { color: var(--text-2); font-family: var(--f-mono); font-size: 11px; }
.gp-byline .meta { font-family: var(--f-mono); font-size: 11px; color: var(--text-3); }

/* Side rail card */
.gp-siderail-card {
  display: block; padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.gp-siderail-card .gp-meta-row {
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
}
.gp-siderail-card .gp-meta-row .meta { margin-left: auto; color: var(--text-4); font-size: 10.5px; }
.gp-siderail-card .hl { font-size: 17px; line-height: 1.18; margin-bottom: 8px; font-weight: 500; }
.gp-siderail-card .dek { font-size: 13.5px; line-height: 1.42; color: var(--text-4); }

/* Grid card */
.gp-grid-card .card-img { aspect-ratio: 16 / 10; margin-bottom: 14px; }
.gp-grid-card .gp-meta-row {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.gp-grid-card .gp-meta-row .meta { margin-left: auto; color: var(--text-4); font-size: 10.5px; }
.gp-grid-card .hl { font-size: 19px; line-height: 1.14; margin-bottom: 10px; font-weight: 500; }
.gp-grid-card.gp-grid-card-compact .hl { font-size: 17px; }
.gp-grid-card .dek { font-size: 14px; line-height: 1.42; margin-bottom: 12px; color: var(--text-4); }
.gp-grid-card .gp-credit { color: var(--text-4); font-size: 10.5px; font-family: var(--f-mono); }

/* Line card */
.gp-line-card {
  display: flex; gap: 16px;
  padding-bottom: 18px; border-bottom: 1px solid var(--border);
}
.gp-line-card .gp-line-num {
  font-family: var(--f-mono); font-size: 12px;
  color: var(--accent, var(--cyan)); min-width: 24px; font-weight: 500;
}
.gp-line-card .gp-line-body { flex: 1; }
.gp-line-card .gp-meta-row {
  display: flex; align-items: center; gap: 10px; margin-bottom: 6px;
}
.gp-line-card .gp-meta-row .meta { color: var(--text-4); font-size: 10.5px; }
.gp-line-card .hl { font-size: 15.5px; line-height: 1.22; font-weight: 500; margin-bottom: 4px; }
.gp-line-card .dek { font-size: 13px; line-height: 1.42; color: var(--text-4); margin: 0; }

/* Mini card (sidebar related) */
.gp-mini-card { display: flex; gap: 12px; align-items: flex-start; }
.gp-mini-card .card-img { width: 64px; height: 64px; flex: 0 0 64px; }
.gp-mini-card .gp-mini-body { flex: 1; padding-top: 2px; }
.gp-mini-card .hl { font-size: 13.5px; line-height: 1.22; font-weight: 500; margin-top: 6px; }

/* ─── Data strip (KPIs) ────────────────────────────────────────── */
.gp-data-strip {
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  padding: 24px 0; margin-bottom: 36px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
}
.gp-data-cell {
  padding: 0 20px;
  border-right: 1px solid var(--border);
}
.gp-data-cell:last-child { border-right: 0; }
.gp-data-cell .gp-data-label {
  font-family: var(--f-mono); font-size: 10.5px; color: var(--text-4);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px;
}
.gp-data-cell .gp-data-value-row {
  display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px;
}
.gp-data-cell .gp-data-value {
  font-family: var(--f-mono); font-size: 26px; font-weight: 500;
  color: var(--text); letter-spacing: -0.01em;
}
.gp-data-cell .gp-data-sub {
  font-family: var(--f-mono); font-size: 11px; color: var(--text-4);
}
.gp-data-cell .gp-data-delta-row {
  display: flex; justify-content: space-between; align-items: center;
}
.gp-data-cell .gp-data-delta {
  font-family: var(--f-mono); font-size: 11px;
}

/* ─── Category strip ───────────────────────────────────────────── */
.gp-cat-strip { padding-top: 12px; padding-bottom: 40px; }
.gp-cat-strip.gp-cat-strip-bare { padding-bottom: 0; }
/* 3 equal columns — symmetric grid (was 1.4fr / 1fr / 1fr asymmetric hero) */
.gp-cat-strip-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}

/* ─── Newsletter band ──────────────────────────────────────────── */
.gp-news-band {
  position: relative; overflow: hidden;
  border: 1px solid var(--border);
  padding: 36px 40px; margin: 24px 0 40px;
  background: linear-gradient(110deg, #0d1a1e 0%, #0A0A0B 45%, #1a1408 100%);
}
.gp-news-band::before {
  content: ""; position: absolute; inset: 0; opacity: 0.18; pointer-events: none;
  background:
    radial-gradient(ellipse at 8% 50%, #00E5FF 0%, transparent 40%),
    radial-gradient(ellipse at 95% 50%, #FFB800 0%, transparent 45%);
}
.gp-news-band .gp-news-corner {
  position: absolute; top: 14px; right: 18px;
  font-family: var(--f-mono); font-size: 10px; color: var(--text-4);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.gp-news-band-row {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.gp-news-band .gp-news-kicker {
  font-family: var(--f-mono); font-size: 11px; color: var(--cyan);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px;
}
.gp-news-band .hl { font-size: 36px; line-height: 1.06; margin-bottom: 12px; }
.gp-news-band .dek { font-size: 15px; color: var(--text-2); max-width: 460px; }
.gp-news-form { display: flex; gap: 0; margin-bottom: 14px; }
.gp-news-form input {
  flex: 1; padding: 14px 16px; background: #0a0a0b;
  border: 1px solid var(--border-strong); border-right: 0;
  color: var(--text); font-family: var(--f-mono); font-size: 13px;
  outline: none;
}
.gp-news-form button {
  background: var(--cyan); color: #001014; border: 0;
  padding: 0 22px; font-family: var(--f-sans); font-size: 13px;
  font-weight: 600; cursor: pointer; letter-spacing: 0.01em;
}
.gp-news-stats {
  display: flex; gap: 24px;
  font-family: var(--f-mono); font-size: 10.5px;
  color: var(--text-4); letter-spacing: 0.05em;
}
.gp-news-stats .gp-news-stat-val { color: var(--cyan); }

/* ─── Most read sidebar ────────────────────────────────────────── */
.gp-most-read { position: sticky; top: 20px; }
.gp-most-read-list { display: flex; flex-direction: column; gap: 18px; }

/* Compute pulse card */
.gp-compute-pulse {
  margin-top: 28px; border: 1px solid var(--border);
  padding: 18px; background: var(--surface-1);
}
.gp-compute-pulse .gp-cp-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 14px;
}
.gp-compute-pulse .gp-cp-title {
  font-family: var(--f-mono); font-size: 10.5px; color: var(--cyan);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.gp-compute-pulse .gp-cp-time {
  font-family: var(--f-mono); font-size: 10px; color: var(--text-4);
}
.gp-cp-row {
  display: grid; grid-template-columns: 1fr auto auto; gap: 12px;
  padding: 9px 0; border-top: 1px solid var(--border-faint);
  font-family: var(--f-mono); font-size: 12.5px; align-items: center;
}
.gp-cp-row:first-of-type { border-top: 0; }
.gp-cp-row .gp-cp-sku { color: var(--text-2); }
.gp-cp-row .gp-cp-price { color: var(--text); font-weight: 500; }
.gp-cp-row .gp-cp-price-unit { color: var(--text-4); font-size: 10px; }
.gp-cp-row .gp-cp-delta { min-width: 50px; text-align: right; }
.gp-compute-pulse .gp-cp-foot {
  display: flex; justify-content: space-between;
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border);
  font-family: var(--f-mono); font-size: 11px; color: var(--cyan);
}

/* ─── Article single ───────────────────────────────────────────── */
.gp-breadcrumbs {
  border-bottom: 1px solid var(--border-faint);
  padding: 14px 28px; max-width: var(--container); margin: 0 auto;
  box-sizing: border-box; width: 100%;
  font-family: var(--f-mono); font-size: 11px; color: var(--text-4);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.gp-breadcrumbs .sep { margin: 0 8px; color: var(--text-5); }
.gp-breadcrumbs .cat { color: var(--accent, var(--cyan)); }

.gp-article-layout {
  display: grid; grid-template-columns: 1fr 300px;
  gap: 48px; padding: 40px 0;
}
.gp-article {
  border-left: 4px solid var(--accent, var(--cyan));
  padding-left: 36px;
  min-width: 0;
  /* No max-width — article fills the 1fr column so figures, key-stats,
     tables, and the hero image stretch toward the sidebar. Body prose
     stays narrow via .gp-article-body max-width below. */
}
.gp-article-header { margin-bottom: 32px; }
.gp-article-meta-row {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.gp-article h1.hl {
  font-size: 52px; line-height: 1.02; letter-spacing: -0.022em;
  margin-bottom: 24px; font-weight: 600;
}
.gp-article .dek-large {
  font-family: var(--f-serif); font-weight: 400;
  font-size: 21px; line-height: 1.4;
  color: var(--text-2); margin-bottom: 28px;
}

.gp-article-byline-row {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.gp-article-byline-row .gp-avatar-lg {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #2A6FDB, #00E5FF);
  display: flex; align-items: center; justify-content: center;
  color: #001014; font-weight: 700; font-size: 13px; flex: 0 0 40px;
}
.gp-article-byline-row .gp-byline-name { font-size: 13.5px; font-weight: 600; color: var(--text); }
.gp-article-byline-row .gp-byline-bio   { font-family: var(--f-mono); font-size: 11px; color: var(--text-3); margin-top: 2px; }
.gp-article-time-grid {
  display: flex; gap: 0; align-items: center;
  border-left: 1px solid var(--border);
  margin-left: auto;
}
.gp-article-time-grid > div {
  padding: 0 18px; border-right: 1px solid var(--border);
}
.gp-article-time-grid > div:last-child { border-right: 0; }
.gp-article-time-grid .gp-time-label {
  font-family: var(--f-mono); font-size: 9.5px;
  color: var(--text-4); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 3px;
}
.gp-article-time-grid .gp-time-val {
  font-family: var(--f-mono); font-size: 12px; color: var(--text-2);
}

.gp-article-figure { margin: 0 0 36px; }
.gp-article-figure .card-img { aspect-ratio: 16 / 9; }
.gp-article-figure figcaption {
  padding-top: 10px; color: var(--text-4);
  display: flex; justify-content: space-between;
  font-family: var(--f-mono); font-size: 11px; line-height: 1;
}

/* Key stats strip */
.gp-keystats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border); margin-bottom: 36px;
  background: var(--surface-1);
}
.gp-keystats > div {
  padding: 16px 18px; border-right: 1px solid var(--border);
}
.gp-keystats > div:last-child { border-right: 0; }
.gp-keystats .gp-ks-label {
  font-family: var(--f-mono); font-size: 9.5px;
  color: var(--text-4); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 6px;
}
.gp-keystats .gp-ks-value {
  font-family: var(--f-mono); font-size: 22px; font-weight: 500; margin-bottom: 4px;
}
.gp-keystats .meta { color: var(--text-4); }

/* Body typography — prose fills the article column (no max-width cap)
   so it reads tight against the sidebar, matching the figure/keystats
   width. Line-length comes in around 95-100 chars which is wider than
   classic prose ideal but matches the design's data-density vibe. */
.gp-article-body {
  font-family: var(--f-serif);
  font-size: 18.5px; line-height: 1.62;
  color: var(--text-2);
}
.gp-article-body > p:first-child {
  margin-top: 0; font-size: 22px; line-height: 1.5; color: var(--text);
}
.gp-article-body p { margin: 0 0 1em; }
.gp-article-body p:first-child::first-letter {
  font-family: var(--f-headline); font-size: 56px; line-height: 1;
  font-weight: 600;
  float: left; margin-right: 12px; margin-top: 6px;
  color: var(--cyan);
}
.gp-article-body h2 {
  font-family: var(--f-headline); font-size: 28px; font-weight: 600;
  margin-top: 40px; margin-bottom: 16px;
  color: var(--text); letter-spacing: -0.015em;
}
.gp-article-body strong { color: var(--text); }
.gp-article-body a {
  color: var(--cyan); text-decoration: none;
  border-bottom: 1px solid transparent; transition: border-color .12s;
}
.gp-article-body a:hover { border-bottom-color: var(--cyan); }
.gp-article-body sup a { border-bottom: 0; }
.gp-article-body img,
.gp-article-body figure { margin: 24px 0; }

/* Social embeds (X, IG, Threads, YouTube, TikTok) inside article body.
   Constraints:
     • Full-width within the article column (already wider after the
       max-width removal).
     • Centered horizontally.
     • Subtle dark frame so the bright platform widgets don't clash with
       the near-black surface.
   YouTube auto-embed renders as <iframe> via wpautop wrap; X/IG/Threads
   render as <blockquote> hydrated by their respective platform scripts. */
.gp-article-body iframe[src*="youtube.com"],
.gp-article-body iframe[src*="youtu.be"],
.gp-article-body iframe[src*="tiktok.com"],
.gp-article-body iframe[src*="x.com"],
.gp-article-body iframe[src*="twitter.com"],
.gp-article-body iframe[src*="instagram.com"] {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 1px solid var(--border);
  background: #000;
  margin: 24px auto;
}
/* X / Twitter blockquote (pre-hydration state + post-hydration wrapper) */
.gp-article-body .twitter-tweet,
.gp-article-body .twitter-tweet-rendered {
  margin: 24px auto !important;
  max-width: 550px;
}
/* Instagram + Threads blockquote */
.gp-article-body .instagram-media,
.gp-article-body .text-post-media {
  margin: 24px auto !important;
  max-width: 540px;
}
/* TikTok embed wrapper */
.gp-article-body .tiktok-embed {
  margin: 24px auto !important;
  max-width: 605px;
}
/* WordPress's auto-embed wraps oEmbed iframes in <figure class="wp-block-embed"> */
.gp-article-body .wp-block-embed,
.gp-article-body figure.wp-block-embed {
  margin: 24px 0;
}
.gp-article-body .wp-block-embed__wrapper iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  display: block;
  border: 1px solid var(--border);
}
/* Pull-quote sidebox */
.gp-pullquote {
  margin: 36px 0; padding: 20px 24px;
  background: var(--surface-1);
  border-left: 3px solid var(--cyan);
}
.gp-pullquote-kicker {
  font-family: var(--f-mono); font-size: 10.5px; color: var(--cyan);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px;
}
.gp-pullquote p {
  margin: 0; font-family: var(--f-sans); font-size: 17px;
  line-height: 1.45; color: var(--text); font-weight: 400;
}

/* Allocation-style table */
.gp-article-table {
  border: 1px solid var(--border); margin: 24px 0; overflow: hidden;
  font-family: var(--f-mono); font-size: 13px;
}
.gp-article-table .gp-tbl-head {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  padding: 12px 16px;
  background: var(--surface-1); border-bottom: 1px solid var(--border);
  font-size: 10.5px; color: var(--text-4);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.gp-article-table .gp-tbl-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  padding: 11px 16px; border-top: 1px solid var(--border-faint);
  align-items: baseline;
}

/* Cited sources */
.gp-citations {
  margin-top: 48px; padding: 24px 0 0;
  border-top: 1px solid var(--border-strong);
}
.gp-citations-kicker {
  font-family: var(--f-mono); font-size: 11px; color: var(--cyan);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px;
}
.gp-citations ol {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.gp-citations li {
  display: grid; grid-template-columns: 32px 1fr; gap: 8px;
  font-family: var(--f-serif); font-size: 14.5px;
  line-height: 1.5; color: var(--text-3);
}
.gp-citations .num { color: var(--cyan); }

/* Author bio block */
.gp-author-bio {
  margin-top: 48px; padding: 24px;
  background: var(--surface-1); border: 1px solid var(--border);
  display: flex; gap: 20px; align-items: flex-start;
}
.gp-author-bio .gp-avatar-xl {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #2A6FDB, #00E5FF);
  display: flex; align-items: center; justify-content: center;
  color: #001014; font-weight: 700; font-size: 18px; flex: 0 0 56px;
}
.gp-author-bio .gp-author-head {
  display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px;
}
.gp-author-bio h4 { margin: 0; font-size: 16px; font-weight: 600; }
.gp-author-bio .dek-bio {
  font-family: var(--f-serif); font-size: 14px; line-height: 1.5;
  color: var(--text-3); margin: 0 0 12px;
}
.gp-author-bio .gp-bio-links {
  display: flex; gap: 16px; flex-wrap: wrap;
}

/* Share line */
.gp-share-line {
  margin-top: 32px; display: flex; align-items: center; gap: 16px;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.gp-share-line .gp-share-rule { flex: 1; height: 1px; background: var(--border); }
.gp-share-line a {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--text-3); text-decoration: none;
  padding: 6px 10px; border: 1px solid var(--border);
}
.gp-share-line a:hover { color: var(--cyan); border-color: var(--cyan); }

/* Article sidebar */
.gp-article-sidebar {
  position: sticky; top: 20px;
  display: flex; flex-direction: column; gap: 28px;
  min-width: 0;
}
.gp-toc-head {
  font-family: var(--f-mono); font-size: 10.5px; color: var(--text-4);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 14px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.gp-toc-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.gp-toc-list a {
  display: grid; grid-template-columns: 24px 1fr; gap: 8px;
  text-decoration: none; align-items: baseline;
  color: var(--text-3); font-size: 13.5px; line-height: 1.35;
  padding: 4px 0; border-left: 2px solid transparent;
  padding-left: 10px; margin-left: -12px;
}
.gp-toc-list a.active, .gp-toc-list a:hover {
  color: var(--cyan); border-left-color: var(--cyan);
}
.gp-toc-list .num { font-size: 10.5px; color: var(--text-5); }
.gp-toc-list a.active .num { color: var(--cyan); }

.gp-tags-block {
  padding: 16px; border: 1px solid var(--border);
  background: var(--surface-1);
}
.gp-tags-block .gp-tags-label {
  font-family: var(--f-mono); font-size: 10px; color: var(--text-4);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px;
}
.gp-tags-block .gp-tags-list {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px;
}
.gp-tags-block .gp-tag-chip {
  font-family: var(--f-mono); font-size: 10.5px; color: var(--text-2);
  padding: 4px 8px; background: var(--surface-2);
  border: 1px solid var(--border); text-decoration: none;
}
.gp-tags-block .gp-tags-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  font-family: var(--f-mono); font-size: 11px;
}
.gp-tags-block .gp-tg-label {
  color: var(--text-4); font-size: 9.5px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.gp-tags-block .gp-tg-val { color: var(--text-2); margin-top: 3px; }

/* Sidebar banner (300×250 — IAB Medium Rectangle / MPU, the standard
   programmatic ad size). Fits the 300px sidebar edge-to-edge.
   Only renders if image set via Customizer. Inherits sticky from parent. */
.gp-banner-slot {
  display: flex; flex-direction: column; align-items: center;
  padding: 6px 0;
}
.gp-banner-slot a, .gp-banner-slot .gp-banner-img {
  display: block;
  width: 300px; height: 250px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-1);
  transition: border-color .12s;
}
.gp-banner-slot a:hover { border-color: var(--cyan); }
.gp-banner-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gp-banner-slot .gp-banner-label {
  display: block; padding: 4px 0 6px;
  font-family: var(--f-mono); font-size: 9.5px; color: var(--text-5);
  letter-spacing: 0.1em; text-transform: uppercase; text-align: center;
}

/* Newsletter mini (sidebar) */
.gp-news-mini {
  padding: 18px; border: 1px solid var(--border);
  background: linear-gradient(160deg, #0d1a1e 0%, #1a1408 100%);
}
.gp-news-mini-kicker {
  font-family: var(--f-mono); font-size: 10px; color: var(--cyan);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px;
}
.gp-news-mini h4 { font-size: 15px; line-height: 1.25; margin: 0 0 12px; font-weight: 500; }
.gp-news-mini-form { display: flex; border: 1px solid var(--border-strong); }
.gp-news-mini-form input {
  flex: 1; padding: 8px 10px; background: #0a0a0b; border: 0;
  color: var(--text); font-family: var(--f-mono); font-size: 11px; outline: none;
}
.gp-news-mini-form button {
  background: var(--cyan); color: #001014; border: 0;
  padding: 0 12px; font-size: 11px; font-weight: 600; cursor: pointer;
}

/* Related strip */
.gp-related {
  margin-top: 64px; padding-top: 32px;
  border-top: 1px solid var(--border-strong);
}
.gp-related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}

/* ─── Category page ────────────────────────────────────────────── */
.gp-cat-masthead {
  border-bottom: 1px solid var(--border);
}
.gp-cat-masthead-inner {
  padding: 36px 28px 28px;
}
.gp-cat-crumbs {
  display: flex; align-items: baseline; gap: 14px; margin-bottom: 16px;
  font-family: var(--f-mono); font-size: 11px; color: var(--text-4);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.gp-cat-crumbs .sep { color: var(--text-5); }
.gp-cat-crumbs .cur { color: var(--accent, var(--cyan)); }
.gp-cat-title-row {
  display: grid; grid-template-columns: 1fr auto;
  gap: 32px; align-items: flex-end;
}
.gp-cat-title-row h1.hl {
  font-size: 64px; line-height: 1; letter-spacing: -0.025em; margin-bottom: 16px;
}
.gp-cat-title-row h1.hl .gp-cat-slash { color: var(--accent, var(--cyan)); }
.gp-cat-tagline {
  font-family: var(--f-serif); font-size: 22px; line-height: 1.3;
  color: var(--text-2); margin: 0; max-width: 720px; font-style: italic;
}
.gp-cat-stats {
  display: flex; gap: 0; align-items: stretch;
  border: 1px solid var(--border);
}
.gp-cat-stats > div {
  padding: 12px 18px; border-right: 1px solid var(--border); min-width: 92px;
}
.gp-cat-stats > div:last-child { border-right: 0; }
.gp-cat-stats .gp-cs-label {
  font-family: var(--f-mono); font-size: 9.5px; color: var(--text-4);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px;
}
.gp-cat-stats .gp-cs-value {
  font-family: var(--f-mono); font-size: 20px; font-weight: 500; margin-bottom: 2px;
}
.gp-cat-filters {
  display: flex; gap: 0; margin-top: 28px;
  border-top: 1px solid var(--border); padding-top: 18px;
  align-items: center;
}
.gp-cat-filter {
  font-family: var(--f-mono); font-size: 11px; text-decoration: none;
  color: var(--text-3); padding: 8px 14px;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  display: inline-flex; gap: 6px; align-items: baseline;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.gp-cat-filter.active {
  color: var(--accent, var(--cyan));
  border-bottom-color: var(--accent, var(--cyan));
}
.gp-cat-filter .gp-count { color: var(--text-5); font-size: 10px; }
.gp-cat-sort {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-mono); font-size: 11px;
  color: var(--text-4); margin-left: auto;
}
.gp-cat-sort a { color: var(--text-3); text-decoration: none; }
.gp-cat-sort a.active { color: var(--accent, var(--cyan)); }

.gp-cat-hero-row {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border); margin-bottom: 40px;
}

.gp-archive-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px;
}

/* Pagination */
.gp-pagination {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid var(--border);
}
.gp-pagination .gp-page-list {
  display: flex; gap: 8px; align-items: center;
}
.gp-pagination a, .gp-pagination span.current, .gp-pagination span.dots {
  font-family: var(--f-mono); font-size: 12px;
  color: var(--text-3); padding: 6px 11px; text-decoration: none;
  min-width: 14px; text-align: center;
  border: 1px solid var(--border);
}
.gp-pagination span.current {
  color: #001014; background: var(--accent, var(--cyan)); border: 0;
}
.gp-pagination span.dots { border: 0; }

/* ─── 404 page ────────────────────────────────────────────────── */
.gp-404 {
  padding: 60px 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: flex-start;
}
.gp-404-kicker {
  font-family: var(--f-mono); font-size: 11px; color: var(--down);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px;
}
.gp-404-num {
  font-size: 96px; line-height: 0.95; letter-spacing: -0.03em; margin-bottom: 20px;
  font-family: var(--f-mono); font-weight: 500; color: var(--text);
}
.gp-404-num .one { color: var(--cyan); }
.gp-404-num .four { color: var(--down); }
.gp-404 .dek-large {
  font-family: var(--f-serif); font-size: 22px; line-height: 1.4;
  color: var(--text-2); margin-bottom: 28px;
}
.gp-404-diag {
  font-family: var(--f-mono); font-size: 12px;
  background: var(--surface-1); border: 1px solid var(--border);
  padding: 16px; margin-bottom: 28px;
}
.gp-404-diag-grid {
  display: grid; grid-template-columns: 120px 1fr; gap: 10px; line-height: 1.7;
}
.gp-404-diag-grid .lbl { color: var(--text-4); }
.gp-404-diag-grid .red { color: var(--down); }
.gp-404-diag-grid .cy  { color: var(--cyan); }
.gp-404-actions { display: flex; gap: 12px; }
.gp-404-actions button, .gp-404-actions a {
  padding: 12px 18px;
  font-family: var(--f-sans); font-size: 13.5px;
  font-weight: 600; cursor: pointer; letter-spacing: 0.01em;
  text-decoration: none; border: 0; display: inline-block;
}
.gp-404-actions .primary { background: var(--cyan); color: #001014; }
.gp-404-actions .ghost   { background: transparent; color: var(--text-2); border: 1px solid var(--border-strong); }

.gp-404-sections {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
}
.gp-404-section-link {
  display: grid; grid-template-columns: 32px 1fr auto; gap: 10px;
  padding: 12px 14px; text-decoration: none; color: var(--text-2);
  border-bottom: 1px solid var(--border-faint);
  align-items: baseline;
}
.gp-404-section-link:nth-child(odd) { border-right: 1px solid var(--border-faint); }
.gp-404-section-link .num { font-size: 10.5px; color: var(--accent); }
.gp-404-section-link .gp-404-sec-name { font-size: 14px; font-weight: 500; }
.gp-404-section-link .gp-404-sec-tag  { font-size: 11.5px; color: var(--text-4); font-family: var(--f-mono); margin-top: 2px; }
.gp-404-section-link .arrow { color: var(--accent); }

/* ─── Search modal ─────────────────────────────────────────────── */
.gp-search-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0, 0, 0, 0.72);
  display: none;
  align-items: flex-start; justify-content: center;
  padding-top: 88px;
}
.gp-search-overlay.open { display: flex; }
.gp-search-modal {
  width: 720px; max-width: calc(100% - 32px);
  background: var(--surface-1);
  border: 1px solid var(--border-strong);
  box-shadow: 0 24px 80px rgba(0, 229, 255, 0.08), 0 0 0 1px rgba(0,229,255,0.15);
}
.gp-search-input-row {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.gp-search-input-row input {
  flex: 1; background: transparent; border: 0; color: var(--text);
  font-family: var(--f-sans); font-size: 18px;
  outline: none; letter-spacing: -0.005em;
}
.gp-search-esc {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--text-4); padding: 4px 8px;
  border: 1px solid var(--border); background: var(--surface-2);
}
.gp-search-jumps {
  padding: 14px 20px 16px; border-top: 1px solid var(--border);
}
.gp-search-jumps .gp-jump-head {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--text-4); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 10px;
}
.gp-search-jumps .gp-jumps-list {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.gp-search-jumps a {
  font-family: var(--f-mono); font-size: 11px; text-decoration: none;
  padding: 6px 10px; background: var(--surface-2); border: 1px solid var(--border);
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent, var(--cyan));
}

/* ─── Footer ───────────────────────────────────────────────────── */
.gp-footer {
  border-top: 1px solid var(--border); margin-top: 60px;
  background: #070708; padding: 48px 28px 32px;
}
.gp-footer-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px;
}
.gp-footer-col h4 {
  font-family: var(--f-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-4); margin: 0 0 14px;
}
.gp-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.gp-footer-col a { color: var(--text-2); text-decoration: none; font-size: 13px; }
.gp-footer-col a:hover { color: var(--cyan); }
.gp-footer .gp-foot-blurb {
  font-family: var(--f-serif); font-size: 14px; line-height: 1.5;
  color: var(--text-3); margin: 14px 0 0; max-width: 280px;
}
.gp-footer-news-input {
  display: flex; gap: 0; border: 1px solid var(--border); margin-top: 12px;
}
.gp-footer-news-input input {
  flex: 1; padding: 8px 10px; background: transparent; border: 0;
  color: var(--text); font-family: var(--f-mono); font-size: 12px; outline: none;
}
.gp-footer-news-input button {
  background: var(--cyan); color: #001014; border: 0;
  padding: 0 14px; font-size: 12px; font-weight: 600; cursor: pointer;
}
.gp-footer-bottom {
  max-width: var(--container); margin: 40px auto 0;
  padding-top: 20px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.gp-footer-bottom .meta { color: var(--text-4); }
.gp-footer-bottom .gp-footer-legal { display: flex; gap: 18px; }
.gp-footer-bottom .gp-footer-legal a { color: var(--text-3); text-decoration: none; }

/* ─── Responsive (mobile-first ish, design is desktop-first) ─── */
@media (max-width: 1100px) {
  .gp-hero-grid { grid-template-columns: 1fr; }
  .gp-cat-hero-row { grid-template-columns: 1fr; }
  .gp-article-layout { grid-template-columns: 1fr; }
  .gp-article-sidebar { position: static; }
  .gp-archive-grid { grid-template-columns: repeat(3, 1fr); }
  .gp-cat-strip-grid { grid-template-columns: 1fr 1fr; }
  .gp-data-strip { grid-template-columns: repeat(2, 1fr); }
  .gp-news-band-row { grid-template-columns: 1fr; gap: 24px; }
  .gp-related-grid { grid-template-columns: 1fr; }
  .gp-404 { grid-template-columns: 1fr; gap: 48px; }
  .gp-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .gp-container { padding: 0 16px; }
  .gp-header-utility, .gp-header-brand, .gp-nav, .gp-ticker-marquee { padding-left: 16px; padding-right: 16px; }
  .gp-header-brand { grid-template-columns: 1fr; gap: 12px; }
  .gp-header-brand .gp-tagline { display: none; }
  .gp-header-brand .gp-brand-right { justify-content: flex-start; }
  .gp-search-trigger { min-width: 0; flex: 1; }
  .gp-nav { overflow-x: auto; flex-wrap: nowrap; }
  .gp-today { grid-template-columns: 1fr; }
  .gp-today-meta { border-right: 0; border-bottom: 1px solid var(--border); padding: 12px 16px; }
  .gp-today-list { flex-direction: column; }
  .gp-today-item { border-right: 0; border-bottom: 1px solid var(--border-faint); }
  .gp-data-strip { grid-template-columns: 1fr; }
  .gp-data-cell { border-right: 0; border-bottom: 1px solid var(--border); padding: 14px 16px; }
  .gp-cat-strip-grid, .gp-archive-grid { grid-template-columns: 1fr; }
  .gp-article { padding-left: 16px; border-left-width: 3px; }
  .gp-article h1.hl { font-size: 32px; }
  .gp-article .dek-large { font-size: 17px; }
  .gp-keystats { grid-template-columns: 1fr 1fr; }
  .gp-keystats > div:nth-child(2) { border-right: 0; }
  .gp-keystats > div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .gp-cat-title-row { grid-template-columns: 1fr; }
  .gp-cat-title-row h1.hl { font-size: 40px; }
  .gp-cat-filters { overflow-x: auto; padding-bottom: 4px; }
  .gp-cat-sort { display: none; }
  .gp-footer-grid { grid-template-columns: 1fr; }
  .gp-footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .gp-news-band { padding: 24px 20px; }
  .gp-news-band .hl { font-size: 26px; }
  .gp-article-byline-row { flex-wrap: wrap; }
  .gp-article-time-grid { margin-left: 0; border-left: 0; flex-wrap: wrap; }
}
