/* ============================================
   DIGITIZED SOCIETY — Main Stylesheet
   Dark editorial. Red as alarm. White as truth.
   ============================================ */

:root {
  --black:    #080808;
  --dark:     #0f0f0f;
  --surface:  #161616;
  --border:   #222222;
  --muted:    #555555;
  --light:    #aaaaaa;
  --white:    #f0f0f0;
  --red:      #cc1f1f;
  --red-hot:  #e02222;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-serif:   'Playfair Display', serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
.red { color: var(--red); }

/* ── TOP BAR ── */
.top-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 7px 0;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.top-bar-sep { color: var(--border); }
.top-bar-tagline { font-style: italic; color: var(--muted); }

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-social {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.top-bar-social:hover { color: var(--white); }

.top-bar-subscribe {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  transition: color 0.2s;
}

.top-bar-subscribe:hover { color: var(--red-hot); }

/* ── MAIN HEADER ── */
.site-header {
  background: var(--black);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 0.05em;
  color: var(--white);
  flex-shrink: 0;
}

.header-search {
  position: relative;
  flex: 1;
  max-width: 320px;
}

.search-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  padding: 9px 36px 9px 14px;
  outline: none;
  transition: border-color 0.2s;
}

.search-input:focus { border-color: var(--red); }
.search-input::placeholder { color: var(--muted); }

.search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.9rem;
  pointer-events: none;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
}

/* ── SECTION NAV ── */
.section-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.section-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.section-nav-links > li {
  position: relative;
}

.section-nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light);
  padding: 14px 18px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.section-nav-links > li > a:hover,
.section-nav-links > li.active > a {
  color: var(--white);
  border-bottom-color: var(--red);
}

.nav-arrow {
  font-size: 0.5rem;
  opacity: 0.5;
  transition: transform 0.2s;
}

.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

.section-nav-cta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 10px 20px;
  flex-shrink: 0;
  transition: background 0.2s;
  white-space: nowrap;
}

.section-nav-cta:hover { background: var(--red-hot); }

/* ── DROPDOWN ── */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  min-width: 320px;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  padding: 8px 0;
  margin-top: 0;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 20px;
  transition: background 0.15s;
  border-bottom: 1px solid var(--border);
}

.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { background: var(--black); }

.dropdown-tag {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.15s;
}

.dropdown-item:hover .dropdown-tag { color: var(--red); }

.dropdown-content strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}

.dropdown-content em {
  font-size: 0.73rem;
  color: var(--muted);
  font-style: normal;
}

/* ── NEWS TICKER ── */
.news-ticker {
  display: flex;
  align-items: center;
  background: var(--red);
  overflow: hidden;
  height: 34px;
}

.ticker-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white);
  background: #a01818;
  padding: 0 16px;
  height: 100%;
  flex-shrink: 0;
  white-space: nowrap;
}

.ticker-dot {
  font-size: 0.4rem;
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.ticker-track-wrapper {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.04em;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-sep {
  color: rgba(255,255,255,0.4);
  font-size: 0.5rem;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.mobile-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}

.mobile-nav a:hover { color: var(--white); background: var(--black); }
.mobile-nav a:last-child { border-bottom: none; }

.mobile-subnav {
  background: var(--black);
  border-bottom: 1px solid var(--border);
}

.mobile-subnav a {
  padding-left: 40px;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border);
}

.mobile-subnav a:last-child { border-bottom: none; }
.mobile-nav.open { display: flex; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover {
  background: var(--red-hot);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  color: var(--light);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  color: var(--white);
  border-color: var(--white);
}

/* ── HERO ── */
.hero {
  padding: 100px 24px 80px;
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
  color: var(--white);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--light);
  font-style: italic;
  font-family: var(--font-serif);
  margin-bottom: 48px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

/* ── TICKER ── */
.hero-ticker {
  display: flex;
  gap: 24px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--muted);
  white-space: nowrap;
}

.hero-ticker .dot { color: var(--red); }

/* ══════════════════════════════════════
   MAGAZINE LAYOUT
══════════════════════════════════════ */

.mag-main { padding-bottom: 0; }

/* Zone shared */
.mag-zone { padding: 40px 0; border-bottom: 1px solid var(--border); }

.zone-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.zone-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--red);
  white-space: nowrap;
  flex-shrink: 0;
}

