/*
Theme Name: SportsTiger Broadcast
Theme URI: https://www.sportstiger.com
Author: SportsTiger
Author URI: https://www.sportstiger.com
Description: Pitchside Press — the SportsTiger sports daily. Newsprint warmth, pitch-green brand, volt-lime signal accents and condensed broadcast headlines for news, live scores and league coverage.
Version: 3.0.0-st1
Requires at least: 5.3
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sportzclaus-theme
*/

/* ============================================================
   01 · DESIGN TOKENS — "PITCHSIDE PRESS"
   Warm newsprint canvas · pitch green · volt lime · vermilion
   Token NAMES are a public API consumed by the companion and
   match-centre plugins — never rename them, only retune values.
   ============================================================ */
:root {
  /* Type Scale */
  --text-2xs: 10px;
  --text-xs:  11px;
  --text-sm:  13px;
  --text-base: 15px;
  --text-md:  17px;
  --text-lg:  22px;
  --text-xl:  28px;
  --text-2xl: 38px;
  --text-3xl: clamp(48px, 7vw, 76px);

  /* Spacing */
  --space-1:   4px;
  --space-2:   8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;

  /* Surface Palette — warm newsprint */
  --canvas:    #F5F6F8;
  --paper:     #FFFFFF;
  --recess:    #E9ECEF;

  /* Ink Palette — deep pine black */
  --ink:       #0E0D0B;
  --ink-2:     #3D3A33;
  --ink-3:     #76716A;
  --ink-4:     #B0A99B;

  --rule:        rgba(14, 13, 11, 0.13);
  --rule-strong: rgba(14, 13, 11, 0.32);

  /* Brand — pitch green */
  --brand:        #E4590A;
  --brand-soft:   #F97A2F;
  --brand-deep:   #B23F02;
  --brand-wash:   color-mix(in srgb, var(--brand) 8%, var(--canvas));
  --brand-glow:   color-mix(in srgb, var(--brand) 30%, transparent);

  /* Accent — signal vermilion (live, breaking, hot) */
  --accent:       #E11D48;
  --accent-soft:  #FF5C7A;
  --accent-glow:  color-mix(in srgb, var(--accent) 32%, transparent);

  /* Energy hues + signature gradients */
  --volt:         #FFC53D; /* stadium floodlight lime */
  --volt-ink:     #241500; /* text sitting on volt */
  --cyan:         #2563EB; /* pitch teal support */
  --grad-brand:   linear-gradient(135deg, #F0680F 0%, #B23F02 100%);
  --grad-cool:    linear-gradient(135deg, #E4590A 0%, #2563EB 100%);
  --grad-hot:     linear-gradient(135deg, #E11D48 0%, #F59E0B 100%);
  --grad-ink:     linear-gradient(150deg, #0B102C 0%, #1D2547 100%);
  --grad-volt:    linear-gradient(135deg, #FFC53D 0%, #F59E0B 100%);

  /* Category accents — set --cat per section/card */
  --cat:          var(--brand);
  --cat-cricket:  #E4590A;
  --cat-football: #1D5FDB;
  --cat-gaming:   #7C3AED;

  /* Fonts */
  --font-display:   'Anton', 'Bricolage Grotesque', system-ui, sans-serif;
  --font-headline:  'Bricolage Grotesque', 'Anton', system-ui, sans-serif;
  --font-editorial: 'Newsreader', Georgia, Cambria, "Times New Roman", serif;
  --font-body:      'Schibsted Grotesk', system-ui, sans-serif;
  --font-score:     'Space Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* Radii — sharp press edges */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 999px;

  /* Shadow & Transitions — warm, restrained depth */
  --shadow-card: 0 1px 2px rgba(14, 13, 11, 0.04), 0 10px 24px -18px rgba(14, 13, 11, 0.22);
  --shadow-hover: 0 6px 18px -6px rgba(228, 89, 10, 0.18), 0 22px 44px -20px rgba(14, 13, 11, 0.28);
  --ease-out: cubic-bezier(.2,.8,.2,1);
  --transition-smooth: background-color 0.3s var(--ease-out), color 0.3s var(--ease-out), border-color 0.3s var(--ease-out), transform 0.2s var(--ease-out);
}

/* ============================================================
   02 · DARK MODE — floodlit pine
   ============================================================ */
html[data-theme="dark"], body.dark-mode {
  --canvas:    #0E0D0B;
  --paper:     #18161A;
  --recess:    #221F22;

  --ink:       #F1E9D2;
  --ink-2:     #C2BBA8;
  --ink-3:     #8A8275;
  --ink-4:     #5A554C;

  --rule:        rgba(241, 233, 210, 0.13);
  --rule-strong: rgba(241, 233, 210, 0.28);

  --brand:        #FF8534;
  --brand-soft:   #FFA45C;
  --brand-deep:   #E4590A;
  --brand-wash:   color-mix(in srgb, var(--brand) 12%, var(--canvas));
  --brand-glow:   color-mix(in srgb, var(--brand) 38%, transparent);

  --accent:       #FF5470;
  --accent-soft:  #FF7D93;
  --accent-glow:  color-mix(in srgb, var(--accent) 40%, transparent);

  --volt:         #FFD25A;
  --cyan:         #4F8DFB;
  --grad-brand:   linear-gradient(135deg, #FF7A1F 0%, #C24A05 100%);
  --grad-cool:    linear-gradient(135deg, #FF7A1F 0%, #3B82F6 100%);
  --grad-ink:     linear-gradient(150deg, #070A18 0%, #161D36 100%);

  --cat-cricket:  #FF8534;
  --cat-football: #6FA0FF;
  --cat-gaming:   #A98BFA;

  --shadow-card: 0 1px 0 rgba(241, 233, 210, 0.05) inset, 0 14px 32px -16px rgba(0, 0, 0, 0.62);
  --shadow-hover: 0 8px 22px -8px rgba(255, 133, 52, 0.30), 0 26px 50px -18px rgba(0, 0, 0, 0.78);
}

/* Category accent hooks — post_class() and section markup both emit
   `category-<slug>`, so a single utility recolors kickers, card bars
   and section slabs everywhere. */
.category-cricket  { --cat: var(--cat-cricket); }
.category-football { --cat: var(--cat-football); }
.category-gaming,
.category-esports  { --cat: var(--cat-gaming); }

/* Screen reader utility helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   03 · RESET & GLOBAL BASELINE
   ============================================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  max-width: 100%;
  /* clip (not hidden): prevents sideways overflow WITHOUT making body a
     scroll container — overflow:hidden here silently kills position:sticky
     for every descendant (article rail, prediction rail). */
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--canvas);
  font-size: 15.5px;
  line-height: 1.6;
  letter-spacing: 0.001em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  width: 100%;
  position: relative;
  transition: var(--transition-smooth);
}

/* Faint stadium wash — barely-there, keeps the newsprint calm */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 100% 0%, color-mix(in srgb, var(--brand) 7%, transparent) 0%, transparent 52%),
    radial-gradient(ellipse at 0% 100%, color-mix(in srgb, var(--volt) 6%, transparent) 0%, transparent 55%),
    var(--canvas);
  pointer-events: none;
}

::selection {
  background: var(--volt);
  color: var(--volt-ink);
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 2px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s var(--ease-out), background-color 0.18s var(--ease-out), border-color 0.18s var(--ease-out);
}

a:hover { color: var(--brand); }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

p { margin: 0; }

ul, ol { list-style: none; }

::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--canvas); }
::-webkit-scrollbar-thumb {
  background: var(--ink-4);
  border-radius: 8px;
  border: 3px solid var(--canvas);
}
::-webkit-scrollbar-thumb:hover { background: var(--brand); }

/* ============================================================
   04 · LAYOUT CONTAINERS — uniform 1100px press column
   ============================================================ */
.main-content,
.page-main,
.single-post-main {
  max-width: var(--container-max, 1100px);
  margin: 0 auto;
  padding: 0 var(--space-5);
  width: 100%;
}

.main-content { padding-top: 26px; padding-bottom: 60px; }

/* ============================================================
   05 · BUTTONS & FORMS
   Deliberately NO bare `button {}` gradient rule — that broke
   plugin buttons in the previous era. Style named classes only.
   ============================================================ */
.btn,
.reset-btn,
.card-btn,
.rail-cta-btn,
.sz-contact-submit-btn,
.form-submit-wrap button,
.comment-form input[type="submit"],
.search-submit,
.sz-no-results-search .search-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-headline);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: var(--brand);
  border: none;
  border-radius: var(--radius-sm);
  padding: 11px 22px;
  cursor: pointer;
  transition: var(--transition-smooth), box-shadow 0.25s var(--ease-out);
  text-decoration: none;
}

.btn:hover,
.reset-btn:hover,
.card-btn:hover,
.rail-cta-btn:hover,
.sz-contact-submit-btn:hover,
.form-submit-wrap button:hover,
.comment-form input[type="submit"]:hover,
.search-submit:hover {
  background: var(--brand-deep);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px var(--brand-glow);
}

.btn:active { transform: translateY(0); }

/* Ghost variant */
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule-strong);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-wash); }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="password"],
input[type="number"],
textarea,
select {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--inp-bg, var(--paper));
  border: 1px solid var(--inp-border, var(--rule-strong));
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  width: 100%;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 18%, transparent);
}

label {
  font-family: var(--font-headline);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-2);
}

/* ============================================================
   06 · EDITION STRIP (dark utility bar above the masthead)
   Pinned dark in both modes — the site's "press banner".
   ============================================================ */
.sz-edition-strip {
  background: #0B102C;
  border-bottom: 1px solid rgba(255, 197, 61, 0.18);
  color: rgba(238, 241, 251, 0.78);
}

.sz-edition-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 7px var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-score);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sz-edition-tag { color: rgba(238, 241, 251, 0.5); }

.sz-edition-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #FFC53D;
  font-weight: 700;
}
.sz-edition-live:hover { color: #FFE08A; }

.sz-edition-live .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FF5A3C;
  box-shadow: 0 0 0 0 rgba(255, 90, 60, 0.6);
  animation: sz-live-pulse 1.6s infinite;
}

@keyframes sz-live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 90, 60, 0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(255, 90, 60, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 90, 60, 0); }
}

/* Optional legacy top bar (Customizer toggle) */
.sz-top-bar {
  background: #0B102C;
  color: #F1E9D2;
  padding: 8px var(--space-5);
  font-family: var(--font-score);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
}

/* ============================================================
   07 · MASTHEAD — paper deck, heavy press rule
   ============================================================ */
.mast {
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
  position: relative;
  z-index: 200;
}

.mast-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px var(--space-5);
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 64px;
}

.mast-brand { border: none; }

.mast-logo {
  display: flex;
  align-items: center;
}

.mast-logo img {
  height: 42px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
}

/* Theme-mode logo swap */
.logo-dark-img { display: none; }
html[data-theme="dark"] .logo-light-img,
body.dark-mode .logo-light-img { display: none; }
html[data-theme="dark"] .logo-dark-img,
body.dark-mode .logo-dark-img { display: block; }

/* --- Primary navigation ------------------------------------ */
.header-navigation { overflow: visible; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-headline);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 8px 12px 10px;
  position: relative;
  border: none;
}

.nav-menu > li > a::after {
  content: '';
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 2px;
  height: 3px;
  background: var(--volt);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease-out);
}

.nav-menu > li > a:hover { color: var(--ink); }
.nav-menu > li > a:hover::after { transform: scaleX(1); }

.nav-menu > li.current-menu-item > a,
.nav-menu > li.current_page_item > a {
  color: var(--ink);
}
.nav-menu > li.current-menu-item > a::after,
.nav-menu > li.current_page_item > a::after { transform: scaleX(1); }

/* Dropdown submenus */
.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 8px;
  min-width: 210px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--brand);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-hover);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s var(--ease-out), transform 0.18s var(--ease-out), visibility 0.18s;
  z-index: 300;
}

.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu .sub-menu a {
  display: block;
  padding: 9px 16px;
  font-family: var(--font-headline);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-2);
  border: none;
}
.nav-menu .sub-menu a:hover { background: var(--brand-wash); color: var(--brand); }

/* --- Masthead action buttons -------------------------------- */
.header-search-btn,
.mobile-menu-toggle-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  color: var(--ink-2);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 0;
  flex-shrink: 0;
}

.header-search-btn:hover,
.mobile-menu-toggle-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: scale(1.05);
}

.header-search-btn .close-icon { display: none; }
.header-search-btn.active .close-icon { display: block; }
.header-search-btn.active .search-icon { display: none; }
.header-search-btn.active {
  background: #0E0D0B;
  color: #FFC53D;
  border-color: #0E0D0B;
}

.mobile-menu-toggle-btn { display: none; }
.mobile-menu-toggle-btn.active {
  background: #0E0D0B;
  color: #FFC53D;
  border-color: #0E0D0B;
}

/* --- Drop-down search deck ---------------------------------- */
.header-search-bar {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
  box-shadow: 0 24px 40px -22px rgba(14, 13, 11, 0.4);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s var(--ease-out), opacity 0.25s var(--ease-out);
  z-index: 190;
}

.header-search-bar.active {
  max-height: 130px;
  opacity: 1;
}

.search-bar-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 22px var(--space-5) 26px;
}

.search-input-wrapper {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.search-input-wrapper .search-field {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  border-width: 2px;
  border-color: var(--ink);
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.search-input-wrapper .search-submit {
  flex-shrink: 0;
  width: auto;
  padding: 0 22px;
}

/* --- Mobile navigation drawer ------------------------------- */
.mobile-navigation {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
  box-shadow: 0 30px 46px -20px rgba(14, 13, 11, 0.45);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.32s var(--ease-out), opacity 0.25s var(--ease-out);
  z-index: 195;
}

.mobile-navigation.active {
  max-height: min(75vh, 560px);
  opacity: 1;
  overflow-y: auto;
}

.mobile-menu-inner { padding: 14px var(--space-5) 22px; }

/* Drawer search — replaces the header search icon on phones */
.mobile-menu-search {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
}

.mobile-menu-search input {
  flex: 1;
  min-width: 0;
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid var(--rule-strong);
  border-radius: var(--radius-sm);
  padding: 10px 13px;
  background: var(--paper);
  color: var(--ink);
}

.mobile-menu-search input:focus {
  outline: none;
  border-color: var(--brand);
}

.mobile-menu-search button {
  flex-shrink: 0;
  width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.mobile-menu-search button:active { background: var(--brand-deep); }

.mobile-nav-menu li + li { border-top: 1px solid var(--rule); }

.mobile-nav-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 4px;
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
  border: none;
}

.mobile-nav-menu a::after {
  content: '→';
  font-size: 15px;
  color: var(--ink-4);
  transition: color 0.18s, transform 0.18s;
}

.mobile-nav-menu a:hover { color: var(--brand); }
.mobile-nav-menu a:hover::after { color: var(--volt); transform: translateX(3px); }

.mobile-nav-menu .sub-menu {
  padding-left: 14px;
  border-top: 1px solid var(--rule);
}
.mobile-nav-menu .sub-menu a { font-size: 14px; color: var(--ink-2); }

.mobile-menu-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 3px solid var(--ink);
}

.mobile-social-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-pill);
  color: var(--ink-2);
}
.mobile-social-link:hover {
  background: var(--ink);
  color: var(--volt);
  border-color: var(--ink);
}

