/* ===== THE SPORTS GURU — DIRECTION A: THE ANALYST ===== */

/* Variables */
:root {
  --bg:           #0a0f1a;
  --surface:      #0f172a;
  --surface-mid:  #1a2540;
  --surface-light:#243347;
  --lime:         #22c55e;
  --lime-bright:  #4ade80;
  --lime-dim:     rgba(34,197,94,.10);
  --lime-border:  rgba(34,197,94,.22);
  --white:        #ffffff;
  --text:         #e2e8f0;
  --text-mid:     #cbd5e1;
  --text-muted:   #94a3b8;
  --border:       #1e293b;
  --border-light: #243347;
  --radius:       10px;
  --shadow:       0 2px 16px rgba(0,0,0,.5);
  --shadow-hover: 0 10px 40px rgba(0,0,0,.7);
  --max:          1200px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Layout */
.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section--surface { background: var(--surface); }

/* ===== HEADER ===== */
.site-header {
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.site-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.site-logo__mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: block;
  border-radius: 50%;
}
.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav a {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 6px;
  transition: color .15s, background .15s;
  white-space: nowrap;
  letter-spacing: .2px;
}
.site-nav a:hover { color: var(--white); background: var(--surface-mid); }
.site-nav a.active { color: var(--lime); }
.nav-cta {
  background: var(--lime-dim) !important;
  color: var(--lime) !important;
  border: 1px solid var(--lime-border) !important;
  margin-left: 6px;
}
.nav-cta:hover {
  background: var(--lime) !important;
  color: var(--bg) !important;
  border-color: var(--lime) !important;
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  cursor: pointer;
  padding: 6px 8px;
  color: var(--text-muted);
  align-items: center;
  justify-content: center;
  transition: border-color .15s, color .15s;
}
.menu-toggle:hover { border-color: var(--lime); color: var(--lime); }

/* Sport strip */
.sport-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.sport-strip::-webkit-scrollbar { display: none; }
.sport-strip__inner {
  display: flex;
  gap: 0;
  padding: 0 20px;
  white-space: nowrap;
  max-width: var(--max);
  margin: 0 auto;
}
.sport-strip a {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  padding: 9px 14px;
  display: inline-block;
  transition: color .15s;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.sport-strip a:hover,
.sport-strip a.active { color: var(--lime); }

/* ===== HERO ===== */
.hero {
  background: var(--bg);
  color: var(--white);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34,197,94,.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34,197,94,.04) 0%, transparent 65%);
  pointer-events: none;
}
/* Branded hero — image on the left, copy on the right */
.hero--branded { padding: 60px 0 80px; }
.hero--branded .hero__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.hero__brand { position: relative; z-index: 2; }
.hero__brand-img { width: 100%; height: auto; display: block; border-radius: 12px; box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 0 1px var(--border); }
.hero__copy { position: relative; z-index: 2; }
@media (max-width: 900px) {
  .hero--branded .hero__inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero--branded .hero__eyebrow { justify-content: center; }
  .hero--branded { padding: 40px 0 60px; }
}
.hero__eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: var(--lime);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--lime);
}
.hero__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(46px, 7vw, 86px);
  font-weight: 800;
  line-height: 1.0;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
.hero__title em { color: var(--lime); font-style: normal; }
.hero__desc {
  font-family: 'Lora', Georgia, serif;
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 38px;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
  letter-spacing: .3px;
}
.btn--primary { background: var(--lime); color: var(--bg); }
.btn--primary:hover {
  background: var(--lime-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34,197,94,.35);
}
.btn--outline { border: 1px solid var(--border-light); color: var(--text-mid); }
.btn--outline:hover {
  border-color: var(--lime);
  color: var(--lime);
  transform: translateY(-2px);
}