.zone-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.zone-more {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s;
}

.zone-more:hover { color: var(--white); }

/* ── HERO ZONE ── */
.mag-zone--hero { padding-top: 32px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

/* Lead story */
.hero-lead-img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.hero-lead-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  filter: brightness(0.85);
}

.hero-lead-img-wrap:hover .hero-lead-img { transform: scale(1.02); filter: brightness(0.75); }

.hero-lead-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 4px 10px;
  text-transform: uppercase;
}

.hero-lead-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.0;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.hero-lead-title a { transition: color 0.2s; }
.hero-lead-title a:hover { color: var(--light); }

.hero-lead-excerpt {
  font-size: 0.95rem;
  color: var(--light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.hero-lead-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.meta-author { color: var(--light); font-weight: 500; }
.meta-sep { color: var(--border); }

/* Top stories stack */
.hero-stack { border-left: 1px solid var(--border); padding-left: 32px; }

.stack-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.stack-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.stack-item:last-child { border-bottom: none; }

.stack-img-wrap { display: block; overflow: hidden; flex-shrink: 0; }

.stack-img {
  width: 100px;
  height: 68px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s, filter 0.3s;
  filter: brightness(0.8);
}

.stack-img-wrap:hover .stack-img { transform: scale(1.05); filter: brightness(0.65); }

.stack-body { display: flex; flex-direction: column; gap: 6px; }

.stack-tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--red);
  text-transform: uppercase;
}

.stack-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.stack-title a { transition: color 0.2s; }
.stack-title a:hover { color: var(--light); }

.stack-date {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-top: auto;
}

/* ── LATEST ZONE ── */
.latest-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.latest-main {}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Mag card */
.mag-card { display: flex; flex-direction: column; }

.mag-card-img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
}

.mag-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s, filter 0.35s;
  filter: brightness(0.82);
}

.mag-card-img-wrap:hover .mag-card-img { transform: scale(1.04); filter: brightness(0.65); }

.mag-card-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--red);
  color: var(--white);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 3px 8px;
  text-transform: uppercase;
}

.mag-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.mag-card-title a { transition: color 0.2s; }
.mag-card-title a:hover { color: var(--light); }

.mag-card-excerpt {
  font-size: 0.83rem;
  color: var(--light);
  line-height: 1.6;
  margin-bottom: 10px;
  flex: 1;
}

.mag-card-date {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* Quick news sidebar */
.latest-sidebar {
  border-left: 1px solid var(--border);
  padding-left: 32px;
  position: sticky;
  top: 60px;
}

.qnews-list { margin-bottom: 32px; }

.qnews-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.qnews-item:last-child { border-bottom: none; }

.qnews-tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--red);
  text-transform: uppercase;
}

.qnews-title {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.qnews-title a { transition: color 0.2s; }
.qnews-title a:hover { color: var(--light); }

.qnews-time {
  font-size: 0.63rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.sidebar-subscribe {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px;
}

.sidebar-subscribe-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 10px;
}

.sidebar-subscribe p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.5;
}

/* ── PILLARS STRIP ── */
.mag-zone--pillars { padding: 32px 0; background: var(--surface); }

.pillars-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.pillar-strip-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 28px;
  border-left: 1px solid var(--border);
  transition: background 0.2s;
  color: var(--light);
}

.pillar-strip-item:first-child { border-left: none; }
.pillar-strip-item:hover { background: var(--black); }

.pillar-strip-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--border);
  line-height: 1;
  transition: color 0.2s;
}

.pillar-strip-item:hover .pillar-strip-num { color: var(--red); }