/* ============================================================
   08 · BREAKING TICKER — volt floodlight strip
   ============================================================ */
.sz-breaking-ticker {
  display: flex;
  align-items: stretch;
  background: var(--volt);
  border-bottom: 1px solid rgba(36, 21, 0, 0.35);
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.sz-ticker-title {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  background: #0B102C;
  color: #FFC53D;
  font-family: var(--font-headline);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 26px 9px max(calc((100vw - 1100px) / 2 + 20px), 20px);
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  position: relative;
  z-index: 2;
}

.sz-ticker-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF5A3C;
  animation: sz-live-pulse 1.6s infinite;
  flex-shrink: 0;
}

.sz-ticker-content {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  mask-image: linear-gradient(90deg, transparent 0, #000 26px, #000 calc(100% - 30px), transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 26px, #000 calc(100% - 30px), transparent);
}

.sz-ticker-track {
  display: flex;
  width: max-content;
  animation: sz-ticker-marquee 44s linear infinite;
}

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

@keyframes sz-ticker-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.sz-ticker-scroll-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.sz-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 30px 0 14px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--volt-ink);
  white-space: nowrap;
}

.sz-ticker-item a {
  color: var(--volt-ink);
  border: none;
}
.sz-ticker-item a:hover { text-decoration: underline; text-decoration-thickness: 2px; }

.sz-ticker-badge {
  font-family: var(--font-score);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  background: var(--volt-ink);
  color: var(--volt);
  flex-shrink: 0;
}

.sz-ticker-badge.upcoming {
  background: transparent;
  color: var(--volt-ink);
  box-shadow: inset 0 0 0 1.5px var(--volt-ink);
}

/* ============================================================
   09 · SECTION HEADERS — press rules + skewed slab
   ============================================================ */
.section-title {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--font-headline);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 12px;
  border-bottom: 3px solid var(--ink);
  margin-bottom: 24px;
}

.section-title::before {
  content: '';
  width: 11px;
  height: 26px;
  background: var(--cat, var(--brand));
  transform: skewX(-14deg);
  flex-shrink: 0;
}

.section-title a {
  color: inherit;
  border: none;
}
.section-title a:hover { color: var(--cat, var(--brand)); }

.section-title span { color: var(--cat, var(--brand)); }

.accent-gradient {
  background: var(--grad-cool);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Kicker — small colored eyebrow above blocks */
.category-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-headline);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cat, var(--brand));
  border: none;
  width: fit-content;
}

.category-badge::before {
  content: '';
  width: 16px;
  height: 3px;
  background: currentColor;
  flex-shrink: 0;
}

a.category-badge:hover { color: var(--ink); }

/* ============================================================
   10 · NEWS CARDS — the workhorse
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.news-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.news-grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.news-grid.cols-1 { grid-template-columns: minmax(0, 1fr); }

/* Single-story category: lay the lone card out as a horizontal lead row
   instead of one gigantic stacked card. (card-link carries an inline
   flex-direction:column, hence the !important.) */
.news-grid.cols-1 .news-card .card-link { flex-direction: row !important; }
.news-grid.cols-1 .news-card .card-img-holder {
  flex: 0 0 46%;
  aspect-ratio: 16 / 9;
  min-height: 0;
}
.news-grid.cols-1 .news-card .card-body {
  justify-content: center;
  padding: 24px 28px;
}
.news-grid.cols-1 .news-card .card-title { font-size: clamp(22px, 3vw, 30px); }

.news-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), border-color 0.28s var(--ease-out);
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--cat, var(--brand));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.34s var(--ease-out);
  z-index: 3;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--rule-strong);
}
.news-card:hover::before { transform: scaleX(1); }

.news-card .card-link { border: none; color: inherit; }

.card-img-holder {
  position: relative;
  aspect-ratio: 16 / 9.4;
  background: var(--recess);
  overflow: hidden;
  border: none;
  display: block;
}

.card-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.news-card:hover .card-img-holder img { transform: scale(1.045); }

.card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 18px 16px;
  flex: 1;
}

.card-title {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.18;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.18s var(--ease-out);
}

.news-card:hover .card-title { color: var(--cat, var(--brand)); }

.card-excerpt {
  font-size: 13.5px;
  line-height: 1.58;
  color: var(--ink-3);
}

.card-excerpt p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  margin-top: auto;
  padding-top: 11px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--font-score);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.card-meta .meta-author { color: var(--ink-3); }

/* 404 / compact card body variant */
.news-card-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 8px; }
.news-card-title {
  font-family: var(--font-headline);
  font-size: 16.5px;
  font-weight: 800;
  line-height: 1.2;
}
.news-card-title a { border: none; color: var(--ink); }
.news-card-title a:hover { color: var(--brand); }
.news-card-meta {
  font-family: var(--font-score);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
}

/* --- Featured lead card (archives, page 1) ------------------ */
.news-grid.has-featured .featured-card {
  grid-column: 1 / -1;
  flex-direction: row;
  min-height: 320px;
}

.news-grid.has-featured .featured-card .card-link {
  display: flex !important;
  flex-direction: row !important;
  width: 100%;
}

.news-grid.has-featured .featured-card .card-img-holder {
  flex: 0 0 54%;
  aspect-ratio: auto;
  min-height: 100%;
}

.news-grid.has-featured .featured-card .card-body {
  justify-content: center;
  padding: 28px 32px;
  gap: 13px;
}

.news-grid.has-featured .featured-card .card-title {
  font-size: clamp(22px, 3vw, 31px);
  -webkit-line-clamp: 4;
}

.news-grid.has-featured .featured-card .card-excerpt {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
}

/* ============================================================
   11 · BENTO CATEGORY PACKAGE (1 lead + stacked briefs)
   ============================================================ */
.category-block-section,
.latest-news-section {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.category-bento-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.bento-featured-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
  height: 100%;
}

.bento-featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--cat, var(--brand));
  z-index: 3;
}

.bento-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.bento-card-img {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--recess);
  overflow: hidden;
}

.bento-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.bento-featured-card:hover .bento-card-img img { transform: scale(1.045); }

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

.bento-card-title {
  font-family: var(--font-headline);
  font-size: clamp(19px, 2.3vw, 25px);
  font-weight: 800;
  line-height: 1.16;
}

.bento-card-title a { border: none; color: var(--ink); }
.bento-card-title a:hover { color: var(--cat, var(--brand)); }

.bento-card-excerpt {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
}

.bento-card-meta {
  margin-top: auto;
  padding-top: 11px;
  border-top: 1px solid var(--rule);
  font-family: var(--font-score) !important;
  font-size: 10px !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4) !important;
}

/* Brief list — right column */
.bento-list-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.bento-list-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  flex: 1;
  transition: background-color 0.2s var(--ease-out);
  position: relative;
}

.bento-list-item + .bento-list-item { border-top: 1px solid var(--rule); }

.bento-list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--cat, var(--brand));
  transform: scaleY(0);
  transition: transform 0.22s var(--ease-out);
}

.bento-list-item:hover { background: var(--brand-wash); }
.bento-list-item:hover::before { transform: scaleY(1); }

.bento-list-img {
  flex-shrink: 0;
  width: 86px;
  height: 62px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--recess);
  position: relative;
}

.bento-list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-list-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.bento-list-date {
  font-family: var(--font-score);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.bento-list-title {
  font-family: var(--font-headline);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bento-list-title a { border: none; color: var(--ink); }
.bento-list-item:hover .bento-list-title a { color: var(--cat, var(--brand)); }

/* ============================================================
   12 · HOMEPAGE LEAD SLIDER — floodlit front page
   ============================================================ */
.home-slider-section {
  max-width: 1100px;
  margin: 20px auto 8px;
  padding: 0 var(--space-5);
}

.home-slider-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--rule-strong);
  box-shadow: var(--shadow-card);
  background: var(--grad-ink);
  /* True 16:9 frame — matches the site's 1920×1080 featured images exactly,
     so slides show the full artwork with zero cropping. Slides stay
     position:absolute, so a late-failing lazy image can never change the
     container height (height jitter triggers Chrome scroll anchoring). */
  aspect-ratio: 16 / 9;
}

.home-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s var(--ease-out), visibility 0.55s;
  z-index: 1;
}

.home-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.home-slide .slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-img-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #14200F; /* fallback: no color-mix() support */
  background:
    radial-gradient(720px 300px at 85% -10%, color-mix(in srgb, #FFC53D 16%, transparent), transparent 60%),
    linear-gradient(150deg, #0B102C 0%, #1D2547 100%);
}

.slide-img-fallback span {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 54px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 197, 61, 0.65);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(22px, 4vw, 42px);
  background: linear-gradient(to top,
    rgba(10, 14, 6, 0.94) 0%,
    rgba(10, 14, 6, 0.55) 38%,
    rgba(10, 14, 6, 0.12) 70%,
    rgba(10, 14, 6, 0.05) 100%);
  z-index: 3;
}

.slide-overlay .category-badge {
  background: var(--volt);
  color: var(--volt-ink);
  padding: 5px 12px;
  font-size: 11px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  margin-bottom: 12px;
}
.slide-overlay .category-badge::before { display: none; }
.slide-overlay a.category-badge:hover { background: #FFE08A; color: var(--volt-ink); }

.slide-title {
  font-family: var(--font-headline);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.015em;
  max-width: 24ch;
  margin: 0 0 12px;
}

.slide-title a {
  color: #FFFFFF;
  border: none;
  background-image: linear-gradient(var(--volt), var(--volt));
  background-repeat: no-repeat;
  background-size: 0% 4px;
  background-position: 0 96%;
  transition: background-size 0.35s var(--ease-out);
}

.slide-title a:hover {
  color: #FFFFFF;
  background-size: 100% 4px;
}

.slide-meta {
  display: flex;
  gap: 16px;
  font-family: var(--font-score);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(238, 241, 251, 0.72);
}

.slide-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(238, 241, 251, 0.25);
  border-radius: var(--radius-sm);
  background: rgba(10, 14, 6, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #F1E9D2;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.slide-nav-btn:hover {
  background: var(--volt);
  color: var(--volt-ink);
  border-color: var(--volt);
}

.slide-nav-btn.prev { left: 14px; }
.slide-nav-btn.next { right: 14px; }

/* Dots — progress bars, volt fill paced by --sz-delay */
.slide-dots {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 6;
  display: flex;
  gap: 7px;
}

.slide-dot {
  width: 26px;
  height: 5px;
  border: none;
  border-radius: 3px;
  background: rgba(238, 241, 251, 0.32);
  cursor: pointer;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: background-color 0.2s var(--ease-out);
}

.slide-dot:hover { background: rgba(238, 241, 251, 0.55); }

.slide-dot.active { background: rgba(238, 241, 251, 0.35); }

.slide-dot.active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--volt);
  transform-origin: left;
  animation: sz-dot-progress var(--sz-delay, 6000ms) linear forwards;
}

.home-slider-container:hover .slide-dot.active::after { animation-play-state: paused; }

@keyframes sz-dot-progress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ============================================================
   13 · HOMEPAGE SECTION REVEAL
   ============================================================ */
.home-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.home-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   14 · MISSING IMAGE PLACEHOLDER — branded floodlight panel
   ============================================================ */
.sz-img-missing { position: relative; }

.sz-img-missing::after {
  content: 'SPORTSTIGER';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #14200F; /* fallback: no color-mix() support */
  background:
    radial-gradient(420px 200px at 80% -20%, color-mix(in srgb, #FFC53D 18%, transparent), transparent 60%),
    linear-gradient(150deg, #0B102C 0%, #1D2547 100%);
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(255, 197, 61, 0.6);
  font-family: var(--font-display);
  font-size: clamp(13px, 2.4vw, 20px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 2;
}

.bento-list-img.sz-img-missing::after,
.rail-thumb.sz-img-missing::after {
  font-size: 8px;
  -webkit-text-stroke: 0.6px rgba(255, 197, 61, 0.6);
}

.post-featured-image.sz-img-missing { min-height: 220px; }

.bento-img-fallback {
  background: #14200F !important; /* fallback: no color-mix() support */
  background:
    radial-gradient(420px 200px at 80% -20%, color-mix(in srgb, #FFC53D 14%, transparent), transparent 60%),
    linear-gradient(150deg, #0B102C 0%, #1D2547 100%) !important;
}

/* ============================================================
   15 · ARCHIVES, SEARCH & PAGINATION
   ============================================================ */
.main-content > .section-title { margin-top: 8px; }

.archive-description {
  max-width: 70ch;
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-2);
  margin: -10px 0 24px;
}

.sz-search-count {
  font-family: var(--font-score);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: -12px 0 22px;
}

.sz-no-results {
  grid-column: 1 / -1;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--brand);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 48px 28px 44px;
  text-align: center;
}

.sz-no-results h3 {
  font-size: 23px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sz-no-results p {
  color: var(--ink-3);
  max-width: 46ch;
  margin: 0 auto 20px;
}

.sz-no-results-search {
  max-width: 420px;
  margin: 0 auto 18px;
}

.sz-no-results-search .search-form { display: flex; gap: 10px; }

.sz-no-results-link {
  font-family: var(--font-headline);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand);
  border: none;
}
.sz-no-results-link:hover { color: var(--brand-deep); }

.pagination-container {
  margin: 40px 0 20px;
  display: flex;
  justify-content: center;
}

.pagination-container .page-numbers {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.pagination-container .page-numbers li { display: block; }

.pagination-container a.page-numbers,
.pagination-container span.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  font-family: var(--font-headline);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

.pagination-container a.page-numbers:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-wash);
}

.pagination-container span.page-numbers.current {
  background: #0E0D0B;
  color: #FFC53D;
  border-color: #0E0D0B;
}

.pagination-container span.page-numbers.dots {
  border: none;
  background: transparent;
  color: var(--ink-4);
}

/* ============================================================
   16 · SINGLE ARTICLE — press magazine layout
   ============================================================ */
.single-post-main { padding-top: 30px; padding-bottom: 70px; }

.single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 26px;
  align-items: start;
}

.single-post-container,
.page-container {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: clamp(22px, 4vw, 44px);
  overflow: hidden;
}

.post-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-score);
  font-size: 10.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 18px;
}

.post-breadcrumb a { color: var(--ink-3); border: none; }
.post-breadcrumb a:hover { color: var(--brand); }

.post-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}

