/* ==========================================================================
   THE DROPPER EXPRESS — Newspaper Broadsheet Stylesheet
   Inspired by Wocult (broadsheet layout) & 100ft.news (tactile paper feel)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Kalam:wght@400;700&family=JetBrains+Mono:wght@500;600&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Playfair+Display:ital,wght@0,600;0,700;0,800;0,900;1,600;1,700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  --paper: #faf8f4;
  --paper-card: #ffffff;
  --paper-warm: #f4efe6;
  --paper-tint: #eee9dc;
  --ink: #121212;
  --ink-secondary: #383838;
  --ink-muted: #5c5c5c;
  --ink-faint: #888888;
  --rule-heavy: #121212;
  --rule-light: #dfd9cb;
  --yellow: #f59e0b;
  --yellow-light: #fffbeb;
  --yellow-border: #fcd34d;
  --red: #c92a2a;
  --red-light: #fff5f5;
  --green: #087f5b;
  --font-masthead: 'Playfair Display', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;
  --font-ui: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-hand: 'Caveat', 'Kalam', cursive, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: #eae5dc;
  background-image: 
    radial-gradient(120% 70% at 50% 0%, rgba(255, 255, 255, 0.55) 0%, transparent 60%),
    linear-gradient(#dfd8cc 1px, transparent 1px),
    linear-gradient(90deg, #dfd8cc 1px, transparent 1px);
  background-size: 100% 100%, 36px 36px, 36px 36px;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Subtle static paper lighting from study lamp (0ms JS overhead) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(120% 60% at 50% -10%, rgba(255, 246, 224, 0.45), transparent 70%);
}

/* Static paper grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Physical Newspaper Broadsheet Container (Lifts paper off the desk surface) */
.paper-sheet-container {
  max-width: 1220px;
  width: calc(100% - 48px);
  margin: 32px auto 64px;
  background: var(--paper);
  border: 1px solid #d4ccbd;
  border-radius: 2px;
  position: relative;
  box-shadow: 
    5px -5px 0px -1px #f4efe5,
    5px -5px 0px 0px #d4ccbd,
    10px -10px 0px -2px #ece5d6,
    10px -10px 0px -1px #c8beab,
    0 22px 55px -12px rgba(35, 25, 10, 0.22),
    0 2px 6px rgba(0, 0, 0, 0.06);
}

/* ==========================================================================
   TOP UTILITY & EDITION BAR
   ========================================================================== */
.edition-bar {
  background: #0f1115;
  color: #e2e8f0;
  font-family: var(--font-ui);
  font-size: 12px;
  padding: 8px 16px;
  border-bottom: 1px solid #232833;
}

.edition-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.edition-ticker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #cbd5e1;
}

.edition-pill {
  background: #232833;
  color: var(--yellow);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 10.5px;
}

.edition-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.edition-link {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  transition: color 0.15s ease;
}

.edition-link:hover {
  color: #ffffff;
}

.edition-btn {
  background: var(--yellow);
  color: #0f1115;
  text-decoration: none;
  font-weight: 700;
  font-size: 11.5px;
  padding: 5px 12px;
  border-radius: 4px;
  transition: transform 0.15s ease, opacity 0.15s ease;
  letter-spacing: 0.3px;
}

.edition-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* ==========================================================================
   THE MASTHEAD
   ========================================================================== */
/* ==========================================================================
   THE MASTHEAD & AUTHENTIC KOTA DROPPER DESK CANVAS (100% ZERO OVERLAP)
   ========================================================================== */
.site-masthead {
  padding: 24px 20px 16px;
  text-align: center;
  border-bottom: 1px solid var(--rule-light);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

/* 3-Column Desk Canvas Layout:
   Guarantees that Left Wing, Center Title, and Right Wing are strictly separated.
   "THE DROPPER EXPRESS" can NEVER be overlapped or covered by any sticky note or doodle.
*/
.masthead-canvas-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}

/* Wings: Dedicated study desk areas for NEET Dropper sketches and sticky notes */
.canvas-wing {
  flex: 0 0 240px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
  user-select: none;
}

.wing-left {
  align-items: flex-start;
}

.wing-right {
  align-items: flex-end;
}

