/* ═══════════════════════════════════════════════════════════
   Jax Soccer News — Main Stylesheet
   Brand: Lime green #84C41A · Black #0e0e0e
   ═══════════════════════════════════════════════════════════ */

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

/* ─── Brand tokens (never change) ──────────────────────── */
:root {
  --green:      #84C41A;
  --green-dark: #6BAF12;
  --green-glow: rgba(132,196,26,.15);
  --radius:     4px;
  --shadow-sm:  0 1px 4px rgba(0,0,0,.08);

  /* NAV/HEADER always dark — brand identity */
  --nav-bg:   #0e0e0e;
  --nav-text: #b0b0b0;
}

/* ═══ LIGHT THEME (default) ════════════════════════════════ */
:root,
[data-theme="light"] {
  --bg-body:    #f0f0ee;
  --bg-card:    #ffffff;
  --bg-section: #f8f8f6;
  --bg-input:   #f5f5f5;
  --text-base:  #1a1a1a;
  --text-head:  #0e0e0e;
  --text-muted: #777777;
  --border:     #e2e2e2;
  --shadow:     0 2px 10px rgba(0,0,0,.09);
  --topbar-bg:  #1a1a1a;
  --scores-bg:  #ffffff;
  --scores-border: #e5e5e5;
  --scores-head-bg: #f5f5f5;
  --scores-text: #222;
  --scores-muted: #888;
  --label-green: #006600;
  color-scheme: light;
}

/* ═══ DARK THEME ═══════════════════════════════════════════ */
[data-theme="dark"] {
  --bg-body:    #111111;
  --bg-card:    #1a1a1a;
  --bg-section: #161616;
  --bg-input:   #222222;
  --text-base:  #e8e8e8;
  --text-head:  #f2f2f2;
  --text-muted: #888888;
  --border:     #2a2a2a;
  --shadow:     0 2px 14px rgba(0,0,0,.40);
  --topbar-bg:  #080808;
  --scores-bg:  #1a1a1a;
  --scores-border: #2a2a2a;
  --scores-head-bg: #111111;
  --scores-text: #e0e0e0;
  --scores-muted: #777;
  --label-green: #84C41A;
  color-scheme: dark;
}