.pillar-strip-item strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}

.pillar-strip-item span {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── SECTION LABELS ── */
.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--red);
  margin-bottom: 40px;
}

/* ── PILLARS (old - kept for other pages) ── */
.pillars {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.pillar {
  padding: 40px 32px;
  border-left: 1px solid var(--border);
  transition: background 0.2s;
}

.pillar:first-child { border-left: none; }
.pillar:hover { background: var(--surface); }

.pillar-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.2s;
}

.pillar:hover .pillar-num { color: var(--red); }

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  color: var(--white);
}

.pillar p {
  font-size: 0.88rem;
  color: var(--light);
  line-height: 1.7;
}

/* ── ARTICLES ── */
.articles-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0;
}

.see-all {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.see-all:hover { color: var(--white); }

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  margin-top: 24px;
}

.article-card {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}

.article-card:last-child { border-right: none; }
.article-card:hover { background: var(--surface); }

.article-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 16px;
}

.article-card h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  color: var(--white);
}

.article-card h2 a:hover { color: var(--light); }

.article-card p {
  font-size: 0.88rem;
  color: var(--light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.article-meta {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ── SUBSCRIBE ── */
.subscribe-section {
  padding: 120px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.subscribe-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.subscribe-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--red);
  margin-bottom: 24px;
}

.subscribe-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  color: var(--white);
}

.subscribe-inner p {
  font-size: 0.95rem;
  color: var(--light);
  margin-bottom: 40px;
  line-height: 1.7;
}

.subscribe-form {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
}

.subscribe-form input[type="email"] {
  flex: 1;
  background: var(--black);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 14px 20px;
  outline: none;
  transition: border-color 0.2s;
}

.subscribe-form input[type="email"]:focus {
  border-color: var(--red);
}

.subscribe-form input::placeholder { color: var(--muted); }

.subscribe-form .btn-primary {
  white-space: nowrap;
  padding: 14px 28px;
}

.subscribe-note {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding-top: 80px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo {
  font-size: 1.3rem;
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--light);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ── ABOUT / MANIFESTO PAGE ── */
.manifesto-hero {
  padding: 100px 24px 60px;
  max-width: 860px;
  margin: 0 auto;
}

.manifesto-hero .section-label { margin-bottom: 24px; }

.manifesto-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
}

.manifesto-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 120px;
}

.manifesto-body p {
  font-size: 1.1rem;
  color: var(--light);
  line-height: 1.85;
  margin-bottom: 28px;
}

.manifesto-body p strong {
  color: var(--white);
  font-weight: 600;
}

.manifesto-body .pull-quote {
  border-left: 3px solid var(--red);
  padding-left: 28px;
  margin: 48px 0;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
}

.manifesto-body .signature {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

.manifesto-body .signature strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}

/* ── ARTICLES LIST PAGE ── */
.articles-page {
  padding: 80px 0 120px;
}

.articles-page-header {
  padding: 0 0 60px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.articles-page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: 0.02em;
  margin-top: 16px;
}

.articles-list {
  border-bottom: 1px solid var(--border);
}

.article-list-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: start;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  transition: background 0.2s;
}

.article-list-item:hover { background: var(--surface); padding-left: 16px; }

.article-list-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--red);
  padding-top: 6px;
}

.article-list-item h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 10px;
}

.article-list-item h2 a:hover { color: var(--light); }

.article-list-item p {
  font-size: 0.88rem;
  color: var(--light);
}

.article-list-date {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding-top: 6px;
}

/* ── QUICK NEWS PAGE ── */
.news-page-header {
  padding: 60px 0 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.news-page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 16px 0 20px;
}

.news-page-sub {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
}

.news-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 0;
  align-items: start;
}

/* News Feed */
.news-feed {
  border-right: 1px solid var(--border);
  padding-right: 48px;
  padding-bottom: 80px;
}

.news-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.news-item--lead {
  padding: 40px 0;
}