.post-title {
  font-family: var(--font-headline);
  font-size: clamp(28px, 4.6vw, 46px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.post-header {
  padding-bottom: 22px;
  border-bottom: 3px solid var(--ink);
  margin-bottom: 24px;
}

/* Standfirst — editorial dek under the headline (manual excerpt only) */
.post-standfirst {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 18.5px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 62ch;
  margin: -6px 0 18px;
}

/* Byline bar — press strip above the artwork */
.post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--rule);
  padding-top: 15px;
}

.post-meta .meta-avatar img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--volt);
}

.post-views-chip {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-score);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  border: 1px solid var(--rule-strong);
  border-radius: 3px;
  padding: 6px 10px;
  white-space: nowrap;
}

.post-views-chip svg { opacity: 0.7; }

.post-meta .meta-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.post-meta .meta-author {
  font-family: var(--font-headline);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.post-meta .meta-author a { border: none; color: var(--ink); }
.post-meta .meta-author a:hover { color: var(--brand); }

.post-meta .meta-date {
  font-family: var(--font-score);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.post-featured-image {
  position: relative;
  margin: 0 0 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--recess);
}

.post-featured-image img { width: 100%; }

.post-views-bar { color: var(--ink-3); }

/* --- Article body typography -------------------------------- */
.entry-content,
.post-content {
  font-size: 16.5px;
  line-height: 1.78;
  color: var(--ink-2);
}

/* Vertical rhythm — explicit bottom-margin model.
   (A single `> * + *` owl rule loses to any `.entry-content p` styling
   on specificity and silently zeroes paragraph gaps — never reintroduce.) */
.entry-content > * {
  margin-top: 0;
  margin-bottom: 1.3em;
}

.entry-content > :last-child { margin-bottom: 0; }

/* Multi-paragraph quotes and list items keep internal spacing */
.entry-content blockquote p + p { margin-top: 0.85em; }
.entry-content li p { margin-bottom: 0.5em; }

/* Opening paragraph: larger lede + press drop cap (articles only) */
.single-post-container .entry-content > p:first-of-type {
  font-size: 18px;
  line-height: 1.72;
  color: var(--ink);
}

.single-post-container .entry-content > p:first-of-type::first-letter {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 3.35em;
  line-height: 0.8;
  float: left;
  padding: 7px 12px 2px 0;
  color: var(--brand);
}

/* End-of-article press mark */
.single-post-container .entry-content::after {
  content: '';
  display: block;
  clear: both;
  width: 40px;
  height: 6px;
  margin-top: 2.2em;
  background: var(--brand);
  transform: skewX(-14deg);
  box-shadow: 52px 0 0 var(--volt), 104px 0 0 var(--rule-strong);
}

.entry-content a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  text-decoration-color: color-mix(in srgb, var(--brand) 45%, transparent);
}

.entry-content a:hover {
  color: var(--brand-deep);
  text-decoration-color: var(--brand-deep);
  background: color-mix(in srgb, var(--volt) 35%, transparent);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: var(--ink);
  line-height: 1.15;
}

/* Headings: generous air above (new section), tight-but-clear gap below */
.entry-content h2 { margin-top: 1.9em; margin-bottom: 0.85em; }
.entry-content h3 { margin-top: 1.6em; margin-bottom: 0.65em; }
.entry-content h4 { margin-top: 1.5em; margin-bottom: 0.6em; }

/* No dead air when a heading opens the article or follows another heading */
.entry-content > h2:first-child,
.entry-content > h3:first-child,
.entry-content > h4:first-child { margin-top: 0; }

.entry-content h2 + h3,
.entry-content h3 + h4 { margin-top: 0.35em; }

.entry-content h2 {
  font-size: 25px;
  font-weight: 800;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--rule-strong);
}

.entry-content h2::before {
  content: '';
  display: inline-block;
  width: 9px;
  height: 19px;
  background: var(--brand);
  transform: skewX(-14deg);
  margin-right: 11px;
}

.entry-content h3 { font-size: 20.5px; }
.entry-content h4 { font-size: 17.5px; }

.entry-content ul,
.entry-content ol {
  padding-left: 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.entry-content ul:not(.sz-toc-list) li,
.entry-content ol li {
  position: relative;
  padding-left: 24px;
}

.entry-content ul:not(.sz-toc-list) li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 0.62em;
  width: 10px;
  height: 3px;
  background: var(--brand);
}

.entry-content ol { counter-reset: sz-ol; }
.entry-content ol li { counter-increment: sz-ol; }
.entry-content ol li::before {
  content: counter(sz-ol, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.18em;
  font-family: var(--font-headline);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
}

.entry-content blockquote {
  position: relative;
  background: var(--brand-wash);
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px 20px 26px;
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
}

.entry-content blockquote cite {
  display: block;
  margin-top: 10px;
  font-family: var(--font-score);
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.entry-content img {
  border-radius: var(--radius-md);
}

.entry-content figure,
.entry-content .wp-block-image { margin: 1.8em 0; }

.entry-content figcaption,
.entry-content .wp-caption-text {
  font-family: var(--font-score);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-4);
  padding: 8px 2px 0;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 8px;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.entry-content table th {
  font-family: var(--font-headline);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: left;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
}

html[data-theme="dark"] .entry-content table th,
body.dark-mode .entry-content table th { color: var(--canvas); }

.entry-content table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--rule);
}

.entry-content table tr:nth-child(even) td { background: color-mix(in srgb, var(--recess) 45%, transparent); }

.entry-content pre {
  background: var(--grad-ink);
  color: #CDD5EC;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  overflow-x: auto;
  font-family: var(--font-score);
  font-size: 13px;
  line-height: 1.6;
}

.entry-content code {
  font-family: var(--font-score);
  font-size: 0.88em;
  background: var(--recess);
  border-radius: 4px;
  padding: 2px 6px;
}

.entry-content pre code { background: none; padding: 0; }

.entry-content hr {
  border: none;
  height: 3px;
  background: var(--ink);
  width: 76px;
  margin: 2em 0;
}

.page-links {
  margin-top: 24px;
  font-family: var(--font-headline);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  gap: 8px;
  align-items: center;
}

/* --- Author box ---------------------------------------------- */
.post-author-box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--brand-wash);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin-top: 34px;
}

.post-author-box .author-avatar img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--volt);
}

.author-box-kicker {
  display: block;
  font-family: var(--font-score);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 5px;
}

.post-author-box .author-title {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.post-author-box .author-title a { border: none; color: var(--ink); }
.post-author-box .author-title a:hover { color: var(--brand); }

.post-author-box .author-bio {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
}

/* --- Post footer / tags / prev-next --------------------------- */
.post-footer { margin-top: 30px; }

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 26px;
}

.post-tags .tags-title {
  font-family: var(--font-headline);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-right: 4px;
}

.post-tags a {
  display: inline-flex;
  font-family: var(--font-score);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--recess);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 5px 10px;
}

.post-tags a:hover {
  background: var(--volt);
  color: var(--volt-ink);
  border-color: var(--volt-ink);
}

.post-navigation-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 8px;
}

.nav-link-item a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth), box-shadow 0.25s var(--ease-out);
}

.nav-link-item a:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-card);
  color: inherit;
}

.nav-link-item .nav-subtitle {
  font-family: var(--font-score);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brand);
}

.nav-link-item .nav-title {
  font-family: var(--font-headline);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
}

.nav-link-item.nav-next { text-align: right; }
.nav-link-item.nav-next a { align-items: flex-end; }

/* --- Sidebar rail --------------------------------------------- */
.single-rail {
  position: sticky;
  top: 92px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rail-panel {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 18px;
}

.rail-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-headline);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 14px;
}

.rail-kicker::before {
  content: '';
  width: 8px;
  height: 15px;
  background: var(--brand);
  transform: skewX(-14deg);
}

.post-share-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--rule-strong);
  color: var(--ink-2);
  transition: var(--transition-smooth);
}

.share-btn:hover { transform: translateY(-2px); color: #fff; }
.share-btn.fb:hover { background: #1877F2; border-color: #1877F2; }
.share-btn.tw:hover { background: #0F1419; border-color: #0F1419; }
.share-btn.wa:hover { background: #25D366; border-color: #25D366; }
.share-btn.ln:hover { background: #0A66C2; border-color: #0A66C2; }

.rail-related {
  display: flex;
  flex-direction: column;
}

.rail-related li + li { border-top: 1px solid var(--rule); }

.rail-related a {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 11px 2px;
  border: none;
}

.rail-thumb {
  flex-shrink: 0;
  width: 66px;
  height: 50px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--recess);
  position: relative;
  display: block;
}

.rail-thumb img { width: 100%; height: 100%; object-fit: cover; }

.rail-rel-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.rail-rel-body strong {
  font-family: var(--font-headline);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.18s;
}

.rail-related a:hover strong { color: var(--brand); }

.rail-rel-body em {
  font-family: var(--font-score);
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
}

/* Match Centre CTA — floodlit panel */
.rail-cta {
  background: #14200F; /* fallback: no color-mix() support */
  background:
    radial-gradient(320px 170px at 90% -12%, color-mix(in srgb, #FFC53D 22%, transparent), transparent 62%),
    linear-gradient(150deg, #0B102C 0%, #1D2547 100%);
  border: 1px solid rgba(255, 197, 61, 0.25);
  color: #F1E9D2;
}

.rail-kicker-light {
  color: #FFC53D;
  border-bottom-color: rgba(255, 197, 61, 0.4);
}
.rail-kicker-light::before { background: #FFC53D; }

.rail-cta h3 {
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.rail-cta p {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(238, 241, 251, 0.72);
  margin-bottom: 16px;
}

.rail-cta-btn {
  background: var(--volt);
  color: var(--volt-ink);
  width: 100%;
}

.rail-cta-btn:hover {
  background: #FFE08A;
  color: var(--volt-ink);
  box-shadow: 0 8px 20px -8px rgba(255, 197, 61, 0.5);
}

/* Read Next — full-width strip under the article */
.post-read-next {
  margin-top: 44px;
}

.post-read-next .news-card .card-img-holder { border: none; }

/* ============================================================
   17 · COMMENTS
   ============================================================ */
.comments-area { margin-top: 34px; }

.comments-title,
.comment-reply-title {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--ink);
  margin-bottom: 20px;
}

.comments-title::before,
.comment-reply-title::before {
  content: '';
  width: 9px;
  height: 20px;
  background: var(--brand);
  transform: skewX(-14deg);
}

.comment-list { display: flex; flex-direction: column; gap: 14px; }

.comment-list .comment,
.comment-list .pingback {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}

.comment-list .children {
  margin-top: 14px;
  padding-left: 18px;
  border-left: 3px solid var(--rule-strong);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.comment-author img {
  border-radius: var(--radius-pill);
  border: 2px solid var(--volt);
}

.comment-metadata {
  font-family: var(--font-score);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin: 4px 0 10px;
}

.comment-metadata a { color: inherit; border: none; }

.comment-content {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-2);
}

.comment .reply { margin-top: 10px; }

.comment .reply a {
  font-family: var(--font-headline);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  border: none;
}

.comment .reply a:hover { color: var(--brand-deep); }

.no-comments,
.comments-empty-state {
  text-align: center;
  color: var(--ink-3);
  background: var(--recess);
  border-radius: var(--radius-md);
  padding: 26px;
  font-size: 14.5px;
}

.comments-empty-state .empty-icon { font-size: 26px; margin-bottom: 6px; }

.comment-form { display: flex; flex-direction: column; gap: 14px; }

.comment-form-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.comment-form p { display: flex; flex-direction: column; gap: 6px; }

.comment-form .comment-notes,
.comment-form .logged-in-as {
  font-size: 12.5px;
  color: var(--ink-3);
}

.comment-form .comment-notes a,
.comment-form .logged-in-as a { color: var(--brand); }

.comment-form textarea { min-height: 130px; resize: vertical; }

.comment-form .form-submit { align-items: flex-start; }

/* ============================================================
   18 · GENERIC PAGES & CONTACT
   ============================================================ */
.page-main { padding-top: 30px; padding-bottom: 70px; }

.page-header { margin-bottom: 22px; }

.page-title,
.page-hero-title {
  font-size: clamp(25px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
}

.page-title::before,
.page-hero-title::before {
  content: '';
  width: 12px;
  height: 30px;
  background: var(--brand);
  transform: skewX(-14deg);
  flex-shrink: 0;
}

.page-subtitle {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-2);
  margin-top: 10px;
}

.page-featured-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
}

.page-content { margin-top: 6px; }

.page-footer { margin-top: 26px; }

/* Contact */
.sz-contact-form-wrap {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--brand);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: clamp(20px, 3.5vw, 34px);
  margin-top: 26px;
}

.contact-form-title {
  font-size: 21px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-form-desc {
  font-size: 14.5px;
  color: var(--ink-3);
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.form-group textarea { min-height: 150px; resize: vertical; }

.form-submit-wrap { margin-top: 6px; }

.sz-contact-submit-btn { min-width: 190px; position: relative; }

.btn-spinner {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: sz-spin 0.7s linear infinite;
  display: none;
}

.sz-contact-submit-btn.loading .btn-spinner { display: inline-block; }
.sz-contact-submit-btn.loading .btn-text { opacity: 0.75; }

@keyframes sz-spin { to { transform: rotate(360deg); } }

.sz-form-response {
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
}

.sz-form-response.success {
  background: color-mix(in srgb, var(--brand) 12%, var(--paper));
  color: var(--brand-deep);
  border: 1px solid color-mix(in srgb, var(--brand) 40%, transparent);
}

.sz-form-response.error {
  background: color-mix(in srgb, var(--accent) 10%, var(--paper));
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
}

/* ============================================================
   19 · SCHEDULE / FIXTURES PAGE
   ============================================================ */
.schedule-page-main .section-title { border-bottom: none; padding-bottom: 0; }

.schedule-filter-panel {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 18px;
  margin: 22px 0 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.schedule-sport-tabs-container {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.schedule-sport-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-headline);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--canvas);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-sm);
  padding: 9px 18px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.schedule-sport-tab:hover { border-color: var(--brand); color: var(--brand); }

.schedule-sport-tab.active {
  /* pinned: --ink flips light in dark mode and would wash the chip out */
  background: #0E0D0B;
  color: #FFC53D;
  border-color: #0E0D0B;
}

.schedule-dropdown-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 12px;
}

.schedule-field-wrapper { position: relative; }

.schedule-field-wrapper .field-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-4);
  display: flex;
  pointer-events: none;
}

.schedule-field-wrapper input,
.schedule-select { padding-left: 38px; }

.schedule-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236C7561' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  cursor: pointer;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.schedule-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.schedule-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.card-status-ribbon {
  height: 3px;
  background: var(--grad-cool);
}

.schedule-card-header {
  padding: 13px 16px 11px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 7px;
}

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

.sport-label {
  font-family: var(--font-headline);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}

.sport-label.label-football { color: var(--cat-football); }
.sport-label.label-cricket { color: var(--cat-cricket); }

.match-type-badge {
  font-family: var(--font-score);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--recess);
  border: 1px solid var(--rule);
  color: var(--ink-2);
  border-radius: 3px;
  padding: 3px 7px;
}

.tournament-name {
  font-family: var(--font-score);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.schedule-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 16px;
  flex: 1;
}

.schedule-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  flex: 1;
  min-width: 0;
}

.team-badge {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  border: 2px solid var(--rule);
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
}

.team-name-text {
  font-family: var(--font-headline);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.schedule-versus-area { flex-shrink: 0; }

.vs-label {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink-4);
  background: var(--recess);
  border-radius: var(--radius-sm);
  padding: 7px 10px;
  transform: skewX(-8deg);
}

.schedule-card-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--rule);
  background: color-mix(in srgb, var(--recess) 40%, transparent);
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: var(--ink-2);
  min-width: 0;
}