/* ===== SECTION HEADER ===== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.section-header__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .3px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-header__title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 22px;
  background: var(--lime);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-header__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: .3px;
  transition: color .15s;
}
.section-header__link:hover { color: var(--lime-bright); }

/* ===== ARTICLE CARDS ===== */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.article-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--lime-border);
}
.article-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.article-card__category {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lime);
  background: var(--lime-dim);
  border: 1px solid var(--lime-border);
  border-radius: 4px;
  padding: 3px 9px;
  margin-bottom: 13px;
}
.article-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: .2px;
  text-transform: uppercase;
  flex: 1;
}
.article-card__title a:hover { color: var(--lime); }
.article-card__excerpt {
  font-family: 'Lora', Georgia, serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.article-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.article-card__date {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}
.article-card__read-more {
  font-size: 12px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: .3px;
  transition: color .15s;
}
.article-card__read-more:hover { color: var(--lime-bright); }

/* Featured card */
.article-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  background: var(--surface);
  border-color: var(--border-light);
}
.article-card--featured .article-card__body {
  padding: 40px 44px;
  justify-content: center;
}
.article-card--featured .article-card__title {
  font-size: 32px;
  line-height: 1.05;
  margin-bottom: 14px;
}
.article-card--featured .article-card__excerpt {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}
.article-card--featured .article-card__meta { border-top-color: var(--border); }
.article-card--featured .article-card__badge {
  background: var(--surface-mid);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--border);
}
.featured-badge { text-align: center; }
.featured-badge__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 14px;
}
.featured-badge__icon { font-size: 72px; line-height: 1; margin-bottom: 12px; }
.featured-badge__text {
  font-family: 'Lora', serif;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* ===== BLOG INDEX PAGE ===== */
.blog-header {
  background: var(--surface);
  color: var(--white);
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.blog-header__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.0;
}
.blog-header__title em { color: var(--lime); font-style: normal; }
.blog-header__desc {
  font-family: 'Lora', serif;
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

.blog-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.filter-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
  background: var(--surface);
}
.filter-pill:hover,
.filter-pill.active {
  background: var(--lime-dim);
  color: var(--lime);
  border-color: var(--lime-border);
}

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }

/* ===== BREADCRUMBS ===== */
.breadcrumb-bar {
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  list-style: none;
  flex-wrap: wrap;
  letter-spacing: .3px;
}
.breadcrumb-list a { color: var(--text-muted); transition: color .15s; }
.breadcrumb-list a:hover { color: var(--lime); }
.breadcrumb-sep { color: var(--border-light); }
.breadcrumb-list li:last-child { color: var(--text-mid); }

/* ===== ARTICLE PAGE ===== */
.article-hero {
  background: var(--surface);
  color: var(--white);
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
}
.article-hero__category {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--lime);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.article-hero__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: .2px;
  text-transform: uppercase;
  max-width: 800px;
  margin-bottom: 24px;
}
.article-hero__meta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.article-hero__meta-item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: .3px;
}
.article-hero__meta-item strong { color: var(--text-mid); font-weight: 600; }

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 44px 20px 68px;
  font-family: 'Lora', Georgia, serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-mid);
}

/* ===== TSG ARTICLE COMPONENTS — native dark theme, no overrides needed ===== */

/* Article body prose */
.wc-post {
  font-family: 'Lora', Georgia, serif;
  font-size: 19px;
  line-height: 1.85;
  color: var(--text-mid);
}
.wc-post p { color: var(--text-mid); margin-bottom: 22px; }
.wc-post a { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }
.wc-post a:hover { color: var(--lime-bright); }
.wc-post strong { color: var(--text); font-weight: 700; }

/* H2 — Barlow Condensed with lime underline (not WhatChan's amber left-bar) */
.wc-post h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .3px;
  line-height: 1.1;
  color: var(--white);
  margin: 52px 0 18px;
  padding: 0 0 14px 0;
  border-bottom: 2px solid var(--lime);
  position: static;
}
.wc-post h2::before { display: none; }

