/* ============================================================
   Vibraf — Design System
   Palette: Blue #1F3FA8 · Red #E11C2B · White · Cream #F4F6FB
   Fonts: Bebas Neue · Instrument Serif · Inter Tight · JetBrains Mono
   ============================================================ */

:root {
  --vb-blue:       #1F3FA8;
  --vb-blue-deep:  #14297A;
  --vb-blue-soft:  #2F55C9;
  --vb-red:        #E11C2B;
  --vb-red-deep:   #B41423;
  --vb-white:      #FFFFFF;
  --vb-paper:      #FFFFFF;
  --vb-cream:      #F4F6FB;
  --vb-ink:        #0E1118;
  --vb-ink-soft:   #2B313B;
  --vb-mute:       #6B7280;
  --vb-line:       #E2E5EE;
  --vb-line-2:     #2A3F87;
  --vb-win:        #1F8A4C;
  --vb-loss:       #B41423;

  --vb-display: "Bebas Neue", "Oswald", Impact, sans-serif;
  --vb-serif:   "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --vb-sans:    "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --vb-mono:    "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
}

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

body {
  margin: 0;
  font-family: var(--vb-sans);
  color: var(--vb-ink);
  background: var(--vb-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }

a { color: inherit; }

/* ── Typography helpers ── */
.vb-display {
  font-family: var(--vb-display);
  letter-spacing: 0.005em;
  line-height: 0.92;
  text-transform: uppercase;
}
.vb-serif {
  font-family: var(--vb-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.vb-mono {
  font-family: var(--vb-mono);
  font-feature-settings: "tnum", "ss01";
}
.vb-eyebrow {
  font-family: var(--vb-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vb-mute);
}
.vb-eyebrow.light { color: rgba(255,255,255,0.55); }

/* ── Placeholder image ── */
.vb-img {
  position: relative;
  background: repeating-linear-gradient(135deg, #EEF1F8 0 8px, #E2E6F0 8px 16px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vb-img.dark {
  background: repeating-linear-gradient(135deg, #1B358F 0 8px, #14297A 8px 16px);
}
.vb-img::after {
  content: attr(data-label);
  font-family: var(--vb-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  background: rgba(255,255,255,0.7);
  padding: 4px 8px;
  border-radius: 2px;
}
.vb-img.dark::after {
  background: rgba(0,0,0,0.5);
  color: rgba(255,255,255,0.75);
}

/* ── Rule ── */
.vb-rule {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--vb-mute);
  font-family: var(--vb-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.vb-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--vb-line);
}

/* ── Button ── */
.vb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-family: var(--vb-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  border: 1px solid var(--vb-ink);
  background: var(--vb-ink);
  color: white;
  cursor: pointer;
  border-radius: 0;
  text-decoration: none;
  transition: transform .15s, background .15s;
}
.vb-btn:hover { transform: translateY(-1px); background: var(--vb-blue); border-color: var(--vb-blue); color: white; }
.vb-btn.alt { background: transparent; color: var(--vb-ink); }
.vb-btn.alt:hover { background: var(--vb-ink); color: white; }
.vb-btn.red { background: var(--vb-red); border-color: var(--vb-red); color: white; }
.vb-btn.red:hover { background: var(--vb-red-deep); border-color: var(--vb-red-deep); }
.vb-btn.outline-white {
  background: transparent;
  border-color: white;
  color: white;
  font-family: var(--vb-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ── Pill ── */
.sp-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--vb-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--vb-cream);
  color: var(--vb-ink-soft);
  border: 1px solid var(--vb-line);
}
.sp-pill.live  { background: var(--vb-red); color: white; border-color: var(--vb-red); }
.sp-pill.live::before {
  content: "";
  width: 6px; height: 6px;
  background: white;
  border-radius: 50%;
  animation: vb-pulse 1.4s infinite;
}
.sp-pill.win  { background: var(--vb-win);  color: white; border-color: var(--vb-win); }
.sp-pill.loss { background: var(--vb-loss); color: white; border-color: var(--vb-loss); }
.sp-pill.red  { background: var(--vb-red);  color: white; border-color: var(--vb-red); }
.sp-pill.blue { background: var(--vb-blue); color: white; border-color: var(--vb-blue); }

@keyframes vb-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ──────────────────────────────────────────
   TOPBAR / HEADER
   ────────────────────────────────────────── */
.vb-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 36px;
  border-bottom: 1px solid var(--vb-line);
  background: var(--vb-paper);
  position: relative;
  z-index: 100;
}
.vb-topbar::after {
  content: "";
  width: 164px;
  flex: 0 0 164px;
}
.vb-topbar.dark {
  background: var(--vb-blue);
  color: white;
  border-bottom-color: var(--vb-line-2);
}

.vb-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--vb-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: inherit;
}
.vb-logo-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
}

.vb-menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  border-radius: 0;
  font-family: var(--vb-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}
.vb-menu-toggle:hover,
.vb-menu-toggle:focus {
  background: var(--vb-red);
  border-color: var(--vb-red);
  color: white;
}
.vb-menu-toggle:focus-visible {
  outline: 2px solid var(--vb-red);
  outline-offset: 3px;
}
.vb-menu-toggle:active,
.vb-menu-toggle[aria-expanded="true"] {
  background: var(--vb-red-deep);
  border-color: var(--vb-red-deep);
  color: white;
}
.vb-menu-toggle__bars {
  width: 18px;
  display: grid;
  gap: 4px;
}
.vb-menu-toggle__bars span {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}
.vb-menu-toggle[aria-expanded="true"] .vb-menu-toggle__bars span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.vb-menu-toggle[aria-expanded="true"] .vb-menu-toggle__bars span:nth-child(2) {
  opacity: 0;
}
.vb-menu-toggle[aria-expanded="true"] .vb-menu-toggle__bars span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.vb-nav {
  display: flex;
  gap: 28px;
  font-family: var(--vb-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  list-style: none;
  margin: 0;
  padding: 0;
}
.vb-nav li {
  position: relative;
  margin: 0;
}
.vb-nav a {
  color: inherit;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}
.vb-nav > li.current-menu-item > a::after,
.vb-nav > li.current-menu-ancestor > a::after,
.vb-nav > li > a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--vb-red);
}
.vb-nav .sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -18px;
  z-index: 20;
  min-width: 220px;
  display: grid;
  gap: 0;
  padding: 10px;
  margin: 0;
  list-style: none;
  background: rgba(5, 39, 89, 0.98);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}
.vb-nav .sub-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}
.vb-nav li:hover > .sub-menu,
.vb-nav li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.vb-nav .sub-menu a {
  display: block;
  padding: 10px 12px;
  color: white;
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
}
.vb-nav .sub-menu a:hover,
.vb-nav .sub-menu .current-menu-item > a {
  background: var(--vb-red);
}
.vb-nav .sub-menu a::after {
  display: none;
}

.vb-topbar-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid currentColor;
  font-family: var(--vb-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
}

/* ──────────────────────────────────────────
   HERO SLIDESHOW
   ────────────────────────────────────────── */
.vb-hero {
  position: relative;
  height: 720px;
  overflow: hidden;
  border-bottom: 4px solid var(--vb-red);
  background: var(--vb-blue);
}
.vb-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 800ms ease;
}
.vb-hero-slide.active { opacity: 1; }
.vb-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,41,122,0.55) 0%, rgba(14,17,24,0.85) 100%);
}
.vb-hero-content {
  position: relative;
  height: 100%;
  padding: 60px 36px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}
.vb-hero-title-lg {
  font-family: var(--vb-display);
  font-size: clamp(80px, 12vw, 180px);
  line-height: 0.85;
  color: white;
  letter-spacing: -0.01em;
  margin: 0;
}
.vb-hero-title-lg.faded { color: rgba(255,255,255,0.5); }
.vb-hero-via {
  font-family: var(--vb-serif);
  font-size: clamp(32px, 4vw, 56px);
  font-style: italic;
  color: var(--vb-red);
  margin: 8px 0;
  line-height: 1;
}
.vb-hero-score {
  display: flex;
  gap: 24px;
  align-items: baseline;
}
.vb-hero-score-num {
  font-family: var(--vb-display);
  font-size: clamp(80px, 10vw, 140px);
  line-height: 0.85;
}
.vb-hero-score-sep {
  font-family: var(--vb-display);
  font-size: clamp(48px, 6vw, 80px);
  color: var(--vb-red);
}
.vb-hero-sub {
  font-family: var(--vb-serif);
  font-size: 20px;
  margin-top: 20px;
  color: rgba(255,255,255,0.92);
  max-width: 580px;
  line-height: 1.3;
}
/* pagination */
.vb-hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vb-hero-pagination {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
}
.vb-hero-counter {
  font-family: var(--vb-display);
  font-size: 28px;
  color: var(--vb-red);
}
.vb-hero-total {
  font-family: var(--vb-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  opacity: 0.7;
}
.vb-hero-dots {
  display: flex;
  gap: 6px;
  margin-left: 14px;
}
.vb-hero-dot {
  height: 4px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255,255,255,0.4);
  width: 14px;
  transition: all 300ms;
}
.vb-hero-dot.active {
  width: 32px;
  background: var(--vb-red);
}
.vb-hero-arrows {
  display: flex;
  gap: 8px;
}
.vb-hero-arrow-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.5);
  background: transparent;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vb-display);
}
/* head-to-head card */
.vb-h2h-card {
  position: absolute;
  right: 36px;
  top: 80px;
  width: 220px;
  padding: 20px 22px;
  background: var(--vb-red);
  color: white;
}
.vb-h2h-row {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  align-items: baseline;
}
.vb-h2h-divider {
  width: 1px;
  align-self: stretch;
  background: white;
}

/* ──────────────────────────────────────────
   TICKER
   ────────────────────────────────────────── */
.vb-ticker {
  background: var(--vb-red);
  color: white;
  padding: 12px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.vb-ticker-inner {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  font-family: var(--vb-display);
  font-size: 18px;
  letter-spacing: 0.02em;
  animation: vb-marquee 30s linear infinite;
  width: max-content;
}
@keyframes vb-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.vb-ticker-inner:hover { animation-play-state: paused; }

/* ──────────────────────────────────────────
   TEAM STATS STRIP
   ────────────────────────────────────────── */
.vb-stats-strip {
  padding: 32px 36px;
  border-bottom: 1px solid var(--vb-line);
  background: white;
}
.vb-stats-strip-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
}
.vb-position-block .vb-display { font-size: 80px; line-height: 0.85; color: var(--vb-blue); }
.vb-position-block .vb-display span { color: var(--vb-red); }
.vb-stats-row {
  display: flex;
  gap: 28px;
  justify-content: flex-end;
  padding-left: 32px;
  border-left: 1px solid var(--vb-line);
}
.vb-stat-item .vb-eyebrow { color: var(--vb-mute); }
.vb-stat-value {
  font-family: var(--vb-display);
  font-size: 32px;
  margin-top: 4px;
  color: var(--vb-blue);
}
.vb-stat-value.highlight { color: var(--vb-red); }

/* ──────────────────────────────────────────
   RESULTS + STANDINGS SECTION
   ────────────────────────────────────────── */
.vb-two-col {
  padding: 44px 36px;
  border-bottom: 1px solid var(--vb-line);
}
.vb-two-col-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
}
.vb-section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 22px;
}
.vb-section-title {
  font-family: var(--vb-display);
  font-size: 44px;
  margin: 0;
  color: var(--vb-blue);
  line-height: 0.9;
}
.vb-section-link {
  font-family: var(--vb-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--vb-ink);
  text-decoration: none;
  text-transform: uppercase;
}

/* result row */
.vb-result-row {
  display: grid;
  grid-template-columns: 62px 1fr auto 1fr 24px;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: white;
  border: 1px solid var(--vb-line);
}
.vb-result-row + .vb-result-row { margin-top: 10px; }
.vb-result-row.vibraf {
  background: var(--vb-cream);
  border-left: 3px solid var(--vb-red);
}
.vb-result-date { font-family: var(--vb-mono); font-size: 11px; color: var(--vb-mute); letter-spacing: 0.15em; }
.vb-result-score { font-family: var(--vb-display); font-size: 24px; color: var(--vb-blue); text-align: center; }
.vb-result-team { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.vb-result-team.right { justify-content: flex-end; }

/* team logo monogram */
.vb-team-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vb-display);
  border-radius: 2px;
  flex-shrink: 0;
  font-size: 0.42em;
}

