/* THE PATCH — Main Stylesheet */

:root {
  --bg: #0d0d0f;
  --surface: #16161a;
  --surface2: #1e1e24;
  --border: #2a2a35;
  --text: #e8e8f0;
  --text-muted: #888898;
  --accent: #c8ff57;
  --accent-dim: rgba(200,255,87,0.12);
  --lol: #c8972a;
  --val: #e84057;
  --fn: #2fa3e0;
  --am: #3ecf6b;
  --mr: #9b5de5;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --mono: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  --radius: 8px;
  --max-w: 1120px;
}

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

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,13,15,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--accent);
  white-space: nowrap;
}
.site-logo span { color: var(--text); }

.main-nav { display: flex; gap: 4px; }
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}
.main-nav a:hover { color: var(--text); background: var(--surface2); }
.main-nav a.active { color: var(--accent); }

.header-cta {
  background: var(--accent);
  color: #0d0d0f;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 20px;
  white-space: nowrap;
  transition: opacity 0.15s;
  flex-shrink: 0;
}
.header-cta:hover { opacity: 0.88; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); margin: 5px 0;
  transition: all 0.2s;
}

/* ── HERO ── */
.hero {
  padding: 64px 20px 48px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 10px; border-radius: 20px;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  max-width: 700px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  background: var(--accent);
  color: #0d0d0f;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 24px;
  transition: opacity 0.15s, transform 0.1s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-ghost {
  color: var(--text-muted);
  font-size: 15px;
  display: flex; align-items: center; gap: 6px;
  padding: 12px 0;
}
.btn-ghost:hover { color: var(--text); }

/* ── GAME FILTER TABS ── */
.game-tabs {
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
  overflow-x: auto;
  -ms-overflow-style: none; scrollbar-width: none;
}
.game-tabs::-webkit-scrollbar { display: none; }
.tabs-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex; gap: 4px;
}
.tab {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  background: none; border-top: none; border-left: none; border-right: none;
  text-decoration: none;
}
.tab:hover { color: var(--text); }
.tab.active { color: var(--text); border-bottom-color: var(--accent); }
.tab-dot {
  width: 8px; height: 8px; border-radius: 50%;
  flex-shrink: 0;
}
.tab-dot.lol { background: var(--lol); }
.tab-dot.val { background: var(--val); }
.tab-dot.fn  { background: var(--fn);  }
.tab-dot.am  { background: var(--am);  }
.tab-dot.mr  { background: var(--mr);  }

/* ── ARTICLE GRID ── */
.section { padding: 0 20px 64px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }

.section-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.section-title::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
.articles-grid.featured {
  grid-template-columns: repeat(12, 1fr);
}
.articles-grid.featured .card:first-child {
  grid-column: span 7;
}
.articles-grid.featured .card:nth-child(n+2) {
  grid-column: span 5;
}

/* ── ARTICLE CARD (used on game hub pages) ── */
.article-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, transform 0.15s;
}
.article-card:hover { border-color: #444455; transform: translateY(-2px); text-decoration: none; }

.card-game-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.card-game-tag.lol { background: rgba(200,170,0,0.15); color: var(--lol); }
.card-game-tag.val { background: rgba(255,70,85,0.15);  color: var(--val); }
.card-game-tag.fn  { background: rgba(0,196,255,0.12);  color: var(--fn);  }
.card-game-tag.am  { background: rgba(255,140,0,0.12);  color: var(--am);  }
.card-game-tag.mr  { background: rgba(230,30,30,0.12);  color: var(--mr);  }

.article-card .card-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--text);
}
.article-card:hover .card-title { color: var(--accent); }

.article-card .card-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.article-card .card-meta {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* ── CARD ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.15s;
  display: flex; flex-direction: column;
}
.card:hover { border-color: #444455; transform: translateY(-2px); }

.card-game-bar { height: 3px; }
.card-game-bar.lol { background: var(--lol); }
.card-game-bar.val { background: var(--val); }
.card-game-bar.fn  { background: var(--fn);  }
.card-game-bar.am  { background: var(--am);  }
.card-game-bar.mr  { background: var(--mr);  }

.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.card-meta {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.game-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; padding: 3px 8px; border-radius: 4px;
}
.game-tag.lol { background: rgba(200,151,42,0.15); color: var(--lol); }
.game-tag.val { background: rgba(232,64,87,0.15); color: var(--val); }
.game-tag.fn  { background: rgba(47,163,224,0.15); color: var(--fn);  }
.game-tag.am  { background: rgba(62,207,107,0.15); color: var(--am);  }
.game-tag.mr  { background: rgba(155,93,229,0.15); color: var(--mr);  }

.card-date { font-size: 12px; color: var(--text-muted); }

.card-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  flex: 1;
}
.card:hover .card-title { color: var(--accent); transition: color 0.15s; }