/* Pull quote — Barlow Condensed, top rule, feels like a magazine callout */
.wc-pullquote {
  margin: 44px 0;
  padding: 24px 0 20px;
  border-left: none;
  border-top: 3px solid var(--lime);
  border-bottom: 1px solid var(--border);
  background: transparent;
  border-radius: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(20px, 2.8vw, 26px);
  font-style: normal;
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .2px;
}
.wc-pullquote cite {
  display: block;
  margin-top: 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  color: var(--lime);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* Stat strip — data-journalism style */
.wc-stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  margin: 40px 0;
}
.wc-stat-card {
  background: var(--surface-mid);
  border: 1px solid var(--border-light);
  border-top: 2px solid var(--lime);
  border-radius: 6px;
  padding: 18px 14px;
  text-align: center;
  box-shadow: none;
}
.wc-stat-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 28px;
  font-weight: 500;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 6px;
}
.wc-stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Standfirst / Editor's Note */
.wc-editors-note {
  margin: 0 0 36px;
  padding: 22px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--lime);
  border-radius: 0 0 6px 6px;
}
.wc-editors-note-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 10px;
}
.wc-editors-note p {
  font-family: 'Lora', serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* Tags */
.wc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.wc-tag {
  display: inline-block;
  background: var(--surface-mid);
  color: var(--text-muted);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .5px;
  padding: 6px 14px;
  border-radius: 3px;
  border: 1px solid var(--border-light);
  text-transform: uppercase;
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
}
.wc-tag:hover { background: var(--lime); color: var(--bg); border-color: var(--lime); }

/* Scoreboard card (match reports) */
.wc-scoreboard-card {
  background: linear-gradient(135deg, var(--surface-mid) 0%, var(--surface) 100%);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,0.04);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin: 0 0 36px;
  position: relative;
  overflow: hidden;
}
.wc-scoreboard-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(34,197,94,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.wc-team {
  text-align: center;
  min-width: 120px;
  position: relative;
  z-index: 1;
}
/* Circular crest — polished, depth, subtle sheen. Works with inline background colour. */
.wc-team-crest {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0,0,0,0.45), 0 0 1px rgba(0,0,0,0.5);
  border: 3px solid rgba(255,255,255,0.14);
  box-shadow:
    0 6px 20px rgba(0,0,0,0.45),
    inset 0 -6px 14px rgba(0,0,0,0.28),
    inset 0 2px 10px rgba(255,255,255,0.18);
  position: relative;
  margin: 0 auto 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
/* Diagonal highlight sheen — gives a polished-metal look */
.wc-team-crest::before {
  content: '';
  position: absolute;
  top: 5%; left: 5%; right: 5%; bottom: 5%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.05) 40%, rgba(255,255,255,0) 55%);
  pointer-events: none;
}
/* Inner ring for shield-like definition */
.wc-team-crest::after {
  content: '';
  position: absolute;
  top: 8%; left: 8%; right: 8%; bottom: 8%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}
/* When a crest contains an <img> (future: real badge support), strip the text treatment */
.wc-team-crest img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  padding: 8px;
}
.wc-scoreboard-card:hover .wc-team-crest { transform: translateY(-2px); }
.wc-score-center { position: relative; z-index: 1; padding: 0 12px; }
.wc-score-big {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 62px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.wc-score-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
  font-weight: 700;
}
.wc-score-comp {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--lime);
  font-weight: 700;
  margin-top: 4px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.wc-team-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sources line */