/* standings table */
.vb-standings-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.vb-standings-table th {
  padding: 10px 6px;
  font-family: var(--vb-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vb-mute);
  font-weight: 400;
  border-bottom: 1px solid var(--vb-line);
}
.vb-standings-table td {
  padding: 11px 6px;
  vertical-align: middle;
  border-bottom: 1px solid var(--vb-line);
}
.vb-standings-table tr.vibraf-row { background: var(--vb-cream); font-weight: 600; }
.vb-standings-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid var(--vb-blue);
  color: var(--vb-blue);
  font-family: var(--vb-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
}

/* ──────────────────────────────────────────
   SCORE + CALENDAR SECTION (cream bg)
   ────────────────────────────────────────── */
.vb-cream-section {
  padding: 44px 36px;
  border-bottom: 1px solid var(--vb-line);
  background: var(--vb-cream);
}
.vb-two-col-inner.ratio-1-1 { grid-template-columns: 1.1fr 1fr; }

/* ScoreBox */
.vb-scorebox {
  background: white;
  border: 1px solid var(--vb-line);
  padding: 22px 24px;
}
.vb-scorebox-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.vb-scorebox-teams {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}
.vb-scorebox-names { display: flex; flex-direction: column; gap: 14px; }
.vb-scorebox-team { display: flex; align-items: center; gap: 12px; }
.vb-scorebox-scores {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  border-left: 1px solid var(--vb-line);
  padding-left: 20px;
}
.vb-score-big {
  font-family: var(--vb-display);
  font-size: 38px;
  line-height: 1;
}
.vb-inning-scores { display: flex; gap: 6px; justify-content: center; padding-left: 24px; }
.vb-inning-col { text-align: center; min-width: 22px; }
.vb-inning-num { font-family: var(--vb-mono); font-size: 9px; color: var(--vb-mute); margin-bottom: 2px; }
.vb-inning-val { font-family: var(--vb-display); font-size: 18px; line-height: 1.05; }

/* Player of the game */
.vb-potg {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--vb-red);
  color: white;
}
.vb-potg-num {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--vb-display); font-size: 24px;
}

/* upcoming fixtures */
.vb-fixture-list { background: white; border: 1px solid var(--vb-line); }
.vb-fixture-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--vb-line);
  border-left: 3px solid transparent;
}
.vb-fixture-row:last-child { border-bottom: none; }
.vb-fixture-row.next { background: var(--vb-cream); border-left-color: var(--vb-red); }
.vb-fixture-day { font-family: var(--vb-display); font-size: 22px; color: var(--vb-blue); line-height: 1; }
.vb-fixture-month { font-family: var(--vb-mono); font-size: 9px; color: var(--vb-mute); letter-spacing: 0.15em; margin-top: 2px; }
.vb-fixture-matchup { font-family: var(--vb-display); font-size: 18px; color: var(--vb-ink); }
.vb-fixture-matchup .vs { color: var(--vb-red); }
.vb-fixture-venue { font-family: var(--vb-mono); font-size: 9px; color: var(--vb-mute); letter-spacing: 0.18em; margin-top: 4px; }
.vb-fixture-time { font-family: var(--vb-display); font-size: 18px; color: var(--vb-blue); }

/* ──────────────────────────────────────────
   NEWS SECTION
   ────────────────────────────────────────── */
.vb-news-section {
  padding: 44px 36px;
  border-bottom: 1px solid var(--vb-line);
  background: var(--vb-white);
}
.vb-home-news-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}
.vb-news-title {
  font-family: var(--vb-display);
  font-size: 44px;
  margin: 10px 0 0;
  color: var(--vb-blue);
  line-height: 0.9;
  text-transform: uppercase;
}
.vb-home-news-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.vb-home-news-card {
  position: relative;
  min-width: 0;
  display: grid;
  background: var(--vb-white);
  border: 1px solid var(--vb-line);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.vb-home-news-card:hover {
  border-color: rgba(31, 63, 168, .35);
  box-shadow: 0 12px 26px rgba(14,17,24,.06);
  transform: translateY(-2px);
}
.vb-home-news-media {
  display: block;
  height: 190px;
  overflow: hidden;
  background-color: var(--vb-blue-deep);
  text-decoration: none;
}
.vb-home-news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease, opacity 180ms ease;
}
.vb-home-news-card:hover .vb-home-news-img {
  opacity: .92;
  transform: scale(1.025);
}
.vb-home-news-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px;
}
.vb-news-card-meta,
.vb-news-meta,
.vb-news-single-kicker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  font-family: var(--vb-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vb-mute);
}
.vb-news-card-meta span:first-child,
.vb-news-meta span:first-child,
.vb-news-single-kicker span:first-child {
  color: var(--vb-red);
}
.vb-news-card-meta > * + *,
.vb-news-meta > * + *,
.vb-news-single-kicker > * + * {
  position: relative;
  padding-left: 10px;
}
.vb-news-card-meta > * + *::before,
.vb-news-meta > * + *::before,
.vb-news-single-kicker > * + *::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 3px;
  background: var(--vb-line);
  transform: translateY(-50%);
}
.vb-news-card h3 {
  font-family: var(--vb-serif);
  margin: 8px 0 10px;
  color: var(--vb-blue);
  line-height: 1.1;
}
.vb-home-news-card h3 {
  font-family: var(--vb-serif);
  margin: 10px 0 10px;
  color: var(--vb-blue);
  line-height: 1.05;
}
.vb-home-news-card h3 a {
  color: inherit;
  text-decoration: none;
}
.vb-home-news-card h3 a:hover {
  color: var(--vb-red);
}
.vb-home-news-card h3 {
  font-size: 24px;
}
.vb-home-news-card p {
  font-size: 13px;
  color: var(--vb-ink-soft);
  line-height: 1.55;
  margin: 0;
}
.vb-news-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  font-family: var(--vb-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vb-ink);
  text-decoration: none;
}
.vb-news-readmore:hover { color: var(--vb-red); }

/* ──────────────────────────────────────────
   NEWS ARCHIVE + SINGLE
   ────────────────────────────────────────── */
.vb-news-archive,
.vb-news-single {
  background: var(--vb-paper);
}
.vb-news-hero {
  padding: 62px 36px 36px;
  background: var(--vb-blue);
  color: white;
  border-bottom: 6px solid var(--vb-red);
}
.vb-news-hero.compact { padding-top: 48px; }
.vb-news-hero .vb-eyebrow {
  color: rgba(255,255,255,0.72);
}
.vb-news-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: 36px;
  align-items: end;
  max-width: 1280px;
  margin: 0 auto;
}
.vb-news-hero h1 {
  margin: 10px 0 0;
  font-family: var(--vb-display);
  font-size: clamp(64px, 12vw, 148px);
  line-height: 0.82;
  color: white;
  text-transform: uppercase;
}
.vb-news-hero p,
.vb-news-hero-description {
  max-width: 520px;
  margin: 0;
  font-family: var(--vb-serif);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.05;
  color: rgba(255,255,255,0.82);
}
.vb-news-hero-description p { margin: 0; }
.vb-news-archive-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px;
}
.vb-news-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.vb-news-list-card {
  min-width: 0;
  background: white;
  border: 1px solid var(--vb-line);
  transition: border-color .15s, transform .15s;
}
.vb-news-list-card:hover {
  border-color: var(--vb-blue);
  transform: translateY(-2px);
}
.vb-news-list-card--featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
}
.vb-news-list-media {
  display: block;
  min-height: 240px;
  background: var(--vb-blue);
  text-decoration: none;
}
.vb-news-list-card--featured .vb-news-list-media { min-height: 430px; }
.vb-news-list-img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
.vb-news-placeholder {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  background: repeating-linear-gradient(135deg, #1B358F 0 8px, #14297A 8px 16px);
}
.vb-news-placeholder::after {
  content: attr(data-label);
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  font-family: var(--vb-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.vb-news-list-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
}
.vb-news-list-card--featured .vb-news-list-body { padding: 26px; }
.vb-news-list-title {
  margin: 12px 0 12px;
  font-family: var(--vb-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.08;
  color: var(--vb-blue);
}
.vb-news-list-card--featured .vb-news-list-title { font-size: clamp(36px, 5vw, 58px); }
.vb-news-list-title a {
  color: inherit;
  text-decoration: none;
}
.vb-news-list-title a:hover { color: var(--vb-red); }
.vb-news-list-excerpt {
  margin: 0;
  color: var(--vb-ink-soft);
  font-size: 14px;
  line-height: 1.62;
}
.vb-news-list-card--featured .vb-news-list-excerpt { font-size: 16px; }
.vb-news-pagination {
  margin-top: 38px;
  font-family: var(--vb-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.vb-news-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.vb-news-pagination a,
.vb-news-pagination span {
  display: inline-flex;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid var(--vb-line);
  text-decoration: none;
  color: var(--vb-ink);
  background: white;
}
.vb-news-pagination .current,
.vb-news-pagination a:hover {
  border-color: var(--vb-blue);
  background: var(--vb-blue);
  color: white;
}
.vb-news-empty {
  padding: 72px 24px;
  text-align: center;
  border: 1px solid var(--vb-line);
  background: var(--vb-cream);
}
.vb-news-empty .vb-display {
  font-size: clamp(72px, 12vw, 150px);
  color: var(--vb-line);
}
.vb-news-empty p {
  margin: 12px 0 0;
  color: var(--vb-ink-soft);
}

.vb-news-single-hero {
  padding: 62px 36px 34px;
  background: var(--vb-blue);
  color: white;
}
.vb-news-single-hero > * {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.vb-news-single-hero h1 {
  margin: 16px auto 0;
  font-family: var(--vb-serif);
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 400;
  line-height: 0.95;
  color: white;
}
.vb-news-single-hero .vb-news-single-kicker {
  color: rgba(255,255,255,0.58);
}
.vb-news-single-excerpt {
  margin-top: 22px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
  color: rgba(255,255,255,0.82);
}
.vb-news-single-cover {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 36px;
  transform: translateY(34px);
}
.vb-news-single-cover img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}
.vb-news-single-cover figcaption {
  padding-top: 8px;
  font-family: var(--vb-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vb-mute);
}
.vb-news-single-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 64px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 78px 36px 48px;
}
.vb-news-single-aside {
  color: var(--vb-mute);
}
.vb-news-single-aside-meta {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.5;
}
.vb-news-single-aside-meta span,
.vb-news-single-aside-meta strong {
  display: block;
}
.vb-news-single-aside-meta strong {
  color: var(--vb-ink);
}
.vb-news-single-content {
  font-size: 18px;
  line-height: 1.78;
  color: var(--vb-ink-soft);
}
.vb-news-single-content > *:first-child { margin-top: 0; }
.vb-news-single-content h2,
.vb-news-single-content h3 {
  font-family: var(--vb-display);
  color: var(--vb-blue);
  line-height: 0.95;
  text-transform: uppercase;
}
.vb-news-single-content h2 { font-size: 42px; margin: 1.6em 0 0.45em; }
.vb-news-single-content h3 { font-size: 30px; margin: 1.5em 0 0.45em; }
.vb-news-single-content a { color: var(--vb-blue); }
.vb-news-single-content a:hover { color: var(--vb-red); }
.vb-news-single-content blockquote {
  margin: 32px 0;
  padding: 6px 0 6px 24px;
  border-left: 4px solid var(--vb-red);
  font-family: var(--vb-serif);
  font-size: 28px;
  line-height: 1.18;
  color: var(--vb-blue);
}
.vb-news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}
.vb-news-tags a {
  padding: 7px 10px;
  border: 1px solid var(--vb-line);
  font-family: var(--vb-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}
.vb-page-links {
  margin-top: 28px;
  font-family: var(--vb-mono);
  font-size: 12px;
}
.vb-news-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 36px 62px;
}
.vb-news-post-nav a {
  display: block;
  min-height: 86px;
  padding: 18px;
  border: 1px solid var(--vb-line);
  font-family: var(--vb-serif);
  font-size: 22px;
  line-height: 1.1;
  color: var(--vb-blue);
  text-decoration: none;
}
.vb-news-post-nav a:hover {
  border-color: var(--vb-blue);
  background: var(--vb-cream);
}

/* ──────────────────────────────────────────
   EDITORIAL / STORIA (blue bg)
   ────────────────────────────────────────── */
.vb-editorial {
  background: var(--vb-blue);
  color: white;
  padding: 60px 36px;
  position: relative;
  overflow: hidden;
}
.vb-editorial-bg-word {
  position: absolute;
  left: -20px;
  top: -40px;
  font-family: var(--vb-display);
  font-size: 320px;
  color: rgba(255,255,255,0.05);
  line-height: 0.8;
  letter-spacing: -0.02em;
  pointer-events: none;
}
.vb-editorial-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.vb-editorial h2 {
  font-family: var(--vb-serif);
  font-size: 64px;
  margin: 12px 0 22px;
  line-height: 0.98;
  color: white;
  font-weight: 400;
}
.vb-editorial h2 em { color: var(--vb-red); font-style: italic; }
.vb-editorial p { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.85); margin: 0 0 14px; }
.vb-editorial-img { height: 480px; width: 100%; object-fit: cover; }

/* ──────────────────────────────────────────
   PARTNERS
   ────────────────────────────────────────── */
.vb-partners {
  padding: 32px 36px;
  background: white;
  border-bottom: 1px solid var(--vb-line);
}
.vb-partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 22px;
}
.vb-partner-slot {
  height: 64px;
  border: 1px solid var(--vb-line);
  background: var(--vb-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vb-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--vb-mute);
  text-transform: uppercase;
}
.vb-partner-slot img { max-height: 40px; width: auto; max-width: 80%; object-fit: contain; }

/* ──────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────── */
.vb-footer {
  background: var(--vb-blue-deep);
  color: var(--vb-cream);
  padding: 56px 36px 26px;
}
.vb-footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 2fr) repeat(3, minmax(150px, 1fr));
  gap: 44px;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--vb-line-2);
}
.vb-footer h4 {
  font-family: var(--vb-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vb-red);
  margin: 0 0 16px;
  font-weight: 600;
}
.vb-footer ul { list-style: none; padding: 0; margin: 0; }
.vb-footer li {
  padding: 5px 0;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(244,246,251,0.84);
}
.vb-footer a {
  text-decoration: none;
  color: rgba(244,246,251,0.88);
}
.vb-footer a:hover {
  color: white;
}
.vb-footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  font-family: var(--vb-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,246,251,0.68);
}
.vb-footer-desc {
  font-size: 16px;
  color: rgba(244,246,251,0.86);
  line-height: 1.6;
  max-width: 420px;
  margin: 0 0 0;
}
.vb-footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.vb-footer-logo span { font-family: var(--vb-display); font-size: 26px; color: white; }