/* Sticky Notes (Taped on student desk - 100% contained within wings) */
.doodle-sticky {
  position: relative;
  z-index: 10;
  padding: 9px 12px 10px;
  border-radius: 2px;
  box-shadow: 2px 4px 12px rgba(45, 35, 20, 0.12), 0 1px 3px rgba(0,0,0,0.06);
  font-family: var(--font-hand);
  text-align: left;
  line-height: 1.25;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: auto;
  cursor: pointer;
  width: 100%;
  max-width: 215px;
  box-sizing: border-box;
}

.doodle-sticky:hover {
  transform: scale(1.04) rotate(0deg) !important;
  z-index: 25;
}

/* Washi Tape Strip */
.tape-strip {
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 14px;
  background: rgba(245, 240, 225, 0.9);
  border: 1px dashed rgba(180, 160, 130, 0.5);
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

/* Note 1: Chud gaye guru (Yellow) */
.note-chudgaye {
  background: #fef9c3;
  border-left: 3.5px solid #facc15;
  transform: rotate(-2.5deg);
}

.note-chudgaye .sticky-main {
  display: block;
  font-size: 14px;
  color: #713f12;
  font-weight: 700;
}

.note-chudgaye .sticky-sub {
  display: block;
  font-size: 11.5px;
  color: #a16207;
  margin-top: 2px;
  border-top: 1px dashed rgba(161, 98, 7, 0.35);
  padding-top: 2px;
}

/* Note 2: GMC Seat (Sky Blue) */
.note-gmc {
  background: #e0f2fe;
  border-left: 3.5px solid #38bdf8;
  transform: rotate(2deg);
}

.note-gmc .sticky-main {
  display: block;
  font-size: 14px;
  color: #0369a1;
  font-weight: 700;
}

.note-gmc .sticky-sub {
  display: block;
  font-size: 11.5px;
  color: #0284c7;
  margin-top: 2px;
  border-top: 1px dashed rgba(2, 132, 199, 0.35);
  padding-top: 2px;
}

/* Note 3: Organic Chemistry (Pink) */
.note-organic {
  background: #fce7f3;
  border-left: 3.5px solid #f472b6;
  transform: rotate(1.5deg);
}

.note-organic .sticky-main {
  display: block;
  font-size: 13.5px;
  color: #831843;
  font-weight: 700;
}

.note-organic .sticky-sub {
  display: block;
  font-size: 11px;
  color: #9d174d;
  margin-top: 2px;
  border-top: 1px dashed rgba(157, 23, 77, 0.35);
  padding-top: 2px;
}

/* Note 4: Biology 360 (Mint Green) */
.note-bio {
  background: #dcfce7;
  border-left: 3.5px solid #22c55e;
  transform: rotate(-1.5deg);
}

.note-bio .sticky-main {
  display: block;
  font-size: 13.5px;
  color: #14532d;
  font-weight: 700;
}

.note-bio .sticky-sub {
  display: block;
  font-size: 11px;
  color: #166534;
  margin-top: 2px;
  border-top: 1px dashed rgba(22, 101, 52, 0.35);
  padding-top: 2px;
}

/* Hand-Drawn Vector SVG Desk Cards */
.doodle-vector-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 2px 0;
  width: 100%;
}

.svg-desk-doodle {
  display: block;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
  transition: transform 0.2s ease;
}

.svg-desk-doodle:hover {
  transform: scale(1.03);
}

.vignette-doodle-label {
  font-family: var(--font-hand);
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.2px;
}

/* Sub-row Doodles */
.doodle-sub-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 8px;
  padding: 0 2px;
}