.wc-sources {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: .3px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

@media (max-width: 600px) {
  .wc-pullquote { font-size: 19px; }
  .wc-scoreboard-card { flex-direction: row; gap: 12px; padding: 24px 16px; }
  .wc-team { min-width: 80px; }
  .wc-team-crest { width: 60px; height: 60px; font-size: 16px; margin-bottom: 10px; }
  .wc-team-name { font-size: 14px; }
  .wc-score-big { font-size: 44px; }
}

/* ===== ABOUT STRIP ===== */
.about-strip {
  background: var(--surface);
  color: var(--white);
  padding: 70px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-strip__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-strip__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: .3px;
  line-height: 1.05;
}
.about-strip__title em { color: var(--lime); font-style: normal; }
.about-strip__text {
  font-family: 'Lora', serif;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.trust-item { display: flex; align-items: flex-start; gap: 14px; }
.trust-item__icon {
  width: 40px;
  height: 40px;
  background: var(--lime-dim);
  border: 1px solid var(--lime-border);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.trust-item__title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.trust-item__desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ===== FOOTER ===== */
.site-footer {
  background: #050a12;
  color: var(--text-muted);
  padding: 48px 0 24px;
  border-top: 1px solid var(--border);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}
.site-footer__logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: .3px;
}
.site-footer__logo-mark {
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 50%;
  flex-shrink: 0;
}
.site-footer__tagline {
  font-family: 'Lora', serif;
  font-size: 14px;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 16px;
  font-style: italic;
}
.site-footer__heading {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}
.site-footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.site-footer__links a { font-size: 14px; color: var(--text-muted); transition: color .15s; }
.site-footer__links a:hover { color: var(--lime); }
.site-footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .3px;
}
.site-footer__legal a { color: var(--text-muted); margin-left: 16px; transition: color .15s; }
.site-footer__legal a:hover { color: var(--lime); }

/* ===== PRIVACY / PROSE ===== */
.page-header {
  background: var(--surface);
  color: var(--white);
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
}
.page-header__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.page-header__sub {
  font-family: 'Lora', serif;
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 10px;
  font-style: italic;
}
/* Branded variant with hero image */
.page-header--branded { padding: 48px 0; }
.page-header--branded .page-header__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.page-header__brand { width: 100%; height: auto; display: block; border-radius: 10px; box-shadow: 0 12px 36px rgba(0,0,0,0.3), 0 0 0 1px var(--border); }
.page-header__copy { min-width: 0; }
@media (max-width: 860px) {
  .page-header--branded .page-header__inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .page-header--branded { padding: 32px 0; }
}
.prose { max-width: 760px; margin: 0 auto; padding: 52px 20px 72px; }
.prose h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 44px 0 14px;
  color: var(--white);
  letter-spacing: .3px;
}
.prose p {
  font-family: 'Lora', serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 16px; }
.prose li {
  font-family: 'Lora', serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.prose a { color: var(--lime); text-decoration: underline; }
.prose a:hover { color: var(--lime-bright); }
.prose .last-updated {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  letter-spacing: .3px;
}

/* ===== ARTICLE IMAGES ===== */
.article-card__image { overflow: hidden; }
.article-card__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform .4s;
  filter: brightness(.9);
}
.article-card:hover .article-card__image img { transform: scale(1.05); filter: brightness(1); }
.article-card--featured .article-card__image { min-height: 100%; }
.article-card--featured .article-card__image img { height: 100%; min-height: 320px; object-fit: cover; object-position: center 20%; }
.article-image-wrap { overflow: hidden; max-height: 460px; background: var(--surface-mid); }
.article-image-wrap img { width: 100%; max-height: 460px; object-fit: cover; object-position: center 20%; display: block; filter: brightness(.88); }

/* ===== UTILITIES ===== */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .articles-grid { grid-template-columns: 1fr 1fr; }
  .article-card--featured { grid-template-columns: 1fr; }
  .article-card--featured .article-card__badge { display: none; }
  .article-card--featured .article-card__image img { min-height: 240px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .about-strip__inner { grid-template-columns: 1fr; gap: 40px; }
  .trust-grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 8px 16px 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,.6);
    border-bottom: 1px solid var(--border);
    gap: 4px;
    z-index: 99;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px 12px; border-radius: 6px; width: 100%; }
  .nav-cta { margin-left: 0; margin-top: 4px; }
  .menu-toggle { display: flex; }
  .site-header { position: relative; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-card--featured { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 56px 0; }
  .hero__title { font-size: clamp(40px, 12vw, 64px); }

  .section { padding: 40px 0; }
  .blog-header { padding: 40px 0; }
  .blog-header__title { font-size: 38px; }
  .about-strip { padding: 48px 0; }
  .article-hero { padding: 36px 0; }
  .article-card--featured .article-card__body { padding: 28px; }
}