.card-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 13px;
}
.card-badge {
  display: flex; align-items: center; gap: 4px;
  font-weight: 600; color: var(--text-muted);
}
.card-badge.hot { color: #ff6b35; }
.card-badge.new { color: var(--am); }
.read-more { color: var(--text-muted); font-size: 12px; }
.card:hover .read-more { color: var(--accent); }

/* ── NEWSLETTER SECTION ── */
.newsletter-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  margin: 0 20px 64px;
  max-width: calc(var(--max-w) - 0px);
  margin-left: auto; margin-right: auto;
  position: relative; overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,255,87,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-section h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}
.newsletter-section h2 span { color: var(--accent); }
.newsletter-section p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto 28px;
}
.newsletter-form {
  display: flex; gap: 8px;
  max-width: 440px;
  margin: 0 auto 16px;
}
.newsletter-form input {
  flex: 1;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 12px 18px;
  font-size: 15px;
  color: var(--text);
  outline: none;
  font-family: var(--font);
  transition: border-color 0.15s;
}
.newsletter-form input:focus { border-color: var(--accent); }
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form button {
  background: var(--accent);
  color: #0d0d0f;
  border: none;
  border-radius: 24px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font);
  transition: opacity 0.15s;
}
.newsletter-form button:hover { opacity: 0.88; }
.newsletter-note { font-size: 12px; color: var(--text-muted); }

/* ── QUICK HITS SIDEBAR ── */
.quick-hits h3 {
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 12px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.quick-hit {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex; gap: 12px; align-items: flex-start;
}
.quick-hit:last-child { border-bottom: none; }
.qh-game {
  width: 28px; height: 28px; border-radius: 6px;
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; letter-spacing: 0.5px;
}
.qh-game.lol { background: rgba(200,151,42,0.2); color: var(--lol); }
.qh-game.val { background: rgba(232,64,87,0.2); color: var(--val); }
.qh-game.fn  { background: rgba(47,163,224,0.2); color: var(--fn); }
.qh-game.am  { background: rgba(62,207,107,0.2); color: var(--am); }
.qh-game.mr  { background: rgba(155,93,229,0.2); color: var(--mr); }
.qh-text { font-size: 14px; line-height: 1.4; }
.qh-text strong { font-weight: 600; }
.qh-time { font-size: 12px; color: var(--text-muted); display: block; margin-top: 2px; }

/* ── ARTICLE PAGE ── */
.article-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 20px 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.article-main { min-width: 0; }
.article-sidebar { position: sticky; top: 80px; }

.article-header { margin-bottom: 32px; }
.article-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 16px;
}
.article-breadcrumb a:hover { color: var(--accent); }
.article-breadcrumb span { opacity: 0.4; }

.article-game-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 6px;
  margin-bottom: 14px;
}
.article-game-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
}