/* Tic-Tac-Toe & Cube */
.doodle-tictactoe {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.doodle-caption {
  font-family: var(--font-hand);
  font-size: 11px;
  color: #2563eb;
  font-weight: 700;
  white-space: nowrap;
}

.doodle-cube {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}

/* Doctor Dream & Physics Panic */
.doodle-doctor-dream {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
  background: rgba(255, 255, 255, 0.7);
  padding: 3px 6px;
  border-radius: 3px;
  border: 1px dashed rgba(5, 150, 105, 0.4);
}

.doc-name {
  font-family: var(--font-hand);
  font-size: 11.5px;
  font-weight: 700;
  color: #065f46;
  white-space: nowrap;
}

.doc-college {
  font-family: var(--font-hand);
  font-size: 10px;
  font-weight: 600;
  color: #047857;
  white-space: nowrap;
}

.doodle-physics-panic {
  display: flex;
  align-items: center;
  gap: 3px;
}

.panic-speech {
  font-family: var(--font-hand);
  font-size: 10.5px;
  font-weight: 700;
  color: #b91c1c;
  line-height: 1.15;
  white-space: nowrap;
}

/* ==========================================================================
   CENTER COLUMN: 100% UNOBSTRUCTED DROPPER EXPRESS TITLE
   ========================================================================== */
.masthead-center {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.masthead-highlighter-streak {
  position: absolute;
  left: 6%;
  right: 6%;
  top: 36%;
  height: 20px;
  background: rgba(254, 240, 138, 0.38);
  transform: rotate(-0.5deg) skewX(-6deg);
  z-index: -1;
  pointer-events: none;
  border-radius: 4px;
}

.masthead-title {
  font-family: var(--font-masthead);
  font-size: 58px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-transform: uppercase;
  margin: 0 0 8px 0;
  text-align: center;
  white-space: nowrap;
}

.masthead-title a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

.masthead-subtitle {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
}

.masthead-subtitle span.sep {
  color: var(--yellow);
  font-weight: 900;
}

.doodle-arrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-hand);
  font-size: 14px;
  color: #b91c1c;
  font-weight: 700;
  margin-top: 6px;
  transform: rotate(-1deg);
}

/* Bottom Margin Doodles Strip */
.masthead-bottom-margin {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 14px auto 0;
  padding: 10px 10px 0;
  border-top: 1px dashed rgba(180, 165, 140, 0.45);
  font-family: var(--font-hand);
  font-size: 12.5px;
  color: #4b5563;
  position: relative;
  white-space: nowrap;
  gap: 12px;
}

.doodle-margin {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

.doodle-chai {
  color: #78350f;
  transform: rotate(-1deg);
}

.doodle-ink-tester {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #2563eb;
  font-size: 11px;
  opacity: 0.75;
}

.doodle-omr {
  color: #991b1b;
  transform: rotate(1deg);
}

.omr-bubbles {
  display: flex;
  gap: 3px;
}

.omr-bubbles .bubble {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.2px solid #991b1b;
  font-size: 8.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-weight: 800;
  line-height: 1;
}

.omr-bubbles .bubble.filled {
  background: #1e293b;
  color: #ffffff;
  border-color: #1e293b;
}

.doodle-stamp {
  border: 1.5px dashed rgba(185, 28, 28, 0.5);
  color: #b91c1c;
  padding: 2px 7px;
  border-radius: 3px;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 8.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transform: rotate(-4deg);
  opacity: 0.85;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}

.doodle-stamp small {
  font-size: 7px;
  letter-spacing: 0.4px;
  opacity: 0.85;
}

/* Broadsheet double rule under masthead */
.masthead-double-rule {
  max-width: 1200px;
  margin: 14px auto 0;
  border-top: 3px solid var(--rule-heavy);
  border-bottom: 1px solid var(--rule-heavy);
  height: 4px;
}

/* ==========================================================================
   BROADSHEET SUB-NAVIGATION
   ========================================================================== */
.newspaper-nav {
  border-bottom: 1px solid var(--rule-heavy);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nav-row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 10px 16px;
  flex-wrap: wrap;
}

.newspaper-link {
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--ink-secondary);
  text-decoration: none;
  padding: 4px 2px;
  position: relative;
  transition: color 0.15s ease;
}

.newspaper-link:hover,
.newspaper-link.is-active {
  color: var(--ink);
}

.newspaper-link.is-active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--yellow);
}

.nav-dot {
  color: var(--rule-light);
  font-size: 11px;
}

/* ==========================================================================
   MAIN BROADSHEET LAYOUT
   ========================================================================== */
.broadsheet-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 16px 80px;
  width: 100%;
}

/* 3-Column Newspaper Grid */
.broadsheet-grid {
  display: grid;
  grid-template-columns: 52% 24% 24%;
  gap: 0;
  border-bottom: 2px solid var(--rule-heavy);
  padding-bottom: 40px;
  margin-bottom: 48px;
}

.col-lead {
  padding-right: 28px;
}

.col-picks {
  padding: 0 24px;
  border-left: 1px solid var(--rule-light);
  border-right: 1px solid var(--rule-light);
}

.col-radar {
  padding-left: 24px;
}

/* Section Kickers */
.kicker-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--rule-heavy);
}

.kicker-text {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink);
}