/* Related Coverage Engine */
.related-posts { padding: 60px 0; background: var(--surface); border-top: 1px solid var(--border); }
.related-posts__heading { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 800; color: var(--white); margin-bottom: 30px; text-transform: uppercase; letter-spacing: 1px; }
.related-posts__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.related-card { display: block; padding: 24px; background: var(--surface-mid); border: 1px solid var(--border); border-radius: 12px; text-decoration: none; transition: transform 0.2s, border-color 0.2s; }
.related-card:hover { transform: translateY(-4px); border-color: var(--lime); }
.related-card__category { font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 700; color: var(--lime); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.related-card__title { font-family: 'Barlow Condensed', sans-serif; font-size: 19px; font-weight: 700; color: var(--white); line-height: 1.35; }

/* ===== FAQ Section (accordion — collapsed by default) ===== */
.wc-faq { margin: 44px 0 36px; border-top: 2px solid var(--lime); padding-top: 28px; }
.wc-faq__title { font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--lime); margin-bottom: 24px; }
.wc-faq__toggle { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 600; color: var(--text-muted); cursor: pointer; padding: 10px 0; letter-spacing: 0.5px; list-style: none; }
.wc-faq__toggle::-webkit-details-marker { display: none; }
.wc-faq__toggle::before { content: '\25B6'; display: inline-block; margin-right: 8px; font-size: 10px; transition: transform 0.2s; }
details[open] > .wc-faq__toggle::before { transform: rotate(90deg); }
.wc-faq__item { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.wc-faq__item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.wc-faq__q { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; text-transform: uppercase; color: var(--white); margin-bottom: 10px; line-height: 1.25; }
.wc-faq__a { font-family: 'Lora', serif; font-size: 17px; line-height: 1.7; color: var(--text); margin: 0; }

/* Image Attribution */
.image-credit { font-size: 12px; color: var(--text-muted); margin-top: 8px; text-align: right; font-style: italic; }

/* ===== League Table (inline in articles) ===== */
.wc-league-table { margin: 36px 0; padding: 24px; background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--lime); border-radius: 10px; overflow-x: auto; }
.wc-league-table__title { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 14px; }
.wc-league-table__legend { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 14px; font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; }
.wc-lt-legend { display: inline-flex; align-items: center; gap: 6px; color: var(--text-muted); }
.wc-lt-legend::before { content: ''; display: inline-block; width: 12px; height: 12px; border-radius: 3px; }
.wc-lt-legend--auto::before { background: #22c55e; }
.wc-lt-legend--playoff::before { background: #3b82f6; }
.wc-lt-legend--conference::before { background: #60a5fa; }
.wc-lt-legend--relegation::before { background: #ef4444; }
.wc-league-table__wrap { overflow-x: auto; }
.wc-l2-table, .wc-lt-table { width: 100%; border-collapse: collapse; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; font-size: 14px; color: var(--text); min-width: 560px; }
.wc-l2-table thead th, .wc-lt-table thead th { text-align: center; padding: 10px 8px; border-bottom: 2px solid var(--border); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); font-weight: 700; background: var(--surface-mid); }
.wc-l2-table th.wc-l2-team, .wc-l2-table td.wc-l2-team, .wc-l2-table th.wc-lt-team, .wc-l2-table td.wc-lt-team { text-align: left; }
.wc-l2-table tbody td, .wc-lt-table tbody td { padding: 9px 8px; text-align: center; border-bottom: 1px solid var(--border); }
.wc-l2-table tbody tr:last-child td { border-bottom: none; }
.wc-l2-table td.wc-l2-pos, .wc-l2-table td.wc-lt-pos { font-family: 'IBM Plex Mono', monospace; color: var(--text-muted); font-weight: 700; width: 34px; }
.wc-l2-table td.wc-l2-team, .wc-l2-table td.wc-lt-team { font-weight: 600; color: var(--white); padding-left: 10px; }
.wc-l2-table td.wc-l2-gd, .wc-l2-table td.wc-lt-gd { font-family: 'IBM Plex Mono', monospace; }
.wc-l2-table td.wc-l2-pts, .wc-l2-table td.wc-lt-pts { font-family: 'IBM Plex Mono', monospace; font-size: 15px; color: var(--white); }
.wc-l2-table .wc-table-row--auto td.wc-l2-pos, .wc-l2-table .wc-table-row--auto td.wc-lt-pos { color: #22c55e; border-left: 3px solid #22c55e; }
.wc-l2-table .wc-table-row--playoff td.wc-l2-pos, .wc-l2-table .wc-table-row--playoff td.wc-lt-pos { color: #3b82f6; border-left: 3px solid #3b82f6; }
.wc-l2-table .wc-table-row--conference td.wc-lt-pos { color: #60a5fa; border-left: 3px solid #60a5fa; }
.wc-l2-table .wc-table-row--relegation td.wc-l2-pos, .wc-l2-table .wc-table-row--relegation td.wc-lt-pos { color: #ef4444; border-left: 3px solid #ef4444; }
.wc-league-table__source { margin-top: 14px; font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--text-muted); letter-spacing: 0.5px; }
@media (max-width: 600px) {
  .wc-league-table { padding: 16px; }
  .wc-l2-table td, .wc-l2-table th { padding: 7px 5px; font-size: 12px; }
  .wc-l2-table td.wc-l2-team, .wc-l2-table td.wc-lt-team { padding-left: 8px; font-size: 13px; }
}

/* ===== Stats infographics — form line + head-to-head + player card ===== */
.wc-form, .wc-h2h, .wc-player { margin: 36px 0; padding: 22px 24px; background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--lime); border-radius: 10px; }
.wc-form__title, .wc-h2h__title, .wc-player__title { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 16px; }
.wc-form__source, .wc-h2h__source, .wc-player__source { margin-top: 14px; font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--text-muted); letter-spacing: 0.5px; }

/* Player card: portrait + info block + per-competition breakdown */
.wc-player__body { display: grid; grid-template-columns: 120px 1fr; gap: 20px; align-items: start; }
.wc-player__head { display: grid; grid-template-columns: 120px 1fr; gap: 20px; align-items: start; margin-bottom: 18px; }
.wc-player__photo { width: 120px; height: 120px; border-radius: 10px; overflow: hidden; background: var(--surface-mid); border: 1px solid var(--border); flex-shrink: 0; }
.wc-player__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wc-player__info { min-width: 0; }
.wc-player__name { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; color: var(--white); letter-spacing: 0.5px; line-height: 1.1; }
.wc-player__meta { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.2px; margin-top: 6px; }
.wc-player__club { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--lime); font-weight: 600; margin-top: 4px; }
.wc-player__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 16px; }
.wc-player__stat { text-align: center; padding: 12px 6px; background: var(--surface-mid); border-radius: 8px; }
.wc-player__stat strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; color: var(--white); line-height: 1; }
.wc-player__stat span { display: block; font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }

/* Per-competition breakdown table */
.wc-player__breakdown { overflow-x: auto; background: var(--surface-mid); border-radius: 8px; }
.wc-player__breakdown table { width: 100%; border-collapse: collapse; font-family: 'Inter', sans-serif; font-size: 14px; }
.wc-player__breakdown--rich table { font-size: 13px; }
.wc-player__breakdown--rich th, .wc-player__breakdown--rich td { padding: 9px 8px; }
.wc-player__breakdown--rich tbody td strong { font-size: 16px; }
.wc-player__breakdown--rich tbody td:last-child strong,
.wc-player__breakdown--rich tfoot td:last-child strong { color: var(--lime); font-size: 17px; }
.wc-player__breakdown th, .wc-player__breakdown td { padding: 10px 12px; text-align: right; white-space: nowrap; }
.wc-player__breakdown th:first-child, .wc-player__breakdown td:first-child { text-align: left; font-weight: 600; }
.wc-player__breakdown thead th { font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; border-bottom: 1px solid var(--border); padding-bottom: 8px; }
.wc-player__breakdown tbody tr { border-bottom: 1px solid rgba(255,255,255,0.05); }
.wc-player__breakdown tbody tr:last-child { border-bottom: 0; }
.wc-player__breakdown tbody td { color: var(--text); }
.wc-player__breakdown tbody td strong { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; color: var(--lime); font-weight: 800; }
.wc-player__breakdown tfoot td { border-top: 2px solid var(--border); padding-top: 12px; font-weight: 700; color: var(--white); text-transform: uppercase; font-size: 12px; letter-spacing: 0.5px; }
.wc-player__breakdown tfoot td strong { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; color: var(--lime); font-weight: 800; }

@media (max-width: 600px) {
  .wc-player__body, .wc-player__head { grid-template-columns: 90px 1fr; gap: 14px; }
  .wc-player__photo { width: 90px; height: 90px; }
  .wc-player__name { font-size: 22px; }
  .wc-player__stats { grid-template-columns: repeat(2, 1fr); }
  .wc-player__breakdown th, .wc-player__breakdown td { padding: 8px 8px; font-size: 13px; }
}

/* Form line: 5 horizontal pills showing W/D/L with opponent */
.wc-form__list { list-style: none; display: flex; gap: 10px; flex-wrap: wrap; padding: 0; margin: 0; }
.wc-form__item { display: flex; align-items: center; gap: 8px; background: var(--surface-mid); border: 1px solid var(--border); border-radius: 8px; padding: 8px 12px; font-family: 'Inter', sans-serif; font-size: 13px; flex: 1 1 150px; min-width: 140px; }
.wc-form__badge { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 800; color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.4); }
.wc-form__badge--w { background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%); }
.wc-form__badge--d { background: linear-gradient(135deg, #a16207 0%, #ca8a04 100%); }
.wc-form__badge--l { background: linear-gradient(135deg, #b91c1c 0%, #ef4444 100%); }
.wc-form__opp { flex: 1; min-width: 0; color: var(--text); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wc-form__score { font-family: 'IBM Plex Mono', monospace; color: var(--text-muted); font-weight: 700; }

/* Head-to-head block: summary strip + compact meetings table */
.wc-h2h__summary { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.wc-h2h__stat { display: flex; flex-direction: column; align-items: center; justify-content: center; flex: 1 1 100px; min-width: 90px; padding: 12px 8px; background: var(--surface-mid); border-radius: 8px; }
.wc-h2h__stat strong { font-family: 'Barlow Condensed', sans-serif; font-size: 30px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 4px; }
.wc-h2h__stat span { font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; text-align: center; }
.wc-h2h__table { width: 100%; border-collapse: collapse; font-family: 'Inter', sans-serif; font-size: 13px; color: var(--text); }
.wc-h2h__table thead th { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--border); font-family: 'IBM Plex Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); font-weight: 700; }
.wc-h2h__table tbody td { padding: 8px 10px; border-bottom: 1px solid var(--border); }
.wc-h2h__table tbody tr:last-child td { border-bottom: none; }
.wc-h2h__table td.wc-h2h__score { text-align: center; font-family: 'IBM Plex Mono', monospace; color: var(--white); }
.wc-h2h__table td.wc-h2h__date { color: var(--text-muted); font-family: 'IBM Plex Mono', monospace; font-size: 12px; white-space: nowrap; }

@media (max-width: 600px) {
  .wc-form, .wc-h2h { padding: 16px; }
  .wc-form__item { flex-basis: 100%; }
  .wc-h2h__stat strong { font-size: 24px; }
  .wc-h2h__table { font-size: 12px; }
  .wc-h2h__table td, .wc-h2h__table th { padding: 6px 6px; }
}

/* ===== Facebook Community Banner ===== */
.wc-fb-banner { margin: 0; padding: 36px 0; background: linear-gradient(135deg, #0a0f1a 0%, #162447 50%, #1877f2 140%); border-top: 1px solid var(--border); position: relative; overflow: hidden; }
.wc-fb-banner::before { content: ''; position: absolute; top: -60%; right: -10%; width: 420px; height: 420px; background: radial-gradient(circle, rgba(24,119,242,0.22) 0%, transparent 70%); pointer-events: none; }
.wc-fb-banner__inner { position: relative; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.wc-fb-banner__icon { flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%; background: #1877f2; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(24,119,242,0.35); }
.wc-fb-banner__icon svg { width: 32px; height: 32px; }
.wc-fb-banner__text { flex: 1 1 280px; min-width: 0; }
.wc-fb-banner__eyebrow { font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: #60a5fa; margin-bottom: 4px; }
.wc-fb-banner__title { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 6px; }
.wc-fb-banner__sub { font-family: 'Lora', serif; font-size: 15px; color: var(--text-mid); line-height: 1.55; }
.wc-fb-banner__btn { flex-shrink: 0; display: inline-block; padding: 13px 28px; background: #fff; color: #162447; font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; text-decoration: none; border-radius: 8px; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 2px 10px rgba(0,0,0,0.25); }
.wc-fb-banner__btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.35); background: #1877f2; color: #fff; }
@media (max-width: 640px) {
  .wc-fb-banner { padding: 28px 0; }
  .wc-fb-banner__inner { flex-direction: column; text-align: center; }
  .wc-fb-banner__btn { width: 100%; text-align: center; }
}

/* ===== Social Share Bar ===== */
.wc-share { padding: 32px 0; background: var(--surface-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.wc-share__inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.wc-share__label { font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--text-muted); white-space: nowrap; }
.wc-share__buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.wc-share__btn { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); color: var(--text-muted); text-decoration: none; transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s; cursor: pointer; font-family: inherit; }
.wc-share__btn:hover { transform: translateY(-2px); background: var(--lime); border-color: var(--lime); color: var(--bg); }
.wc-share__btn--copied { background: #16a34a !important; border-color: #16a34a !important; color: #fff !important; }
@media (max-width: 600px) { .wc-share__label { width: 100%; } }

/* ===== Brand Showcase (about.html) ===== */
.brand-showcase { background: var(--surface); padding: 60px 20px; display: flex; justify-content: center; align-items: center; }
.brand-showcase__logo { width: clamp(280px, 48vw, 680px); height: auto; display: block; }

/* ===== Related Analysis ===== */
.wc-related { padding: 40px 0; background: var(--surface-mid); border-top: 2px solid var(--lime); }
.wc-related__heading { font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--lime); margin-bottom: 20px; }
.wc-related__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.related-card { display: block; padding: 16px 18px; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; text-decoration: none; transition: border-color 0.15s, transform 0.15s; }
.related-card:hover { border-color: var(--lime); transform: translateY(-2px); }
.related-card__category { font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--lime); margin-bottom: 6px; }
.related-card__title { font-family: 'Barlow Condensed', sans-serif; font-size: 17px; line-height: 1.35; color: var(--white); font-weight: 700; }

/* ===== Footer credit ===== */
.site-footer__credit { text-align: center; padding: 10px 0 2px; font-size: 0.78rem; color: var(--text-muted); border-top: 1px solid var(--border); margin-top: 10px; }
.site-footer__credit a { color: var(--lime); font-weight: 600; text-decoration: none; }
.site-footer__credit a:hover { text-decoration: underline; }