.footer-info .footer-icon { color: var(--brand); display: flex; flex-shrink: 0; }

.formatted-date { font-weight: 600; }

.venue-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.schedule-card-action { padding: 0 16px 16px; }

.schedule-card-action .card-btn { width: 100%; }

.see-more-container { margin-top: 32px; }

.schedule-no-results,
.sixes-no-results {
  text-align: center;
  background: var(--paper);
  border: 1px dashed var(--rule-strong);
  border-radius: var(--radius-md);
  padding: 48px 24px;
  margin-top: 10px;
}

.no-results-icon { font-size: 34px; margin-bottom: 10px; }

.no-results-title {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.no-results-desc { color: var(--ink-3); margin-bottom: 18px; }

/* ============================================================
   20 · LONGEST SIXES RECORD BOOK
   ============================================================ */
.sixes-page-container { padding-bottom: 30px; }

.sixes-controls-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 14px 16px;
  margin: 22px 0 26px;
}

.sixes-search-wrapper {
  position: relative;
  flex: 1;
  min-width: 220px;
}

.sixes-search-wrapper .search-icon-inside {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-4);
  display: flex;
  pointer-events: none;
}

.sixes-search-wrapper input { padding-left: 38px; }

.sixes-tabs-wrapper { display: flex; gap: 8px; }

.sixes-tab-btn {
  font-family: var(--font-headline);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--canvas);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.sixes-tab-btn:hover { border-color: var(--brand); color: var(--brand); }

.sixes-tab-btn.active {
  background: #0E0D0B;
  color: #FFC53D;
  border-color: #0E0D0B;
}

.sixes-sort-wrapper { min-width: 180px; }

.sixes-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.six-bento-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 18px;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.six-bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-glow-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(300px 160px at 88% -12%, color-mix(in srgb, var(--volt) 22%, transparent), transparent 62%);
  pointer-events: none;
}

.card-trajectory-line {
  position: absolute;
  right: -22px;
  top: 26px;
  width: 130px;
  height: 60px;
  border-top: 2px dashed color-mix(in srgb, var(--brand) 40%, transparent);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: rotate(-8deg);
  pointer-events: none;
}

.card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  position: relative;
}

.six-cat-badge {
  font-family: var(--font-headline);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}

.six-cat-badge.leagues { color: var(--cat-gaming); }

.six-match-type {
  font-family: var(--font-score);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--recess);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 3px 7px;
  color: var(--ink-2);
}

.card-middle-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0 14px;
  position: relative;
}

.six-distance-display {
  display: flex;
  align-items: baseline;
  gap: 3px;
  flex-shrink: 0;
}

.distance-number {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 400;
  line-height: 0.9;
  color: var(--brand);
  letter-spacing: 0.01em;
}

.distance-unit {
  font-family: var(--font-headline);
  font-size: 17px;
  font-weight: 800;
  color: var(--ink-4);
}

.six-player-details { min-width: 0; }

.six-player-name {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: 0;
}

.six-player-team {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--ink-3);
}

.card-divider { height: 1px; background: var(--rule); margin-bottom: 12px; position: relative; }

.card-bottom-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
}

.six-info-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-size: 12.5px;
  min-width: 0;
}

.six-info-item .info-label {
  font-family: var(--font-score);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
  flex-shrink: 0;
}

.six-info-item .info-value {
  color: var(--ink-2);
  font-weight: 600;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.six-info-item .year { color: var(--brand); font-weight: 700; }

/* ============================================================
   21 · GENERIC LEAGUE / DATA TABLES
   ============================================================ */
.winners-table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-card);
}

.winners-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 460px;
}

.winners-table th {
  font-family: var(--font-headline);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: left;
  background: var(--ink);
  /* paper, not a literal: keeps the inverted header readable in dark mode */
  color: var(--paper);
  padding: 11px 16px;
}

.winners-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--rule);
}

.winners-table tr:last-child td { border-bottom: none; }
.winners-table tr:nth-child(even) td { background: color-mix(in srgb, var(--recess) 45%, transparent); }

.winners-table .year-cell {
  font-family: var(--font-headline);
  font-weight: 700;
  color: var(--brand);
}

.winners-table .winner-cell { font-weight: 600; }

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ============================================================
   22 · FOOTER — floodlit pine deck
   ============================================================ */
.sz-footer {
  margin-top: 60px;
  /* Solid fallback FIRST: browsers without color-mix() drop the entire
     gradient declaration below, which left the footer white on older
     phones. Never remove this line. */
  background: #11170D;
  background:
    radial-gradient(900px 320px at 85% -10%, color-mix(in srgb, #FFC53D 10%, transparent), transparent 60%),
    linear-gradient(150deg, #0B102C 0%, #1A2412 100%);
  border-top: 4px solid var(--volt);
  color: #E7EDDA;
  padding: 52px var(--space-5) 34px;
}

.sz-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
}

.sz-footer-inner.cols-2 { grid-template-columns: 1.4fr 1fr; }
.sz-footer-inner.cols-3 { grid-template-columns: 1.5fr 1fr 1fr; }
.sz-footer-inner.cols-4 { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }

.footer-col { min-width: 0; }

/* On the pinned-dark footer, always use the dark-bg (light) logo */
.sz-footer .logo-light-img { display: none; }
.sz-footer .logo-dark-img { display: block; }

.sz-footer-logo {
  width: var(--footer-logo-w, 165px);
  height: auto;
}

.sz-footer-brand a { border: none; }

.sz-footer-mark {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 14px;
}

.sz-footer-mark .tag {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 15.5px;
  color: rgba(238, 241, 251, 0.85);
}

.sz-footer-mark .origin {
  font-family: var(--font-score);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(238, 241, 251, 0.45);
}

.sz-footer-socials {
  display: flex;
  gap: 9px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.sz-footer-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(238, 241, 251, 0.22);
  border-radius: var(--radius-pill);
  color: rgba(238, 241, 251, 0.8);
  transition: var(--transition-smooth);
}

.sz-footer-link:hover {
  background: var(--volt);
  border-color: var(--volt);
  color: var(--volt-ink);
  transform: translateY(-2px);
}

.footer-col-title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-headline);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-col-title::before {
  content: '';
  width: 8px;
  height: 15px;
  background: var(--volt);
  transform: skewX(-14deg);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-links-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(238, 241, 251, 0.68);
  border: none;
  transition: color 0.18s var(--ease-out), transform 0.18s var(--ease-out);
}

.footer-links-list a::before {
  content: '';
  width: 10px;
  height: 2px;
  background: rgba(238, 241, 251, 0.25);
  transition: background-color 0.18s, width 0.18s;
}

.footer-links-list a:hover {
  color: #FFC53D;
  transform: translateX(2px);
}

.footer-links-list a:hover::before { background: #FFC53D; width: 15px; }

.footer-col p { color: rgba(238, 241, 251, 0.62) !important; }

/* Footer newsletter */
.sz-footer-newsletter { margin-top: 26px; }

.sz-footer-nl-form {
  display: flex;
  gap: 8px;
}

.sz-footer-nl-form input {
  flex: 1;
  background: rgba(238, 241, 251, 0.07);
  border: 1px solid rgba(238, 241, 251, 0.22);
  color: #FFFFFF;
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 14px;
  min-width: 0;
}

.sz-footer-nl-form input::placeholder { color: rgba(238, 241, 251, 0.42); }

.sz-footer-nl-form input:focus {
  outline: none;
  border-color: var(--volt);
  box-shadow: 0 0 0 3px rgba(255, 197, 61, 0.18);
}

.sz-footer-nl-form button {
  flex-shrink: 0;
  font-family: var(--font-headline);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--volt-ink);
  background: var(--volt);
  border: none;
  border-radius: var(--radius-sm);
  padding: 11px 18px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.sz-footer-nl-form button:hover { background: #FFE08A; transform: translateY(-1px); }

.sz-footer-nl-msg {
  min-height: 18px;
  margin-top: 9px;
  font-size: 12.5px;
  color: #FFC53D;
}

/* Footer bottom bar */
.sz-footer-bottom {
  max-width: 1100px;
  margin: 42px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(238, 241, 251, 0.16);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-score);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(238, 241, 251, 0.5);
}

.sz-footer-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.sz-footer-meta a {
  color: rgba(238, 241, 251, 0.62);
  border: none;
}

.sz-footer-meta a:hover { color: #FFC53D; }

.sz-footer-version,
.sz-footer-ai-label {
  border: 1px solid rgba(238, 241, 251, 0.2);
  border-radius: 3px;
  padding: 3px 8px;
}

.sz-footer-ai-label { color: #FFC53D; border-color: rgba(255, 197, 61, 0.35); }

/* ============================================================
   22b · APP TAB BAR — phones only
   ============================================================ */
.sz-tabbar { display: none; }

@media (max-width: 900px) {
  .sz-tabbar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    background: var(--paper);
    border-top: 3px solid var(--ink);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    box-shadow: 0 -10px 26px -16px rgba(14, 13, 11, 0.4);
  }

  .sz-tabbar a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 9px 4px 7px;
    border: none;
    font-family: var(--font-headline);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink-3);
    -webkit-tap-highlight-color: transparent;
  }

  .sz-tabbar a svg { flex-shrink: 0; }

  .sz-tabbar a.active { color: var(--brand); }

  /* Volt notch riding the press rule above the active tab */
  .sz-tabbar a.active::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 26%;
    right: 26%;
    height: 3px;
    background: var(--volt);
  }

  /* Keep page content, footer and back-to-top clear of the bar */
  body { padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px)); }

  .sz-back-top { bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
}

/* ============================================================
   22c · PWA INSTALL BANNER
   ============================================================ */
/* Footer install button — revealed by pwa.php only when the browser offers
   one-tap install. [hidden] guard is required: display:inline-flex would
   otherwise override the hidden attribute (the spotlight-overlay lesson). */