.article-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.article-meta {
  display: flex; align-items: center; gap: 16px;
  font-size: 14px; color: var(--text-muted);
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.article-meta strong { color: var(--accent); font-weight: 700; }

.article-tldr {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 32px;
}
.article-tldr h3 {
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
.article-tldr ol { padding-left: 18px; }
.article-tldr li { font-size: 15px; margin-bottom: 6px; }

/* Article body typography */
.article-body h2 {
  font-size: 22px; font-weight: 800; letter-spacing: -0.4px;
  margin: 36px 0 16px; padding-top: 36px;
  border-top: 1px solid var(--border);
  color: var(--text);
}
.article-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.article-body h3 {
  font-size: 18px; font-weight: 700;
  margin: 24px 0 12px; color: var(--text);
}
.article-body p { margin-bottom: 16px; line-height: 1.7; }
.article-body strong { color: var(--text); font-weight: 700; }
.article-body em { color: var(--accent); font-style: normal; font-weight: 700; }

.article-body ul, .article-body ol {
  padding-left: 20px; margin-bottom: 16px;
}
.article-body li { margin-bottom: 8px; line-height: 1.6; }

/* Pet / Winner / Loser cards */
.card-pet {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 12px;
}
.card-pet-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.pet-name { font-size: 17px; font-weight: 800; }
.pet-rarity {
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; padding: 3px 8px; border-radius: 4px;
}
.rarity-legendary { background: rgba(255,170,0,0.15); color: #ffaa00; }
.rarity-ultra-rare { background: rgba(155,93,229,0.15); color: #9b5de5; }
.rarity-rare { background: rgba(47,163,224,0.15); color: var(--fn); }
.rarity-uncommon { background: rgba(62,207,107,0.15); color: var(--am); }
.rarity-common { background: rgba(255,255,255,0.08); color: #aaa; }

.pet-verdict {
  display: inline-block;
  font-size: 12px; font-weight: 700; padding: 2px 8px;
  border-radius: 4px; margin-left: auto;
}
.verdict-s { background: rgba(255,170,0,0.15); color: #ffaa00; }
.verdict-a { background: rgba(62,207,107,0.15); color: var(--am); }
.verdict-b { background: rgba(47,163,224,0.15); color: var(--fn); }
.verdict-c { background: rgba(200,255,87,0.12); color: var(--accent); }
.verdict-d { background: rgba(232,64,87,0.15); color: var(--val); }

.pet-stat {
  font-size: 13px; color: var(--text-muted);
  display: grid; grid-template-columns: 110px 1fr;
  gap: 4px 8px; margin-bottom: 8px;
}
.pet-stat strong { color: var(--text); }
.pet-analysis { font-size: 14px; line-height: 1.6; color: var(--text-muted); }
.pet-analysis strong { color: var(--text); }
.pet-our-call {
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 13px;
}
.pet-our-call::before { content: '💡 Our call: '; font-weight: 700; color: var(--accent); }

/* Tier table */
.tier-table {
  width: 100%; border-collapse: collapse;
  margin-bottom: 24px; font-size: 14px;
}
.tier-table th {
  background: var(--surface2); padding: 10px 14px;
  text-align: left; font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--text-muted); border-bottom: 1px solid var(--border);
}
.tier-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
.tier-label {
  font-weight: 900; font-size: 16px;
  width: 40px; text-align: center;
}
.tier-label.s { color: #ffaa00; }
.tier-label.a { color: var(--am); }
.tier-label.b { color: var(--fn); }
.tier-label.c { color: var(--accent); }
.tier-label.d { color: var(--val); }

/* Timeline table */
.timeline-table {
  width: 100%; border-collapse: collapse;
  margin-bottom: 24px; font-size: 14px;
}
.timeline-table th {
  background: var(--surface2); padding: 10px 14px;
  text-align: left; font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--text-muted); border-bottom: 2px solid var(--border);
}
.timeline-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); }
.week-current { background: rgba(200,255,87,0.04); }

/* Parent note box */
.parent-note {
  background: rgba(62,207,107,0.06);
  border: 1px solid rgba(62,207,107,0.2);
  border-radius: 10px; padding: 18px 20px; margin-top: 32px;
}
.parent-note h3 {
  font-size: 14px; font-weight: 700; color: var(--am);
  margin-bottom: 8px; letter-spacing: 0;
}
.parent-note p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* Newsletter CTA inline */
.inline-cta {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 20px;
  text-align: center; margin: 32px 0;
}
.inline-cta p { font-size: 15px; margin-bottom: 12px; }
.inline-cta a {
  display: inline-block; background: var(--accent); color: #0d0d0f;
  font-weight: 700; font-size: 14px; padding: 10px 22px;
  border-radius: 20px; transition: opacity 0.15s;
}
.inline-cta a:hover { opacity: 0.88; }

/* Sidebar widgets */
.sidebar-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 18px 16px;
  margin-bottom: 16px;
}
.sidebar-widget h3 {
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.sub-cta-widget {
  background: linear-gradient(135deg, rgba(200,255,87,0.06) 0%, var(--surface) 100%);
  border-color: rgba(200,255,87,0.2);
  text-align: center;
}
.sub-cta-widget h3 { color: var(--accent); border-bottom-color: rgba(200,255,87,0.15); }
.sub-cta-widget p { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.sub-cta-widget .btn-primary { display: block; width: 100%; text-align: center; border-radius: 8px; padding: 10px; }
.sub-count { font-size: 20px; font-weight: 900; color: var(--accent); display: block; margin-bottom: 2px; }
.sub-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 20px;
  color: var(--text-muted);
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px; align-items: center;
}
.footer-brand { font-weight: 800; color: var(--accent); font-size: 16px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; transition: color 0.15s; }
.footer-links a:hover { color: var(--text); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--surface2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: border-color 0.15s;
}
.footer-social a:hover { border-color: #555566; color: var(--text); }
.footer-legal { width: 100%; font-size: 12px; padding-top: 20px; border-top: 1px solid var(--border); }

/* ── GAME HUB PAGES ── */
.game-hero {
  max-width: 100%;
  padding: 64px 20px 56px;
  background: var(--bg);
}
.game-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.game-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.game-hero h1 {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}
.game-hero p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 640px;
  margin-bottom: 32px;
}
.game-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.game-meta-item {
  font-size: 13px;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
}

/* Coming-soon state for game pages with no articles yet */
.coming-soon-state {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 56px 48px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.coming-soon-icon {
  font-size: 48px;
  margin-bottom: 20px;
}
.coming-soon-heading {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3;
}
.coming-soon-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.coming-soon-schedule {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.schedule-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.schedule-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.schedule-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

/* Placeholder card (not a link, no hover state) */
.card-placeholder {
  cursor: default;
  opacity: 0.55;
}
.card-placeholder:hover {
  transform: none;
  border-color: var(--border);
}

/* ── AD SLOTS ── */
.ad-slot {
  background: var(--surface2);
  border: 1px dashed var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 12px;
  min-height: 90px; margin: 24px 0;
  text-align: center;
}
.ad-slot-leaderboard { min-height: 90px; }
.ad-slot-rectangle { min-height: 250px; max-width: 300px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .articles-grid.featured { grid-template-columns: 1fr; }
  .articles-grid.featured .card:first-child,
  .articles-grid.featured .card:nth-child(n+2) { grid-column: span 1; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}
@media (max-width: 640px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .newsletter-section { padding: 32px 20px; }
  .newsletter-form { flex-direction: column; }
  .hero h1 { font-size: 30px; letter-spacing: -0.8px; }
}