.kicker-pill {
  background: var(--red);
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 2px;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   COLUMN 1: LEAD STORY
   ========================================================================== */
.lead-story {
  text-decoration: none;
  color: inherit;
  display: block;
}

.lead-headline {
  font-family: var(--font-masthead);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 14px;
}

.lead-story:hover .lead-headline {
  color: #1a365d;
}

.lead-byline {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.lead-byline strong {
  color: var(--ink);
}

.lead-deck {
  font-size: 17px;
  font-style: italic;
  color: var(--ink-secondary);
  line-height: 1.55;
  margin-bottom: 22px;
}

/* Trajectory schematic chart */
.trajectory-box {
  background: var(--paper-warm);
  border: 1px solid var(--rule-light);
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 22px;
}

.trajectory-header {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trajectory-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: center;
}

.stat-card {
  background: var(--paper-card);
  border: 1px solid var(--rule-light);
  padding: 10px 8px;
  border-radius: 4px;
}

.stat-num {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 10.5px;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Drop cap paragraph */
.lead-excerpt {
  font-size: 15.5px;
  color: var(--ink-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.drop-cap {
  float: left;
  font-family: var(--font-masthead);
  font-size: 48px;
  line-height: 0.85;
  padding-top: 4px;
  padding-right: 8px;
  padding-bottom: 2px;
  color: var(--ink);
  font-weight: 900;
}

.read-dispatch-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.read-dispatch-btn:hover {
  background: #2a2a2a;
  transform: translateY(-1px);
}

/* ==========================================================================
   COLUMN 2: MUST-READ STORIES
   ========================================================================== */
.pick-item {
  display: block;
  text-decoration: none;
  color: inherit;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--rule-light);
}

.pick-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.pick-tag {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.pick-title {
  font-family: var(--font-masthead);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 8px;
}

.pick-item:hover .pick-title {
  color: var(--red);
}

.pick-desc {
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.55;
}

/* ==========================================================================
   COLUMN 3: THE MISTAKE MIRROR & STUDY DESK WIRE
   ========================================================================== */
.mirror-card {
  background: var(--paper-warm);
  border: 2px solid var(--rule-heavy);
  padding: 20px 16px;
  text-align: center;
  border-radius: 4px;
  margin-bottom: 24px;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.15);
}

.mirror-badge {
  display: inline-block;
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.mirror-title {
  font-family: var(--font-masthead);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 8px;
}

.mirror-desc {
  font-size: 13px;
  color: var(--ink-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.mirror-btn {
  display: block;
  background: var(--red);
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.mirror-btn:hover {
  background: #b91c1c;
}

/* Wire Ticker */
.wire-container {
  border-top: 1px solid var(--rule-heavy);
  padding-top: 16px;
}

.wire-title {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wire-item {
  padding: 10px 0;
  border-bottom: 1px dashed var(--rule-light);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-secondary);
}

.wire-item strong {
  color: var(--ink);
  display: block;
  font-family: var(--font-ui);
  font-size: 11.5px;
  margin-bottom: 2px;
}

/* ==========================================================================
   SECTION 2: RESOURCES
   ========================================================================== */
.section-headline {
  margin-bottom: 28px;
}

.section-rule {
  border-top: 2px solid var(--rule-heavy);
  border-bottom: 1px solid var(--rule-heavy);
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-rule h2 {
  font-family: var(--font-masthead);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ink);
}

.section-rule span {
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink-muted);
  text-transform: uppercase;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}

.resource-card {
  background: var(--paper-card);
  border: 1px solid var(--rule-light);
  border-top: 4px solid var(--rule-heavy);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 2px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.04);
}

.resource-card:hover {
  transform: translateY(-2px);
  box-shadow: 2px 6px 12px rgba(0, 0, 0, 0.08);
}

.res-tag {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.res-title {
  font-family: var(--font-masthead);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 8px;
}

.res-desc {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.res-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  padding-top: 10px;
  border-top: 1px solid var(--rule-light);
}

.res-action:hover {
  color: var(--red);
}

/* ==========================================================================
   MASCOT STUDY BANNER
   ========================================================================== */
.mascot-banner {
  background: #11141a;
  color: #f8fafc;
  border: 2px solid #2d3748;
  border-radius: 8px;
  padding: 28px 32px;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 28px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
}

.mascot-img-wrap {
  flex: 0 0 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--yellow);
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.3);
}

.mascot-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mascot-content {
  flex: 1;
}

.mascot-kicker {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--yellow);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.mascot-title {
  font-family: var(--font-masthead);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 8px;
}

.mascot-desc {
  font-size: 14.5px;
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: 16px;
}

.mascot-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-mascot-primary {
  background: var(--yellow);
  color: #0f1115;
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: transform 0.15s ease;
}

.btn-mascot-primary:hover {
  transform: translateY(-1px);
}

.btn-mascot-secondary {
  background: transparent;
  color: #e2e8f0;
  border: 1px solid #4a5568;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.btn-mascot-secondary:hover {
  border-color: #cbd5e1;
  color: #ffffff;
}

/* ==========================================================================
   BROADSHEET ARTICLE DETAIL STYLES
   ========================================================================== */
.article-masthead {
  padding: 20px 16px 12px;
  border-bottom: 1px solid var(--rule-light);
  background: var(--paper);
}

.article-nav-row {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.article-body-wrapper {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 16px 80px;
}

.article-kicker-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--red);
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.article-title-main {
  font-family: var(--font-masthead);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.article-deck {
  font-size: 19px;
  font-style: italic;
  color: var(--ink-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
}

.article-author-bar {
  border-top: 1px solid var(--rule-heavy);
  border-bottom: 1px solid var(--rule-heavy);
  padding: 12px 0;
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.article-content p {
  font-size: 17.5px;
  line-height: 1.8;
  color: var(--ink-secondary);
  margin-bottom: 24px;
}

.article-content h2 {
  font-family: var(--font-masthead);
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule-heavy);
}

.article-content h3 {
  font-family: var(--font-masthead);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 32px;
  margin-bottom: 12px;
}

.article-content ul,
.article-content ol {
  padding-left: 24px;
  margin-bottom: 24px;
}

.article-content li {
  font-size: 16.5px;
  color: var(--ink-secondary);
  line-height: 1.75;
  margin-bottom: 12px;
}

.article-content strong {
  color: var(--ink);
}

/* Authentic Newspaper Data Table */
.newspaper-table-wrap {
  margin: 32px 0;
  border: 1px solid var(--rule-heavy);
  background: var(--paper-card);
  overflow-x: auto;
}

.newspaper-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}

.newspaper-table th {
  background: var(--ink);
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  padding: 12px 14px;
}

.newspaper-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--rule-light);
  color: var(--ink-secondary);
  vertical-align: top;
}

.newspaper-table tr:last-child td {
  border-bottom: none;
}

.newspaper-table tr:hover td {
  background: var(--paper-warm);
}

/* Routine Box */
.routine-box {
  background: var(--paper-warm);
  border-left: 4px solid var(--rule-heavy);
  padding: 20px;
  margin: 28px 0;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink);
  white-space: pre-wrap;
}

/* Editorial AEO / Notice Box */
.editorial-notice {
  background: var(--yellow-light);
  border: 1px solid var(--yellow-border);
  border-left: 4px solid var(--yellow);
  padding: 20px 24px;
  margin: 32px 0;
  border-radius: 2px;
}

.editorial-notice-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: #92400e;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.editorial-notice p {
  font-size: 15.5px !important;
  color: #78350f !important;
  margin-bottom: 0 !important;
  line-height: 1.65 !important;
}

/* FAQ Items */
.faq-block {
  border: 1px solid var(--rule-light);
  background: var(--paper-card);
  padding: 18px 20px;
  margin-bottom: 14px;
  border-radius: 2px;
}

.faq-title {
  font-family: var(--font-masthead);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.faq-text {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ==========================================================================
   NEWSPAPER FOOTER
   ========================================================================== */
.newspaper-footer {
  border-top: 3px solid var(--rule-heavy);
  background: var(--paper-warm);
  padding: 40px 16px;
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav-links a {
  color: var(--ink-secondary);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-nav-links a:hover {
  color: var(--ink);
}

/* ==========================================================================
   MOBILE & RESPONSIVE BREAKPOINTS
   ========================================================================== */
/* ==========================================================================
   MASTHEAD: NEWSPAPER-STYLE PROPORTIONAL SCALING
   The masthead layout is FIXED like a real newspaper. It never reflows or
   rearranges. On smaller screens, the entire masthead scales down
   proportionally using CSS zoom — exactly like looking at a smaller print.
   ========================================================================== */
@media (max-width: 1240px) {
  .site-masthead {
    zoom: 0.92;
  }
}
@media (max-width: 1100px) {
  .site-masthead {
    zoom: 0.82;
  }
}
@media (max-width: 960px) {
  .site-masthead {
    zoom: 0.72;
  }
}
@media (max-width: 820px) {
  .site-masthead {
    zoom: 0.62;
  }
}
@media (max-width: 680px) {
  .site-masthead {
    zoom: 0.52;
  }
}
@media (max-width: 520px) {
  .site-masthead {
    zoom: 0.44;
  }
}
@media (max-width: 420px) {
  .site-masthead {
    zoom: 0.37;
  }
}

/* ==========================================================================
   BODY CONTENT RESPONSIVE (non-masthead)
   ========================================================================== */
@media (max-width: 900px) {
  .broadsheet-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .col-lead {
    padding-right: 0;
    border-bottom: 1px solid var(--rule-heavy);
    padding-bottom: 32px;
  }

  .col-picks {
    padding: 0;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--rule-heavy);
    padding-bottom: 32px;
  }

  .col-radar {
    padding-left: 0;
  }

  .resources-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .paper-sheet-container {
    width: calc(100% - 24px);
    margin: 16px auto 48px;
    border: 1px solid #d4ccbd;
    border-radius: 4px;
    box-shadow: 
      3px -3px 0px -1px #f4efe5,
      3px -3px 0px 0px #d4ccbd,
      0 12px 36px -8px rgba(35, 25, 10, 0.18);
  }

  .mascot-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 18px;
    gap: 18px;
  }

  .mascot-actions {
    justify-content: center;
  }
}

@media (max-width: 680px) {

  .paper-sheet-container {
    width: calc(100% - 14px);
    margin: 10px auto 32px;
    border-radius: 3px;
    box-shadow: 
      2px -2px 0px -1px #f4efe5,
      2px -2px 0px 0px #d4ccbd,
      0 8px 20px -4px rgba(35, 25, 10, 0.14);
  }

  /* Score Trajectory Stats 3-card or responsive */
  .trajectory-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .stat-card {
    padding: 8px 4px;
  }

  .stat-num {
    font-size: 16px;
  }

  .stat-label {
    font-size: 9.5px;
    letter-spacing: -0.2px;
  }

  /* Resources grid single column */
  .resources-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .resource-card {
    padding: 16px 14px;
  }

  .res-action {
    width: 100%;
    justify-content: center;
    padding: 10px 14px;
    margin-top: 10px;
  }

  /* Lead story actions */
  .lead-headline {
    font-size: 24px;
    line-height: 1.2;
  }

  .lead-deck {
    font-size: 15px;
  }

  .lead-excerpt {
    font-size: 14.5px;
  }

  .read-dispatch-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 14px;
    font-size: 13px;
  }

  /* Navigation Bar */
  .nav-row {
    gap: 14px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 9px 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav-row::-webkit-scrollbar {
    display: none;
  }

  .newspaper-link {
    white-space: nowrap;
    font-size: 12px;
  }

  /* Edition top utility bar */
  .edition-bar {
    padding: 6px 10px;
  }

  .edition-container {
    justify-content: center;
    text-align: center;
    gap: 8px;
  }

  .edition-ticker {
    font-size: 10.5px;
  }

  .edition-actions {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }

  .edition-link {
    font-size: 11px;
  }

  .edition-btn {
    padding: 4px 10px;
    font-size: 10.5px;
  }

  /* Mascot banner on mobile */
  .mascot-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px 14px;
    gap: 14px;
  }

  .mascot-thumb {
    width: 72px;
    height: 72px;
    margin: 0 auto;
  }

  .mascot-actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .mascot-btn-primary,
  .mascot-btn-sub {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .article-title-main {
    font-size: 26px;
    line-height: 1.15;
  }

  .article-deck {
    font-size: 15.5px;
  }

  .article-body-wrapper {
    padding: 20px 16px 40px;
  }
}

@media (max-width: 420px) {
  .masthead-vignette {
    height: 62px;
  }

  .masthead-title {
    font-size: 25px;
  }

  .masthead-subtitle {
    font-size: 9.5px;
    gap: 6px;
  }

  .trajectory-stats {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .stat-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
  }

  .stat-label {
    margin-top: 0;
  }

  .broadsheet-grid {
    padding: 16px 12px 24px;
  }
}