/* ──────────────────────────────────────────
   SPORTPRESS — PAGINE INTERNE
   ────────────────────────────────────────── */

/* Page header generic */
.vb-page-header {
  padding: 44px 36px 28px;
  border-bottom: 1px solid var(--vb-line);
}
.vb-page-title {
  font-family: var(--vb-display);
  font-size: clamp(72px, 10vw, 132px);
  margin: 10px 0 0;
  color: var(--vb-blue);
  line-height: 0.85;
}

/* Filters bar */
.vb-filters {
  padding: 20px 36px;
  border-bottom: 1px solid var(--vb-line);
  background: var(--vb-cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vb-filter-btns { display: flex; gap: 8px; }
.vb-filter-btns .vb-roster-filter {
  cursor: pointer;
  padding: 6px 12px;
  background: white;
  color: var(--vb-ink-soft);
  border-color: var(--vb-line);
}
.vb-filter-btns .vb-roster-filter.blue {
  background: var(--vb-blue);
  color: white;
  border-color: var(--vb-blue);
}

/* Roster grid */
.vb-roster-grid {
  padding: 32px 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Roster card */
.vb-roster-card {
  background: white;
  border: 1px solid var(--vb-line);
  overflow: hidden;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.vb-roster-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31,63,168,0.12);
}
.vb-roster-card-photo {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--vb-blue);
}
.vb-roster-card-num {
  position: absolute;
  top: 12px; right: 14px;
  font-family: var(--vb-display);
  font-size: 78px;
  color: white;
  line-height: 0.8;
  text-shadow: 2px 2px 0 var(--vb-red);
}
.vb-roster-card-role {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 14px;
  background: linear-gradient(180deg, transparent, rgba(20,41,122,0.95));
  color: white;
  font-family: var(--vb-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
}
.vb-roster-card-info { padding: 14px 14px 16px; }
.vb-roster-card-first { font-family: var(--vb-display); font-size: 20px; color: var(--vb-blue); line-height: 1; }
.vb-roster-card-last { font-family: var(--vb-display); font-size: 24px; color: var(--vb-ink); line-height: 1; margin-top: 2px; }
.vb-roster-card-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--vb-line);
}
.vb-roster-card-stat .vb-eyebrow { font-size: 9px; }
.vb-roster-card-stat .val { font-family: var(--vb-display); font-size: 14px; }
.vb-roster-card-stat .val.red { color: var(--vb-red); }

/* Staff section */
.vb-staff-section {
  padding: 32px 36px 56px;
  border-top: 1px solid var(--vb-line);
}
.vb-staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.vb-staff-card {
  display: block;
  min-width: 0;
  overflow: hidden;
  background: white;
  border: 1px solid var(--vb-line);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.vb-staff-card:hover {
  transform: translateY(-2px);
  border-color: var(--vb-blue);
  box-shadow: 0 8px 24px rgba(31,63,168,0.12);
}
.vb-staff-photo {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--vb-blue);
}
.vb-staff-card-role {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px;
  background: linear-gradient(180deg, transparent, rgba(20,41,122,0.95));
  color: white;
  font-family: var(--vb-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.vb-staff-card-info { padding: 14px 14px 16px; }
.vb-staff-name { font-family: var(--vb-display); font-size: 22px; margin-top: 6px; color: var(--vb-blue); }

/* Staff profile */
.vb-staff-profile-hero .vb-player-hero-num {
  right: -30px;
  top: -34px;
  font-size: clamp(180px, 27vw, 420px);
}
.vb-staff-profile-photo {
  position: relative;
  min-height: 100%;
}
.vb-staff-profile-details {
  padding: 44px 36px;
  border-bottom: 1px solid var(--vb-line);
}
.vb-staff-profile-grid {
  grid-template-columns: repeat(4, 1fr);
}
.vb-staff-profile-grid .vb-player-stat-val {
  overflow-wrap: anywhere;
  font-size: clamp(28px, 3vw, 42px);
}
.vb-staff-profile-bio {
  max-width: 780px;
  padding: 44px 36px;
  border-bottom: 1px solid var(--vb-line);
}

/* Hall of Fame profile */
.vb-hof-profile-hero .vb-player-hero-num {
  right: -34px;
  top: -42px;
  font-size: clamp(190px, 30vw, 460px);
}
.vb-hof-profile-photo {
  position: relative;
  min-height: 100%;
  background: var(--vb-blue-deep);
}
.vb-hof-profile-details,
.vb-hof-career {
  padding: 44px 36px;
  border-bottom: 1px solid var(--vb-line);
}
.vb-hof-profile-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.75fr) minmax(260px, 1.35fr) minmax(260px, 1.35fr) minmax(150px, 0.7fr);
  border: 1px solid var(--vb-line);
  background: white;
}
.vb-hof-detail-cell {
  min-width: 0;
  padding: 20px 18px;
  border-right: 1px solid var(--vb-line);
}
.vb-hof-detail-cell:last-child {
  border-right: 0;
}
.vb-hof-detail-value {
  margin-top: 8px;
  color: var(--vb-blue);
  font-family: var(--vb-sans);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: normal;
}
.vb-hof-career {
  max-width: 1120px;
}
.vb-hof-career-table {
  overflow-x: auto;
  border: 1px solid var(--vb-line);
  background: white;
}
.vb-hof-career-table table {
  width: 100%;
  border-collapse: collapse;
}
.vb-hof-career-table th {
  padding: 12px 14px;
  background: var(--vb-cream);
  border-bottom: 1px solid var(--vb-line);
  color: var(--vb-mute);
  font-family: var(--vb-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-align: left;
  text-transform: uppercase;
}
.vb-hof-career-table td {
  padding: 14px;
  border-bottom: 1px solid var(--vb-line);
  color: var(--vb-ink-soft);
  font-size: 14px;
  line-height: 1.45;
  vertical-align: top;
}
.vb-hof-career-table tr:last-child td {
  border-bottom: 0;
}
.vb-hof-career-table td:first-child {
  color: var(--vb-blue);
  font-family: var(--vb-display);
  font-size: 24px;
  line-height: 1;
  white-space: nowrap;
}

/* Player profile hero */
.vb-player-hero {
  background: var(--vb-blue);
  color: white;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--vb-line-2);
}
.vb-player-hero-num {
  position: absolute;
  right: -40px; top: -60px;
  font-family: var(--vb-display);
  font-size: 600px;
  color: rgba(225,28,43,0.18);
  line-height: 0.8;
  pointer-events: none;
}
.vb-player-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 36px;
  padding: 48px 36px;
  position: relative;
  min-height: 540px;
}
.vb-player-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}
.vb-player-name {
  font-family: var(--vb-display);
  font-size: clamp(72px, 8vw, 112px);
  margin: 8px 0 0;
  line-height: 0.85;
  color: white;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.vb-player-quote {
  font-family: var(--vb-serif);
  font-size: 28px;
  font-style: italic;
  color: var(--vb-red);
  margin-top: 22px;
  max-width: 440px;
  line-height: 1.2;
}
.vb-player-stats-bar {
  display: flex;
  gap: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.vb-player-photo {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--vb-blue-deep);
}
.vb-player-photo-img,
.vb-player-photo-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.vb-player-photo-img {
  object-fit: cover;
  object-position: top center;
}
.vb-player-profile-section {
  padding: 36px;
  border-bottom: 1px solid var(--vb-line);
}
.vb-player-profile-section--hof {
  padding-top: 32px;
  padding-bottom: 32px;
  border-top: 1px solid var(--vb-line);
}

/* Player stats grid */
.vb-player-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--vb-line);
}
.vb-player-stat-cell {
  padding: 22px 18px;
  border-right: 1px solid var(--vb-line);
  background: white;
}
.vb-player-stat-cell:last-child { border-right: none; }
.vb-player-stat-val { font-family: var(--vb-display); font-size: 48px; color: var(--vb-blue); margin-top: 6px; line-height: 1; }

/* Hit chart / bar chart */
.vb-bar-chart { display: flex; align-items: flex-end; gap: 8px; height: 180px; }
.vb-bar { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; height: 100%; }
.vb-bar-val { font-family: var(--vb-display); font-size: 11px; color: var(--vb-mute); margin-bottom: 6px; }
.vb-bar-fill { width: 100%; background: var(--vb-blue); min-height: 4px; }
.vb-bar-fill.last { background: var(--vb-red); }