.sz-footer-install[hidden] { display: none !important; }
.sz-footer-install {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding: 11px 20px;
  background: #FFC53D; /* pinned volt-on-ink, both modes */
  color: #241500;
  border: none;
  border-radius: 4px;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.sz-footer-install:hover { background: #FFE08A; }

/* Header (masthead) install chip — same reveal contract as the footer button. */
.sz-mast-install[hidden] { display: none !important; }
.sz-mast-install {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  background: #FFC53D; /* pinned volt-on-ink, both modes */
  color: #241500;
  border: none;
  border-radius: 4px;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.sz-mast-install:hover { background: #FFE08A; }

@media (max-width: 900px) {
  /* Phones use the footer install button instead (user request 2026-07-08). */
  .sz-mast-install { display: none; }
}

.sz-pwa-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  z-index: 950;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #0E0D0B; /* pinned dark chip, both modes */
  color: #F1E9D2;
  border: 1px solid rgba(255, 197, 61, 0.35);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 34px -14px rgba(14, 13, 11, 0.55);
  padding: 10px 12px 10px 16px;
  max-width: calc(100vw - 24px);
}

.sz-pwa-msg {
  font-family: var(--font-headline);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sz-pwa-install {
  font-family: var(--font-headline);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #241500;
  background: #FFC53D;
  border: none;
  border-radius: 4px;
  padding: 8px 15px;
  cursor: pointer;
}

.sz-pwa-install:hover { background: #FFE08A; }

.sz-pwa-close {
  background: none;
  border: none;
  color: rgba(238, 241, 251, 0.6);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
}

.sz-pwa-close:hover { color: #fff; }

/* iOS hint variant: instruction text instead of an install button */
.sz-pwa-banner.is-ios .sz-pwa-msg {
  white-space: normal;
  text-transform: none;
  letter-spacing: 0;
  font-size: 12.5px;
  line-height: 1.45;
}

.sz-pwa-banner.is-ios .sz-pwa-msg svg { color: #FFC53D; }

@media (max-width: 900px) {
  /* Ride above the app tab bar */
  .sz-pwa-banner { bottom: calc(66px + env(safe-area-inset-bottom, 0px)); }
}

/* ============================================================
   23 · BACK TO TOP
   ============================================================ */
.sz-back-top {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 800;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--volt);
  border: 1px solid color-mix(in srgb, var(--volt) 40%, transparent);
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: 0 14px 30px -12px rgba(14, 13, 11, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), visibility 0.25s, background-color 0.2s;
}

.sz-back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sz-back-top:hover {
  background: var(--volt);
  color: var(--volt-ink);
}

html[data-theme="dark"] .sz-back-top,
body.dark-mode .sz-back-top {
  background: var(--volt);
  color: var(--volt-ink);
}

/* ============================================================
   24 · HOMEPAGE EXTRAS
   ============================================================ */
.latest-news-section .section-title { --cat: var(--brand); }

/* Most Read — ranked press strip */
.home-most-read {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.most-read-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--paper);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.most-read-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 20px 18px;
  min-width: 0;
  transition: background-color 0.2s var(--ease-out);
}

.most-read-item:hover { background: var(--brand-wash); }

.most-read-item + .most-read-item { border-left: 1px solid var(--rule); }

.most-read-rank {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cat, var(--brand));
  flex-shrink: 0;
  margin-top: 2px;
}

.most-read-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.most-read-body .category-badge { font-size: 10px; }
.most-read-body .category-badge::before { width: 12px; }

.most-read-title {
  font-family: var(--font-headline);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.most-read-title a { border: none; color: var(--ink); }
.most-read-item:hover .most-read-title a { color: var(--cat, var(--brand)); }

.most-read-meta {
  font-family: var(--font-score);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.homepage-page-content,
.homepage-custom-shortcodes-section { font-size: 15.5px; }

.x-feed-embed-box .section-title { font-size: 26px; }

.x-feed-cta-card { border-top: 3px solid var(--ink) !important; }

/* ============================================================
   25 · RESPONSIVE PRESS DESK
   ============================================================ */
@media (max-width: 1024px) {
  .news-grid,
  .news-grid.cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .schedule-grid,
  .sixes-bento-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .schedule-dropdown-row { grid-template-columns: 1fr 1fr; }

  .category-bento-grid { grid-template-columns: 1fr; }

  .most-read-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .most-read-item + .most-read-item { border-left: none; }
  .most-read-item:nth-child(even) { border-left: 1px solid var(--rule); }
  .most-read-item:nth-child(n+3) { border-top: 1px solid var(--rule); }

  .single-layout { grid-template-columns: minmax(0, 1fr); }
  .single-rail { position: static; }

  .sz-footer-inner.cols-3,
  .sz-footer-inner.cols-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .header-navigation { display: none; }

  /* App-bar layout: hamburger left · logo dead-centre · search/theme right.
     1fr auto 1fr keeps the logo truly centred even though the right group
     is wider than the hamburger. */
  .mast-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
    padding: 10px 9px;
  }

  .mobile-menu-toggle-btn {
    display: inline-flex;
    justify-self: start;
  }

  .mast-brand { justify-self: center; }

  .mast-side { justify-self: end; }

  /* Search lives inside the drawer on phones */
  .header-search-btn { display: none; }

  .mast-logo img { height: 37px; max-width: 175px; }

  .sz-edition-tag { display: none; }
}

@media (max-width: 760px) {
  .news-grid,
  .news-grid.cols-3,
  .news-grid.cols-2 { grid-template-columns: minmax(0, 1fr); }

  .news-grid.has-featured .featured-card,
  .news-grid.has-featured .featured-card .card-link {
    flex-direction: column !important;
    min-height: 0;
  }

  .news-grid.has-featured .featured-card .card-img-holder {
    flex: none;
    width: 100%;
    aspect-ratio: 16 / 9.4;
    min-height: 0;
  }

  .news-grid.has-featured .featured-card .card-body { padding: 18px 20px; }

  .news-grid.cols-1 .news-card .card-link { flex-direction: column !important; }
  .news-grid.cols-1 .news-card .card-img-holder { flex: none; width: 100%; }
  .news-grid.cols-1 .news-card .card-body { padding: 16px 18px; }

  .most-read-list { grid-template-columns: minmax(0, 1fr); }
  .most-read-item:nth-child(even) { border-left: none; }
  .most-read-item + .most-read-item { border-top: 1px solid var(--rule); }
  .most-read-item { padding: 15px 16px; }
  .most-read-rank { font-size: 30px; }

  .schedule-grid,
  .sixes-bento-grid { grid-template-columns: minmax(0, 1fr); }

  .schedule-dropdown-row { grid-template-columns: 1fr; }

  .section-title { font-size: 21px; }

  /* 16:9 frame is short on phones — compact overlay so text always fits */
  .slide-title {
    font-size: clamp(15px, 4.6vw, 22px);
    margin-bottom: 6px;
    max-width: 100%;
  }

  .slide-overlay { padding-bottom: 14px; }

  .slide-overlay .category-badge {
    font-size: 9px;
    padding: 3px 8px;
    margin-bottom: 7px;
  }

  .slide-meta { font-size: 8.5px; gap: 10px; }

  .slide-nav-btn { display: none; }

  .slide-dots { right: 12px; bottom: 9px; }

  .slide-dot { width: 20px; height: 4px; }

  .post-navigation-links { grid-template-columns: 1fr; }
  .nav-link-item.nav-next { text-align: left; }
  .nav-link-item.nav-next a { align-items: flex-start; }

  .comment-form-fields-row,
  .form-row { grid-template-columns: 1fr; }

  .sixes-controls-bar { align-items: stretch; flex-direction: column; }
  .sixes-tabs-wrapper { flex-wrap: wrap; }

  .sz-footer-inner.cols-2,
  .sz-footer-inner.cols-3,
  .sz-footer-inner.cols-4 { grid-template-columns: 1fr; gap: 32px; }

  .sz-footer { padding-top: 40px; }

  .sz-footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Slim ticker on phones — one compact line */
  .sz-ticker-title {
    font-size: 10px;
    padding: 6px 13px 6px 14px;
    gap: 5px;
    letter-spacing: 0.08em;
    clip-path: polygon(0 0, 100% 0, calc(100% - 9px) 100%, 0 100%);
  }
  .sz-ticker-pulse { width: 6px; height: 6px; }
  .sz-ticker-item {
    font-size: 11px;
    gap: 6px;
    padding: 0 18px 0 8px;
  }
  .sz-ticker-badge {
    font-size: 7.5px;
    padding: 2px 5px;
    letter-spacing: 0.08em;
  }

  /* Full-bleed article on phones — no canvas gutters around the card */
  .single-post-main,
  .page-main { padding-left: 0; padding-right: 0; }

  .single-layout { gap: 20px; }

  .single-post-container,
  .page-container {
    padding: 22px 16px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  /* Artwork runs edge to edge inside the card */
  .single-post-container .post-featured-image {
    margin-left: -16px;
    margin-right: -16px;
    border-radius: 0;
  }

  /* Rail panels and the Read Next strip keep their side breathing room */
  .single-rail { padding: 0 16px; }
  .post-read-next { padding: 0 16px; }

  .post-author-box { flex-direction: column; }

  .sz-back-top {
    right: 14px;
    bottom: calc(70px + env(safe-area-inset-bottom, 0px)); /* clears the app tab bar */
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .mast-logo img { height: 33px; max-width: 158px; }

  .mast-inner { gap: 6px; padding-left: 8px; padding-right: 8px; }

  .header-search-btn,
  .mobile-menu-toggle-btn { width: 34px; height: 34px; }

  .sz-edition-inner { justify-content: space-between; font-size: 9.5px; }

  .card-title { font-size: 19px; }

  .bento-list-img { width: 72px; height: 54px; }

  .post-title { font-size: clamp(27px, 8vw, 34px); }
}

/* ============================================================
   26 · MOTION & PRINT MANNERS
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .sz-ticker-track { animation: none; }
  .slide-dot.active::after { animation: none; transform: scaleX(1); }
  .home-reveal { opacity: 1; transform: none; }
}

@media print {
  .sz-edition-strip,
  .sz-breaking-ticker,
  .mast-side,
  .single-rail,
  .sz-footer,
  .sz-back-top { display: none !important; }

  body { background: #fff; }
}

/* ============================================================
   99 · SPORTSTIGER IDENTITY LAYER
   Navy chrome header, tiger-claw brand mark, gold signal.
   Layout, type and UX are shared with the Pitchside Press
   system; only the identity skin differs.
   ============================================================ */
.mast-logo{display:flex;align-items:center;gap:10px;}

header.mast{background:linear-gradient(150deg,#0B102C 0%,#182456 100%);border-bottom:3px solid #E4590A;}
header.mast .nav-menu a,header.mast .menu-item > a{color:#F5F7FF !important;}
header.mast .nav-menu a:hover,header.mast .menu-item > a:hover{color:#FFC53D !important;}
header.mast .header-search-btn,header.mast .theme-toggle-btn,header.mast .mobile-menu-toggle-btn{color:#F5F7FF !important;}
header.mast .sz-mast-install{background:linear-gradient(120deg,#FFC53D,#F59E0B) !important;color:#241500 !important;}
header.mast .logo-light-img{display:none !important;}
header.mast .logo-dark-img{display:block !important;}

.sz-footer{border-top:4px solid transparent;border-image:linear-gradient(90deg,#E4590A,#FFC53D) 1;}
.sz-footer-brand{display:flex;align-items:center;gap:10px;}
.footer-col-title{color:#FFC53D !important;}
.sz-footer .logo-light-img{display:none !important;}
.sz-footer .logo-dark-img{display:block !important;}

/* --- identity layer v2: header controls visible on navy, both modes --- */
header.mast .header-search-btn,
header.mast .theme-toggle-btn,
header.mast .mobile-menu-toggle-btn{
  background:rgba(255,255,255,.10) !important;
  border-color:rgba(255,255,255,.22) !important;
}
header.mast .header-search-btn:hover,
header.mast .theme-toggle-btn:hover,
header.mast .mobile-menu-toggle-btn:hover{
  background:rgba(255,255,255,.20) !important;
  border-color:#FFC53D !important;
  color:#FFC53D !important;
}

/* --- mode polish --- */
::selection{background:#FFC53D;color:#241500;}
a:focus-visible,button:focus-visible,input:focus-visible{outline:2px solid #E4590A;outline-offset:2px;}
body{transition:background-color .3s var(--ease-out),color .3s var(--ease-out);}

/* --- identity layer v3: gradient canvas --- */
body{
  background-color:#F5F6F8;
  background-image:
    radial-gradient(1200px 600px at 88% -120px, rgba(225,29,72,.12), transparent 65%),
    linear-gradient(180deg, #FFFFFF 0%, #F5F6F8 34%, #F7E2E6 100%);
  background-attachment:fixed,fixed;
  background-size:cover,cover;
}
html[data-theme="dark"] body,
body.dark-mode{
  background-color:#0E0D0B;
  background-image:
    radial-gradient(1200px 600px at 88% -120px, rgba(255,84,112,.15), transparent 65%),
    linear-gradient(180deg, #0A090B 0%, #0E0D0B 34%, #2E0B15 100%);
}
@media (max-width:782px){
  body{background-attachment:scroll,scroll;} /* iOS Safari fixed-bg jank */
}

/* ============================================================
   SPORTSTIGER WIDGET SKINS — leagues cards + favourite teams
   ============================================================ */
/* Leagues: identity cards (replaces per-league rainbow borders) */
.league-carousel-card{background:var(--paper) !important;border:1px solid var(--rule) !important;--card-color:#E4590A;--card-glow:rgba(228,89,10,.25);border-radius:14px !important;box-shadow:0 1px 2px rgba(0,0,0,.04) !important;transition:transform .18s var(--ease-out),border-color .18s,box-shadow .18s !important;}
.league-carousel-card:hover{transform:translateY(-4px);border-color:#FFC53D !important;border-top-color:#FFC53D !important;box-shadow:0 14px 30px -16px rgba(0,0,0,.25) !important;}
.league-format-badge{background:linear-gradient(120deg,#FFC53D,#F59E0B) !important;color:#241500 !important;border:none !important;border-radius:999px !important;font-weight:700 !important;letter-spacing:.06em;}
.league-est{font-family:var(--font-score) !important;color:var(--ink-4) !important;}
.league-name{font-family:var(--font-headline) !important;color:var(--ink) !important;}
.league-stats-grid .stat-box{background:var(--recess) !important;border:1px solid var(--rule) !important;border-radius:10px !important;}
.league-stats-grid .stat-label{color:var(--brand) !important;font-weight:700 !important;letter-spacing:.08em;}
.league-stats-grid .stat-val{color:var(--ink) !important;font-family:var(--font-headline) !important;}

.league-carousel-card::before{background:linear-gradient(90deg,#E4590A,#FFC53D) !important;}

/* Favourite teams: circular badge rail (distinct from sportzclaus tiles) */
.team-carousel-card{flex:0 0 132px !important;background:transparent !important;border:none !important;box-shadow:none !important;padding:10px 4px !important;display:flex;flex-direction:column;align-items:center;gap:10px !important;text-align:center;}
.team-logo-container{width:86px !important;height:86px !important;border-radius:50% !important;background:var(--paper) !important;border:2px solid var(--rule) !important;display:flex;align-items:center;justify-content:center;margin:0 auto !important;transition:transform .18s var(--ease-out),border-color .18s,box-shadow .18s;}
.team-carousel-card:hover .team-logo-container{transform:translateY(-4px);border-color:#FFC53D !important;box-shadow:0 0 0 5px color-mix(in srgb,#FFC53D 26%, transparent),0 14px 26px -14px rgba(0,0,0,.3);}
.team-logo-img{width:58% !important;height:58% !important;object-fit:contain;}
.team-logo-fallback{border-radius:50% !important;}
.team-card-info{display:flex;flex-direction:column;gap:2px;align-items:center;}
.team-name{font-family:var(--font-headline) !important;font-weight:700 !important;font-size:13px !important;color:var(--ink) !important;line-height:1.25;}
.team-abbr{font-family:var(--font-score) !important;font-size:10px !important;letter-spacing:.12em;color:var(--ink-4) !important;text-transform:uppercase;}
.team-carousel-card:hover .team-name{color:var(--brand) !important;}

/* --- header toggle + install: icons visible in BOTH modes on navy chrome --- */
header.mast .theme-toggle-btn svg{stroke:#F5F7FF !important;}
header.mast .theme-toggle-btn:hover svg{stroke:#FFC53D !important;}
header.mast .sz-mast-install{display:inline-flex !important;}

/* ============================================================
   SPORTSTIGER MOBILE PASS — stability, type scale, rhythm
   ============================================================ */
/* stability: no horizontal wobble, no blur-jank on scroll */
html,body{overflow-x:hidden;max-width:100%;}
@media (max-width:900px){
  header.mast{backdrop-filter:none !important;-webkit-backdrop-filter:none !important;background:#0B102C !important;}
  .sz-edition-strip{backdrop-filter:none !important;-webkit-backdrop-filter:none !important;}
  .sz-scores-carousel,.teams-carousel-track,.leagues-carousel-track,[class*="carousel-track"]{-webkit-overflow-scrolling:touch;overscroll-behavior-x:contain;touch-action:pan-x pan-y;}
}

/* mobile type scale: everything one notch smaller */
@media (max-width:782px){
  :root{
    --text-3xl: clamp(25px, 6.4vw, 32px);
    --text-2xl: 23px;
    --text-xl: 19px;
    --text-lg: 17px;
  }
  .section-title{font-size:18px !important;}
  .teams-section-header .section-title{font-size:18px !important;}
  .sz-edition-inner,.sz-edition-strip{font-size:10px !important;letter-spacing:.08em;}
  .sz-mast-install{padding:7px 13px !important;}
  .sz-mast-install-label{font-size:11.5px !important;letter-spacing:.04em;}
  .mast-logo img{max-height:28px !important;}
  h1.page-title,.archive .section-title{font-size:24px !important;}
  .archive-description{font-size:15px !important;line-height:1.65 !important;}
  /* live scores widget: compact app density */
  .sz-card-venue{font-size:10px !important;}
  .sz-status-badge{font-size:9px !important;padding:2px 8px !important;}
  .sz-team-name-full{font-size:13px !important;}
  .sz-team-score{font-size:13.5px !important;}
  .sz-live-commentary,.sz-footer-live{font-size:11px !important;}
  .sz-action-btn-link{font-size:10px !important;}
  .sz-cricket-filter-btn{font-size:10px !important;padding:5px 12px !important;}
  .most-read-title{font-size:16px !important;}
  .league-name{font-size:15px !important;}
  .team-name{font-size:12px !important;}
}

/* one spacing rhythm everywhere */
body > section,.site-main > section{margin-bottom:48px !important;}
.section-header,.teams-section-header{margin-bottom:16px !important;}
@media (max-width:782px){
  body > section,.site-main > section{margin-bottom:30px !important;}
  .section-header,.teams-section-header{margin-bottom:12px !important;}
  .home-cricket-scores-section{margin-top:4px;}
  .site-main{padding-top:14px;}
}

/* category pages: scores strip + branded description */
.archive-scores-strip{margin:18px 0 6px;}
.archive-scores-strip .sz-cricket-filters{display:none !important;}
.archive-description{border-left:3px solid var(--brand);padding:10px 16px;background:var(--recess);border-radius:0 10px 10px 0;font-style:normal !important;}

/* mobile pass v2: win specificity against inline homepage styles */
@media (max-width:782px){
  html .section-title,
  html [class*="-section"] .section-title,
  html .home-cricket-scores-section .section-title,
  html .teams-section-header .section-title,
  html .home-leagues-section .section-title{font-size:18px !important;letter-spacing:.02em !important;}
  html .section-title a{font-size:inherit !important;}
}
html .home-slider-section,html .home-cricket-scores-section,html .home-leagues-section,html .home-teams-section,html .home-most-read,html .site-main > section{margin-bottom:48px !important;}
@media (max-width:782px){
  html .home-slider-section,html .home-cricket-scores-section,html .home-leagues-section,html .home-teams-section,html .home-most-read,html .site-main > section{margin-bottom:30px !important;}
}

/* live scores section: left-aligned like every other homepage section */
html .home-cricket-scores-section .section-header{justify-content:space-between !important;align-items:center !important;text-align:left !important;}
html .home-cricket-scores-section .section-title{text-align:left !important;margin:0 !important;}
html .home-cricket-scores-section{padding-left:20px !important;padding-right:20px !important;}


/* --- mobile drawer: navy chrome in BOTH modes (fixes white-on-white in light) --- */
.mobile-navigation{background:linear-gradient(165deg,#0B102C 0%,#182456 100%) !important;}
.mobile-navigation .mobile-menu-inner{background:transparent !important;}
.mobile-navigation a,.mobile-navigation .menu-item > a,.mobile-navigation .mobile-social-link{color:#F5F7FF !important;}
.mobile-navigation a:hover,.mobile-navigation .menu-item > a:hover{color:#FFC53D !important;}
.mobile-navigation .menu-item,.mobile-nav-menu li{border-color:rgba(255,255,255,.12) !important;}
.mobile-navigation .mobile-menu-search input,.mobile-navigation input[type="search"],.mobile-navigation .search-field{background:rgba(255,255,255,.09) !important;border:1px solid rgba(255,255,255,.2) !important;color:#F5F7FF !important;}
.mobile-navigation input::placeholder{color:rgba(245,247,255,.55) !important;}
.mobile-navigation .search-submit,.mobile-navigation button{color:#F5F7FF !important;}
.mobile-navigation .mobile-social-link{border-color:rgba(255,255,255,.2) !important;background:rgba(255,255,255,.07) !important;}
.mobile-navigation svg{stroke:#F5F7FF !important;}
.mobile-navigation .mobile-social-link:hover,.mobile-navigation .mobile-social-link:hover svg{color:#FFC53D !important;stroke:#FFC53D !important;border-color:#FFC53D !important;}

/* ============================================================
   HOME PREDICTION CARDS — matches the Live Scores card anatomy
   ============================================================ */
.home-prediction-strip{max-width:1100px;margin:18px auto 22px !important;padding:0 20px;}
.hp-pred-head{margin-bottom:14px;}
.hp-pred-row{display:flex;gap:14px;overflow-x:auto;padding:4px 0 6px;scroll-snap-type:x mandatory;scrollbar-width:thin;-webkit-overflow-scrolling:touch;overscroll-behavior-x:contain;}
.hpp-card{position:relative;flex:0 0 min(280px,80vw);scroll-snap-align:start;display:flex;flex-direction:column;background:var(--paper);border:1px solid var(--rule);border-radius:14px;overflow:hidden;text-decoration:none;box-shadow:0 1px 2px rgba(0,0,0,.05);transition:transform .18s var(--ease-out),border-color .18s,box-shadow .18s;}
.hpp-card::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,#E4590A,#FFC53D);z-index:2;}
.hpp-card:hover{transform:translateY(-3px);border-color:var(--accent);box-shadow:0 14px 30px -16px rgba(0,0,0,.28);}
.hpp-top{display:flex;align-items:center;gap:8px;padding:11px 14px 9px;background:var(--recess);border-bottom:1px solid var(--rule);}
.hpp-tour{flex:1;min-width:0;font-family:var(--font-headline);font-weight:600;font-size:11px;letter-spacing:.05em;text-transform:uppercase;color:var(--ink-3);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.hpp-fmt{flex-shrink:0;font-family:var(--font-headline);font-weight:700;font-size:10px;letter-spacing:.06em;text-transform:uppercase;color:#fff;background:var(--brand);border-radius:999px;padding:3px 10px;}
.hpp-body{display:flex;flex-direction:column;gap:10px;padding:12px 14px;}
.hpp-row{display:flex;align-items:center;gap:10px;}
.hpp-row img,.hpp-row i{width:28px;height:28px;border-radius:50%;object-fit:cover;border:1px solid var(--rule);background:var(--recess);flex-shrink:0;font-style:normal;display:inline-flex;align-items:center;justify-content:center;font-family:var(--font-headline);font-weight:800;font-size:13px;color:var(--ink-2);}
.hpp-row b{font-family:var(--font-headline);font-weight:700;font-size:14px;color:var(--ink);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.hpp-when{padding-top:10px;border-top:1px dashed var(--rule);font-family:var(--font-score);font-size:11px;color:var(--ink-3);}
.hpp-foot{margin-top:auto;padding:11px 14px;text-align:center;font-family:var(--font-headline);font-weight:800;font-size:11px;letter-spacing:.1em;text-transform:uppercase;background:var(--ink);color:var(--paper);transition:background .15s,color .15s;}
.hpp-card:hover .hpp-foot{background:var(--brand);color:#fff;}
.hp-pred-foot{display:flex;justify-content:center;margin-top:14px;}
.hp-pred-all{display:inline-flex;align-items:center;justify-content:center;font-family:var(--font-headline);font-weight:800;font-size:12.5px;letter-spacing:.05em;text-transform:uppercase;color:var(--brand);border:1.5px solid var(--brand);border-radius:999px;padding:11px 26px;text-decoration:none;transition:all .15s;}
.hp-pred-all:hover{background:var(--brand);color:#fff;}
@media (max-width:782px){
  .home-prediction-strip{margin-top:12px !important;}
  .hpp-card{flex-basis:min(250px,78vw);}
  .hp-pred-foot{margin-top:12px;}
  .hp-pred-all{width:100%;}
}

/* ============================================================
   SPORTSTIGER BETTING SUITE — hub, ranked lists, offer ads
   ============================================================ */
.bt-page{padding:26px 0 40px;}
.bt-shell{max-width:1000px;margin:0 auto;padding:0 20px;}
.bt-crumb{margin-bottom:16px;display:block;}
.bt-hero{background:var(--paper);border:1px solid var(--rule);border-left:4px solid var(--brand);border-radius:16px;box-shadow:0 1px 2px rgba(0,0,0,.04);padding:clamp(22px,4vw,38px);margin-bottom:22px;}
.bt-eyebrow{display:inline-flex;align-items:center;gap:9px;font-family:var(--font-score);font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-3);margin-bottom:12px;}
.bt-eyebrow::before{content:'';width:22px;height:3px;background:var(--brand);border-radius:2px;}
.bt-hero h1{font-family:var(--font-headline);font-weight:800;font-size:clamp(28px,4.6vw,44px);line-height:1.05;color:var(--ink);margin:0 0 12px;}
.bt-hero h1 em{font-style:normal;color:var(--brand);}
.bt-hero p{max-width:62ch;font-size:15px;line-height:1.7;color:var(--ink-2);margin:0;}
.bt-hero-cta{display:inline-flex;margin-top:16px;}

.bt-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-bottom:26px;}
.bt-card{display:flex;flex-direction:column;gap:8px;background:var(--paper);border:1px solid var(--rule);border-radius:16px;padding:22px;text-decoration:none;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:transform .18s var(--ease-out),border-color .18s,box-shadow .18s;}
.bt-card:hover{transform:translateY(-4px);border-color:var(--brand);box-shadow:0 16px 32px -18px rgba(0,0,0,.25);}
.bt-card-ico{font-size:26px;}
.bt-card h2{font-family:var(--font-headline);font-weight:800;font-size:19px;color:var(--ink);margin:0;}
.bt-card p{font-size:13.5px;line-height:1.6;color:var(--ink-3);margin:0;}
.bt-card-cta{margin-top:auto;font-family:var(--font-headline);font-weight:800;font-size:12px;letter-spacing:.04em;text-transform:uppercase;color:var(--brand);}

.bt-sec-head{display:flex;align-items:center;gap:12px;margin:0 0 14px;}
.bt-sec-head h2{font-family:var(--font-headline);font-weight:800;font-size:clamp(18px,2.6vw,24px);color:var(--ink);margin:0;display:flex;align-items:center;gap:12px;}
.bt-sec-head h2::before{content:'';width:11px;height:20px;background:var(--brand);transform:skewX(-12deg);border-radius:2px;}
.bt-adtag{margin-left:auto;font-family:var(--font-score);font-size:10px;letter-spacing:.12em;color:var(--ink-4);border:1px solid var(--rule);border-radius:999px;padding:3px 10px;}

.bt-topoffers{background:var(--paper);border:1px solid var(--rule);border-radius:16px;padding:20px 22px;margin-bottom:22px;box-shadow:0 1px 2px rgba(0,0,0,.04);}
.bt-offer-row{display:flex;align-items:center;gap:16px;padding:14px 0;border-top:1px solid var(--rule);}
.bt-offer-row:first-of-type{border-top:0;}
.bt-offer-row-info{display:flex;flex-direction:column;gap:3px;min-width:110px;}
.bt-offer-row-info b{font-family:var(--font-headline);font-weight:800;font-size:15px;color:var(--ink);}
.bt-offer-row-bonus{flex:1;min-width:0;font-size:13.5px;color:var(--ink-2);}

.st-offer-logo{width:46px;height:46px;border-radius:12px;flex-shrink:0;display:inline-flex;align-items:center;justify-content:center;font-family:var(--font-headline);font-weight:800;font-size:20px;color:#fff;background:var(--bt-c,#333);border:1px solid rgba(0,0,0,.08);}
.bt-stars{position:relative;display:inline-block;font-size:13px;line-height:1;letter-spacing:2px;}
.bt-stars-bg{color:var(--rule-strong);}
.bt-stars-fill{position:absolute;left:0;top:0;overflow:hidden;white-space:nowrap;color:#F5A700;}
.st-offer-cta{display:inline-flex;align-items:center;justify-content:center;font-family:var(--font-headline);font-weight:800;font-size:12px;letter-spacing:.04em;text-transform:uppercase;color:#fff !important;background:var(--brand);border-radius:999px;padding:10px 20px;text-decoration:none !important;white-space:nowrap;transition:background .15s,transform .15s;}
.st-offer-cta:hover{background:var(--brand-deep);transform:translateY(-1px);}

/* ranked list */
.bt-rank-list{display:flex;flex-direction:column;gap:16px;margin-bottom:22px;}
.bt-rank{position:relative;display:flex;align-items:center;gap:18px;background:var(--paper);border:1px solid var(--rule);border-radius:16px;padding:20px 22px;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:transform .18s var(--ease-out),border-color .18s,box-shadow .18s;}
.bt-rank:hover{transform:translateY(-3px);border-color:var(--brand);box-shadow:0 16px 32px -18px rgba(0,0,0,.22);}
.bt-rank-top{border:2px solid #F5A700;background:color-mix(in srgb,#F5A700 5%,var(--paper));}
.bt-ribbon{position:absolute;top:-11px;left:20px;font-family:var(--font-headline);font-weight:800;font-size:10px;letter-spacing:.1em;text-transform:uppercase;color:#241500;background:linear-gradient(120deg,#FFC53D,#F59E0B);border-radius:999px;padding:4px 12px;}
.bt-rank-num{font-family:var(--font-score);font-weight:700;font-size:18px;color:var(--ink-4);flex-shrink:0;width:36px;}
.bt-rank-logo{width:56px;height:56px;font-size:24px;}
.bt-rank-info{flex:1;min-width:0;}
.bt-rank-info h2{font-family:var(--font-headline);font-weight:800;font-size:19px;color:var(--ink);margin:0 0 4px;}
.bt-rank-rating{display:flex;align-items:center;gap:8px;margin-bottom:8px;}
.bt-rank-rating b{font-family:var(--font-score);font-size:12px;color:var(--ink-2);}
.bt-rank-feats{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:6px 16px;}
.bt-rank-feats li{position:relative;padding-left:18px;font-size:12.5px;color:var(--ink-3);}
.bt-rank-feats li::before{content:'\2713';position:absolute;left:0;color:var(--brand);font-weight:700;}
.bt-rank-side{display:flex;flex-direction:column;align-items:flex-end;gap:8px;flex-shrink:0;text-align:right;max-width:220px;}
.bt-rank-bonus{font-family:var(--font-headline);font-weight:800;font-size:13.5px;line-height:1.35;color:var(--ink);}
.bt-rank-tnc{font-size:10px;color:var(--ink-4);}

/* offer ad card (homepage / in-post / predictions) */
.st-offer{max-width:1100px;margin:18px auto;padding:0 20px;}
.st-offer-inpost{padding:0;margin:26px 0;}
.st-offer-wide{padding:0;margin:0 0 22px;}
.st-offer-adlabel{display:flex;align-items:center;gap:8px;font-family:var(--font-score);font-size:9.5px;letter-spacing:.14em;color:var(--ink-4);margin-bottom:6px;text-transform:uppercase;}
.st-offer-adlabel em{font-style:normal;border:1px solid var(--rule-strong);border-radius:4px;padding:0 5px;font-size:9px;}
.st-offer-main{display:flex;align-items:center;gap:16px;background:var(--paper);border:1px solid var(--rule);border-left:4px solid #F5A700;border-radius:14px;padding:14px 18px;box-shadow:0 1px 2px rgba(0,0,0,.04);}
.st-offer-info{flex:1;min-width:0;display:flex;flex-direction:column;gap:2px;}
.st-offer-info b{font-family:var(--font-headline);font-weight:800;font-size:15px;color:var(--ink);}
.st-offer-bonus{font-size:13px;color:var(--ink-2);}
.st-offer-tnc{display:block;margin-top:6px;font-size:10.5px;color:var(--ink-4);}
.st-offer-tnc a{color:var(--brand);}

.bt-disclaimer{display:flex;gap:14px;align-items:flex-start;background:var(--recess);border:1px solid var(--rule);border-radius:14px;padding:16px 18px;}
.bt-disclaimer b{font-family:var(--font-headline);font-weight:800;font-size:15px;color:#fff;background:var(--accent);border-radius:8px;padding:4px 9px;flex-shrink:0;}
.bt-disclaimer p{margin:0;font-size:12px;line-height:1.6;color:var(--ink-3);}

.bt-tip-card .bt-tip-body{padding:14px 16px;}
.bt-tip-card h3{font-family:var(--font-headline);font-weight:800;font-size:16px;line-height:1.35;color:var(--ink);margin:0 0 6px;}
.bt-tip-card .bt-tip-meta{font-family:var(--font-score);font-size:11px;color:var(--ink-4);}

/* --- betting SEO prose: ranked-content sections with H2→H4 hierarchy --- */
.bt-seo{max-width:780px;margin:56px auto 44px;}
.bt-seo h2{font-family:var(--font-headline);font-weight:800;font-size:26px;line-height:1.25;letter-spacing:-.01em;color:var(--ink);margin:46px 0 14px;padding-top:28px;border-top:1px solid var(--rule);}
.bt-seo > h2:first-child,.bt-seo .bt-seo-custom + h2{margin-top:0;}
.bt-seo h2::before{content:"";display:inline-block;width:18px;height:4px;border-radius:2px;margin:0 10px 4px 0;background:linear-gradient(90deg,var(--brand),var(--volt));}
.bt-seo h3{font-family:var(--font-headline);font-weight:800;font-size:19px;line-height:1.3;color:var(--ink);margin:28px 0 10px;}
.bt-seo h4{font-family:var(--font-headline);font-weight:700;font-size:15.5px;line-height:1.35;color:var(--ink-2);margin:22px 0 8px;text-transform:uppercase;letter-spacing:.04em;}
.bt-seo p{font-family:var(--font-body);font-size:15.5px;line-height:1.78;color:var(--ink-2);margin:0 0 15px;}
.bt-seo a{color:var(--brand);font-weight:600;text-decoration:underline;text-underline-offset:3px;text-decoration-color:color-mix(in srgb,var(--brand) 40%,transparent);}
.bt-seo a:hover{text-decoration-color:var(--brand);}
.bt-seo ol,.bt-seo ul{margin:0 0 16px;padding-left:24px;font-family:var(--font-body);font-size:15.5px;line-height:1.75;color:var(--ink-2);}
.bt-seo li{margin-bottom:8px;}
.bt-seo li::marker{font-family:var(--font-score);font-weight:700;color:var(--brand);}
.bt-seo-custom{margin-bottom:36px;}

@media (max-width:860px){
  .bt-cards{grid-template-columns:1fr;}
  .bt-rank{flex-wrap:wrap;gap:12px 14px;padding:18px 16px;}
  .bt-rank-side{align-items:flex-start;text-align:left;max-width:none;width:100%;flex-direction:row;align-items:center;justify-content:space-between;}
  .bt-offer-row{flex-wrap:wrap;}
  .bt-offer-row-bonus{flex-basis:100%;order:3;}
  .st-offer-main{flex-wrap:wrap;}
  .st-offer-cta{width:100%;}
  .bt-seo{margin:40px auto 32px;}
  .bt-seo h2{font-size:22px;margin:36px 0 12px;padding-top:22px;}
  .bt-seo h3{font-size:17px;}
}


/* ============================================================
   SPORTSTIGER HOME CATEGORY ZONES + LATEST WIRE
   ============================================================ */
.home-cat-zone{max-width:1100px;margin-left:auto;margin-right:auto;}
.section-title .hcz-all{margin-left:auto;font-family:var(--font-headline);font-weight:800;font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:var(--ink-3);border:1.5px solid var(--rule);border-radius:999px;padding:7px 14px;line-height:1;transition:color .15s,border-color .15s;}
.section-title .hcz-all:hover{color:var(--hcz-c,var(--brand));border-color:var(--hcz-c,var(--brand));}
.hcz-grid{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(0,1fr);gap:20px;align-items:stretch;}
.hcz-feature{position:relative;display:flex;flex-direction:column;background:var(--paper);border:1px solid var(--rule);border-radius:16px;overflow:hidden;transition:transform .18s ease,box-shadow .18s ease;}
.hcz-feature::before{content:"";position:absolute;top:0;left:0;right:0;height:4px;z-index:2;background:linear-gradient(90deg,var(--hcz-c,var(--brand)),var(--volt));}
.hcz-feature:hover{transform:translateY(-3px);box-shadow:0 14px 30px rgba(0,0,0,.12);}
.hcz-feature-media{position:relative;aspect-ratio:16/9;overflow:hidden;background:var(--recess);}
.hcz-feature-media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .35s ease;}
.hcz-feature:hover .hcz-feature-media img{transform:scale(1.045);}
.hcz-badge{position:absolute;left:14px;bottom:12px;background:var(--hcz-c,var(--brand));color:#fff;font-family:var(--font-headline);font-weight:800;font-size:10.5px;letter-spacing:.09em;text-transform:uppercase;padding:5px 12px;border-radius:999px;z-index:2;}
.hcz-feature-body{display:flex;flex-direction:column;gap:8px;padding:16px 18px 18px;}
.hcz-feature-title{font-family:var(--font-headline);font-weight:800;font-size:20px;line-height:1.3;color:var(--ink);transition:color .15s;}
.hcz-feature:hover .hcz-feature-title{color:var(--hcz-c,var(--brand));}
.hcz-feature-excerpt{font-family:var(--font-body);font-size:13.5px;line-height:1.65;color:var(--ink-2);display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
.hcz-meta{font-family:var(--font-score);font-size:11px;color:var(--ink-3);}
.hcz-list{display:flex;flex-direction:column;gap:10px;min-width:0;}
.hcz-item{flex:1;display:flex;align-items:center;gap:12px;background:var(--paper);border:1px solid var(--rule);border-radius:12px;padding:9px 12px;min-width:0;transition:border-color .15s,transform .15s;}
.hcz-item:hover{border-color:var(--hcz-c,var(--brand));transform:translateX(3px);}
.hcz-item-img{width:76px;height:56px;flex-shrink:0;border-radius:8px;overflow:hidden;background:var(--recess);}
.hcz-item-img img{width:100%;height:100%;object-fit:cover;display:block;}
.hcz-item-body{min-width:0;display:flex;flex-direction:column;gap:3px;}
.hcz-item-body b{font-family:var(--font-headline);font-weight:700;font-size:14px;line-height:1.35;color:var(--ink);display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;transition:color .15s;}
.hcz-item:hover .hcz-item-body b{color:var(--hcz-c,var(--brand));}
.hcz-item-body > span{font-family:var(--font-score);font-size:10.5px;color:var(--ink-3);}
.hcz-noimg{display:block;width:100%;height:100%;background:linear-gradient(135deg,var(--recess),var(--rule));}
.hcz-more-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-top:14px;}
.hcz-more-grid:empty{display:none;margin:0;}
.hcz-mini{display:flex;flex-direction:column;background:var(--paper);border:1px solid var(--rule);border-radius:12px;overflow:hidden;transition:transform .15s,border-color .15s;}
.hcz-mini:hover{transform:translateY(-2px);border-color:var(--hcz-c,var(--brand));}
.hcz-mini-img{aspect-ratio:16/9;overflow:hidden;background:var(--recess);}
.hcz-mini-img img{width:100%;height:100%;object-fit:cover;display:block;}
.hcz-mini-body{display:flex;flex-direction:column;gap:5px;padding:12px 14px 14px;}
.hcz-mini-body b{font-family:var(--font-headline);font-weight:700;font-size:14px;line-height:1.35;color:var(--ink);display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
.hcz-mini-meta{font-family:var(--font-score);font-size:10.5px;color:var(--ink-3);}
.hcz-foot{display:flex;justify-content:center;margin-top:18px;}
.hcz-more{font-family:var(--font-headline);font-weight:800;font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:var(--ink);background:transparent;border:2px solid var(--ink);border-radius:999px;padding:11px 26px;cursor:pointer;transition:background .15s,color .15s,border-color .15s;}
.hcz-more:hover{background:var(--hcz-c,var(--brand));border-color:var(--hcz-c,var(--brand));color:#fff;}
.hcz-more:disabled{opacity:.55;cursor:wait;}

/* latest updates: compact wire list */
.latest-wire .wire-grid{display:grid;grid-template-columns:1fr 1fr;gap:0 40px;}
.wire-row{display:flex;gap:14px;align-items:baseline;padding:13px 2px;border-bottom:1px solid var(--rule);min-width:0;}
.wire-time{font-family:var(--font-score);font-size:11px;color:var(--ink-3);flex-shrink:0;min-width:56px;}
.wire-body{min-width:0;display:flex;flex-direction:column;gap:3px;}
.wire-body em{font-style:normal;font-family:var(--font-headline);font-weight:800;font-size:10px;letter-spacing:.1em;text-transform:uppercase;color:var(--brand);}
.wire-body b{font-family:var(--font-headline);font-weight:700;font-size:14.5px;line-height:1.4;color:var(--ink);transition:color .15s;}
.wire-row:hover .wire-body b{color:var(--brand);}

@media (max-width:860px){
  .hcz-grid{grid-template-columns:1fr;}
  .hcz-feature-title{font-size:17px;}
  .hcz-more-grid{grid-template-columns:1fr 1fr;}
  .latest-wire .wire-grid{grid-template-columns:1fr;}
  .section-title .hcz-all{padding:6px 11px;font-size:10px;}
}
@media (max-width:560px){
  .hcz-more-grid{grid-template-columns:1fr;}
}

/* small-phone header fit: hamburger + logo + install + toggle within 360px */
@media (max-width:480px){
  .mast-inner{gap:6px;padding:10px 8px;}
  .mast-side{gap:6px !important;}
  .sz-mast-install{padding:6px 10px !important;}
  .sz-mast-install-label{font-size:10.5px !important;letter-spacing:.02em !important;}
  .mast-logo img{max-height:26px !important;max-width:148px !important;}
  .theme-toggle-btn{width:32px !important;height:32px !important;}
}


/* ============================================================
   SPORTSTIGER HEADER LEAGUES DROPDOWN
   ============================================================ */
.nav-menu .menu-item{position:relative;}
.nav-menu .has-sub > a::after{content:"";display:inline-block;margin-left:7px;width:6px;height:6px;border-right:1.5px solid currentColor;border-bottom:1.5px solid currentColor;transform:rotate(45deg) translateY(-3px);transition:transform .15s;}
.nav-menu .has-sub:hover > a::after{transform:rotate(225deg) translateY(-1px);}
.nav-menu .sub-menu{position:absolute;top:100%;left:50%;transform:translateX(-50%) translateY(8px);min-width:210px;margin:0;padding:8px;list-style:none;background:linear-gradient(160deg,#0B102C 0%,#182456 100%);border:1px solid rgba(255,255,255,.14);border-top:3px solid var(--brand);border-radius:0 0 14px 14px;box-shadow:0 22px 48px rgba(0,0,0,.38);opacity:0;visibility:hidden;transition:opacity .16s ease,transform .16s ease;z-index:900;}
.nav-menu .has-sub:hover > .sub-menu,.nav-menu .has-sub:focus-within > .sub-menu{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0);}
.nav-menu .sub-menu li{margin:0;}
.nav-menu .sub-menu a{display:block;padding:9px 13px;border-radius:9px;font-family:var(--font-headline);font-weight:700;font-size:13px;letter-spacing:.02em;white-space:nowrap;color:#EEF1FB !important;transition:background .12s,color .12s;}
.nav-menu .sub-menu a:hover{background:rgba(255,255,255,.09);color:#FFC53D !important;}
.nav-menu .sub-menu .sub-all{margin-top:6px;padding-top:6px;border-top:1px solid rgba(255,255,255,.14);}
.nav-menu .sub-menu .sub-all a{font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:#FFC53D !important;}

/* mobile drawer: league chips under the Leagues link */
.mobile-nav-menu .mobile-sub{display:flex;flex-wrap:wrap;gap:8px;padding:4px 0 12px;}
.mobile-nav-menu .mobile-sub a{font-family:var(--font-headline);font-weight:700;font-size:12px;letter-spacing:.03em;color:#fff;border:1px solid rgba(255,255,255,.28);border-radius:999px;padding:6px 13px;transition:border-color .15s,color .15s;}
.mobile-nav-menu .mobile-sub a:active,.mobile-nav-menu .mobile-sub a:hover{border-color:#FFC53D;color:#FFC53D;}


/* ============================================================
   SPORTSTIGER BETTING SUITE v2 — tables, trust strip, rich cards
   ============================================================ */
.bt-trust{display:flex;gap:10px;flex-wrap:wrap;margin:-6px 0 26px;}
.bt-trust span{display:inline-flex;align-items:center;gap:7px;background:var(--paper);border:1px solid var(--rule);border-radius:999px;padding:8px 14px;font-family:var(--font-headline);font-weight:700;font-size:11px;letter-spacing:.05em;text-transform:uppercase;color:var(--ink-2);}
.bt-trust i{font-style:normal;font-weight:800;color:var(--brand);}

.bt-quick{background:var(--paper);border:1px solid var(--rule);border-left:4px solid var(--brand);border-radius:14px;padding:18px 22px;margin-bottom:28px;}
.bt-quick-title{display:block;font-family:var(--font-headline);font-weight:800;font-size:15px;color:var(--ink);}
.bt-quick ol{margin:12px 0 0;padding-left:24px;}
.bt-quick li{font-family:var(--font-body);font-size:14px;line-height:1.7;color:var(--ink-2);margin-bottom:6px;}
.bt-quick li::marker{font-family:var(--font-score);font-weight:700;color:var(--brand);}
.bt-quick li b{font-family:var(--font-headline);font-weight:800;color:var(--ink);}
.bt-quick li span{color:var(--ink-3);font-size:13px;}

.bt-compare{margin-bottom:34px;}
.bt-tablewrap{overflow-x:auto;-webkit-overflow-scrolling:touch;border:1px solid var(--rule);border-radius:14px;background:var(--paper);}
.bt-table{width:100%;border-collapse:collapse;min-width:760px;font-size:13.5px;}
.bt-table th{background:var(--recess);font-family:var(--font-headline);font-weight:800;font-size:10.5px;letter-spacing:.08em;text-transform:uppercase;color:var(--ink-3);text-align:left;padding:11px 14px;border-bottom:1px solid var(--rule);white-space:nowrap;}
.bt-table td{padding:12px 14px;border-bottom:1px solid var(--rule);vertical-align:middle;font-family:var(--font-body);color:var(--ink-2);}
.bt-table tbody tr:last-child td{border-bottom:0;}
.bt-table tbody tr:hover td{background:var(--recess);}
.bt-tb-rank{font-family:var(--font-score);font-weight:700;color:var(--ink-3);width:34px;}
.bt-tb-brand{display:inline-flex;align-items:center;gap:9px;font-family:var(--font-headline);font-weight:800;color:var(--ink);white-space:nowrap;}
.bt-tb-brand-s{margin-right:12px;font-size:13px;}
.bt-tb-logo{width:30px;height:30px;font-size:13px;border-radius:8px;flex-shrink:0;}
.bt-tb-ribbon{font-style:normal;font-family:var(--font-headline);font-weight:800;font-size:9px;letter-spacing:.07em;text-transform:uppercase;background:var(--volt);color:#241500;border-radius:999px;padding:3px 8px;}
.bt-tb-bonus{font-weight:600;color:var(--ink);min-width:200px;}
.bt-tb-mono{font-family:var(--font-score);font-size:12px;white-space:nowrap;}
.bt-tb-upi{color:#16A34A;font-weight:800;text-align:center;}
.bt-tb-upi.no{color:var(--ink-4);}
.bt-tb-rating{font-family:var(--font-score);font-weight:700;color:var(--ink);}
.bt-tb-cta{padding:8px 16px !important;font-size:11px !important;white-space:nowrap;}
.bt-tb-cat{font-family:var(--font-headline);font-weight:800;color:var(--ink);white-space:nowrap;}
.bt-tb-why{min-width:220px;}

.bt-rank-v2{flex-direction:column;align-items:stretch;gap:14px;}
.bt-rank-v2 .bt-rank-head{display:flex;align-items:center;gap:14px;min-width:0;}
.bt-rank-id{min-width:0;flex:1;display:flex;flex-direction:column;gap:4px;}
.bt-rank-id h2{margin:0;}
.bt-bestfor{font-family:var(--font-headline);font-weight:700;font-size:12px;color:var(--ink-3);}
.bt-rank-rating-v2{flex-shrink:0;}
.bt-bonusbar{display:flex;align-items:center;gap:14px;flex-wrap:wrap;background:var(--recess);border:1px dashed var(--rule);border-radius:12px;padding:12px 16px;}
.bt-bonusbar > b{font-family:var(--font-headline);font-weight:800;font-size:15px;color:var(--ink);flex:1;min-width:180px;}
.bt-code{cursor:pointer;background:transparent;font-family:var(--font-score);font-weight:700;font-size:12px;letter-spacing:.04em;color:var(--brand);border:1.5px dashed var(--brand);border-radius:8px;padding:6px 12px;transition:background .15s,color .15s;}
.bt-code:hover{background:color-mix(in srgb,var(--brand) 10%,transparent);}
.bt-code.copied{background:var(--brand);color:#fff;border-style:solid;}
.bt-bonusbar-cta{flex-shrink:0;}
.bt-facts{display:flex;gap:22px;flex-wrap:wrap;}
.bt-fact{display:flex;flex-direction:column;gap:3px;}
.bt-fact em{font-style:normal;font-family:var(--font-headline);font-weight:700;font-size:10px;letter-spacing:.08em;text-transform:uppercase;color:var(--ink-4);}
.bt-fact b{font-family:var(--font-score);font-weight:700;font-size:13px;color:var(--ink);}
.bt-paychips{display:flex;gap:6px;flex-wrap:wrap;}
.bt-paychip{font-family:var(--font-headline);font-weight:700;font-size:10.5px;color:var(--ink-2);border:1px solid var(--rule);border-radius:999px;padding:3px 10px;}
.bt-procon{display:grid;grid-template-columns:1fr 1fr;gap:12px;}
.bt-pros,.bt-cons{border:1px solid var(--rule);border-radius:12px;padding:14px 16px;}
.bt-pros{border-top:3px solid #16A34A;}
.bt-cons{border-top:3px solid var(--accent);}
.bt-pros > b,.bt-cons > b{display:block;font-family:var(--font-headline);font-weight:800;font-size:11px;letter-spacing:.07em;text-transform:uppercase;color:var(--ink-3);margin-bottom:8px;}
.bt-pros ul,.bt-cons ul{margin:0;padding:0;list-style:none;}
.bt-pros li,.bt-cons li{position:relative;padding-left:22px;font-family:var(--font-body);font-size:13.5px;line-height:1.55;color:var(--ink-2);margin-bottom:7px;}
.bt-pros li:last-child,.bt-cons li:last-child{margin-bottom:0;}
.bt-pros li::before{content:"✓";position:absolute;left:0;top:0;font-weight:800;color:#16A34A;}
.bt-cons li::before{content:"✕";position:absolute;left:0;top:0;font-weight:800;color:var(--accent);}
.bt-review summary{cursor:pointer;font-family:var(--font-headline);font-weight:800;font-size:11.5px;letter-spacing:.07em;text-transform:uppercase;color:var(--brand);list-style:none;}
.bt-review summary::-webkit-details-marker{display:none;}
.bt-review summary::after{content:" ↓";}
.bt-review[open] summary::after{content:" ↑";}
.bt-review p{margin:10px 0 0;font-family:var(--font-body);font-size:14px;line-height:1.75;color:var(--ink-2);}
.bt-rank-v2 .bt-rank-tnc{margin-top:2px;}

@media (max-width:860px){
  .bt-rank-v2 .bt-rank-head{flex-wrap:wrap;}
  .bt-procon{grid-template-columns:1fr;}
  .bt-bonusbar > b{min-width:0;flex-basis:100%;}
  .bt-facts{gap:14px;}
  .bt-quick{padding:14px 16px;}
  .bt-table{min-width:680px;}
}


/* ============================================================
   SPORTSTIGER BETTING HUB v2 — spotlight, steps, predictions
   ============================================================ */
.bt-spot{position:relative;background:var(--paper);border:1.5px solid var(--volt);border-radius:18px;padding:24px 24px 20px;margin-bottom:24px;overflow:hidden;box-shadow:0 12px 30px rgba(0,0,0,.07);}
.bt-spot::before{content:"";position:absolute;top:0;left:0;right:0;height:5px;background:linear-gradient(90deg,var(--brand),var(--volt));}
.bt-spot-eyebrow{display:inline-block;font-family:var(--font-headline);font-weight:800;font-size:10.5px;letter-spacing:.12em;text-transform:uppercase;background:var(--volt);color:#241500;border-radius:999px;padding:5px 13px;margin-bottom:16px;}
.bt-spot-row{display:flex;align-items:center;gap:20px;flex-wrap:wrap;}
.bt-spot-logo{width:64px;height:64px;font-size:26px;border-radius:16px;flex-shrink:0;}
.bt-spot-id{display:flex;flex-direction:column;gap:5px;min-width:170px;flex:1;}
.bt-spot-id > b{font-family:var(--font-headline);font-weight:800;font-size:25px;line-height:1.1;color:var(--ink);}
.bt-spot-best{font-family:var(--font-headline);font-weight:700;font-size:12.5px;color:var(--ink-3);}
.bt-spot-bonus{display:flex;flex-direction:column;align-items:flex-start;gap:6px;}
.bt-spot-bonus em{font-style:normal;font-family:var(--font-headline);font-weight:700;font-size:10px;letter-spacing:.08em;text-transform:uppercase;color:var(--ink-4);}
.bt-spot-bonus > b{font-family:var(--font-headline);font-weight:800;font-size:16.5px;color:var(--ink);max-width:280px;}
.bt-spot-cta{display:flex;flex-direction:column;align-items:center;gap:6px;margin-left:auto;}
.bt-spot-facts{margin-top:18px;padding-top:15px;border-top:1px dashed var(--rule);}
.bt-see-links{display:flex;gap:20px;flex-wrap:wrap;margin:-22px 0 34px;}
.bt-see-links a{font-family:var(--font-headline);font-weight:800;font-size:11.5px;letter-spacing:.07em;text-transform:uppercase;color:var(--brand);}
.bt-see-links a:hover{text-decoration:underline;text-underline-offset:3px;}
.bt-steps-sec{margin-bottom:34px;}
.bt-steps{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;}
.bt-step{background:var(--paper);border:1px solid var(--rule);border-radius:14px;padding:18px 16px;}
.bt-step i{display:inline-flex;align-items:center;justify-content:center;width:30px;height:30px;font-style:normal;font-family:var(--font-score);font-weight:700;font-size:13px;background:var(--ink);color:var(--paper);border-radius:9px;margin-bottom:12px;}
.bt-step b{display:block;font-family:var(--font-headline);font-weight:800;font-size:14.5px;color:var(--ink);margin-bottom:6px;}
.bt-step p{margin:0;font-family:var(--font-body);font-size:12.5px;line-height:1.6;color:var(--ink-2);}
.bt-preds{margin-bottom:34px;}
.bt-preds-all{font-family:var(--font-headline);font-weight:800;font-size:11px;letter-spacing:.07em;text-transform:uppercase;color:var(--brand);}
.bt-preds-row{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;}
.bt-pred{display:flex;flex-direction:column;gap:7px;background:var(--paper);border:1px solid var(--rule);border-radius:14px;padding:16px;transition:border-color .15s,transform .15s;}
.bt-pred:hover{border-color:var(--brand);transform:translateY(-2px);}
.bt-pred-tour{font-family:var(--font-score);font-size:10.5px;letter-spacing:.03em;text-transform:uppercase;color:var(--ink-3);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.bt-pred > b{font-family:var(--font-headline);font-weight:800;font-size:16px;line-height:1.3;color:var(--ink);}
.bt-pred-when{font-family:var(--font-score);font-size:11px;color:var(--ink-3);}
.bt-pred-cta{margin-top:auto;padding-top:6px;font-family:var(--font-headline);font-weight:800;font-size:11px;letter-spacing:.07em;text-transform:uppercase;color:var(--brand);}
.bt-card-meta{display:block;font-family:var(--font-score);font-size:11px;color:var(--ink-3);margin-top:10px;}

@media (max-width:860px){
  .bt-spot-row{gap:14px;}
  .bt-spot-id{min-width:120px;}
  .bt-spot-id > b{font-size:21px;}
  .bt-spot-cta{margin-left:0;width:100%;flex-direction:row;justify-content:space-between;}
  .bt-spot-cta .st-offer-cta{flex:1;text-align:center;}
  .bt-steps{grid-template-columns:1fr 1fr;}
  .bt-preds-row{grid-template-columns:1fr;}
  .bt-see-links{margin-top:-26px;}
}
@media (max-width:560px){
  .bt-steps{grid-template-columns:1fr;}
}


/* ============================================================
   BETTING COMPACT HERO + STICKY CTA (client feedback 2026-07-10)
   ============================================================ */
/* apps/sites pages: slim top section so the rankings show sooner */
body.bt-compact .bt-crumb{margin-bottom:10px;}
body.bt-compact .bt-hero{padding:16px 20px 15px;margin-bottom:14px;border-radius:14px;}
body.bt-compact .bt-eyebrow{margin-bottom:6px;font-size:10px;}
body.bt-compact .bt-hero h1{font-size:clamp(22px,3vw,30px);margin:0 0 6px;}
body.bt-compact .bt-hero p{font-size:13.5px;line-height:1.6;max-width:74ch;}
body.bt-compact .bt-trust{margin:0 0 14px;}
body.bt-compact .bt-trust span{padding:6px 12px;font-size:10px;}
body.bt-compact .bt-quick{padding:13px 18px;margin-bottom:18px;}
body.bt-compact .bt-quick li{font-size:13.5px;margin-bottom:4px;}
body.bt-compact .bt-compare{margin-bottom:26px;}

/* Claim never overlaps or hides: the offers table sheds secondary columns
   at smaller widths instead of scrolling (livescore-style final set:
   Bookmaker | Bonus | Rating | Claim). */
.bt-table.bt-table-cta{min-width:0;width:100%;}
.bt-table-cta .bt-tb-cta{padding:8px 14px !important;}
.bt-table-cta .bt-tb-bonus{min-width:140px;}
@media (max-width:960px){
  .bt-table-cta .bt-col-dep,
  .bt-table-cta .bt-col-pay{display:none;}
}
@media (max-width:620px){
  .bt-table-cta .bt-col-upi,
  .bt-table-cta .bt-tb-rank{display:none;}
  .bt-table-cta th,.bt-table-cta td{padding:10px 8px;}
  .bt-tb-brand{white-space:normal;gap:7px;}
  .bt-tb-brand .bt-tb-ribbon{display:none;}
  .bt-table-cta .bt-tb-bonus{min-width:0;font-size:12.5px;}
  .bt-table-cta .bt-tb-cta{padding:7px 11px !important;font-size:10px !important;}
}

@media (max-width:782px){
  body.bt-compact .bt-hero h1{font-size:20px !important;}
  body.bt-compact .bt-hero{padding:14px 16px 13px;}
}

/* compact pages: quick-answer list in two columns to halve its height */
body.bt-compact .bt-quick ol{columns:2;column-gap:44px;}
body.bt-compact .bt-quick li{break-inside:avoid;}
@media (max-width:860px){
  body.bt-compact .bt-quick ol{columns:1;}
}

/* tiny phones: Bookmaker | Bonus | Claim only — table always fits */
@media (max-width:430px){
  .bt-table-cta .bt-tb-rating{display:none;}
  .bt-table-cta .bt-tb-logo{width:26px;height:26px;font-size:12px;}
  .bt-table-cta th,.bt-table-cta td{padding:9px 6px;}
}

/* small phones: rank-card header — name gets the width, stars drop below */
@media (max-width:620px){
  .bt-rank-v2 .bt-rank-head{flex-wrap:wrap;}
  .bt-rank-v2 .bt-rank-rating-v2{flex-basis:100%;order:5;margin-top:2px;}
  .bt-spot-row .bt-rank-rating{flex-basis:auto;}
}

/* the Claim table never scrolls: cells wrap instead, columns already shed
   by breakpoint, so it always fits the screen edge-to-edge */
.bt-tablewrap.bt-fit{overflow-x:clip;}
.bt-table-cta th{white-space:normal;}
.bt-table-cta .bt-tb-mono,
.bt-table-cta .bt-tb-brand{white-space:normal;}
.bt-table-cta .bt-tb-cta{white-space:nowrap;}