/* ─── Base ─────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-body);
  color: var(--text-base);
  line-height: 1.6;
  font-size: 16px;
  transition: background .25s, color .25s;
}
a   { color: inherit; text-decoration: none; }
a:hover { color: var(--green); }
img { max-width: 100%; height: auto; display: block; }
ul  { list-style: none; }
h1,h2,h3,h4,h5 { font-family: 'Oswald', sans-serif; line-height: 1.25; color: var(--text-head); }
.container { max-width: 1240px; margin: 0 auto; padding: 0 16px; }
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10000;
  transform: translateY(-150%);
  padding: 8px 12px;
  background: var(--green);
  color: #000;
  border-radius: var(--radius);
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── Top Bar ──────────────────────────────────────────── */
.topbar {
  background: var(--topbar-bg);
  color: #777;
  font-size: 12px;
  padding: 5px 0;
  border-bottom: 2px solid var(--green);
  position: relative;
  z-index: 100;
}
.topbar-inner { display: flex; align-items: center; gap: 12px; }
.topbar-date  { white-space: nowrap; flex-shrink: 0; color: #666; }
.topbar-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* Breaking ticker */
.breaking-ticker { display: flex; align-items: center; flex: 1; overflow: hidden; min-width: 0; gap: 8px; }
.breaking-label  {
  background: var(--green);
  color: #0e0e0e;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  padding: 2px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-wrap  { overflow: hidden; flex: 1; }
.ticker-items { display: flex; gap: 60px; animation: ticker 30s linear infinite; white-space: nowrap; }
.ticker-item  { flex-shrink: 0; color: #aaa; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Lang / Social */
.lang-btn {
  color: #777;
  padding: 2px 7px;
  border: 1px solid #333;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: all .2s;
}
.lang-btn.active, .lang-btn:hover { color: #0e0e0e; border-color: var(--green); background: var(--green); }
.social-icon { color: #555; font-size: 14px; padding: 2px 4px; transition: color .2s; }
.social-icon:hover { color: var(--green); }

/* Theme toggle button */
.theme-toggle {
  background: none;
  border: 1px solid #333;
  color: #888;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 2px;
  font-size: 14px;
  line-height: 1.4;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.theme-toggle:hover { border-color: var(--green); color: var(--green); }
.theme-toggle .icon-dark  { display: none; }
.theme-toggle .icon-light { display: inline; }
[data-theme="dark"] .theme-toggle .icon-dark  { display: inline; }
[data-theme="dark"] .theme-toggle .icon-light { display: none; }

/* ─── Site Header (always dark) ────────────────────────── */
.site-header {
  background: var(--nav-bg);
  padding: 14px 0 12px;
  border-bottom: 3px solid var(--green);
}
.header-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto minmax(280px, 1fr);
  align-items: center;
  gap: 24px;
}

.site-logo {
  justify-self: end;
  display: flex;
  align-items: center;
}
.site-logo img { height: 58px; width: auto; }
.logo-text   { display: flex; flex-direction: column; line-height: 1; }
.logo-main   { font-family: 'Oswald', sans-serif; font-size: 36px; font-weight: 700; color: var(--green); letter-spacing: -1px; }
.logo-sub    { font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 400; color: #fff; letter-spacing: 5px; margin-top: 2px; }

.header-brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  justify-self: start;
  text-align: left;
}
.header-brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(31px, 3vw, 44px);
  font-weight: 700;
  color: var(--green);
  letter-spacing: .06em;
  line-height: .9;
  text-transform: uppercase;
  font-style: italic;
}
.header-brand-by {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: .02em;
  text-transform: none;
  font-weight: 700;
  font-style: italic;
}

.header-search {
  display: flex;
  justify-self: end;
}
.header-search input {
  border: 2px solid #2a2a2a;
  border-right: none;
  background: #1a1a1a;
  color: #ddd;
  padding: 9px 14px;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 14px;
  width: 260px;
  outline: none;
  transition: border-color .2s;
}
.header-search input::placeholder { color: #555; }
.header-search input:focus { border-color: var(--green); }
.header-search button {
  background: var(--green);
  color: #0e0e0e;
  border: none;
  padding: 9px 20px;
  cursor: pointer;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  transition: background .2s;
}
.header-search button:hover { background: var(--green-dark); }

/* ─── Navigation (always dark) ────────────────────────── */
.main-nav { background: #111; border-bottom: 3px solid var(--green); position: sticky; top: 0; z-index: 200; transition: box-shadow .2s; }
.nav-inner { display: flex; align-items: center; gap: 14px; }

/* ── Brand en la nav sticky (estilo AS/Marca: identidad SIEMPRE visible) ── */
.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  padding: 8px 0;
  /* Por defecto oculto en desktop — solo aparece cuando se scrollea (clase .scrolled) */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  pointer-events: none;
}
.main-nav.scrolled .nav-brand {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-brand-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}
.nav-brand-copy {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  min-width: 0;
}
.nav-brand-name {
  margin-left: 8px;
  font-family: var(--font-head, 'Oswald', sans-serif);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .05em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-brand-copy .nav-brand-name { margin-left: 8px; }
.nav-brand-byline {
  display: none;
  margin-left: 8px;
  margin-top: 3px;
  color: #fff;
  font-size: 9px;
  font-style: italic;
  opacity: .9;
  white-space: nowrap;
}
.nav-brand-text {
  font-family: var(--font-head, 'Oswald', sans-serif);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  line-height: 1;
}
.nav-brand-ball { font-size: 14px; color: var(--green); }
.nav-brand-news { color: var(--green); font-weight: 600; opacity: .9; margin-left: 2px; }

/* En mobile siempre se muestra el brand (porque el header no es sticky en mobile) */
@media (max-width: 900px) {
  .nav-brand {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
  .nav-inner { justify-content: space-between; }
  .nav-brand-text { font-size: 14px; }
  .nav-brand-logo { height: 26px; }
  .nav-brand-name { font-size: 14px; max-width: 180px; overflow: hidden; text-overflow: ellipsis; }
}
.nav-menu  { display: flex; flex-wrap: wrap; }

/* Center nav items on desktop (overflow-safe) */
@media (min-width: 901px) {
  .nav-menu { flex: 1; justify-content: safe center; }
}
.nav-menu li a {
  display: block;
  color: #aaa;
  padding: 13px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: background .2s, color .2s;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
}
.nav-menu li a:hover,
.nav-menu li a.active { color: var(--green); border-bottom-color: var(--green); background: rgba(132,196,26,.07); }
.nav-hamburger { display: none; background: none; border: none; color: var(--green); font-size: 22px; padding: 10px 16px; cursor: pointer; }

/* ═══════════════════════════════════════════════════════════
   SCORES WIDGET
   ═══════════════════════════════════════════════════════════ */
.scores-bar {
  background: var(--scores-bg);
  border-bottom: 1px solid var(--scores-border);
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  position: sticky;
  top: 46px;       /* Exactly below the sticky nav */
  z-index: 190;    /* Below nav (z-index:200) but above content */
  transition: background .25s, transform .3s ease, opacity .25s;
  transform-origin: top;
  will-change: transform;
}
/* Hide on scroll down, show on scroll up */
body.scores-hidden .scores-bar {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}
.scores-bar-inner {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--green) transparent;
}
.scores-bar-inner::-webkit-scrollbar { height: 3px; }
.scores-bar-inner::-webkit-scrollbar-thumb { background: var(--green); border-radius: 2px; }

/* Filter pill */
.scores-filter {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 14px;
  border-right: 1px solid var(--scores-border);
  font-size: 12px;
  color: var(--scores-muted);
  min-width: 80px;
}
.scores-filter label { font-weight: 700; margin-bottom: 4px; display: block; color: var(--scores-text); }
.scores-filter select {
  background: var(--bg-input);
  border: 1px solid var(--scores-border);
  color: var(--scores-text);
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 2px;
  cursor: pointer;
  outline: none;
}

/* Competition block */
.scores-comp {
  flex-shrink: 0;
  min-width: 200px;
  max-width: 260px;
  border-right: 1px solid var(--scores-border);
  display: flex;
  flex-direction: column;
}
.scores-comp-head {
  background: var(--scores-head-bg);
  border-bottom: 1px solid var(--scores-border);
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 30px;
}
.scores-comp-name {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--scores-text);
  display: flex;
  align-items: center;
  gap: 6px;
}
.scores-comp-name .comp-icon { font-size: 14px; }
.scores-comp-link { font-size: 11px; color: var(--green); white-space: nowrap; font-weight: 600; }
.scores-comp-link:hover { color: var(--green-dark); }

/* Match rows */
.scores-match {
  display: grid;
  grid-template-columns: 50px 1fr auto 1fr;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-bottom: 1px solid var(--scores-border);
  font-size: 12px;
  min-height: 34px;
}
.scores-match:last-child { border-bottom: none; }
.scores-status {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.3;
  color: var(--scores-muted);
}
.scores-status.live   { color: var(--green); animation: pulse 1.5s infinite; }
.scores-status.fin    { color: var(--scores-muted); }
.scores-status.sched  { color: #888; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.4; } }

.scores-team { display: flex; align-items: center; gap: 5px; overflow: hidden; }
.scores-team.home { justify-content: flex-end; text-align: right; }
.scores-team.away { justify-content: flex-start; }
.scores-team-name { font-size: 12px; color: var(--scores-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 80px; }
.scores-team img, .scores-team .flag { width: 18px; height: 18px; object-fit: contain; border-radius: 2px; flex-shrink: 0; }
.scores-flag { font-size: 16px; flex-shrink: 0; line-height: 1; }

.scores-result {
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--scores-text);
  white-space: nowrap;
  padding: 0 4px;
  min-width: 36px;
}
.scores-result .dash { color: var(--scores-muted); font-weight: 400; }

/* No matches message */
.scores-empty { padding: 10px; font-size: 12px; color: var(--scores-muted); text-align: center; }

/* Loading skeleton */
.scores-loading { display: flex; align-items: center; gap: 12px; padding: 8px 16px; font-size: 12px; color: var(--scores-muted); }
.scores-spinner { width: 14px; height: 14px; border: 2px solid var(--scores-border); border-top-color: var(--green); border-radius: 50%; animation: spin .8s linear infinite; flex-shrink: 0; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Main content area ────────────────────────────────── */
.site-main { padding: 24px 0; }

/* ─── Hero Section ─────────────────────────────────────── */
.hero-section { display: grid; grid-template-columns: 1fr 360px; gap: 4px; margin-bottom: 32px; height: 500px; }
.hero-main    { height: 100%; }
.hero-side    { display: grid; grid-template-rows: 1fr 1fr; gap: 4px; height: 100%; }

.hero-card {
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-color: #222;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.hero-card::before { content:''; position:absolute; inset:0; background:linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.2) 55%, transparent 100%); }
.hero-card:hover   { text-decoration: none; }
.hero-card::after  { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:var(--green); transform:scaleX(0); transform-origin:left; transition:transform .3s; }
.hero-card:hover::after { transform: scaleX(1); }
.hero-card-body { position:relative; z-index:1; padding:20px; width:100%; }
.hero-card-body h2 { font-size:clamp(20px,2.5vw,32px); color:#fff; margin:8px 0 6px; line-height:1.2; }
.hero-card-body h3 { font-size:clamp(14px,1.8vw,20px); color:#fff; margin:6px 0 4px; line-height:1.2; }
.hero-meta { color:rgba(255,255,255,.6); font-size:12px; display:flex; gap:12px; }

/* ─── Category badge ───────────────────────────────────── */
.article-cat {
  display: inline-block;
  background: transparent !important;
  color: var(--label-green) !important;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 0;
  border-radius: 0;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}
/* Tighter cap inside narrow sidebars (e.g. popular list) */
.popular-item .article-cat,
.fresh-item-body .article-cat { max-width: 120px; font-size: 10px; padding: 0; }
.article-cat--lg { font-size: 13px; padding: 0; margin-bottom: 12px; }

/* Public category labels use one brand color instead of editorial colors. */
.related-cat,
.tn-hero-cat,
.tn-sec-cat,
.tn-card-cat,
.au-card-cat,
.cs-card-cat,
.e404-card-cat,
.sug-cat {
  color: var(--label-green) !important;
}
.category-label--featured {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  max-width: 100%;
  padding: 3px 10px 3px 8px !important;
  color: #fff !important;
  background: var(--label-green) !important;
  border-radius: 999px !important;
}
.category-label--featured::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
}
[data-theme="dark"] .category-label--featured {
  color: #000 !important;
}

/* ─── Section headers ──────────────────────────────────── */
.section { margin-bottom: 40px; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.section-title  { font-size: 20px; }
.section-title span { border-left: 4px solid var(--green); padding-left: 12px; }
.section-more   { font-size: 13px; color: var(--green); font-weight: 700; }

/* ─── Article grid ─────────────────────────────────────── */
.article-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.article-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s, background .25s, border-color .2s;
  border-bottom: 3px solid transparent;
}
.article-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.18); border-bottom-color: var(--green); }

.article-card-thumb { display:block; position:relative; aspect-ratio:16/10; overflow:hidden; }
.article-card-thumb img { width:100%; height:100%; object-fit:cover; transition:transform .35s; }
.article-card:hover .article-card-thumb img { transform: scale(1.05); }
.play-icon { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); background:rgba(132,196,26,.9); color:#0e0e0e; width:48px; height:48px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:18px; pointer-events:none; }

.article-card-body { padding: 14px; }
.article-card-body h3 { font-size:15px; margin:8px 0 6px; line-height:1.35; color:var(--text-head); }
.article-card-body h3 a:hover { color: var(--green); }
.article-excerpt { font-size:13px; color:var(--text-muted); margin-bottom:10px; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.article-meta    { font-size:12px; color:var(--text-muted); display:flex; flex-wrap:wrap; gap:8px; }

/* ─── Category sections ────────────────────────────────── */
.cat-grid { display: grid; grid-template-columns: 1fr 340px; gap: 4px; height: 340px; }
.cat-lead { height: 100%; }
.hero-card--medium { height:340px; border-radius:var(--radius) 0 0 var(--radius); }
.cat-side { display:flex; flex-direction:column; gap:0; overflow:hidden; background:var(--bg-card); border-radius:0 var(--radius) var(--radius) 0; box-shadow:var(--shadow); transition:background .25s; }
.list-card { display:flex; gap:12px; padding:10px 12px; border-bottom:1px solid var(--border); flex:1; transition:background .2s; }
.list-card:last-child { border-bottom: none; }
.list-card:hover { background: var(--bg-section); }
.list-card-thumb { flex-shrink:0; width:84px; height:62px; overflow:hidden; border-radius:2px; }
.list-card-thumb img { width:100%; height:100%; object-fit:cover; transition:transform .3s; }
.list-card:hover .list-card-thumb img { transform: scale(1.08); }
.list-card-body { flex:1; min-width:0; display:flex; flex-direction:column; justify-content:center; }
.list-card-body h4 { font-size:13px; line-height:1.35; margin-bottom:4px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; color:var(--text-head); }
.list-card-body h4 a:hover { color: var(--green); }

/* ─── Page header ──────────────────────────────────────── */
.page-header { border-left:5px solid var(--green); padding:16px 20px; background:var(--bg-card); margin-bottom:24px; border-radius:0 var(--radius) var(--radius) 0; box-shadow:var(--shadow); transition:background .25s; }
.page-header h1 { font-size:28px; }
.page-header p  { color:var(--text-muted); margin-top:4px; }

/* ─── Article full page ────────────────────────────────── */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 28px; }
.article-full   { background:var(--bg-card); border-radius:var(--radius); padding:32px; box-shadow:var(--shadow); transition:background .25s; }
.article-title  { font-size:clamp(24px,3vw,38px); line-height:1.15; margin:10px 0 16px; }
.article-byline { display:flex; flex-wrap:wrap; gap:16px; font-size:13px; color:var(--text-muted); padding-bottom:16px; border-bottom:2px solid var(--border); margin-bottom:20px; }
.byline-author strong { color: var(--text-base); }

.share-bar { display:flex; align-items:center; gap:10px; margin-bottom:20px; font-size:13px; }
.share-btn  { display:inline-block; padding:5px 14px; border-radius:var(--radius); font-size:12px; color:#fff; font-weight:600; transition:opacity .2s; }
.share-btn:hover { opacity:.85; color:#fff; }
.share-fb { background:#1877f2; }
.share-tw { background:#000; }
.share-wa { background:#25d366; }

.article-featured-img { margin:0 0 24px; border-radius:var(--radius); overflow:hidden; }
.article-featured-img img { width:100%; max-height:480px; object-fit:cover; display:block; }
.article-img-caption {
  background:var(--bg-card);
  color:var(--text-muted);
  font-size:12px;
  font-style:italic;
  padding:6px 12px;
  border-top:2px solid var(--green);
  text-align:right;
  line-height:1.4;
}

.article-video { position:relative; padding-bottom:56.25%; height:0; overflow:hidden; border-radius:var(--radius); margin-bottom:24px; background:#000; }
.article-video iframe { position:absolute; top:0; left:0; width:100%; height:100%; border:none; }

.article-content { font-size:17px; line-height:1.8; color:var(--text-base); }
.article-content h2 { font-family:'Oswald',sans-serif; font-size:24px; border-left:4px solid var(--green); padding-left:12px; margin:28px 0 12px; }
.article-content h3 { font-family:'Oswald',sans-serif; font-size:20px; margin:24px 0 10px; }
.article-content p  { margin-bottom:18px; }
.article-content ul,.article-content ol { margin:0 0 18px 24px; }
.article-content li { margin-bottom:6px; }
.article-content img { border-radius:var(--radius); margin:16px 0; }
.article-content blockquote { border-left:4px solid var(--green); margin:24px 0; padding:12px 20px; background:var(--bg-section); font-style:italic; border-radius:0 var(--radius) var(--radius) 0; }
.article-content a { color:var(--green-dark); text-decoration:underline; }
.article-tags { margin-top:28px; padding-top:20px; border-top:1px solid var(--border); display:flex; flex-wrap:wrap; gap:8px; align-items:center; }
.tag-pill { background:var(--bg-section); border:1px solid var(--border); color:var(--text-muted); padding:3px 12px; border-radius:20px; font-size:12px; transition:all .2s; }
.tag-pill:hover { background:var(--green); color:#0e0e0e; border-color:var(--green); }
.lang-notice { margin-top:20px; background:var(--bg-section); border-left:4px solid var(--green); padding:10px 16px; font-size:13px; border-radius:0 var(--radius) var(--radius) 0; }

/* ─── Sidebar ──────────────────────────────────────────── */
.article-sidebar { display:flex; flex-direction:column; gap:24px; }
.sidebar-widget  { background:var(--bg-card); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); transition:background .25s; }
.widget-title    { background:var(--nav-bg); color:var(--green); font-family:'Oswald',sans-serif; font-size:14px; letter-spacing:.08em; text-transform:uppercase; padding:10px 16px; border-left:4px solid var(--green); }
.cat-list li a   { display:flex; align-items:center; gap:10px; padding:9px 16px; font-size:14px; transition:background .2s; border-left:3px solid transparent; color:var(--text-base); }
.cat-list li a:hover { background:var(--bg-section); border-left-color:var(--green); }
.cat-dot { width:10px; height:10px; border-radius:50%; flex-shrink:0; }

/* ─── Search ───────────────────────────────────────────── */
.search-form-big { display:flex; margin-bottom:28px; }
.search-form-big input  { flex:1; border:2px solid var(--border); background:var(--bg-card); color:var(--text-base); padding:12px 16px; font-size:16px; outline:none; border-radius:var(--radius) 0 0 var(--radius); transition:border-color .2s; }
.search-form-big input:focus { border-color:var(--green); }
.search-form-big button { background:var(--green); color:#0e0e0e; border:none; padding:12px 28px; cursor:pointer; font-family:'Oswald',sans-serif; font-size:14px; font-weight:700; letter-spacing:.05em; border-radius:0 var(--radius) var(--radius) 0; transition:background .2s; }
.search-form-big button:hover { background:var(--green-dark); }

/* ─── Pagination ───────────────────────────────────────── */
.pagination { display:flex; justify-content:center; flex-wrap:wrap; gap:6px; margin-top:32px; }
.page-btn   { display:inline-flex; align-items:center; padding:8px 14px; border:1px solid var(--border); border-radius:var(--radius); font-size:13px; background:var(--bg-card); color:var(--text-base); transition:all .2s; }
.page-btn:hover,.page-btn.active { background:var(--green); color:#0e0e0e; border-color:var(--green); font-weight:700; }
.page-ellipsis { padding:8px 4px; color:var(--text-muted); }

/* ─── Misc ─────────────────────────────────────────────── */
.error-page { text-align:center; padding:80px 20px; }
.error-page h1 { font-size:96px; color:var(--green); }
.error-page p  { font-size:18px; margin-top:16px; color:var(--text-muted); }
.error-page a  { color:var(--green); text-decoration:underline; }
.no-results    { text-align:center; color:var(--text-muted); padding:40px 20px; font-size:16px; }

/* ─── Footer (always dark) ─────────────────────────────── */
.site-footer  { background:var(--nav-bg); color:#777; margin-top:42px; padding:26px 0 0; border-top:4px solid var(--green); }
.instagram-follow-strip {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  margin-bottom:26px;
  padding:16px 22px;
  border:1px solid #252525;
  border-left:4px solid var(--green);
  border-radius:8px;
  background:linear-gradient(100deg, rgba(132,196,26,.12), rgba(255,255,255,.02));
}
.instagram-follow-kicker {
  display:block;
  margin-bottom:4px;
  color:var(--green);
  font-family:'Oswald',sans-serif;
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.instagram-follow-copy h2 { color:#fff; font-size:20px; margin-bottom:3px; }
.instagram-follow-copy p { color:#8a8a8a; font-size:13px; }
.instagram-follow-button {
  flex-shrink:0;
  padding:10px 18px;
  color:#000;
  background:var(--green);
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  transition:background .2s, transform .2s;
}
.instagram-follow-button:hover {
  color:#000;
  background:var(--green-dark);
  transform:translateY(-1px);
}
.footer-grid {
  display:grid;
  grid-template-columns:minmax(185px, .95fr) minmax(180px, .88fr) minmax(240px, 1.25fr) minmax(210px, 1fr);
  gap:28px;
  align-items:start;
  padding-bottom:25px;
}
.footer-logo .logo-main { font-size:24px; }
.footer-logo .logo-sub  { color:#555; }
.footer-brand p         { font-size:13px; margin-top:10px; line-height:1.5; }
.footer-social          { display:flex; flex-wrap:wrap; gap:8px; margin-top:13px; }
.footer-social a        { font-size:12px; color:#666; border:1px solid #2a2a2a; padding:4px 14px; border-radius:var(--radius); transition:all .2s; }
.footer-social a:hover  { border-color:var(--green); color:var(--green); }
.footer-institutional { display:flex; flex-wrap:wrap; gap:8px 15px; margin-top:14px; }
.footer-institutional a { color:#a2a2a2; font-size:12px; }
.footer-institutional a:hover { color:var(--green); }
.footer-col h4 { font-family:'Oswald',sans-serif; font-size:14px; letter-spacing:.07em; text-transform:uppercase; color:var(--green); margin-bottom:12px; padding-bottom:7px; border-bottom:2px solid #1e1e1e; }
.footer-col ul li       { margin-bottom:7px; }
.footer-col ul li a     { font-size:13px; color:#666; transition:color .2s; }
.footer-col ul li a:hover { color:var(--green); }
.footer-bottom { border-top:1px solid #1a1a1a; padding:16px 0; display:flex; justify-content:space-between; align-items:center; font-size:12px; color:#444; }

/* ─── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: center;
  }
  .header-search {
    grid-column: 1 / -1;
    justify-self: center;
  }
  .article-grid  { grid-template-columns: repeat(3,1fr); }
  .hero-section  { grid-template-columns: 1fr; height:auto; }
  .hero-main     { height:360px; }
  .hero-side     { grid-template-columns:1fr 1fr; grid-template-rows:none; height:200px; }
  .cat-grid      { grid-template-columns:1fr; height:auto; }
  .cat-lead      { height:280px; }
  .hero-card--medium { border-radius:var(--radius); height:280px; }
  .cat-side      { flex-direction:row; flex-wrap:wrap; border-radius:var(--radius); }
  .article-layout { grid-template-columns:1fr; }
}
@media (max-width: 900px) {
  .footer-grid   { grid-template-columns:1fr 1fr; gap:30px; }
  .footer-brand  { grid-column:1/-1; }
  .footer-newsletter { grid-column:1/-1; max-width:520px; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .site-header { display: none; }
  .main-nav {
    top: 0;
    position: relative;
    border-bottom: 2px solid var(--green);
    box-shadow: none;
  }
  .nav-inner {
    min-height: 0;
    padding: 0;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-hamburger {
    display: none;
  }
  .nav-brand {
    order: 1;
    width: 100%;
    justify-content: center;
    padding: 8px 10px 7px;
    min-width: 0;
    background: #080808;
  }
  .nav-brand-logo { height: 36px; }
  .nav-brand-name {
    display: inline-block;
    font-size: 19px;
    max-width: calc(100vw - 86px);
    color: var(--green);
    font-style: italic;
    letter-spacing: .06em;
  }
  .nav-brand-byline { display: inline-block; }
  .nav-brand-text {
    font-size: 19px;
    color: var(--green);
    font-style: italic;
  }
  .nav-brand-ball { display: none; }
  .nav-brand-news { color: #fff; opacity: 1; }
  .nav-brand-copy {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .nav-menu {
    order: 2;
    display: flex;
    flex-direction: row;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    flex-wrap: nowrap;
    justify-content: flex-start;
    border-top: 2px solid var(--green);
    padding: 0;
    background: #191919;
    box-shadow: none;
  }
  .nav-menu::-webkit-scrollbar { display: none; }
  .nav-menu.open { display: flex; }
  .nav-menu li a {
    padding: 8px 7px;
    margin-bottom: 0;
    border-bottom: 0;
    border-right: 1px solid #2a2a2a;
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: .03em;
    justify-content: center;
    white-space: nowrap;
    color: #d7d7d7;
    line-height: 1.05;
  }
  .nav-menu li a.active {
    color: var(--green);
    background: transparent;
    border-left: 0;
    padding-left: 7px;
  }
  .article-grid  { grid-template-columns:repeat(2,1fr); }
  .hero-side     { grid-template-columns:1fr; height:auto; }
  .hero-card--small { height:160px; }
  .topbar-date   { display:none; }
  .header-search input { width:150px; }
  .footer-grid   { grid-template-columns:1fr; }
  .footer-brand, .footer-newsletter { grid-column:auto; max-width:none; }
  .instagram-follow-strip { flex-direction:column; align-items:flex-start; padding:16px; }
  .instagram-follow-copy h2 { font-size:19px; }
  .footer-bottom { flex-direction:column; gap:6px; text-align:center; }
  .scores-comp   { min-width: 170px; }
  /* Mobile nav is shorter (hamburger button ~42px) */
  .scores-bar    { top: 0; }
}
@media (max-width: 480px) {
  .article-grid  { grid-template-columns:1fr; }
  .hero-main     { height:260px; }
  .header-inner  { flex-direction:column; align-items:flex-start; gap:12px; }
  .header-search { width:100%; }
  .header-search input { flex:1; width:auto; }
}

/* ═══════════════════════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════════════════════ */

.hero-slider {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #111;
  display: flex;
  flex-direction: column;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  border-radius: 0 !important;
  height: 100% !important;
  min-height: unset !important;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Controles del slider */
.slider-controls {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}
.slider-btn {
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  font-size: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.slider-btn:hover { background: var(--green); border-color: var(--green); color: #0e0e0e; }

.slider-dots { display: flex; gap: 6px; align-items: center; }
.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(255,255,255,.2);
  cursor: pointer;
  padding: 0;
  transition: all .3s;
}
.slider-dot.active {
  background: var(--green);
  border-color: var(--green);
  transform: scale(1.4);
}
.slider-dot:hover { background: rgba(255,255,255,.7); }

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — FRESH STORIES 3-COL
   ═══════════════════════════════════════════════════════════ */

.fresh-section { margin-bottom: 40px; }

.fresh-grid {
  display: grid;
  grid-template-columns: 224px 1fr 208px;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 480px;
  background: var(--bg-card);
  transition: background .25s;
}

/* Column containers */
.fresh-left {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
  background: var(--bg-card);
  transition: background .25s;
}
.fresh-center { display: flex; flex-direction: column; }
.fresh-right {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
  background: var(--bg-section);
  transition: background .25s;
}

/* Column headers */
.fresh-col-head {
  padding: 13px 16px;
  border-bottom: 2px solid var(--green);
  flex-shrink: 0;
}
.fresh-col-head h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--text-head);
}

/* Fresh list items */
.fresh-item {
  display: flex;
  gap: 10px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
  flex: 1;
  align-items: flex-start;
}
.fresh-item:last-child { border-bottom: none; }
.fresh-item:hover { background: var(--bg-section); }

.fresh-item-thumb {
  flex-shrink: 0;
  width: 70px;
  height: 54px;
  overflow: hidden;
  border-radius: 2px;
  display: block;
}
.fresh-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.fresh-item:hover .fresh-item-thumb img { transform: scale(1.08); }

.fresh-item-body { flex: 1; min-width: 0; }
.fresh-item-body .article-cat { margin-bottom: 3px; }
.fresh-item-body h4 {
  font-size: 13px;
  line-height: 1.35;
  margin: 4px 0 4px;
  color: var(--text-head);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fresh-item-body h4 a:hover { color: var(--green); }

/* Hero card (center) */
.fresh-hero-card {
  flex: 1;
  border-radius: 0;
  min-height: 520px;
}
.fresh-hero-card .hero-card-body h2 { font-size: clamp(18px, 2.2vw, 28px); }

/* Hero excerpt text */
.hero-excerpt {
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.55;
  margin: 6px 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Popular / Most Read */
.popular-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.popular-item {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
  transition: background .2s;
}
.popular-item:last-child { border-bottom: none; }
.popular-item:hover { background: var(--bg-card); }

.popular-num {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  min-width: 24px;
  opacity: .55;
  flex-shrink: 0;
}
.popular-body { flex: 1; min-width: 0; }
.popular-body .article-cat { margin-bottom: 3px; }
.popular-body h4 {
  font-size: 13px;
  line-height: 1.35;
  margin: 4px 0 4px;
  color: var(--text-head);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.popular-body h4 a:hover { color: var(--green); }

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — VISUAL GRID (4 image cards)
   ═══════════════════════════════════════════════════════════ */

.visual-grid-section { margin-bottom: 40px; }

.visual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
}

.visual-card {
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-color: #222;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
  transition: background .3s;
}
.visual-card:hover::before {
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.35) 70%, transparent 100%);
}
.visual-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.visual-card:hover::after { transform: scaleX(1); }

.visual-card-body {
  position: relative;
  z-index: 1;
  padding: 14px;
  width: 100%;
}
.visual-card-body h3 {
  font-size: 15px;
  color: #fff;
  line-height: 1.3;
  margin: 5px 0 5px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Optional external storefront promotion (for Fourthwall or similar). */
.merch-promo {
  display:flex;
  align-items:stretch;
  min-height:210px;
  border:1px solid var(--border);
  border-left:4px solid var(--green);
  border-radius:var(--radius);
  overflow:hidden;
  background:linear-gradient(110deg, rgba(132,196,26,.12), var(--bg-card) 52%);
}
.merch-promo-media {
  width:min(38%, 390px);
  flex-shrink:0;
  background-position:center;
  background-size:cover;
}
.merch-promo-content {
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  gap:9px;
  padding:28px 34px;
}
.merch-promo-label {
  color:var(--label-green);
  font-family:'Oswald',sans-serif;
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.merch-promo-content h2 {
  color:var(--text-head);
  font-size:clamp(22px,2.4vw,29px);
  line-height:1.15;
}
.merch-promo-content p {
  max-width:620px;
  color:var(--text-muted);
  font-size:14px;
  line-height:1.55;
}
.merch-promo-button {
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:5px;
  padding:10px 20px;
  border-radius:999px;
  background:var(--green);
  color:#0a0a0a;
  font-size:13px;
  font-weight:700;
}
.merch-promo-button:hover { color:#0a0a0a; background:var(--green-dark); }

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — CATEGORY SECTIONS (3-col grid)
   ═══════════════════════════════════════════════════════════ */

.cat-section-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4px;
  min-height: 340px;
}

/* Lead article fills left half */
.cat-section-lead { height: 100%; }
.hero-card--cat {
  height: 100%;
  min-height: 340px;
  border-radius: var(--radius) 0 0 var(--radius);
}

/* Mid cards (right two columns) */
.cat-mid-card {
  display: flex;
  flex-direction: column;
  border-radius: 0;
  box-shadow: none;
}
.cat-mid-card:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}
.cat-mid-card .article-card-thumb {
  aspect-ratio: 16/9;
  flex-shrink: 0;
}
.cat-mid-card .article-card-body { flex: 1; }

/* More items (text row below) */
.cat-more-list {
  display: flex;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-top: 4px;
  transition: background .25s;
}
.cat-more-item {
  flex: 1;
  padding: 12px 16px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: background .2s;
}
.cat-more-item:last-child { border-right: none; }
.cat-more-item:hover { background: var(--bg-section); }
.cat-more-item > a {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-head);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-more-item > a:hover { color: var(--green); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — New homepage components
   ═══════════════════════════════════════════════════════════ */

/* Compact side columns at medium screens */
@media (max-width: 1024px) {
  .fresh-grid { grid-template-columns: 200px 1fr 188px; min-height: 440px; }
}

/* Stack fresh grid + simplify cat sections below 768px */
@media (max-width: 768px) {
  .fresh-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .fresh-center {
    order: 1;
    min-height: 340px;
  }
  .fresh-left  {
    order: 2;
    border-right: none;
    border-bottom: 2px solid var(--green);
  }
  .fresh-right {
    order: 3;
    border-left: none;
    border-top: 1px solid var(--border);
  }
  .fresh-hero-card {
    min-height: 340px;
    border-radius: 0;
  }
  .fresh-center .hero-slider {
    min-height: inherit;
    height: auto;
  }
  .fresh-hero-card .hero-card-body h2,
  .hero-card-body h2,
  .hero-card-body h3 {
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .hero-card-body {
    max-width: 100%;
    min-width: 0;
  }

  .visual-grid {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
  .visual-card { min-height: 190px; }
  .merch-promo { flex-direction:column; }
  .merch-promo-media { width:100%; height:185px; }
  .merch-promo-content { padding:22px; }

  .cat-section-grid {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }
  .cat-section-lead { grid-column: 1 / -1; }
  .hero-card--cat {
    min-height: 240px;
    border-radius: var(--radius) var(--radius) 0 0;
  }
  .cat-mid-card        { border-radius: 0; }
  .cat-mid-card:last-child { border-radius: 0 0 var(--radius) var(--radius); }
}

@media (max-width: 540px) {
  .site-main {
    padding-top: 0;
    background: #fff;
  }
  .site-main > .container {
    padding-left: 0;
    padding-right: 0;
  }
  .fresh-section { margin-top: 0; }
  .fresh-grid {
    border-radius: 0;
    box-shadow: none;
    margin-left: 0;
    margin-right: 0;
  }
  .fresh-hero-card {
    min-height: 0;
    height: auto;
    display: block;
    padding-top: 86%;
    background-position: center top;
    background-size: cover;
    overflow: visible;
  }
  .fresh-hero-card::before { display: none; }
  .fresh-hero-card::after {
    transform: none;
    height: 2px;
  }
  .fresh-center {
    min-height: 0;
    background: #fff;
  }
  .fresh-center .hero-slider {
    display: block;
    height: auto;
    min-height: 0;
    overflow: visible;
    background: #fff;
  }
  .fresh-hero-card.hero-slide {
    position: relative;
    inset: auto;
    opacity: 1;
    display: none;
    transition: none;
  }
  .fresh-hero-card.hero-slide.active {
    display: block;
  }
  .fresh-hero-card .hero-card-body {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding: 9px 10px 15px;
    max-width: 100%;
    background: #fff;
    color: #070707;
  }
  .fresh-hero-card .hero-card-body h2 {
    color: #070707;
    font-size: 27px;
    line-height: 1.12;
    letter-spacing: -.04em;
    margin: 8px 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .fresh-hero-card .article-cat {
    background: #007a12 !important;
    color: #fff !important;
    border-radius: 999px;
    padding: 3px 12px;
    font-size: 11px;
    max-width: calc(100vw - 28px);
  }
  .hero-excerpt {
    display: none;
  }
  .fresh-hero-card .hero-meta,
  .slider-controls {
    display: none !important;
  }
  .visual-grid { grid-template-columns: 1fr 1fr; }
  .visual-card { min-height: 160px; }
  .visual-card-body h3 { font-size: 13px; }

  .cat-section-grid { grid-template-columns: 1fr; }
  .hero-card--cat {
    min-height: 300px;
    width: 100%;
  }
  .hero-card--cat .hero-card-body {
    padding: 18px 16px;
  }
  .hero-card--cat .hero-card-body h3 {
    font-size: 24px;
    line-height: 1.12;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hero-card--cat .hero-excerpt {
    font-size: 18px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
  }
  .cat-mid-card:last-child { border-radius: 0 0 var(--radius) var(--radius); }

  .cat-more-list { flex-direction: column; }
  .cat-more-item { border-right: none; border-bottom: 1px solid var(--border); }
  .cat-more-item:last-child { border-bottom: none; }
}

@media (max-width: 400px) {
  .visual-grid { grid-template-columns: 1fr; height: auto; }
  .visual-card { min-height: 200px; }
  .fresh-hero-card { min-height: 240px; }
}

/* ═══════════════════════════════════════════════════
   HOME WITH SIDEBAR LAYOUT
   ═══════════════════════════════════════════════════ */
.home-with-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 0 28px;
  align-items: start;
}
.home-with-sidebar--only-sidebar {
  display: flex;
  justify-content: flex-end;
}
.home-with-sidebar--only-sidebar .home-sidebar {
  width: min(100%, 320px);
}
.home-main { min-width: 0; }
.home-sidebar { position: sticky; top: 16px; }

/* ═══════════════════════════════════════════════════
   STANDINGS WIDGET (homepage sidebar)
   ═══════════════════════════════════════════════════ */
.standings-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.sw-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 2px solid var(--green);
  background: var(--bg-section);
}
.sw-title {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-head);
  margin: 0;
}
.sw-all {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
}
.sw-all:hover { text-decoration: underline; }

/* Tabs */
.sw-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid var(--border);
  background: var(--bg-section);
}
.sw-tabs::-webkit-scrollbar { display: none; }
.sw-tab {
  flex-shrink: 0;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.sw-tab:hover { color: var(--text-head); }
.sw-tab.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

/* Table panels */
.sw-table-wrap { display: none; }
.sw-table-wrap.sw-active { display: block; }
.sw-season {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
  padding: 6px 12px;
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
}
.sw-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.sw-table th {
  padding: 6px 8px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--text-muted);
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
}
.sw-table td {
  padding: 7px 8px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.sw-table tr:last-child td { border-bottom: none; }
.sw-table tr:hover { background: var(--bg-section); }
.sw-pos { width: 22px; font-weight: 700; color: var(--text-muted); font-size: 11px; }
.sw-team { text-align: left !important; display: flex; align-items: center; gap: 6px; max-width: 140px; }
.sw-team span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 600; color: var(--text-head); }
.sw-logo { width: 18px; height: 18px; object-fit: contain; flex-shrink: 0; }
.sw-pts { font-weight: 700; color: var(--green); font-size: 13px; }

/* Playoff qualification marker */
.sw-row-playoff td:first-child { border-left: 3px solid #3b82f6; }

/* Jacksonville highlight row */
.sw-highlight { background: rgba(132,196,26,.08) !important; }
.sw-highlight:hover { background: rgba(132,196,26,.14) !important; }
.sw-highlight .sw-team span { color: var(--green) !important; font-weight: 700; }
.sw-highlight td:first-child { border-left: 3px solid var(--green) !important; }
.sw-highlight.sw-row-playoff td:first-child { border-left-color: #3b82f6 !important; }

/* Form dots */
.sw-form { display: flex; gap: 2px; justify-content: center; }
.sw-form-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.sw-w { background: var(--green); color: #000; }
.sw-d { background: #f59e0b; color: #000; }
.sw-l { background: #ef4444; }

/* Legend */
.sw-legend {
  display: flex;
  gap: 10px;
  padding: 7px 12px;
  border-top: 1px solid var(--border);
  background: var(--bg-section);
  flex-wrap: wrap;
}
.sw-leg-item {
  font-size: 10px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.sw-leg-item::before {
  content: '';
  width: 3px;
  height: 12px;
  border-radius: 2px;
  flex-shrink: 0;
}
.sw-leg-playoff::before { background: #3b82f6; }

/* Empty state */
.sw-empty {
  text-align: center;
  padding: 32px 16px;
  color: var(--text-muted);
  font-size: 13px;
}
.sw-empty p:first-child { font-size: 28px; margin-bottom: 8px; }
.sw-admin-link { color: var(--green); font-size: 12px; margin-top: 8px; display: inline-block; }

/* Responsive: stack at 900px */
@media (max-width: 900px) {
  .home-with-sidebar {
    grid-template-columns: minmax(0, 1fr);
  }
  .home-main,
  .home-sidebar {
    min-width: 0;
    max-width: 100%;
  }
  .home-sidebar { position: static; }
  .standings-widget { margin-top: 8px; }
}

@media (max-width: 600px) {
  .standings-widget {
    width: auto;
    max-width: none;
    margin-left: -14px;
    margin-right: -14px;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }
  .sw-header {
    padding: 12px 14px;
  }
  .sw-title {
    font-size: 22px;
    letter-spacing: -.01em;
  }
  .sw-all {
    display: none;
  }
  .sw-tabs {
    width: 100%;
    min-width: 0;
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .sw-tab {
    flex: 0 0 auto;
    max-width: 58vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 10px 14px;
    font-size: 13px;
    min-width: max-content;
  }
  .sw-table-wrap,
  .sw-table-wrap.sw-active {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .sw-season {
    padding: 9px 14px;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .sw-table {
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
    font-size: 14px;
  }
  .sw-table th:nth-child(1),
  .sw-table td:nth-child(1) {
    width: 42px;
  }
  .sw-table th:nth-child(2),
  .sw-table td:nth-child(2) {
    width: calc(100% - 94px);
  }
  .sw-table th:nth-child(4),
  .sw-table td:nth-child(4) {
    width: 52px;
  }
  .sw-table th,
  .sw-table td {
    padding: 9px 8px;
  }
  .sw-table th {
    font-size: 9px;
  }
  .sw-table th:nth-child(3),
  .sw-table th:nth-child(5),
  .sw-table td:nth-child(3),
  .sw-table td:nth-child(5) {
    display: none;
  }
  .sw-pos {
    width: 38px;
    font-size: 13px;
  }
  .sw-team {
    width: 100%;
    max-width: none;
    min-width: 0;
    gap: 6px;
  }
  .sw-team span {
    min-width: 0;
    max-width: min(48vw, 190px);
    font-size: 14px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .sw-logo {
    display: none;
  }
  .sw-pts {
    font-size: 15px;
  }
  .sw-legend {
    padding: 10px 14px;
  }
  .sw-leg-item {
    font-size: 12px;
  }
}

@media (max-width: 430px) {
  .sw-title { font-size: 20px; }
  .sw-tab { max-width: 52vw; font-size: 12px; padding: 9px 12px; }
  .sw-season { font-size: 11px; }
  .sw-table td { padding: 8px 7px; }
  .sw-team span { max-width: min(44vw, 168px); font-size: 13px; }
  .sw-pts { font-size: 14px; }
}

/* ═══════════════════════════════════════════════════
   SEARCH AUTOCOMPLETE
   ═══════════════════════════════════════════════════ */
.search-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 1000;
  overflow: hidden;
  max-height: 340px;
  overflow-y: auto;
}
.search-suggestion-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.search-suggestion-item:last-child { border-bottom: none; }
.search-suggestion-item:hover { background: var(--bg-section); }
.sug-thumb {
  width: 44px; height: 34px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
  background: var(--border);
}
.sug-text { flex: 1; min-width: 0; }
.sug-title { font-size: 13px; font-weight: 600; line-height: 1.3; color: var(--text-head); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sug-cat   { font-size: 11px; color: var(--green); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.sug-all   { display: block; padding: 8px 12px; font-size: 12px; color: var(--green); text-align: center; font-weight: 600; background: var(--bg-section); }

/* ═══════════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════════ */
.footer-newsletter { }
.footer-nl-form { display: flex; flex-direction: column; gap: 8px; }
.footer-nl-form input[type="email"] {
  padding: 9px 12px;
  border: 1px solid #333;
  border-radius: var(--radius);
  background: #1a1a1a;
  color: #eee;
  font-size: 13px;
  width: 100%;
}
.footer-nl-form button {
  padding: 9px;
  background: var(--green);
  color: #000;
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background .2s;
}
.footer-nl-form button:hover { background: var(--green-dark); }

/* Inline article newsletter */
.article-newsletter {
  margin: 40px 0;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.newsletter-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.newsletter-icon  { font-size: 32px; flex-shrink: 0; }
.newsletter-inner > div { flex: 1; min-width: 180px; }
.newsletter-inner strong { display: block; font-family: 'Oswald', sans-serif; font-size: 17px; margin-bottom: 4px; }
.newsletter-inner p { font-size: 13px; color: var(--text-muted); margin: 0; }
.newsletter-form-inline { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.newsletter-form-inline input[type="email"] {
  flex: 1; min-width: 200px;
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-input);
  color: var(--text-base);
  font-size: 13px;
}
.newsletter-form-inline button {
  padding: 9px 18px;
  background: var(--green);
  color: #000;
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.newsletter-form-inline button:hover { background: var(--green-dark); }
.nl-msg { font-size: 13px; font-weight: 600; }

/* ═══════════════════════════════════════════════════
   CALENDAR / FIXTURES
   ═══════════════════════════════════════════════════ */
.page-header { margin-bottom: 24px; }
.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.calendar-month-label {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-head);
}
.fixtures-list { display: flex; flex-direction: column; gap: 30px; }
.fixture-section-title {
  margin: 0 0 14px;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-head);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.fixture-date-group { }
.fixture-date-header {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  padding: 6px 0 10px;
  border-bottom: 2px solid var(--green);
  margin-bottom: 10px;
}
.fixture-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 10px;
  transition: box-shadow .2s;
}
.fixture-card-link {
  color: inherit;
  text-decoration: none;
}
.fixture-card:hover { box-shadow: var(--shadow); }
.fixture-card--next {
  padding: 18px 18px 16px;
  border-left: 4px solid var(--green);
  background: linear-gradient(90deg, rgba(132,196,26,.1), var(--bg-card) 42%);
}
.fixture-next-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 9px;
  color: #061000;
  background: var(--green);
  border-radius: 3px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.fixture-live { border-left: 4px solid #ef4444; }
.fixture-competition {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--green);
  margin-bottom: 10px;
}
.fixture-matchup {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.fixture-team {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-head);
}
.fixture-team--home { justify-content: flex-end; text-align: right; }
.fixture-team--away { justify-content: flex-start; }
.fixture-logo {
  width: 32px; height: 32px;
  object-fit: contain;
}
.fixture-score {
  text-align: center;
  min-width: 80px;
  flex-shrink: 0;
}
.fixture-result {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-head);
  letter-spacing: 2px;
}
.fixture-time {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--green);
}
.fixture-status {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 4px;
  color: var(--text-muted);
}
.fixture-status--live { color: #ef4444; }
.fixture-venue {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
}
.fixture-section--recent .fixture-card {
  padding: 12px 16px;
}
.fixture-section--recent .fixture-logo {
  width: 28px;
  height: 28px;
}
.fixture-section--recent .fixture-result {
  font-size: 21px;
}
.no-results-box {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-muted);
  font-size: 15px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* ═══════════════════════════════════════════════════
   STANDINGS TABLE
   ═══════════════════════════════════════════════════ */
.standings-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.standings-tab {
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all .2s;
}
.standings-tab:hover, .standings-tab.active {
  background: var(--green);
  color: #000;
  border-color: var(--green);
}
.standings-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.standings-header {
  padding: 14px 16px;
  border-bottom: 2px solid var(--green);
}
.standings-header h2 { font-size: 18px; }
.standings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.standings-table th, .standings-table td {
  padding: 10px 12px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.standings-table th {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
  background: var(--bg-section);
}
.standings-table .col-pos { width: 36px; }
.standings-table .col-team { text-align: left; min-width: 140px; }
.standings-table .col-pts { font-weight: 700; color: var(--green); font-size: 15px; }
.team-logo-sm { width: 20px; height: 20px; object-fit: contain; vertical-align: middle; margin-right: 6px; display: inline-block; }
.standings-table tr:hover { background: var(--bg-section); }
.row-playoff { background: rgba(59,130,246,.05); }
.row-playoff td:first-child { border-left: 3px solid #3b82f6; }

/* Jacksonville highlight — página pública */
.row-highlight { background: rgba(132,196,26,.08) !important; }
.row-highlight:hover { background: rgba(132,196,26,.15) !important; }
.row-highlight td:first-child { border-left: 3px solid var(--green) !important; }
.row-highlight.row-playoff td:first-child { border-left-color: #3b82f6 !important; }
.row-highlight .col-team { font-weight: 700; color: var(--green); }
.highlight-badge {
  display: inline-flex;
  align-items: center;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .5px;
  background: var(--green);
  color: #000;
  margin-left: 6px;
  vertical-align: middle;
  text-transform: uppercase;
}
.form-dots { display: flex; gap: 3px; justify-content: center; }
.form-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.form-w { background: var(--green); color: #000; }
.form-d { background: #f59e0b; color: #000; }
.form-l { background: #ef4444; }
.standings-legend {
  display: flex;
  gap: 20px;
  padding: 10px 16px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-muted);
}
.legend-item { display: flex; align-items: center; gap: 6px; }
.legend-item::before { content: ''; width: 3px; height: 14px; border-radius: 2px; }
.legend-playoff::before { background: #3b82f6; }

/* ═══════════════════════════════════════════════════
   STATIC PAGES
   ═══════════════════════════════════════════════════ */
/* Uses .article-layout and .article-content already defined */
.institutional-page .article-content .institutional-intro {
  margin-bottom:28px;
  padding:18px 20px;
  border-left:4px solid var(--green);
  border-radius:0 var(--radius) var(--radius) 0;
  background:var(--bg-section);
  font-size:18px;
}
.institutional-page .article-content .institutional-intro p { margin:0; }
.institutional-page .article-content h2 { margin-top:30px; }
.institutional-page .article-content ul { padding-left:22px; }
.institutional-page .article-content li { margin-bottom:9px; }

@media (max-width: 600px) {
  .calendar-nav { flex-direction: column; gap: 8px; }
  .fixtures-list { gap: 24px; }
  .fixture-section-title { font-size: 18px; }
  .fixture-card--next { padding: 16px 12px; }
  .fixture-matchup { flex-direction: column; gap: 8px; }
  .fixture-team--home { justify-content: center; text-align: center; flex-direction: row-reverse; }
  .fixture-team--away { justify-content: center; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .standings-table th, .standings-table td { padding: 7px 6px; font-size: 12px; }
}

/* ═══════════════════════════════════════════════════════════
   ARTICLE PAGE — NewsWeek-style redesign
   ═══════════════════════════════════════════════════════════ */

/* ── Header block ARRIBA (estilo AS.com: categoría + título + subtítulo PRIMERO) ── */
.art-header-top {
  background: var(--bg-body);
  padding: 38px 0 22px;
  text-align: center;
}
.art-header-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}
.art-cat-badge {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 0;
  border-radius: 0;
  color: var(--label-green);
}
.art-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4.8vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text-head);
  margin: 0 auto 16px;
  letter-spacing: -.015em;
  max-width: 780px;
}
.art-subtitle {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.45;
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 700px;
  font-weight: 400;
}

/* ── Hero image (después del título, COMPLETA sin recortar como AS) ── */
.art-hero {
  width: 100%;
  background: var(--bg-body);
  padding: 18px 0 12px;
}
.art-hero-contained .container {
  max-width: 1040px;
}
.art-hero-img {
  width: 100%;
  height: auto;             /* NO crop: mostrar imagen completa */
  max-height: 640px;
  object-fit: contain;
  background: var(--bg-section);
  display: block;
  border-radius: 4px;
}
.art-hero-caption {
  text-align: right;
  font-size: 11px;
  color: var(--text-muted);
  padding: 8px 4px 0;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}

/* ── Byline (después de la imagen, estilo AS) ── */
.art-byline-block {
  padding: 8px 0 4px;
  background: var(--bg-body);
}
.art-byline-block .container {
  max-width: 820px;
}
.art-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  margin-bottom: 0;
}
.art-by strong { color: var(--text-base); }
.art-sep { opacity: .4; }
.art-date { color: var(--text-muted); }

/* ── Two-column body layout ── */
.art-body-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 40px;
  padding: 36px 0 20px;
  align-items: start;
}
.art-main-col { min-width: 0; }
.art-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Article content typography ── */
.art-content {
  font-size: 17px;
  line-height: 1.45;
  color: var(--text-base);
  max-width: 675px;        /* ancho óptimo de lectura (estilo AS, Marca, NYT) */
}
.art-content p { margin: 0 0 .9em; }
.art-content h2 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  margin: 2em 0 .6em;
  color: var(--text-head);
}
.art-content h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin: 1.6em 0 .5em;
  color: var(--text-head);
}

/* Pull quote (blockquote = elemento destacado) */
.art-content blockquote {
  border-left: 4px solid var(--green);
  margin: 2em 0;
  padding: 16px 24px;
  background: rgba(132,196,26,.06);
  border-radius: 0 8px 8px 0;
  font-size: 20px;
  font-style: italic;
  color: var(--green);
  line-height: 1.5;
}
.art-content blockquote p { margin: 0; }
.art-content blockquote cite {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-style: normal;
  color: var(--text-muted);
}

/* Highlighted line (usar <p class="highlight-line"> en el HTML del artículo) */
.art-content .highlight-line,
.art-content p.highlight-line {
  background: rgba(132,196,26,.08);
  border-left: 4px solid var(--green);
  padding: 10px 16px;
  border-radius: 0 6px 6px 0;
  font-weight: 600;
  color: var(--text-head);
  margin: 1.5em 0;
}

/* Horizontal rule */
.art-content hr {
  border: none;
  border-top: 2px solid var(--border);
  margin: 2.5em 0;
}

.art-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 1.5em 0;
}
.art-content ul, .art-content ol {
  padding-left: 1.6em;
  margin: 0 0 1.4em;
}
.art-content li { margin-bottom: .4em; }
.art-content a { color: var(--green); text-decoration: underline; }

/* ── Embeds responsive (YouTube, Vimeo, etc.) ── */
.art-content iframe {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  border: 0;
  border-radius: 6px;
  display: block;
  margin: 1.5em 0;
  background: #000;
}
.art-content iframe[src*="twitter.com"],
.art-content iframe[src*="x.com"],
.art-content iframe[src*="instagram.com"],
.art-content iframe[src*="tiktok.com"] {
  aspect-ratio: auto;
  min-height: 450px;
  max-width: 560px;
  margin: 1.5em auto;
}
/* Wrapper para embeds de social (cuando vienen sin iframe) */
.art-content .embed-responsive,
.art-content .video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  margin: 1.5em 0;
}
.art-content .embed-responsive iframe,
.art-content .video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  margin: 0;
}
/* Twitter/X embeds que se renderizan client-side */
.art-content .twitter-tweet,
.art-content blockquote.twitter-tweet {
  margin: 1.5em auto !important;
  max-width: 560px !important;
}

/* Video */
.art-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 28px;
}
.art-video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* Tags */
.art-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 32px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.art-tags-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

/* ── Sidebar widgets ── */
.art-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.art-widget-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--text-head);
  padding: 14px 16px 12px;
  border-bottom: 2px solid var(--green);
  margin: 0;
  background: var(--bg-section);
}

/* Share grid */
.share-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 14px;
}
.share-btn-sq {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: opacity .15s;
  text-decoration: none !important;
}
.share-btn-sq:hover { opacity: .85; }
.share-fb  { background: #1877f2; color: #fff; }
.share-tw  { background: #000; color: #fff; }
.share-wa  { background: #25d366; color: #fff; }
.share-copy { background: var(--bg-section); color: var(--text-base); border: 1px solid var(--border); }

/* Subscribe widget */
.art-widget-subscribe { text-align: center; }
.aw-sub-icon { font-size: 32px; padding: 18px 0 0; }
.art-widget-subscribe .art-widget-title { border: none; background: none; }
.aw-sub-desc {
  font-size: 13px;
  color: var(--text-muted);
  padding: 0 16px 12px;
  margin: 0;
  line-height: 1.5;
}
.aw-sub-form { padding: 0 14px 16px; display: flex; flex-direction: column; gap: 8px; }
.aw-sub-form input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  background: var(--bg-body);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-base);
  font-size: 13px;
  box-sizing: border-box;
}
.aw-sub-form button {
  width: 100%;
  padding: 10px;
  background: var(--green);
  color: #000;
  font-weight: 700;
  font-size: 13px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background .15s;
}
.aw-sub-form button:hover { background: var(--green-dark); }

/* Most read sidebar */
.sidebar-popular {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
.sp-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
}
.sp-item:last-child { border-bottom: none; }
.sp-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--green);
  color: #000;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.sp-body { min-width: 0; }
.sp-body h4 {
  font-size: 13px;
  font-weight: 600;
  margin: 4px 0 3px;
  line-height: 1.3;
  color: var(--text-head);
}
.sp-body h4 a { color: inherit; }
.sp-body h4 a:hover { color: var(--green); }
.art-meta-sm { font-size: 11px; color: var(--text-muted); }
.article-cat--xs {
  font-size: 9px;
  font-weight: 700;
  padding: 0;
  border-radius: 0;
  color: var(--label-green);
  text-transform: uppercase;
  letter-spacing: .5px;
  display: inline-block;
}
.article-cat--xs.category-label--featured {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px 2px 6px !important;
}

/* ── Prev / Next navigation ── */
.art-prevnext-wrap {
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  margin: 40px 0;
  background: var(--bg-section);
}
.art-prevnext {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.pn-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  text-decoration: none;
  transition: background .15s;
}
.pn-card:hover { background: rgba(132,196,26,.06); }
.pn-prev { border-right: 1px solid var(--border); }
.pn-next { flex-direction: row-reverse; text-align: right; }
.pn-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
}
.pn-body { min-width: 0; }
.pn-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.pn-body h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-head);
  margin: 6px 0 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pn-empty { display: block; }

/* ── Author bio card ── */
.author-bio-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0 0 40px;
}
.abc-avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--green);
}
.abc-avatar img { width: 100%; height: 100%; object-fit: cover; }
.abc-initials {
  width: 100%;
  height: 100%;
  background: var(--green);
  color: #000;
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
}
.abc-body { min-width: 0; }
.abc-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}
.abc-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-head);
  margin: 0 0 8px;
}
.abc-bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 12px;
}
.abc-socials { display: flex; gap: 12px; align-items: center; }
.abc-social {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-section);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-base);
  font-size: 13px;
  transition: background .15s, color .15s;
}
.abc-social:hover { background: var(--green); color: #000; border-color: var(--green); }

/* ── Más como esto ── */
.more-like-section {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  padding: 48px 0;
  margin-top: 0;
}
.more-like-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-head);
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--green);
  display: inline-block;
}
.more-like-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.more-like-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  display: block;
  transition: transform .2s, box-shadow .2s;
}
.more-like-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.mlc-thumb {
  width: 100%;
  height: 170px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-section);
}
.mlc-body { padding: 14px; }
.mlc-body h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-head);
  margin: 6px 0 6px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Responsive article ── */
@media (max-width: 900px) {
  .art-body-grid {
    grid-template-columns: 1fr;
  }
  .art-sidebar {
    position: static;
    order: 2; /* en mobile el sidebar va DEBAJO del artículo (estilo AS) */
  }
  .art-main-col {
    order: 1; /* el texto del artículo PRIMERO */
  }
  .more-like-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .art-title { font-size: 24px; }
  .art-byline { font-size: 12px; }
  .art-prevnext { grid-template-columns: 1fr; }
  .pn-prev { border-right: none; border-bottom: 1px solid var(--border); }
  .pn-next { flex-direction: row; text-align: left; }
  .more-like-grid { grid-template-columns: 1fr; }
  .author-bio-card { flex-direction: column; align-items: center; text-align: center; }
  .abc-socials { justify-content: center; }
  .share-grid { grid-template-columns: 1fr; }
}

/* Make scores-match rows clickable */
.scores-match { cursor: pointer; transition: background .15s; }
.scores-match:hover { background: var(--green-glow); }

/* ═══ Article inline embeds (YouTube, Twitter, Instagram, TikTok, Vimeo) ═══ */
.art-embed { margin: 24px 0; max-width: 100%; }
.art-embed-youtube,
.art-embed-vimeo { margin-left: auto; margin-right: auto; }
.art-embed-size-40 { width: 40%; }
.art-embed-size-60 { width: 60%; }
.art-embed-size-80 { width: 80%; }
.art-embed-size-full { width: 100%; }
.art-embed iframe { width: 100%; max-width: 100%; border: 0; border-radius: 6px; display: block; }
.art-embed-youtube iframe,
.art-embed-vimeo iframe { margin: 0; aspect-ratio: 16 / 9; height: auto; background: #000; }
.art-content iframe.art-video-size-40,
.chronicle-content iframe.art-video-size-40 { width: 40%; margin-left: auto; margin-right: auto; }
.art-content iframe.art-video-size-60,
.chronicle-content iframe.art-video-size-60 { width: 60%; margin-left: auto; margin-right: auto; }
.art-content iframe.art-video-size-80,
.chronicle-content iframe.art-video-size-80 { width: 80%; margin-left: auto; margin-right: auto; }
.art-content iframe.art-video-size-full,
.chronicle-content iframe.art-video-size-full,
.chronicle-content iframe.ql-video { width: 100%; }
.chronicle-content iframe.ql-video {
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  border-radius: 6px;
  display: block;
  margin: 1.5em auto;
  background: #000;
}
.art-embed-twitter, .art-embed-instagram, .art-embed-tiktok { display: flex; justify-content: center; }
.art-embed blockquote { margin: 0 auto !important; max-width: 540px !important; }
@media (max-width: 640px) {
  .art-embed-size-40,
  .art-embed-size-60,
  .art-embed-size-80,
  .art-embed-size-full,
  .art-content iframe.art-video-size-40,
  .art-content iframe.art-video-size-60,
  .art-content iframe.art-video-size-80,
  .art-content iframe.art-video-size-full,
  .chronicle-content iframe.art-video-size-40,
  .chronicle-content iframe.art-video-size-60,
  .chronicle-content iframe.art-video-size-80,
  .chronicle-content iframe.art-video-size-full { width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   INLINE IMAGES en artículos (con caption)
   ═══════════════════════════════════════════════════════════ */
.art-content figure.art-inline-img,
.art-content figure {
  margin: 28px 0;
  text-align: center;
}
.art-content figure img,
.art-content figure.art-inline-img img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 22px rgba(0,0,0,.12);
  display: inline-block;
}
.art-content figure figcaption,
.art-content figure.art-inline-img figcaption {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
  font-style: italic;
  line-height: 1.5;
  text-align: center;
  padding: 0 8px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.art-content figcaption em {
  font-style: normal;
  font-weight: 600;
  opacity: .75;
  font-size: .9em;
  letter-spacing: .02em;
}
/* Plain images (no figure) get same treatment */
.art-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ═══════════════════════════════════════════════════════════
   MUNDIAL 2026 BANNER (estilo AS.com)
   ═══════════════════════════════════════════════════════════ */
.wc-banner {
  background: linear-gradient(90deg, #fce7e7 0%, #fef3f3 50%, #f9e8e8 100%);
  border-bottom: 1px solid rgba(220,38,38,.15);
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .wc-banner {
  background: linear-gradient(90deg, #2d1820 0%, #3d1f28 50%, #2d1820 100%);
  border-bottom-color: rgba(220,38,38,.3);
}
.wc-banner-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 16px;
  min-height: 64px;
  position: relative;
}

/* Brand: logo + title */
.wc-banner-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.wc-banner-logo {
  display: grid;
  grid-template-columns: 14px 14px;
  gap: 2px;
  flex-shrink: 0;
}
.wc-logo-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
}
.wc-dot-1 { background: #dc2626; }
.wc-dot-2 { background: #3b82f6; }
.wc-dot-3 { background: #f59e0b; }
.wc-dot-4 { background: #16a34a; }
.wc-banner-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.wc-banner-title {
  font-family: var(--font-head, 'Oswald', sans-serif);
  font-size: 16px;
  font-weight: 600;
  color: #7f1d1d;
  letter-spacing: .03em;
}
.wc-banner-title strong {
  color: #dc2626;
  font-weight: 800;
}
[data-theme="dark"] .wc-banner-title { color: #fca5a5; }
[data-theme="dark"] .wc-banner-title strong { color: #f87171; }
.wc-banner-sub {
  font-size: 10px;
  color: #991b1b;
  letter-spacing: .04em;
  margin-top: 2px;
  font-weight: 600;
}
[data-theme="dark"] .wc-banner-sub { color: #fca5a5; opacity: .8; }

/* Countdown boxes */
.wc-banner-countdown {
  display: flex;
  gap: 6px;
  margin-left: auto;
}
.wc-count-box {
  background: #dc2626;
  color: #fff;
  padding: 6px 10px 4px;
  border-radius: 4px;
  text-align: center;
  min-width: 48px;
  box-shadow: 0 1px 3px rgba(220,38,38,.25);
}
.wc-count-num {
  display: block;
  font-family: var(--font-head, 'Oswald', sans-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.wc-count-label {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 2px;
  opacity: .9;
  font-weight: 600;
}

/* LIVE indicator (when WC has started) */
.wc-banner-live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #dc2626;
  color: #fff;
  padding: 6px 14px;
  border-radius: 16px;
  font-family: var(--font-head, 'Oswald', sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}
.wc-live-dot {
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: wc-pulse 1.4s infinite;
}
@keyframes wc-pulse { 0%,100%{opacity:1} 50%{opacity:.35} }

/* Nav tabs */
.wc-banner-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #7f1d1d;
  font-weight: 600;
  padding-left: 12px;
  border-left: 1px solid rgba(220,38,38,.2);
}
[data-theme="dark"] .wc-banner-nav {
  color: #fca5a5;
  border-left-color: rgba(220,38,38,.4);
}
.wc-banner-nav a {
  color: inherit;
  text-decoration: none;
  padding: 2px 4px;
  transition: color .15s;
}
.wc-banner-nav a:hover { color: #dc2626; text-decoration: underline; }
.wc-nav-sep { font-size: 5px; opacity: .4; }

@media (max-width: 600px) {
  .wc-banner {
    background: linear-gradient(90deg, #fff1f1 0%, #fff7f7 100%);
    border-top: 0;
    border-bottom: 1px solid rgba(220,38,38,.18);
  }
  .wc-banner-inner {
    padding: 7px 8px;
    min-height: 48px;
    gap: 5px;
    flex-wrap: nowrap;
  }
  .wc-banner-brand {
    width: auto;
    min-width: 0;
    gap: 7px;
  }
  .wc-banner-logo {
    grid-template-columns: 9px 9px;
    gap: 2px;
  }
  .wc-logo-dot { width: 9px; height: 9px; }
  .wc-banner-title {
    font-size: 13px;
    line-height: .95;
  }
  .wc-banner-sub {
    font-size: 7px;
    line-height: 1;
  }
  .wc-banner-countdown {
    display: flex;
    gap: 3px;
    margin-left: auto;
    order: 3;
  }
  .wc-count-box {
    min-width: 27px;
    padding: 4px 3px 3px;
    border-radius: 3px;
  }
  .wc-count-num { font-size: 12px; }
  .wc-count-label {
    font-size: 6px;
    letter-spacing: 0;
    margin-top: 1px;
  }
  .wc-banner-live {
    margin-left: auto;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    order: 3;
  }
  .wc-banner-nav {
    display: flex;
    margin-left: 4px;
    border: 0;
    padding: 0;
    order: 2;
    flex-direction: column;
    align-items: flex-start;
    font-size: 9px;
    line-height: 1.05;
    gap: 2px;
    color: #dc2626;
  }
  .wc-banner-nav a {
    display: inline;
    padding: 0;
    color: #dc2626;
    white-space: nowrap;
  }
  .wc-banner-nav a:first-child::after { content: ''; }
  .wc-banner-nav a:nth-of-type(1) { order: 2; }
  .wc-banner-nav a:nth-of-type(2) { order: 1; }
  .wc-banner-nav a:nth-of-type(3),
  .wc-banner-nav .wc-nav-sep { display: none; }
  .wc-banner-nav .wc-nav-sep {
    display: inline;
    font-size: 0;
    opacity: 1;
  }
}

/* Mobile: stack vertical */
@media (max-width: 800px) {
  .wc-banner-inner {
    flex-wrap: nowrap;
    gap: 8px;
    padding: 9px 16px;
    min-height: 54px;
  }
  .wc-banner-brand {
    width: auto;
    min-width: 0;
  }
  .wc-banner-logo {
    grid-template-columns: 10px 10px;
    gap: 2px;
  }
  .wc-logo-dot { width: 10px; height: 10px; }
  .wc-banner-title { font-size: 15px; }
  .wc-banner-sub { font-size: 9px; }
  .wc-banner-countdown { display: none; }
  .wc-banner-nav {
    width: auto;
    margin-left: auto;
    border-left: none;
    border-top: none;
    padding: 0;
    justify-content: flex-end;
    flex-shrink: 0;
  }
  .wc-banner-nav a:not(:first-child),
  .wc-banner-nav .wc-nav-sep { display: none; }
  .wc-banner-nav a:first-child::after { content: ' ›'; }
}

/* ═══════════════════════════════════════════════════════════
   ARTICLE GALLERY + LIGHTBOX
   ═══════════════════════════════════════════════════════════ */
.art-gallery {
  margin: 30px 0 24px;
  padding: 18px;
  background: var(--bg-section);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.art-gallery-head {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head, 'Oswald', sans-serif);
  font-size: 14px;
  color: var(--text-head);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.art-gallery-icon { font-size: 18px; }
.art-gallery-count { margin-left: auto; font-size: 11px; color: var(--text-muted); font-weight: 500; letter-spacing: 0; text-transform: none; }
.art-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
.art-gal-item {
  margin: 0; cursor: pointer;
  border-radius: 6px; overflow: hidden;
  background: var(--bg-card);
  transition: transform .15s, box-shadow .15s;
  position: relative;
}
.art-gal-item:hover { transform: scale(1.02); box-shadow: 0 6px 18px rgba(0,0,0,.15); }
.art-gal-item img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
}
.art-gal-item figcaption {
  padding: 6px 8px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}
.art-gal-credit { display: block; opacity: .7; font-style: italic; margin-top: 2px; }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 60px;
}
.lightbox.open { display: flex; }
.lb-figure { text-align: center; max-width: 100%; max-height: 100%; margin: 0; }
.lb-figure img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 4px; }
.lb-figure figcaption {
  color: #ccc;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
}
.lb-figure figcaption small { display: block; margin-top: 4px; opacity: .6; font-style: italic; }
.lb-counter {
  margin-top: 8px;
  color: rgba(255,255,255,.5);
  font-family: monospace;
  font-size: 12px;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.2); }
.lb-close { top: 20px; right: 20px; font-size: 20px; }
.lb-prev  { left: 20px;  top: 50%; transform: translateY(-50%); }
.lb-next  { right: 20px; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) {
  .lightbox { padding: 60px 12px; }
  .lb-prev  { left: 8px;  width: 36px; height: 36px; font-size: 22px; }
  .lb-next  { right: 8px; width: 36px; height: 36px; font-size: 22px; }
}

/* Share extras */
.share-summary { background: var(--bg-section) !important; color: var(--text-head) !important; }
.share-reading-time {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════
   POR EQUIPO (Marca-style team news strips)
   ═══════════════════════════════════════════════════════════ */

.by-team-section { margin-bottom: 40px; }

.bt-strip {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 12px;
  transition: border-color .15s;
}
.bt-strip:hover { border-color: var(--green); }

/* Left: team identity */
.bt-team {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding-right: 14px;
  border-right: 1px solid var(--border);
}
.bt-team-logo {
  width: 56px; height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}
.bt-team-fb {
  width: 56px; height: 56px;
  background: var(--green);
  color: #000;
  font-family: var(--font-head, 'Oswald', sans-serif);
  font-weight: 700;
  font-size: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bt-team-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.bt-team-name {
  font-family: var(--font-head, 'Oswald', sans-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-head);
  line-height: 1.1;
  letter-spacing: -.01em;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.bt-team-link {
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Right: 3 article cards horizontal */
.bt-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  min-width: 0;
}
.bt-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-section);
  transition: transform .15s;
  min-width: 0;
}
.bt-card:hover { transform: translateY(-2px); }
.bt-card-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.bt-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.bt-card:hover .bt-card-thumb img { transform: scale(1.05); }
.bt-card-body {
  padding: 8px 10px;
  display: flex; flex-direction: column; gap: 4px;
  flex: 1;
}
.bt-card-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-head);
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bt-card:hover .bt-card-title { color: var(--green); }
.bt-card-meta {
  font-size: 10.5px;
  color: var(--text-muted);
  margin-top: auto;
}

@media (max-width: 800px) {
  .bt-strip { grid-template-columns: 1fr; gap: 10px; }
  .bt-team { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 10px; }
  .bt-cards { grid-template-columns: repeat(3, 1fr); gap: 6px; }
}
@media (max-width: 560px) {
  .bt-cards { grid-template-columns: 1fr 1fr; }
  .bt-cards .bt-card:nth-child(3) { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   MEGA-MENU (Marca-style dropdown)
   ═══════════════════════════════════════════════════════════ */

.nav-menu li.has-mega { position: relative; }
.mm-caret {
  font-size: 9px;
  margin-left: 3px;
  opacity: .65;
  transition: transform .2s;
}
.has-mega:hover .mm-caret,
.has-mega.open .mm-caret { transform: rotate(180deg); opacity: 1; }

/* The flyout panel */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  max-width: 360px;
  background: var(--nav-bg, #0e0e0e);
  border: 1px solid rgba(255,255,255,.08);
  border-top: 2px solid var(--green);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
  padding: 14px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .15s, visibility .15s, transform .15s;
  z-index: 200;
  max-height: 80vh;
  overflow-y: auto;
}
.has-mega:hover > .mega-menu,
.has-mega.open  > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-menu-inner { padding: 0; }

/* Section title (e.g. "España") */
.mm-section-title {
  font-size: 10.5px;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 10px 22px 4px;
  font-weight: 600;
}
.mm-section-title:first-child { padding-top: 0; }

/* Section list (children under a section header) */
.mm-section-list { padding-bottom: 4px; }

/* Link (clickable item in dropdown) */
.mm-link {
  display: block;
  padding: 7px 22px;
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background .12s, color .12s;
  font-family: var(--font-head, 'Oswald', sans-serif);
  letter-spacing: -.01em;
}
.mm-link:hover { background: rgba(132,196,26,.12); color: var(--green); }
.mm-link-static { cursor: default; }
.mm-link-static:hover { background: transparent; color: rgba(255,255,255,.92); }

/* Sub-list (deeper level under a regular link) */
.mm-sublist {
  padding: 0 0 4px 14px;
  border-left: 2px solid rgba(132,196,26,.2);
  margin: 2px 22px 6px 28px;
}
.mm-sublist .mm-link {
  font-size: 13px;
  padding: 5px 10px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  font-family: var(--font-body, 'Inter', sans-serif);
  letter-spacing: 0;
}
.mm-sublist .mm-link:hover { color: var(--green); }

/* Mobile — stack the mega-menu */
@media (max-width: 900px) {
  .mega-menu {
    position: static;
    min-width: 0; max-width: none;
    border: none;
    border-top: 1px solid rgba(255,255,255,.06);
    border-radius: 0;
    box-shadow: none;
    padding: 6px 0 10px;
    opacity: 1;
    visibility: hidden;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s, visibility .25s;
  }
  .has-mega.open > .mega-menu {
    visibility: visible;
    max-height: 800px;
  }
  .has-mega:hover > .mega-menu { /* disable hover on mobile */
    opacity: 0; visibility: hidden; max-height: 0;
  }
  .has-mega.open > .mega-menu {
    opacity: 1; visibility: visible; max-height: 800px;
  }
  .mm-link { padding-left: 32px; }
  .mm-section-title { padding-left: 32px; }
}

/* ═══════════════════════════════════════════════════════════
   SCORES BAR — Match Card (Marca-style)
   ═══════════════════════════════════════════════════════════ */

.scores-bar-inner {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: thin;
  padding: 12px 0;
  align-items: stretch;
}
.scores-bar-inner::-webkit-scrollbar { height: 6px; }
.scores-bar-inner::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.scores-mobile-head { display: none; }

.scores-filter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
  padding-right: 14px;
  border-right: 1px solid var(--border);
  margin-right: 4px;
}
.scores-filter label {
  font-family: var(--font-head, 'Oswald', sans-serif);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
}
.scores-filter select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 8px;
  font-size: 12px;
  color: var(--text-base);
  cursor: pointer;
  outline: none;
}

/* — The card — */
.match-card {
  flex-shrink: 0;
  min-width: 230px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.match-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  border-color: var(--green);
}

/* — League header — */
.mc-league {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-head, 'Oswald', sans-serif);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
}
.mc-league-flag { font-size: 13px; line-height: 1; }
.mc-league-name {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* — Status row — */
.mc-status {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 5px 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.mc-status-live  { color: var(--green); font-weight: 700; }
.mc-status-fin   { color: var(--text-muted); }
.mc-status-sched { color: #c08418; }
.mc-status-date  { color: var(--text-muted); font-weight: 500; opacity: .75; font-size: 10.5px; }

/* — Team rows — */
.mc-team-row {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 5px 14px;
}
.mc-team-row + .mc-team-row { border-top: none; }
.mc-team-row:first-of-type { padding-top: 7px; }
.mc-team-row:last-of-type  { padding-bottom: 7px; }

/* — Stadium footer — */
.mc-stadium {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px 6px;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  font-size: 10.5px;
  color: var(--text-muted);
  letter-spacing: .01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mc-stadium-icon { font-size: 11px; line-height: 1; opacity: .8; flex-shrink: 0; }

.mc-team-logo {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mc-team-logo img {
  max-width: 22px;
  max-height: 22px;
  object-fit: contain;
}
.mc-logo-fb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head, 'Oswald', sans-serif);
}

.mc-team-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-head);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  letter-spacing: -.01em;
}

.mc-team-score {
  font-family: var(--font-head, 'Oswald', sans-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-head);
  line-height: 1;
  min-width: 22px;
  text-align: right;
}

/* — Losing team dimmed slightly (like Marca) — */
.mc-team-lost .mc-team-name,
.mc-team-lost .mc-team-score { color: var(--text-muted); font-weight: 500; }
.mc-team-lost .mc-team-score { font-weight: 600; }

@media (max-width: 600px) {
  .match-card { min-width: 200px; }
  .mc-team-score { font-size: 19px; }
  .mc-team-name { font-size: 13px; }
}

/* — Calendar CTA button next to filter (fixed left) — */
.scores-cal-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  padding: 4px 10px;
  background: var(--green);
  color: #000;
  font-family: var(--font-head, 'Oswald', sans-serif);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, transform .15s;
}
.scores-cal-btn:hover {
  background: var(--green-dark, #6BAF12);
  transform: translateY(-1px);
}

/* — End-of-scroll card linking to calendar (subtle, matches dark theme) — */
.match-card-cta {
  min-width: 130px;
  background: var(--bg-card);
  border: 1px dashed var(--border);
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 14px;
  font-family: var(--font-head, 'Oswald', sans-serif);
  text-align: center;
}
.match-card-cta:hover {
  border-style: solid;
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-1px);
}
.match-card-cta .mcc-icon { font-size: 18px; line-height: 1; opacity: .85; }
.match-card-cta .mcc-title {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.2;
  max-width: 100px;
}
.match-card-cta .mcc-arrow {
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  color: var(--green);
}

@media (max-width: 600px) {
  .scores-bar {
    top: 0;
    background: var(--bg-body);
    border-bottom: 1px solid var(--border);
  }
  .scores-bar .container {
    padding-left: 0;
    padding-right: 0;
    position: relative;
  }
  .scores-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px 4px;
    background: var(--bg-body);
  }
  .scores-mobile-title {
    font-family: var(--font-head, 'Oswald', sans-serif);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-head);
  }
  .scores-mobile-all {
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
    text-decoration: none;
    white-space: nowrap;
  }
  .scores-mobile-all span { font-size: 18px; vertical-align: -1px; }
  .scores-bar-inner {
    gap: 8px;
    padding: 6px 14px 10px;
    scroll-snap-type: x mandatory;
  }
  .scores-bar-inner::after {
    content: '›';
    position: sticky;
    right: 0;
    align-self: stretch;
    width: 34px;
    min-width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, transparent, var(--bg-body) 35%, var(--bg-body));
    color: var(--green);
    font-size: 28px;
    font-weight: 700;
    pointer-events: none;
  }
  .match-card {
    min-width: min(202px, 76vw);
    scroll-snap-align: start;
  }
  .match-card-cta { min-width: 112px; padding: 8px 10px; }
  .scores-cal-btn { font-size: 10px; padding: 3px 8px; }
}

/* ═══════════════════════════════════════════════════════════
   TEAM LOGOS BAR
   ═══════════════════════════════════════════════════════════ */

.team-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
}
.team-bar-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0;
  justify-content: safe center;  /* center when fits, scroll-friendly when overflows */
}
.team-bar-inner::-webkit-scrollbar { display: none; }
.team-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 16px;
  text-decoration: none;
  border-right: 1px solid var(--border);
  transition: background .15s;
  flex-shrink: 0;
  min-width: 68px;
}
.team-bar-item:last-child { border-right: none; }
.team-bar-item:hover { background: var(--green-glow); }
.team-bar-item img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.12));
  transition: transform .2s;
}
.team-bar-item:hover img { transform: scale(1.08); }
.team-bar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #000;
  font-family: var(--font-head, 'Oswald', sans-serif);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s;
}
.team-bar-item:hover .team-bar-placeholder { transform: scale(1.08); }
.team-bar-item span {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-muted);
  line-height: 1;
}

/* ═══════════════════════════════════════════════════════════
   PROMOTIONAL BANNER
   ═══════════════════════════════════════════════════════════ */

.site-banner {
  position: relative;
  padding: 10px 0;
  overflow: hidden;
}
.banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-right: 40px; /* space for dismiss btn */
}
.banner-img {
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}
.banner-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.banner-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .65;
  line-height: 1;
}
.banner-title {
  font-family: var(--font-head, 'Oswald', sans-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
}
.banner-sub {
  font-size: 12px;
  opacity: .8;
}
.banner-btn {
  display: inline-block;
  padding: 7px 18px;
  background: var(--green);
  color: #000;
  border-radius: var(--radius);
  font-family: var(--font-head, 'Oswald', sans-serif);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s, transform .15s;
  flex-shrink: 0;
}
.banner-btn:hover { opacity: .88; transform: translateY(-1px); }
.banner-dismiss {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,.45);
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color .2s;
}
.banner-dismiss:hover { color: rgba(255,255,255,.8); }
@media (max-width: 600px) {
  .banner-inner { gap: 10px; }
  .banner-title { font-size: 15px; }
  .banner-img   { height: 28px; }
  .team-bar {
    display: block;
    background: #fff;
    border-top: 1px solid #d9d9d9;
    border-bottom: 2px solid var(--green);
    box-shadow: none;
  }
  .team-bar-inner {
    justify-content: flex-start;
    padding: 3px 0;
  }
  .team-bar-item {
    min-width: 62px;
    padding: 5px 8px 4px;
    gap: 3px;
    border-right: 0;
  }
  .team-bar-item img,
  .team-bar-placeholder {
    width: 39px;
    height: 39px;
  }
  .team-bar-item span {
    display: none;
  }
  .site-header { padding: 10px 0; }
  .header-inner { flex-direction: column; align-items: stretch; gap: 8px; }
  .site-logo { align-self: center; }
  .site-logo img { height: 48px; }
  .header-brand-text { display: none; }
  .header-search input { padding-top: 7px; padding-bottom: 7px; }
  .header-search button { padding-top: 7px; padding-bottom: 7px; }

  .wc-banner-inner { flex-wrap: nowrap; min-height: 48px; gap: 5px; padding: 7px 8px; }
  .wc-banner-brand { width: auto; min-width: 0; }
  .wc-banner-countdown { display: flex !important; }
  .wc-banner-live { display: inline-flex !important; }
  .wc-banner-nav { display: flex !important; }
  .wc-banner-nav a { display: inline !important; }
  .wc-banner-nav a:nth-of-type(3),
  .wc-banner-nav .wc-nav-sep { display: none !important; }

  .scores-bar-inner { padding: 6px 0; gap: 8px; }
  .scores-filter { display: none; }
  .match-card { min-width: 174px; border-radius: 6px; }
  .mc-league, .mc-status, .mc-stadium { display: none; }
  .mc-team-row { grid-template-columns: 20px 1fr auto; gap: 6px; padding: 5px 9px; }
  .mc-team-row:first-of-type { padding-top: 6px; }
  .mc-team-row:last-of-type { padding-bottom: 6px; }
  .mc-team-logo, .mc-logo-fb { width: 20px; height: 20px; }
  .mc-team-logo img { max-width: 20px; max-height: 20px; }
  .mc-team-name { font-size: 12px; }
  .mc-team-score { font-size: 17px; }
}