/* Calendar match row */
.vb-year-selector {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vb-year-selector label {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.vb-year-selector select {
  padding: 8px 12px;
  border: 2px solid var(--vb-blue);
  background: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.vb-calendar-filter {
  margin-bottom: 28px;
}
.vb-calendar-league {
  margin-bottom: 36px;
}
.vb-calendar-league-title {
  margin: 0 0 14px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--vb-blue);
  font-family: var(--vb-display);
  font-size: 22px;
  color: var(--vb-blue);
  line-height: 1;
}
.vb-calendar-match {
  display: grid;
  grid-template-columns: 54px 42px minmax(0, 1fr) 66px minmax(0, 1fr) 28px 18px;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  margin-bottom: 4px;
  border-left: 4px solid var(--vb-mute);
  background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.15s, transform 0.15s;
}
.vb-calendar-match:hover {
  box-shadow: 0 2px 8px rgba(0,51,160,0.15);
  transform: translateY(-1px);
}
.vb-calendar-match--win {
  border-left-color: var(--vb-green, #2e7d32);
}
.vb-calendar-match--loss {
  border-left-color: var(--vb-red);
}
.vb-calendar-match--draw,
.vb-calendar-match--upcoming {
  border-left-color: var(--vb-mute);
}
.vb-calendar-date {
  font-family: var(--vb-mono);
  font-size: 11px;
  color: var(--vb-mute);
  justify-self: start;
}
.vb-calendar-place,
.vb-calendar-result {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.vb-calendar-place {
  color: var(--vb-mute);
  justify-self: start;
}
.vb-calendar-team {
  min-width: 0;
  font-weight: 500;
  line-height: 1.2;
}
.vb-calendar-team--home {
  font-weight: 600;
}
.vb-calendar-team.is-vibraf {
  font-weight: 800;
  color: var(--vb-blue);
}
.vb-calendar-score {
  min-width: 0;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  color: var(--vb-ink);
}
.vb-calendar-result {
  text-align: center;
}
.vb-calendar-match--win .vb-calendar-result {
  color: var(--vb-green, #2e7d32);
}
.vb-calendar-match--loss .vb-calendar-result {
  color: var(--vb-red);
}
.vb-calendar-match--draw .vb-calendar-result {
  color: var(--vb-mute);
}
.vb-calendar-arrow {
  color: var(--vb-blue);
  font-size: 18px;
  line-height: 1;
  opacity: 0.5;
}
.vb-results-filter {
  margin-bottom: 20px;
}
.vb-results-summary {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 28px;
  background: var(--vb-blue);
  color: white;
}
.vb-results-summary-item {
  min-width: 0;
  padding: 16px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.16);
}
.vb-results-summary-item:last-child {
  border-right: 0;
}
.vb-results-summary-item div {
  font-size: 11px;
  letter-spacing: 0.1em;
  opacity: 0.7;
}
.vb-results-summary-item strong {
  display: block;
  margin-top: 4px;
  font-family: var(--vb-display);
  font-size: 26px;
  line-height: 1;
}
.vb-results-summary-item--win strong {
  color: #ffd700;
}
.vb-results-league {
  margin: 28px 0 0;
}
.vb-results-league-title {
  margin: 0 0 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--vb-blue);
  font-family: var(--vb-display);
  font-size: 22px;
  color: var(--vb-blue);
  line-height: 1;
}
.vb-results-match {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 70px minmax(0, 1fr) 22px 18px;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  margin-bottom: 4px;
  border-left: 4px solid var(--vb-mute);
  background: white;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.15s, transform 0.15s;
}
.vb-results-match:hover {
  box-shadow: 0 2px 8px rgba(0,51,160,0.15);
  transform: translateY(-1px);
}
.vb-results-match--win {
  border-left-color: var(--vb-green, #2e7d32);
}
.vb-results-match--loss {
  border-left-color: var(--vb-red);
}
.vb-results-match--draw {
  border-left-color: var(--vb-mute);
}
.vb-results-date {
  font-family: var(--vb-mono);
  font-size: 12px;
  color: var(--vb-mute);
}
.vb-results-team {
  min-width: 0;
  font-weight: 500;
  line-height: 1.2;
}
.vb-results-team--home {
  text-align: right;
}
.vb-results-team.is-vibraf {
  font-weight: 800;
  color: var(--vb-blue);
}
.vb-results-score {
  font-family: var(--vb-display);
  font-size: 20px;
  text-align: center;
  white-space: nowrap;
  color: var(--vb-blue);
}
.vb-results-result {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}
.vb-results-match--win .vb-results-result {
  color: var(--vb-green, #2e7d32);
}
.vb-results-match--loss .vb-results-result {
  color: var(--vb-red);
}
.vb-results-match--draw .vb-results-result {
  color: var(--vb-mute);
}
.vb-results-arrow {
  color: var(--vb-blue);
  font-size: 18px;
  line-height: 1;
  opacity: 0.5;
}
.vb-match-row {
  display: grid;
  grid-template-columns: 70px 1fr 90px 1fr 80px 30px;
  align-items: center;
  gap: 12px;
  padding: 14px 36px;
  border-bottom: 1px solid var(--vb-line);
}
.vb-match-row:last-child { border-bottom: none; }

/* Match report hero */
.vb-match-hero {
  background: var(--vb-blue);
  color: white;
  padding: 44px 36px 36px;
  border-bottom: 1px solid var(--vb-line-2);
}
.vb-match-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.vb-match-scoreboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 32px;
}
.vb-match-team {
  min-width: 0;
  text-align: center;
}
.vb-match-team-name {
  margin-top: 16px;
  font-family: var(--vb-display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.95;
  overflow-wrap: anywhere;
}
.vb-match-team--away .vb-match-team-name {
  color: rgba(255,255,255,0.7);
}
.vb-match-team-label {
  margin-top: 4px;
  font-family: var(--vb-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.18em;
}
.vb-match-score-wrap {
  min-width: 0;
  text-align: center;
}
.vb-match-score-display {
  display: flex;
  gap: 24px;
  align-items: baseline;
  justify-content: center;
}
.vb-match-score-num { font-family: var(--vb-display); font-size: clamp(80px, 12vw, 180px); line-height: 0.85; }
.vb-match-score-num.faded { color: rgba(255,255,255,0.4); }
.vb-match-score-sep { font-family: var(--vb-display); font-size: clamp(40px, 5vw, 70px); color: var(--vb-red); }
.vb-match-tabs {
  display: flex;
  padding: 0 36px;
  border-bottom: 1px solid var(--vb-line);
  background: var(--vb-cream);
}
.vb-match-tab {
  padding: 16px 22px;
  font-family: var(--vb-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--vb-mute);
  border-bottom: 2px solid transparent;
}
.vb-match-tab.active { color: var(--vb-blue); border-bottom-color: var(--vb-blue); font-weight: 700; }
.vb-match-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 1fr);
  gap: 40px;
  padding: 40px 36px;
}
.vb-match-featured-img,
.vb-match-photo-placeholder {
  width: 100%;
  height: 360px;
  margin-bottom: 22px;
  object-fit: cover;
}
.vb-match-title {
  margin: 0 0 18px;
  font-family: var(--vb-serif);
  font-size: clamp(28px, 4vw, 52px);
  color: var(--vb-blue);
  line-height: 1;
}
.vb-match-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--vb-ink-soft);
}
.vb-match-aside {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}
.vb-match-detail-card {
  background: white;
  border: 1px solid var(--vb-line);
  padding: 20px;
}
.vb-match-detail-row {
  padding: 10px 0;
  border-bottom: 1px solid var(--vb-line);
}
.vb-match-detail-row:last-child {
  border-bottom: 0;
}
.vb-match-detail-value {
  margin-top: 4px;
  font-family: var(--vb-display);
  font-size: 18px;
  color: var(--vb-blue);
  line-height: 1.1;
}

/* Full standings table */
.vb-full-standings-wrap { padding: 32px 36px; }
.vb-full-standings-table { width: 100%; border-collapse: collapse; background: white; border: 1px solid var(--vb-line); }
.vb-full-standings-table th {
  padding: 12px 10px;
  background: var(--vb-cream);
  font-family: var(--vb-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vb-mute);
  font-weight: 400;
  border-bottom: 1px solid var(--vb-line);
}
.vb-full-standings-table td {
  padding: 14px 10px;
  border-bottom: 1px solid var(--vb-line);
  font-family: var(--vb-mono);
  font-size: 13px;
  color: var(--vb-ink-soft);
  text-align: center;
}
.vb-full-standings-table tr.vibraf-row { background: var(--vb-cream); }

/* Arrow SVG helper */
.vb-arrow-icon { width: 14px; height: 14px; flex-shrink: 0; }

/* ──────────────────────────────────────────
   RESPONSIVE BASICS
   ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .vb-two-col-inner,
  .vb-two-col-inner.ratio-1-1 { grid-template-columns: 1fr; }
  .vb-home-news-layout { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .vb-news-hero-inner,
  .vb-news-list-card--featured,
  .vb-news-single-layout { grid-template-columns: 1fr; }
  .vb-news-list-card--featured { grid-column: span 2; }
  .vb-news-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vb-roster-grid { grid-template-columns: repeat(3, 1fr); }
  .vb-staff-grid { grid-template-columns: repeat(3, 1fr); }
  .vb-footer-grid { grid-template-columns: 1fr 1fr; }
  .vb-partners-grid { grid-template-columns: repeat(3, 1fr); }
  .vb-stats-strip-inner { grid-template-columns: 1fr; }
  .vb-editorial-inner { grid-template-columns: 1fr; }
  .vb-player-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .vb-player-photo {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }
  .vb-player-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .vb-staff-profile-grid { grid-template-columns: repeat(2, 1fr); }
  .vb-hof-profile-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .vb-topbar {
    padding: 14px 20px;
    flex-wrap: wrap;
    gap: 14px;
  }
  .vb-topbar::after { display: none; }
  .vb-logo-img { height: 54px; }
  .vb-menu-toggle { display: inline-flex; }
  .vb-primary-nav {
    flex: 0 0 100%;
    order: 3;
    display: none;
  }
  .vb-primary-nav.is-open { display: block; }
  .vb-primary-nav.is-open .vb-nav {
    display: grid;
    gap: 0;
  }
  .vb-nav {
    display: none;
    width: 100%;
    padding: 8px 0 4px;
    border-top: 1px solid var(--vb-line);
    font-size: 15px;
    letter-spacing: 0.08em;
  }
  .vb-topbar.dark .vb-nav {
    border-top-color: rgba(255,255,255,0.18);
  }
  .vb-nav a {
    display: flex;
    width: 100%;
    padding: 13px 0;
  }
  .vb-nav a:hover,
  .vb-nav a:focus-visible {
    color: var(--vb-red);
    outline-color: var(--vb-red);
  }
  .vb-nav a:active {
    background: var(--vb-cream);
    color: var(--vb-blue);
  }
  .vb-nav > li.current-menu-item > a::after,
  .vb-nav > li.current-menu-ancestor > a::after,
  .vb-nav > li > a.active::after {
    left: auto;
    right: 0;
    bottom: 50%;
    width: 24px;
    transform: translateY(50%);
  }
  .vb-nav .sub-menu {
    position: static;
    min-width: 0;
    padding: 0 0 8px 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .vb-nav .sub-menu::before {
    display: none;
  }
  .vb-nav .sub-menu a {
    color: inherit;
    padding: 9px 0;
    font-size: 13px;
    white-space: normal;
  }
  .vb-nav .sub-menu a:hover,
  .vb-nav .sub-menu .current-menu-item > a {
    background: transparent;
    color: var(--vb-red);
  }
  .vb-player-hero-num {
    right: -18px;
    top: 18px;
    font-size: clamp(180px, 58vw, 300px);
  }
  .vb-player-hero-inner {
    gap: 26px;
    padding: 34px 20px 28px;
  }
  .vb-player-hero-copy {
    gap: 26px;
  }
  .vb-player-name {
    font-size: clamp(58px, 18vw, 96px);
  }
  .vb-player-stats-bar {
    flex-wrap: wrap;
    gap: 16px 24px;
  }
  .vb-player-stats-bar > div {
    min-width: 90px;
  }
  .vb-player-photo {
    aspect-ratio: 1 / 1;
    max-height: 560px;
  }
  .vb-player-photo-img {
    object-fit: cover;
    object-position: top center;
  }
  .vb-player-profile-section {
    padding: 28px 20px;
  }
  .vb-calendar-filter {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
  }
  .vb-calendar-filter select {
    width: 100%;
    min-height: 44px;
  }
  .vb-calendar-league {
    margin-bottom: 30px;
  }
  .vb-calendar-league-title {
    font-size: 24px;
  }
  .vb-calendar-match {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "meta result"
      "home score"
      "away arrow";
    gap: 8px 14px;
    padding: 14px 16px;
    border-left-width: 5px;
  }
  .vb-calendar-match:hover {
    transform: none;
  }
  .vb-calendar-date {
    grid-area: meta;
    font-size: 12px;
  }
  .vb-calendar-place {
    grid-area: meta;
    justify-self: start;
    margin-left: 48px;
  }
  .vb-calendar-team {
    font-size: 15px;
  }
  .vb-calendar-team--home {
    grid-area: home;
  }
  .vb-calendar-team--away {
    grid-area: away;
  }
  .vb-calendar-score {
    grid-area: score;
    align-self: center;
    padding: 5px 8px;
    background: var(--vb-cream);
    color: var(--vb-blue);
  }
  .vb-calendar-result {
    grid-area: result;
    align-self: start;
  }
  .vb-calendar-arrow {
    grid-area: arrow;
    align-self: end;
    justify-self: end;
  }
  .vb-results-filter {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }
  .vb-results-filter select {
    width: 100%;
    min-height: 44px;
  }
  .vb-results-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .vb-results-summary-item {
    padding: 14px 12px;
    border-right: 1px solid rgba(255,255,255,0.16);
    border-bottom: 1px solid rgba(255,255,255,0.16);
  }
  .vb-results-summary-item:nth-child(2n) {
    border-right: 0;
  }
  .vb-results-summary-item:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }
  .vb-results-league {
    margin-top: 26px;
  }
  .vb-results-league-title {
    font-size: 24px;
  }
  .vb-results-match {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "meta result"
      "home score"
      "away arrow";
    gap: 8px 14px;
    padding: 14px 16px;
    border-left-width: 5px;
  }
  .vb-results-match:hover {
    transform: none;
  }
  .vb-results-date {
    grid-area: meta;
  }
  .vb-results-team {
    font-size: 15px;
    text-align: left;
  }
  .vb-results-team--home {
    grid-area: home;
  }
  .vb-results-team--away {
    grid-area: away;
  }
  .vb-results-score {
    grid-area: score;
    align-self: center;
    padding: 5px 8px;
    background: var(--vb-cream);
  }
  .vb-results-result {
    grid-area: result;
    align-self: start;
  }
  .vb-results-arrow {
    grid-area: arrow;
    align-self: end;
    justify-self: end;
  }
  .vb-match-hero {
    padding: 32px 20px 28px;
  }
  .vb-match-meta-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 26px;
  }
  .vb-match-scoreboard {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .vb-match-team--home {
    order: 1;
  }
  .vb-match-score-wrap {
    order: 2;
  }
  .vb-match-team--away {
    order: 3;
  }
  .vb-match-team-name {
    margin-top: 0;
    font-size: clamp(36px, 12vw, 58px);
  }
  .vb-match-score-display {
    gap: 14px;
  }
  .vb-match-score-num {
    font-size: clamp(76px, 24vw, 118px);
  }
  .vb-match-score-sep {
    font-size: clamp(34px, 10vw, 54px);
  }
  .vb-match-tabs {
    overflow-x: auto;
    padding: 0 20px;
    -webkit-overflow-scrolling: touch;
  }
  .vb-match-tab {
    flex: 0 0 auto;
    padding: 14px 16px;
    white-space: nowrap;
  }
  .vb-match-content-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 32px 20px;
  }
  .vb-match-featured-img,
  .vb-match-photo-placeholder {
    height: auto;
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }
  .vb-match-title {
    font-size: clamp(32px, 12vw, 50px);
  }
  .vb-player-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .vb-player-stat-cell {
    min-width: 0;
    border-right: 1px solid var(--vb-line);
    border-bottom: 1px solid var(--vb-line);
  }
  .vb-player-stat-cell:nth-child(2n) {
    border-right: none;
  }
  .vb-player-stat-val {
    overflow-wrap: anywhere;
  }
  .vb-player-profile-section--hof a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .vb-lightbox { padding: 56px 16px 28px; }
  .vb-lightbox-img { max-height: 70vh; }
  .vb-lightbox-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }
  .vb-lightbox-nav {
    top: auto;
    bottom: 12px;
    width: 48px;
    height: 44px;
    transform: none;
    font-size: 34px;
  }
  .vb-lightbox-prev { left: 16px; }
  .vb-lightbox-next { right: 16px; }
  .vb-lightbox-caption { padding: 0 56px; }
  .vb-hero { height: 520px; }
  .vb-two-col { padding: 32px 20px; }
  .vb-news-section,
  .vb-news-archive-body,
  .vb-news-hero,
  .vb-news-single-hero { padding-left: 20px; padding-right: 20px; }
  .vb-home-news-head {
    display: grid;
    align-items: start;
  }
  .vb-home-news-layout {
    grid-template-columns: 1fr;
  }
  .vb-home-news-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }
  .vb-home-news-media {
    height: auto;
    min-height: 100%;
  }
  .vb-home-news-card h3 {
    font-size: 22px;
  }
  .vb-news-archive-grid { grid-template-columns: 1fr; }
  .vb-news-list-card--featured { grid-column: span 1; }
  .vb-news-list-media,
  .vb-news-list-card--featured .vb-news-list-media { min-height: 230px; }
  .vb-news-single-cover { padding-left: 20px; padding-right: 20px; }
  .vb-news-single-layout { gap: 28px; padding: 62px 20px 40px; }
  .vb-news-post-nav { grid-template-columns: 1fr; padding-left: 20px; padding-right: 20px; }
  .vb-roster-grid { grid-template-columns: repeat(2, 1fr); padding: 20px; }
  .vb-staff-section { padding: 28px 20px 44px; }
  .vb-staff-grid { grid-template-columns: 1fr; }
  .vb-staff-profile-details,
  .vb-staff-profile-bio { padding-left: 20px; padding-right: 20px; }
  .vb-staff-profile-grid { grid-template-columns: 1fr; }
  .vb-staff-profile-photo { min-height: 360px; }
  .vb-hof-profile-details,
  .vb-hof-career { padding-left: 20px; padding-right: 20px; }
  .vb-hof-profile-grid { grid-template-columns: 1fr; }
  .vb-hof-profile-photo { min-height: 360px; }
  .vb-footer-grid { grid-template-columns: 1fr; }
  .vb-container { padding: 0 20px; }
  .vb-contatti { grid-template-columns: 1fr; }
  .vb-contact-card { padding: 20px; }
}

/* ──────────────────────────────────────────
   INNER PAGES
   ────────────────────────────────────────── */
#page { display: flex; flex-direction: column; min-height: 100vh; }
#content { flex: 1; }
#content .content-wrapper { /* no-op, children handle layout */ }

.vb-inner-page {
  padding: 60px 0 86px;
  background: var(--vb-cream);
  min-height: 60vh;
}
.vb-container {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 36px;
}
.vb-page-header {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--vb-blue);
}
.vb-page-title {
  font-family: var(--vb-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--vb-ink);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}
.vb-page-article {
  max-width: 920px;
  margin: 0 auto;
}
.vb-page-content {
  font-family: var(--vb-sans);
  font-size: 18px;
  line-height: 1.75;
  color: var(--vb-ink);
}
.vb-standard-page {
  background: white;
}
.vb-standard-page .vb-page-article {
  max-width: 1040px;
}
.vb-standard-page .vb-page-header {
  margin-bottom: 38px;
}
.vb-standard-page .vb-page-content {
  max-width: 840px;
}
.vb-page--regole .vb-page-content {
  background: transparent;
}
.vb-page--regole .vb-page-content > * {
  margin-left: 0;
  margin-right: 0;
}
.vb-page--regole .vb-page-content p {
  margin: 0 0 1.15em;
}
.vb-page--regole .vb-page-content ul,
.vb-page--regole .vb-page-content ol {
  margin: 0 0 1.4em;
  padding-left: 1.25em;
}
.vb-page--regole .vb-page-content li {
  margin-bottom: 0.55em;
  padding-left: 0.15em;
}
.vb-page--regole .vb-page-content table {
  width: 100%;
  margin: 26px 0;
  border-collapse: collapse;
  border: 1px solid var(--vb-line);
  background: white;
}
.vb-page--regole .vb-page-content th,
.vb-page--regole .vb-page-content td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--vb-line);
  vertical-align: top;
}
.vb-page--regole .vb-page-content th {
  background: var(--vb-cream);
  color: var(--vb-blue);
  font-family: var(--vb-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
}
.vb-page--regole .vb-page-content figure,
.vb-page--regole .vb-page-content .wp-block-image {
  margin: 30px 0;
}
.vb-page--regole .vb-page-content img {
  border: 1px solid var(--vb-line);
}
.vb-page--regole .vb-page-content .has-background,
.vb-page--regole .vb-page-content [style*="background"] {
  background: transparent !important;
  padding: 0 !important;
}
.vb-page-content h2 {
  font-family: var(--vb-display);
  font-size: clamp(30px, 4vw, 44px);
  color: var(--vb-blue);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin: 1.5em 0 0.5em;
}
.vb-page-content h3 {
  font-family: var(--vb-sans);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--vb-ink);
  margin: 1.5em 0 0.5em;
}
.vb-page-content a { color: var(--vb-blue); }
.vb-page-content a:hover { color: var(--vb-red); }
.vb-page-content ul, .vb-page-content ol { padding-left: 1.5em; }
.vb-page-content li { margin-bottom: 0.4em; }