.news-item--lead .news-headline {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.news-item--lead .news-summary {
  font-size: 1rem;
}

.news-item-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.news-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}

.news-tag--hot {
  color: var(--red);
}

.news-time {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.news-headline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--white);
}

.news-headline a { transition: color 0.2s; }
.news-headline a:hover { color: var(--light); }

.news-summary {
  font-size: 0.88rem;
  color: var(--light);
  line-height: 1.7;
}

/* Sidebar */
.news-sidebar {
  padding: 32px 0 80px 40px;
  position: sticky;
  top: 60px;
}

.sidebar-block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.sidebar-block:last-child {
  border-bottom: none;
}

.sidebar-title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--red);
  margin-bottom: 20px;
}

.sidebar-watchlist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-watchlist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--light);
  line-height: 1.4;
}

.watch-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.watch-red    { background: var(--red); }
.watch-yellow { background: #c8a800; }
.watch-green  { background: #2a8a3e; }

.sidebar-categories {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar-cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--light);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.sidebar-cat:last-child { border-bottom: none; }
.sidebar-cat:hover { color: var(--white); }

.sidebar-cat span {
  font-size: 0.7rem;
  color: var(--muted);
  background: var(--surface);
  padding: 2px 8px;
}

.sidebar-newsletter p {
  font-size: 0.82rem;
  color: var(--light);
  line-height: 1.7;
}

.sidebar-email-input {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s;
}

.sidebar-email-input:focus { border-color: var(--red); }
.sidebar-email-input::placeholder { color: var(--muted); }

@media (max-width: 900px) {
  .news-layout {
    grid-template-columns: 1fr;
  }

  .news-feed {
    border-right: none;
    padding-right: 0;
  }

  .news-sidebar {
    padding: 32px 0;
    position: static;
    border-top: 1px solid var(--border);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .section-nav-links > li > a { padding: 14px 12px; font-size: 0.68rem; }
  .section-nav-cta { padding: 10px 14px; font-size: 0.65rem; }
  .top-bar-tagline { display: none; }
  .top-bar-sep { display: none; }
  .hero-grid { grid-template-columns: 1fr 280px; }
  .latest-layout { grid-template-columns: 1fr 260px; }
}

@media (max-width: 900px) {
  .section-nav { display: none; }
  .mobile-menu-btn { display: block; }

  /* Magazine */
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stack { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 24px; }
  .latest-layout { grid-template-columns: 1fr; }
  .latest-sidebar { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 24px; position: static; }
  .pillars-strip { grid-template-columns: repeat(2, 1fr); }
  .pillar-strip-item:nth-child(odd) { border-left: none; }
  .pillar-strip-item { border-top: 1px solid var(--border); }

  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar { border-top: 1px solid var(--border); }
  .pillar:nth-child(odd) { border-left: none; }
  .pillar:nth-child(even) { border-left: 1px solid var(--border); }
  .articles-grid { grid-template-columns: 1fr; }
  .article-card { border-right: none; border-top: 1px solid var(--border); }
  .article-card:first-child { border-top: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .article-list-item { grid-template-columns: 1fr; gap: 12px; }
  .article-list-date { order: -1; }
  .news-layout { grid-template-columns: 1fr; }
  .news-feed { border-right: none; padding-right: 0; }
  .news-sidebar { padding: 32px 0; position: static; border-top: 1px solid var(--border); }
}

@media (max-width: 640px) {
  .top-bar { display: none; }
  .header-search { display: none; }
  .latest-grid { grid-template-columns: 1fr; }
  .pillars-strip { grid-template-columns: 1fr; }
  .pillar-strip-item { border-left: none; }
  .hero-lead-img { height: 260px; }
  .subscribe-form { flex-direction: column; }
  .subscribe-form input[type="email"] { border-right: 1px solid var(--border); border-bottom: none; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
  .hero-cta { flex-direction: column; align-items: flex-start; gap: 16px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-left: none; border-top: 1px solid var(--border); }
}