.vb-contatti {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.vb-contact-card {
  background: white;
  border: 1px solid var(--vb-line);
  border-left: 4px solid var(--vb-red);
  padding: 24px;
}
.vb-contact-card.wide {
  grid-column: 1 / -1;
}
.vb-contact-card h2 {
  margin: 10px 0 18px;
  font-family: var(--vb-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 0.9;
  color: var(--vb-blue);
  text-transform: uppercase;
}
.vb-contact-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}
.vb-contact-card dl > div {
  padding-top: 14px;
  border-top: 1px solid var(--vb-line);
}
.vb-contact-card dt {
  font-family: var(--vb-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vb-mute);
  margin: 0 0 5px;
}
.vb-contact-card dd {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
  color: var(--vb-ink);
}
.vb-contact-card p {
  max-width: 760px;
  margin: 0;
  font-size: 19px;
  line-height: 1.7;
  color: var(--vb-ink-soft);
}
.vb-contact-card strong {
  color: var(--vb-blue);
}

.vb-history-page {
  max-width: 1120px;
}
.vb-history-hero {
  margin-bottom: 28px;
  padding: 34px;
  background: var(--vb-blue);
  color: white;
}
.vb-history-hero .vb-eyebrow {
  color: white;
}
.vb-history-hero h2 {
  margin: 0;
  font-family: var(--vb-display);
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.vb-history-hero p:last-child {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.86);
}
.vb-history-index {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 34px;
  padding: 14px;
  background: rgba(250,248,241,0.94);
  border: 1px solid var(--vb-line);
  backdrop-filter: blur(10px);
}
.vb-history-index a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 36px;
  padding: 8px 11px;
  background: white;
  border: 1px solid var(--vb-line);
  color: var(--vb-blue);
  font-family: var(--vb-mono);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.vb-history-index a:hover {
  background: var(--vb-red);
  border-color: var(--vb-red);
  color: white;
}
.vb-history-index a.active {
  background: var(--vb-blue);
  border-color: var(--vb-blue);
  color: white;
}
.vb-history-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 24px;
  padding: 18px 20px;
  background: white;
  border: 1px solid var(--vb-line);
}
.vb-history-pagination.bottom {
  justify-content: flex-end;
  margin: 26px 0 0;
}
.vb-history-pagination strong {
  display: block;
  margin-top: 3px;
  font-family: var(--vb-display);
  font-size: 42px;
  line-height: 0.9;
  color: var(--vb-blue);
}
.vb-history-pagination-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.vb-history-pagination-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  background: var(--vb-red);
  color: white;
  font-family: var(--vb-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}
.vb-history-pagination-links a:hover {
  background: var(--vb-blue);
}
.vb-history-timeline {
  display: grid;
  gap: 26px;
}
.vb-history-year {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 24px;
  scroll-margin-top: 92px;
}
.vb-history-year-marker {
  position: sticky;
  top: 92px;
  align-self: start;
  padding: 18px 14px;
  background: var(--vb-red);
  color: white;
  font-family: var(--vb-display);
  font-size: 42px;
  line-height: 0.9;
  text-align: center;
}
.vb-history-year-body {
  min-width: 0;
  background: white;
  border: 1px solid var(--vb-line);
  border-top: 4px solid var(--vb-blue);
  padding: 30px;
}
.vb-history-block {
  font-size: 18px;
  line-height: 1.72;
  color: var(--vb-ink);
}
.vb-history-block + .vb-history-block {
  margin-top: 18px;
}
.vb-history-block b,
.vb-history-block strong {
  color: var(--vb-blue);
  font-weight: 700;
}
.vb-history-legacy-heading {
  margin: 0 0 18px;
  font-family: var(--vb-display);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--vb-blue);
}
.vb-history-block img,
.vb-history-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 12px auto 20px;
  border: 1px solid var(--vb-line);
  background: var(--vb-cream);
}
.vb-history-block p {
  margin: 0 0 1em;
}

@media (max-width: 768px) {
  .vb-history-page { padding: 0 20px; }
  .vb-history-hero { padding: 28px 22px; }
  .vb-history-index {
    position: static;
    margin-bottom: 24px;
  }
  .vb-history-index a {
    min-width: 48px;
  }
  .vb-history-pagination {
    align-items: flex-start;
    flex-direction: column;
  }
  .vb-history-pagination-links {
    justify-content: flex-start;
  }
  .vb-history-year {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .vb-history-year-marker {
    position: static;
    width: fit-content;
    padding: 12px 16px;
    font-size: 34px;
  }
  .vb-history-year-body {
    padding: 22px;
  }
.vb-history-block {
    font-size: 17px;
  }
}

.vb-game-page {
  max-width: 1080px;
  margin: 0 auto;
}
.vb-game-hero {
  margin-bottom: 26px;
  padding: 34px;
  background: var(--vb-blue);
  color: white;
}
.vb-game-hero .vb-eyebrow {
  color: white;
}
.vb-game-hero h2 {
  margin: 0;
  font-family: var(--vb-display);
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.vb-game-hero p:last-child {
  max-width: 780px;
  margin: 18px 0 0;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.86);
}
.vb-game-subnav,
.vb-game-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 26px;
}
.vb-game-subnav a,
.vb-game-card {
  display: block;
  background: white;
  border: 1px solid var(--vb-line);
  border-left: 4px solid var(--vb-red);
  color: var(--vb-blue);
  text-decoration: none;
}
.vb-game-subnav a {
  padding: 16px;
  font-family: var(--vb-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}
.vb-game-subnav a:hover,
.vb-game-card:hover {
  border-left-color: var(--vb-blue);
  color: var(--vb-red);
}
.vb-game-card {
  min-height: 190px;
  padding: 22px;
}
.vb-game-card strong {
  display: block;
  margin-top: 12px;
  font-family: var(--vb-display);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 0.9;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}
.vb-game-card em {
  display: block;
  margin-top: 14px;
  color: var(--vb-ink-soft);
  font-size: 16px;
  font-style: normal;
  line-height: 1.45;
}
.vb-game-content {
  background: white;
  border: 1px solid var(--vb-line);
  border-top: 4px solid var(--vb-blue);
  padding: 30px;
  color: var(--vb-ink);
  font-size: 18px;
  line-height: 1.7;
}
.vb-game-content table {
  width: 100%;
  border-collapse: collapse;
}
.vb-game-content td {
  padding: 8px;
  vertical-align: top;
}
.vb-game-heading,
.vb-game-subheading {
  margin: 0 0 18px;
  font-family: var(--vb-display);
  line-height: 0.95;
  text-transform: uppercase;
}
.vb-game-heading {
  font-size: clamp(38px, 5vw, 64px);
  color: var(--vb-blue);
}
.vb-game-subheading {
  margin-top: 26px;
  font-size: clamp(30px, 4vw, 48px);
  color: var(--vb-red);
}
.vb-game-content b,
.vb-game-content strong {
  color: var(--vb-blue);
}
.vb-game-image {
  display: inline-block;
  max-width: 100%;
  height: auto;
  margin: 8px;
  vertical-align: middle;
}
.vb-game-content p {
  margin: 0 0 1em;
}
.vb-game-content--rules {
  border: 0;
  padding: 0;
}
.vb-game-section {
  margin-bottom: 34px;
}
.vb-game-section:last-child {
  margin-bottom: 0;
}
.vb-game-section p {
  max-width: 840px;
}
.vb-game-media-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin: 24px 0 28px;
}
.vb-game-media-row .vb-game-image {
  margin: 0;
}
.vb-game-media-row.single {
  align-items: flex-start;
}
.vb-game-legacy-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin: 8px 0;
  padding: 10px 14px;
  background: var(--vb-blue);
  color: white;
  font-family: var(--vb-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vb-field-map {
  margin-bottom: 26px;
  background: white;
  border: 1px solid var(--vb-line);
  border-top: 4px solid var(--vb-red);
}
.vb-field-map-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 20px;
  align-items: end;
  padding: 28px 30px 22px;
  border-bottom: 1px solid var(--vb-line);
}
.vb-field-map-head .vb-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}
.vb-field-map h3 {
  margin: 0;
  color: var(--vb-blue);
  font-family: var(--vb-display);
  font-size: 54px;
  line-height: 0.9;
  text-transform: uppercase;
}
.vb-field-map-head p:last-child {
  margin: 0;
  color: var(--vb-ink-soft);
  font-size: 16px;
  line-height: 1.55;
}
.vb-field {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border-bottom: 1px solid var(--vb-line);
  background:
    radial-gradient(circle at 50% 38%, rgba(255,255,255,0.14) 0 2px, transparent 2px 100%),
    linear-gradient(180deg, #5f9f5f 0%, #347945 58%, #2d6c3f 100%);
}
.vb-field::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 104px;
  width: 680px;
  height: 680px;
  transform: translateX(-50%) rotate(45deg);
  transform-origin: 50% 50%;
  border: 2px solid rgba(255,255,255,0.45);
  border-top: 0;
  border-left: 0;
}
.vb-field-grass-out {
  position: absolute;
  left: 50%;
  top: 58px;
  width: 860px;
  height: 470px;
  transform: translateX(-50%);
  border-radius: 460px 460px 70px 70px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.24);
  border-bottom: 0;
}
.vb-field-warning-track {
  position: absolute;
  left: 50%;
  top: 36px;
  width: 910px;
  height: 510px;
  transform: translateX(-50%);
  border-radius: 500px 500px 90px 90px;
  border: 18px solid rgba(173,100,55,0.62);
  border-bottom-color: transparent;
}
.vb-field-infield {
  position: absolute;
  left: 50%;
  bottom: 96px;
  width: 330px;
  height: 330px;
  transform: translateX(-50%) rotate(45deg);
  background: #bf8752;
  border: 2px solid rgba(255,255,255,0.78);
  box-shadow: 0 0 0 90px rgba(191,135,82,0.24);
}
.vb-field-infield::after {
  content: "";
  position: absolute;
  inset: 86px;
  border-radius: 50%;
  background: #3f8249;
  border: 2px solid rgba(255,255,255,0.42);
}
.vb-field-foul {
  position: absolute;
  left: 50%;
  bottom: 112px;
  width: 2px;
  height: 550px;
  background: rgba(255,255,255,0.78);
  transform-origin: bottom center;
}
.vb-field-foul-left { transform: rotate(-44deg); }
.vb-field-foul-right { transform: rotate(44deg); }
.vb-field-mound {
  position: absolute;
  left: 50%;
  bottom: 246px;
  width: 82px;
  height: 82px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #b77a45;
  border: 2px solid rgba(255,255,255,0.76);
  color: rgba(255,255,255,0.78);
  font-family: var(--vb-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.vb-field-base {
  position: absolute;
  z-index: 4;
  width: 72px;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}
.vb-field-base span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: 0 auto 7px;
  transform: rotate(45deg);
  background: white;
  border: 2px solid var(--vb-blue);
  color: var(--vb-blue);
  font-family: var(--vb-mono);
  font-size: 9px;
  font-weight: 700;
}
.vb-field-base strong,
.vb-field-base em {
  display: block;
  color: white;
  font-size: 10px;
  line-height: 1.25;
  text-shadow: 0 1px 5px rgba(0,0,0,0.45);
}
.vb-field-base strong {
  font-family: var(--vb-mono);
  font-weight: 700;
  text-transform: uppercase;
}
.vb-field-base em {
  font-style: normal;
}
.vb-base-home { left: 50%; bottom: 74px; }
.vb-base-first { left: calc(50% + 164px); bottom: 238px; }
.vb-base-second { left: 50%; bottom: 402px; }
.vb-base-third { left: calc(50% - 164px); bottom: 238px; }
.vb-field-point {
  position: absolute;
  z-index: 6;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 50%;
  background: var(--vb-blue);
  color: white;
  box-shadow: 0 8px 18px rgba(8,28,61,0.25);
  cursor: pointer;
}
.vb-field-point > span:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: var(--vb-display);
  font-size: 26px;
  line-height: 1;
}
.vb-field-point:hover,
.vb-field-point:focus {
  z-index: 200;
  background: var(--vb-red);
  outline: 3px solid rgba(255,255,255,0.82);
  outline-offset: 2px;
}
.vb-field-tip {
  position: absolute;
  z-index: 220;
  left: 50%;
  bottom: calc(100% + 12px);
  width: 230px;
  padding: 14px 15px;
  transform: translate(-50%, 8px);
  visibility: hidden;
  opacity: 0;
  background: white;
  border: 1px solid var(--vb-line);
  border-top: 4px solid var(--vb-red);
  color: var(--vb-ink);
  text-align: left;
  box-shadow: 0 18px 34px rgba(8,28,61,0.2);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}
.vb-field-tip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 14px;
  height: 14px;
  transform: translateX(-50%) rotate(45deg);
  background: white;
  border-right: 1px solid var(--vb-line);
  border-bottom: 1px solid var(--vb-line);
}
.vb-field-point:hover .vb-field-tip,
.vb-field-point:focus .vb-field-tip,
.vb-field-point:focus-visible .vb-field-tip {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}
.vb-pos-lf .vb-field-tip,
.vb-pos-cf .vb-field-tip,
.vb-pos-rf .vb-field-tip {
  top: calc(100% + 12px);
  bottom: auto;
}
.vb-pos-lf .vb-field-tip::after,
.vb-pos-cf .vb-field-tip::after,
.vb-pos-rf .vb-field-tip::after {
  top: -8px;
  bottom: auto;
  border: 0;
  border-left: 1px solid var(--vb-line);
  border-top: 1px solid var(--vb-line);
}
.vb-field-tip strong,
.vb-field-tip em,
.vb-field-tip small {
  display: block;
}
.vb-field-tip strong {
  color: var(--vb-blue);
  font-family: var(--vb-display);
  font-size: 28px;
  line-height: 0.95;
  text-transform: uppercase;
}
.vb-field-tip em {
  margin-top: 4px;
  color: var(--vb-red);
  font-family: var(--vb-mono);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.vb-field-tip small {
  margin-top: 9px;
  color: var(--vb-ink-soft);
  font-size: 15px;
  line-height: 1.5;
}
.vb-pos-c { left: 50%; bottom: 34px; }
.vb-pos-p { left: 50%; bottom: 270px; }
.vb-pos-1b { left: calc(50% + 238px); bottom: 214px; }
.vb-pos-2b { left: calc(50% + 102px); bottom: 354px; }
.vb-pos-3b { left: calc(50% - 238px); bottom: 214px; }
.vb-pos-ss { left: calc(50% - 116px); bottom: 352px; }
.vb-pos-lf { left: calc(50% - 286px); bottom: 472px; }
.vb-pos-cf { left: 50%; bottom: 544px; }
.vb-pos-rf { left: calc(50% + 286px); bottom: 472px; }
.vb-field-legend {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 20px 30px 28px;
  background: var(--vb-cream);
}
.vb-field-legend span {
  min-width: 0;
  padding: 11px 12px;
  background: white;
  border: 1px solid var(--vb-line);
  color: var(--vb-ink-soft);
  font-size: 15px;
  line-height: 1.45;
}
.vb-field-legend em,
.vb-field-legend small {
  display: block;
  font-style: normal;
}
.vb-field-legend em {
  margin-top: 4px;
  color: var(--vb-ink);
}
.vb-field-legend small {
  margin-top: 7px;
  color: var(--vb-ink-soft);
  font-size: 14px;
  line-height: 1.45;
}
.vb-field-legend strong {
  color: var(--vb-red);
  font-family: var(--vb-mono);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.vb-lessons {
  margin-bottom: 26px;
  background: white;
  border: 1px solid var(--vb-line);
  border-top: 4px solid var(--vb-red);
}
.vb-lessons-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 20px;
  align-items: end;
  padding: 28px 30px 22px;
  border-bottom: 1px solid var(--vb-line);
}
.vb-lessons-head .vb-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}
.vb-lessons h3 {
  margin: 0;
  color: var(--vb-blue);
  font-family: var(--vb-display);
  font-size: 54px;
  line-height: 0.9;
  text-transform: uppercase;
}
.vb-lessons-head p:last-child {
  margin: 0;
  color: var(--vb-ink-soft);
  font-size: 16px;
  line-height: 1.55;
}
.vb-lessons-grid {
  display: grid;
  gap: 22px;
  padding: 30px;
  background: var(--vb-cream);
}
.vb-lesson-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 330px;
  background: white;
  border: 1px solid var(--vb-line);
}
.vb-lesson-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 24px;
  background: white;
  border-right: 1px solid var(--vb-line);
}
.vb-lesson-media img {
  max-width: 100%;
  max-height: 250px;
  height: auto;
  width: auto;
  object-fit: contain;
}
.vb-lesson-body {
  position: relative;
  padding: 28px 30px 30px;
}
.vb-lesson-number {
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(8,28,61,0.12);
  font-family: var(--vb-display);
  font-size: 82px;
  line-height: 0.75;
}
.vb-lesson-card h4 {
  position: relative;
  margin: 0;
  padding-right: 92px;
  color: var(--vb-blue);
  font-family: var(--vb-display);
  font-size: 54px;
  line-height: 0.9;
  text-transform: uppercase;
}
.vb-lesson-intro {
  position: relative;
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--vb-ink);
  font-size: 19px;
  line-height: 1.55;
}
.vb-lesson-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.vb-lesson-columns strong {
  display: block;
  margin-bottom: 11px;
  color: var(--vb-red);
  font-family: var(--vb-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.vb-lesson-columns ul,
.vb-lesson-columns ol {
  margin: 0;
  padding-left: 20px;
  color: var(--vb-ink-soft);
  font-size: 16px;
  line-height: 1.55;
}
.vb-lesson-columns li + li {
  margin-top: 8px;
}
.vb-lessons-note {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 22px 30px;
  border-top: 1px solid var(--vb-line);
  background: var(--vb-blue);
  color: white;
}
.vb-lessons-note strong {
  font-family: var(--vb-mono);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.vb-lessons-note span {
  color: rgba(255,255,255,0.86);
  font-size: 17px;
  line-height: 1.5;
}

.vb-rules,
.vb-equipment {
  margin-bottom: 26px;
  background: white;
  border: 1px solid var(--vb-line);
  border-top: 4px solid var(--vb-red);
}
.vb-rules-head,
.vb-equipment-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 20px;
  align-items: end;
  padding: 28px 30px 22px;
  border-bottom: 1px solid var(--vb-line);
}
.vb-rules-head .vb-eyebrow,
.vb-equipment-head .vb-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}
.vb-rules h3,
.vb-equipment h3 {
  margin: 0;
  color: var(--vb-blue);
  font-family: var(--vb-display);
  font-size: 54px;
  line-height: 0.9;
  text-transform: uppercase;
}
.vb-rules-head p:last-child,
.vb-equipment-head p:last-child {
  margin: 0;
  color: var(--vb-ink-soft);
  font-size: 16px;
  line-height: 1.55;
}
.vb-rules-legacy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 30px;
  border-bottom: 1px solid var(--vb-line);
  background: white;
}
.vb-rules-legacy article {
  min-width: 0;
}
.vb-rules-legacy h4 {
  margin: 0 0 16px;
  color: var(--vb-blue);
  font-family: var(--vb-display);
  font-size: 46px;
  line-height: 0.92;
  text-transform: uppercase;
}
.vb-rules-legacy p {
  margin: 0;
  color: var(--vb-ink);
  font-size: 18px;
  line-height: 1.65;
}
.vb-rules-legacy p + p {
  margin-top: 14px;
}
.vb-rules-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 30px;
  background: var(--vb-cream);
}
.vb-rule-card {
  min-width: 0;
  padding: 22px;
  background: white;
  border: 1px solid var(--vb-line);
  border-left: 4px solid var(--vb-red);
}
.vb-rule-card span {
  display: block;
  color: var(--vb-red);
  font-family: var(--vb-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
}
.vb-rule-card h4,
.vb-rules-feature h4,
.vb-rules-softball h4,
.vb-equipment-card h4 {
  margin: 12px 0 0;
  color: var(--vb-blue);
  font-family: var(--vb-display);
  font-size: 36px;
  line-height: 0.92;
  text-transform: uppercase;
}
.vb-rule-card p {
  margin: 14px 0 0;
  color: var(--vb-ink-soft);
  font-size: 16px;
  line-height: 1.55;
}
.vb-rules-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: 28px;
  padding: 30px;
  border-top: 1px solid var(--vb-line);
}
.vb-rules-copy p:not(.vb-eyebrow),
.vb-rules-softball p:not(.vb-eyebrow) {
  margin: 16px 0 0;
  color: var(--vb-ink);
  font-size: 18px;
  line-height: 1.6;
}
.vb-rules-feature h4,
.vb-rules-softball h4 {
  font-size: 50px;
}
.vb-rules-media {
  display: grid;
  gap: 14px;
  align-content: center;
}
.vb-rules-media img,
.vb-rules-softball img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.vb-rules-media img {
  padding: 18px;
  background: var(--vb-cream);
  border: 1px solid var(--vb-line);
}
.vb-rules-softball {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 30px;
  border-top: 1px solid var(--vb-line);
  background: var(--vb-blue);
  color: white;
}
.vb-rules-softball h4 {
  color: white;
}
.vb-rules-softball p:not(.vb-eyebrow) {
  color: rgba(255,255,255,0.86);
}
.vb-rules-softball .vb-eyebrow {
  color: white;
}
.vb-rules-softball img {
  background: white;
  border: 1px solid rgba(255,255,255,0.24);
}
.vb-equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 30px;
  background: var(--vb-cream);
}
.vb-equipment-card {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  min-width: 0;
  background: white;
  border: 1px solid var(--vb-line);
}
.vb-equipment-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 148px;
  padding: 18px;
  border-right: 1px solid var(--vb-line);
  background: white;
}
.vb-equipment-media img {
  display: block;
  max-width: 104px;
  max-height: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.vb-equipment-body {
  padding: 20px 22px;
}
.vb-equipment-card h4 {
  margin-top: 0;
  font-size: 34px;
}
.vb-equipment-card p {
  margin: 12px 0 0;
  color: var(--vb-ink-soft);
  font-size: 16px;
  line-height: 1.5;
}
.vb-equipment-note {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 22px 30px;
  border-top: 1px solid var(--vb-line);
  background: var(--vb-blue);
  color: white;
}
.vb-equipment-note strong {
  font-family: var(--vb-mono);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.vb-equipment-note span {
  color: rgba(255,255,255,0.86);
  font-size: 17px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .vb-game-subnav,
  .vb-game-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .vb-field-map-head,
  .vb-lessons-head,
  .vb-rules-head,
  .vb-equipment-head,
  .vb-field-legend {
    grid-template-columns: 1fr;
  }
  .vb-lesson-card,
  .vb-lesson-columns,
  .vb-lessons-note,
  .vb-rules-feature,
  .vb-rules-softball,
  .vb-equipment-note {
    grid-template-columns: 1fr;
  }
  .vb-rules-grid,
  .vb-equipment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .vb-rules-legacy {
    grid-template-columns: 1fr;
  }
  .vb-lesson-media {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--vb-line);
  }
  .vb-field {
    min-height: 560px;
  }
  .vb-field::before {
    width: 560px;
    height: 560px;
  }
  .vb-field-infield {
    width: 280px;
    height: 280px;
  }
  .vb-field-warning-track,
  .vb-field-grass-out {
    width: 700px;
  }
  .vb-base-first { left: calc(50% + 140px); bottom: 212px; }
  .vb-base-second { bottom: 352px; }
  .vb-base-third { left: calc(50% - 140px); bottom: 212px; }
  .vb-pos-c { bottom: 30px; }
  .vb-pos-p { bottom: 238px; }
  .vb-pos-1b { left: calc(50% + 190px); bottom: 198px; }
  .vb-pos-2b { left: calc(50% + 82px); bottom: 314px; }
  .vb-pos-3b { left: calc(50% - 190px); bottom: 198px; }
  .vb-pos-ss { left: calc(50% - 96px); bottom: 314px; }
  .vb-pos-lf { left: calc(50% - 218px); bottom: 410px; }
  .vb-pos-cf { bottom: 470px; }
  .vb-pos-rf { left: calc(50% + 218px); bottom: 410px; }
}
@media (max-width: 768px) {
  .vb-game-page { padding: 0 20px; }
  .vb-game-hero { padding: 28px 22px; }
  .vb-game-subnav,
  .vb-game-cards {
    grid-template-columns: 1fr;
  }
  .vb-game-content {
    padding: 22px;
    font-size: 17px;
    overflow-x: auto;
  }
  .vb-field-map-head {
    padding: 24px 22px 18px;
  }
  .vb-field-map h3 {
    font-size: 38px;
  }
  .vb-lessons-head {
    padding: 24px 22px 18px;
  }
  .vb-lessons h3 {
    font-size: 38px;
  }
  .vb-rules-head,
  .vb-equipment-head {
    padding: 24px 22px 18px;
  }
  .vb-rules h3,
  .vb-equipment h3 {
    font-size: 38px;
  }
  .vb-lessons-grid {
    padding: 22px;
  }
  .vb-rules-grid,
  .vb-equipment-grid {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .vb-rules-feature,
  .vb-rules-softball,
  .vb-equipment-note {
    padding: 22px;
  }
  .vb-rules-legacy {
    padding: 22px;
  }
  .vb-rules-legacy h4 {
    font-size: 38px;
  }
  .vb-rules-legacy p {
    font-size: 17px;
  }
  .vb-rules-feature h4,
  .vb-rules-softball h4 {
    font-size: 38px;
  }
  .vb-equipment-card {
    grid-template-columns: 1fr;
  }
  .vb-equipment-media {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid var(--vb-line);
  }
  .vb-lesson-body {
    padding: 24px 22px;
  }
  .vb-lesson-number {
    top: 22px;
    right: 20px;
    font-size: 62px;
  }
  .vb-lesson-card h4 {
    padding-right: 74px;
    font-size: 40px;
  }
  .vb-lesson-intro {
    font-size: 17px;
  }
  .vb-lesson-columns ul,
  .vb-lesson-columns ol {
    font-size: 16px;
  }
  .vb-lessons-note {
    padding: 22px;
  }
  .vb-field-map {
    overflow: hidden;
  }
  .vb-field {
    width: auto;
    min-width: 0;
    min-height: 520px;
  }
  .vb-field::before {
    bottom: 82px;
    width: 360px;
    height: 360px;
  }
  .vb-field-grass-out {
    top: 64px;
    width: 500px;
    height: 320px;
  }
  .vb-field-warning-track {
    top: 42px;
    width: 540px;
    height: 360px;
    border-width: 13px;
  }
  .vb-field-infield {
    bottom: 74px;
    width: 212px;
    height: 212px;
    box-shadow: 0 0 0 48px rgba(191,135,82,0.22);
  }
  .vb-field-infield::after {
    inset: 55px;
  }
  .vb-field-foul {
    bottom: 88px;
    height: 390px;
  }
  .vb-field-mound {
    bottom: 186px;
    width: 62px;
    height: 62px;
  }
  .vb-base-home { left: 50%; bottom: 56px; }
  .vb-base-first { left: 76%; bottom: 162px; }
  .vb-base-second { left: 50%; bottom: 268px; }
  .vb-base-third { left: 24%; bottom: 162px; }
  .vb-field-point {
    width: 52px;
    height: 52px;
  }
  .vb-field-point > span:first-child {
    font-size: 23px;
  }
  .vb-field-tip {
    display: none;
  }
  .vb-field-base {
    width: 64px;
  }
  .vb-field-base strong,
  .vb-field-base em {
    font-size: 9px;
  }
  .vb-field-legend {
    grid-template-columns: 1fr;
    padding: 18px 22px 22px;
  }
  .vb-field-legend span {
    padding: 13px 14px;
  }
  .vb-pos-c { left: 50%; bottom: 24px; }
  .vb-pos-p { left: 50%; bottom: 202px; }
  .vb-pos-1b { left: 84%; bottom: 152px; }
  .vb-pos-2b { left: 64%; bottom: 254px; }
  .vb-pos-3b { left: 16%; bottom: 152px; }
  .vb-pos-ss { left: 36%; bottom: 254px; }
  .vb-pos-lf { left: 18%; bottom: 374px; }
  .vb-pos-cf { left: 50%; bottom: 424px; }
  .vb-pos-rf { left: 82%; bottom: 374px; }
}

/* ── Sponsor page ─────────────────────────────────────────── */
.vb-sponsor-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.vb-sponsor-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 20px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  text-align: center;
}
.vb-sponsor-logo img {
  max-width: 140px;
  height: auto;
  display: block;
}
.vb-sponsor-name {
  font-family: var(--vb-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--vb-ink);
}
.vb-sponsor-desc {
  font-size: 13px;
  color: var(--vb-mute);
  line-height: 1.5;
}

/* ── Società landing ───────────────────────────────────────── */
.vb-societa-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.vb-societa-nav-item a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 22px;
  background: #fff;
  border-left: 4px solid var(--vb-blue);
  text-decoration: none;
  color: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.vb-societa-nav-item a:hover {
  border-left-color: var(--vb-red);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.vb-societa-nav-item strong {
  font-family: var(--vb-display);
  font-size: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--vb-ink);
}
.vb-societa-nav-item span {
  font-size: 13px;
  color: var(--vb-mute);
  line-height: 1.5;
}

/* ── Dove siamo / Domusnovas pages ───────────────────────── */
.vb-foto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin: 1em 0 2em;
}
.vb-foto-grid--small {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}
.vb-foto-item {
  margin: 0;
  overflow: hidden;
  background: #000;
  cursor: zoom-in;
}
.vb-foto-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: opacity .2s;
}
.vb-foto-item:hover img { opacity: .88; }
.vb-foto-item:focus-visible {
  outline: 3px solid var(--vb-red);
  outline-offset: 3px;
}
.vb-foto-item figcaption {
  font-size: 11px;
  color: var(--vb-mute);
  padding: 5px 6px;
  background: #fff;
}
.vb-foto-item--wide {
  grid-column: 1 / -1;
}
.vb-foto-item--wide img {
  height: auto;
  max-height: 480px;
  object-fit: contain;
  background: #f4f4f4;
}
.vb-lightbox-open {
  overflow: hidden;
}
.vb-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px 72px;
  background: rgba(4, 14, 31, .9);
}
.vb-lightbox.is-open {
  display: flex;
}
.vb-lightbox-figure {
  margin: 0;
  display: grid;
  gap: 14px;
  justify-items: center;
  max-width: min(1120px, 100%);
}
.vb-lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #111;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
}
.vb-lightbox-caption {
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}
.vb-lightbox-close,
.vb-lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.1);
  color: #fff;
  cursor: pointer;
}
.vb-lightbox-close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  font-size: 32px;
  line-height: 1;
}
.vb-lightbox-nav {
  top: 50%;
  width: 52px;
  height: 64px;
  transform: translateY(-50%);
  font-size: 42px;
  line-height: 1;
}
.vb-lightbox-prev { left: 20px; }
.vb-lightbox-next { right: 20px; }
.vb-lightbox-close:hover,
.vb-lightbox-nav:hover,
.vb-lightbox-close:focus-visible,
.vb-lightbox-nav:focus-visible {
  background: var(--vb-red);
  border-color: var(--vb-red);
  outline: none;
}
.vb-territorio-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin: 1em 0 2em;
}
.vb-territorio-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 20px;
  background: #fff;
  border-left: 4px solid var(--vb-blue);
  text-decoration: none;
  color: inherit;
  transition: border-color .15s;
}
.vb-territorio-card:hover { border-left-color: var(--vb-red); }
.vb-territorio-card strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--vb-ink);
}
.vb-territorio-card span {
  font-size: 13px;
  color: var(--vb-mute);
  line-height: 1.5;
}
.vb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: .5em 0 1.4em;
}
.vb-table th {
  background: var(--vb-blue);
  color: #fff;
  text-align: left;
  padding: 9px 12px;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.vb-table td {
  padding: 9px 12px;
  border-bottom: 1px solid rgba(0,0,0,.07);
  vertical-align: top;
}
.vb-table tbody tr:nth-child(even) td {
  background: rgba(0,0,0,.025);
}
.vb-map-wrapper {
  margin: .5em 0 1.8em;
  border: 1px solid rgba(0,0,0,.1);
  overflow: hidden;
}
.vb-dove-foto-link {
  margin-top: 2.5em;
  padding: 18px 22px;
  background: var(--vb-blue);
  display: inline-block;
}
.vb-dove-foto-link a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .03em;
}
.vb-dove-foto-link a:hover {
  text-decoration: underline;
}

/* ── Album archive ────────────────────────────────────────── */
.vb-album-year-group {
  margin-bottom: 52px;
}
.vb-album-year-heading {
  font-family: var(--vb-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--vb-blue);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--vb-line);
}
.vb-album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.vb-album-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: white;
  border: 1px solid var(--vb-line);
  transition: transform .15s, box-shadow .15s, border-color .15s;
  overflow: hidden;
}
.vb-album-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31,63,168,.1);
  border-color: var(--vb-blue);
}
.vb-album-card-thumb {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--vb-blue);
  overflow: hidden;
}
.vb-album-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.vb-album-card:hover .vb-album-card-thumb img {
  transform: scale(1.04);
}
.vb-album-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vb-album-card-placeholder span {
  font-family: var(--vb-display);
  font-size: 3.5rem;
  color: rgba(255,255,255,.25);
  letter-spacing: .04em;
}
.vb-album-card-count {
  position: absolute;
  bottom: 8px; right: 8px;
  background: rgba(20,41,122,.85);
  color: white;
  font-family: var(--vb-mono);
  font-size: 10px;
  letter-spacing: .08em;
  padding: 3px 7px;
}
.vb-album-card-info {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.vb-album-card-year {
  font-family: var(--vb-mono);
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--vb-mute);
  text-transform: uppercase;
}
.vb-album-card-title {
  font-family: var(--vb-display);
  font-size: 16px;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--vb-ink);
  line-height: 1.15;
}

/* ── Album single ─────────────────────────────────────────── */
.vb-album-single-hero {
  background: var(--vb-blue);
  border-bottom: 6px solid var(--vb-red);
  padding: 52px 36px 36px;
  color: white;
}
.vb-album-single-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.vb-album-single-hero h1 {
  font-family: var(--vb-display);
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: .9;
  margin: 8px 0 0;
  color: white;
}
.vb-album-back-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  text-decoration: none;
}
.vb-album-back-link:hover { color: white; }
.vb-album-desc {
  padding: 32px 36px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--vb-ink);
  max-width: 780px;
}
.vb-album-grid-wrap {
  padding: 32px 36px 64px;
}
.vb-album-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 6px;
}
.vb-album-photo-btn {
  all: unset;
  display: block;
  cursor: zoom-in;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--vb-cream);
}
.vb-album-photo-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s, opacity .2s;
}
.vb-album-photo-btn:hover img {
  transform: scale(1.05);
  opacity: .9;
}
.vb-album-photo-btn:focus-visible {
  outline: 3px solid var(--vb-blue);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .vb-album-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .vb-album-photo-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .vb-album-single-hero { padding: 36px 20px 24px; }
  .vb-album-grid-wrap, .vb-album-desc { padding-left: 20px; padding-right: 20px; }
}

/* ── Annuario stagionale (taxonomy-sp_season) ── */
.vb-season-page { background: #fff; }
.vb-season-body { padding-top: 48px; padding-bottom: 64px; }

.vb-season-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--vb-blue);
  color: #fff;
  margin-bottom: 40px;
}
.vb-season-stat {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 12px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.vb-season-stat:last-child { border-right: none; }
.vb-season-stat__val { font-family: var(--vb-display); font-size: 2rem; line-height: 1; }
.vb-season-stat__val--win { color: #ffd700; }
.vb-season-stat__lbl { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; opacity: .7; margin-top: 4px; }

.vb-season-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.vb-season-section { margin-bottom: 48px; }
.vb-season-section__title {
  font-family: var(--vb-display);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--vb-blue);
  text-transform: uppercase;
  border-bottom: 2px solid var(--vb-blue);
  padding-bottom: 6px;
  margin-bottom: 16px;
}

.vb-season-league-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--vb-mute);
  margin-bottom: 8px;
}
.vb-season-table { margin-bottom: 24px; }
.vb-season-table tr.is-us { background: rgba(31,63,168,.06); }

.vb-season-results {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 28px;
}
.vb-season-result {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 58px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.07);
  border-left: 4px solid transparent;
  text-decoration: none;
  color: inherit;
  font-size: 13px;
  transition: box-shadow .15s;
}
.vb-season-result:hover { box-shadow: 0 2px 8px rgba(31,63,168,.15); }
.vb-season-result--win { border-left-color: var(--vb-green, #2e7d32); }
.vb-season-result--loss { border-left-color: var(--vb-red); }
.vb-season-result--draw { border-left-color: var(--vb-mute); }
.vb-season-result__date { color: var(--vb-mute); font-family: monospace; font-size: 12px; }
.vb-season-result__team { min-width: 0; line-height: 1.2; }
.vb-season-result__team.is-us { font-weight: 700; }
.vb-season-result__team--home { text-align: right; }
.vb-season-result__score { font-family: var(--vb-display); font-size: 18px; color: var(--vb-blue); min-width: 54px; text-align: center; }
.vb-season-result__badge { font-size: 11px; font-weight: 700; letter-spacing: .06em; min-width: 14px; }
.vb-season-result--win .vb-season-result__badge { color: var(--vb-green, #2e7d32); }
.vb-season-result--loss .vb-season-result__badge { color: var(--vb-red); }
.vb-season-result--draw .vb-season-result__badge { color: var(--vb-mute); }

.vb-season-albums { display: flex; flex-direction: column; gap: 10px; }
.vb-season-album-card {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: opacity .15s;
}
.vb-season-album-card:hover { opacity: .8; }
.vb-season-album-cover {
  position: relative;
  width: 80px;
  height: 60px;
  flex-shrink: 0;
  background: var(--vb-cream);
  overflow: hidden;
}
.vb-season-album-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vb-season-album-title { font-size: 14px; font-weight: 600; line-height: 1.3; }

.vb-season-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid #eee;
  margin-top: 16px;
  font-size: 14px;
}
.vb-season-nav a { color: var(--vb-blue); font-weight: 600; text-decoration: none; }
.vb-season-nav a:hover { text-decoration: underline; }
.vb-season-nav__index { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.vb-season-empty { color: var(--vb-mute); font-style: italic; font-size: 14px; }

@media (max-width: 900px) {
  .vb-season-grid { grid-template-columns: 1fr; }
  .vb-season-albums { flex-direction: row; flex-wrap: wrap; }
  .vb-season-album-card { width: calc(50% - 5px); }
}
@media (max-width: 600px) {
  .vb-season-body {
    padding-top: 32px;
    padding-bottom: 48px;
  }
  .vb-season-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 32px;
  }
  .vb-season-stat {
    border-bottom: 1px solid rgba(255,255,255,.15);
  }
  .vb-season-stat:nth-child(2n) {
    border-right: none;
  }
  .vb-season-result {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "date badge"
      "home score"
      "away score";
    gap: 7px 12px;
    padding: 13px 14px;
  }
  .vb-season-result__date {
    grid-area: date;
  }
  .vb-season-result__team {
    text-align: left;
  }
  .vb-season-result__team--home {
    grid-area: home;
    text-align: left;
  }
  .vb-season-result__team--away {
    grid-area: away;
  }
  .vb-season-result__score {
    grid-area: score;
    align-self: center;
    min-width: 62px;
    padding: 5px 8px;
    background: var(--vb-cream);
  }
  .vb-season-result__badge {
    grid-area: badge;
    justify-self: end;
  }
  .vb-season-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .vb-season-table th,
  .vb-season-table td {
    white-space: nowrap;
  }
  .vb-season-albums {
    flex-direction: column;
  }
  .vb-season-album-card {
    width: 100%;
  }
  .vb-season-nav {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ── Elenco stagioni (page-stagioni) ── */
.vb-page--stagioni .vb-page-subtitle { color: var(--vb-mute); font-size: 15px; margin-top: 4px; }

.vb-stagioni-decade { margin-bottom: 48px; }
.vb-stagioni-decade__title {
  font-family: var(--vb-display);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--vb-blue);
  text-transform: uppercase;
  border-bottom: 3px solid var(--vb-blue);
  padding-bottom: 6px;
  margin-bottom: 16px;
}

.vb-stagioni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 8px;
}

.vb-stagioni-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 8px 12px;
  background: #fff;
  border: 2px solid #e5e7eb;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s, background .15s;
  border-radius: 3px;
}
.vb-stagioni-card:hover {
  border-color: var(--vb-blue);
  background: rgba(31,63,168,.04);
}
.vb-stagioni-card__year {
  font-family: var(--vb-display);
  font-size: 26px;
  color: var(--vb-blue);
  line-height: 1;
}
.vb-stagioni-card__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-top: 6px;
  font-size: 10px;
  color: var(--vb-mute);
  letter-spacing: .04em;
}

@media (max-width: 600px) {
  .vb-stagioni-grid { grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); }
  .vb-stagioni-card__year { font-size: 22px; }
}
