/* ================================================
   EBNEWS DAILY — Stylesheet v5
   Publication of Saglomedia
   ================================================ */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('../fonts/inter-latin-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 300 900;
  font-display: swap;
  src: url('../fonts/inter-latin-variable-italic.woff2') format('woff2');
}

:root {
  --navy:       #0d2257;
  --navy-deep:  #07122e;
  --navy-mid:   #1a3470;
  --red:        #c8102e;
  --red-dark:   #9e0c23;
  --red-light:  #e8294a;
  --charcoal:   #1a1a1a;
  --mid:        #4a4a4a;
  --muted:      #888;
  --border:     #e2e6ea;
  --border-lt:  #f0f2f4;
  --bg:         #e4e8ed;
  --white:      #ffffff;
  --cream:      #f9f8f4;
  --light:      #f2f4f7;
  --gold:       #c9a84c;
  --press-bg:   #f0f4ff;
  --press-accent: #2d52b0;

  --font-display: 'Inter', Arial, Helvetica, sans-serif;
  --font-body:    'Inter', Arial, Helvetica, sans-serif;
  --font-ui:      'Inter', Arial, Helvetica, sans-serif;

  --shadow-xs:  0 1px 3px rgba(0,0,0,0.07);
  --shadow-sm:  0 2px 10px rgba(0,0,0,0.09);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.16);

  --box-width:  1180px;
  --col-gap:    18px;
  --sport-stadium-image: url('/images/sports-stadium-bg.jpg');
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 15px; }

body {
  font-family: var(--font-body);
  background: #fff;
  min-height: 100vh;
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: contain;
}

body.sport-page-shell {
  background:
    linear-gradient(180deg, rgba(4,11,21,0.98) 0%, rgba(9,21,37,0.94) 180px, rgba(228,232,237,0.98) 520px, #e4e8ed 100%),
    var(--sport-stadium-image) center top / cover no-repeat;
}

a { color: inherit; text-decoration: none; transition: color 0.18s; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: var(--font-ui); }
.elementor-widget-heading .elementor-heading-title { font-family: var(--font-display) !important; }
.elementor-widget-text-editor,
.elementor-widget-button .elementor-button { font-family: var(--font-body) !important; }

/* ── PAGE BOX ───────────────────────────────────── */
.page-box {
  max-width: var(--box-width);
  margin: 0 auto 28px;
  background: var(--white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.06), 0 12px 50px rgba(0,0,0,0.16);
  border-radius: 0 0 10px 10px;
  /* Changed from overflow:clip to visible to ensure sticky positioning works */
  overflow: visible;
}

/* Desktop ad rails use only the space outside the 1180px publication shell. */
.eb-side-ad {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 40;
  display: none;
  width: var(--eb-side-ad-width, 120px);
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #f5f6f8;
  box-shadow: inset 0 0 0 1px rgba(13,34,87,0.08);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.16s ease, visibility 0.16s ease;
  contain: layout paint style;
}

.eb-side-ad--left { left: var(--eb-side-ad-left, 0); }
.eb-side-ad--right { right: var(--eb-side-ad-right, 0); }

.eb-side-ad .adsbygoogle {
  width: 100%;
  height: 100%;
  min-height: 100%;
}

@media (min-width: 1440px) {
  html.eb-side-ads-enabled .eb-side-ad {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  html.eb-side-ads-obscured .eb-side-ad {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.eb-header-ad {
  display: block;
  width: 100%;
  min-height: 116px;
  padding: 13px 26px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: #f5f6f8;
}

.eb-header-ad__inner {
  width: min(100%, 970px);
  min-height: 90px;
  margin: 0 auto;
}

.eb-header-ad .adsbygoogle {
  width: 100%;
  min-height: 90px;
}

@media (max-width: 768px) {
  .eb-header-ad {
    min-height: 108px;
    padding: 9px 14px;
  }

  .eb-header-ad__inner,
  .eb-header-ad .adsbygoogle {
    min-height: 90px;
  }
}

/* Homepage tender bulletin */
.home-tender-bulletin {
  border-bottom: 1px solid #dce3eb;
  background: #f8fafc;
}
.home-tender-bulletin .inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: stretch;
  min-height: 72px;
  padding: 0 24px;
}
.home-tender-bulletin__label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 18px;
  color: #fff;
  background: #10233f;
  box-shadow: -100vw 0 0 #10233f;
}
.home-tender-bulletin__label > i {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #10233f;
  background: #f2c94c;
  font-size: 13px;
}
.home-tender-bulletin__label span { display: grid; gap: 1px; }
.home-tender-bulletin__label small {
  color: #b9c7d7;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.home-tender-bulletin__label strong {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0;
  white-space: nowrap;
}
.home-tender-bulletin__items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-width: 0;
}
.home-tender-bulletin__items a {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: 9px 14px;
  border-right: 1px solid #e1e7ee;
}
.home-tender-bulletin__items a:hover { background: #fff; }
.home-tender-bulletin__items span,
.home-tender-bulletin__items time {
  overflow: hidden;
  color: #6b7787;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.home-tender-bulletin__items strong {
  overflow: hidden;
  margin: 3px 0;
  color: #172b48;
  font-size: 11px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.home-tender-bulletin__items time { color: #a50e28; }
.home-tender-bulletin__all {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-left: 16px;
  color: #10233f;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}
.home-tender-bulletin__all:hover { color: var(--red); }
@media (max-width: 900px) {
  .home-tender-bulletin .inner {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 68px;
    padding: 0 14px;
  }
  .home-tender-bulletin__items {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }
  .home-tender-bulletin__items::-webkit-scrollbar { display: none; }
  .home-tender-bulletin__items a {
    flex: 0 0 min(72vw, 300px);
    scroll-snap-align: start;
  }
  .home-tender-bulletin__all { display: none; }
}
@media (max-width: 520px) {
  .home-tender-bulletin .inner { grid-template-columns: 42px minmax(0, 1fr); padding: 0; }
  .home-tender-bulletin__label { justify-content: center; padding: 0 6px; box-shadow: none; }
  .home-tender-bulletin__label span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .home-tender-bulletin__items a { padding: 9px 12px; }
}

.sport-page-shell .page-box {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 4px rgba(0,0,0,0.08), 0 16px 54px rgba(0,0,0,0.22);
}

.players-dir-shell .page-content {
  padding: 0;
}

.players-dir-shell .page-content > .section-title {
  display: none;
}

.sport-hero-backdrop {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.sport-hero-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    var(--sport-hero-overlay, linear-gradient(135deg, rgba(8,19,37,0.92) 0%, rgba(15,28,51,0.82) 55%, rgba(23,42,73,0.78) 100%)),
    var(--sport-stadium-image) center var(--sport-hero-position, 50%) / cover no-repeat;
  z-index: -2;
}

.sport-hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 22%, rgba(2,6,23,0.24) 100%);
  pointer-events: none;
  z-index: -1;
}

.container { padding: 0 26px; }

/* ── TOP BAR ────────────────────────────────────── */
/* ── STICKY HEADER WRAPPER ──────────────────────── */
.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 300;
  /* Hardware-accelerate for smooth scrolling */
  will-change: transform;
  /* Add subtle shadow when sticky */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  /* Ensure background covers content behind */
  background: var(--white);
}

.top-bar {
  background: #f8fafc;
  padding: 0 26px;
  border-bottom: 1px solid rgba(15,23,42,0.08);
  overflow: hidden;
  transition: transform 0.25s ease, opacity 0.25s ease, max-height 0.25s ease, padding 0.25s ease, border-bottom 0.25s ease, height 0.25s ease;
}
.site-header-wrap.compact .top-bar {
  transform: translateY(-100%);
  opacity: 0;
  max-height: 0;
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: 0;
  overflow: hidden;
}
.top-bar .inner {
  min-height: 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.top-bar .left { display: flex; align-items: center; gap: 16px; }
.top-bar .right {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
}

.top-bar .weather {
  font-size: 11px; color: #475569;
  display: flex; align-items: center; gap: 5px;
  padding-right: 12px; margin-right: 12px;
  border-right: 1px solid rgba(71,85,105,0.12);
}
#current-date { font-size: 11px; color: #64748b; }
.top-bar .edition { font-size: 11px; color: #475569; }
.top-bar .social-links { display: flex; gap: 10px; align-items: center; }
.top-bar .social-links a { color: #64748b; font-size: 11px; transition: color 0.2s; }
.top-bar .social-links a:hover { color: #0f172a; }

.brand-post-widget {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 1px solid rgba(148,163,184,0.18);
  color: #f8fafc;
  border-radius: 14px;
  box-shadow: 0 16px 35px rgba(0,0,0,0.16);
  overflow: hidden;
}
.brand-post-widget .widget-title {
  color: #f8fafc;
}
.brand-post-widget .widget-inner {
  padding: 24px 20px;
}
.brand-post-widget p {
  color: rgba(248,250,252,0.88);
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.6;
}
.brand-post-widget .btn-sub {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 16px;
  background: #f8fafc;
  color: #0f172a;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}
.brand-post-widget .btn-sub:hover {
  background: #e2e8f0;
  transform: translateY(-1px);
}

/* ── SITE HEADER ────────────────────────────────── */
.site-header {
  background: var(--white);
  padding: 0 26px;
  border-bottom: 4px solid var(--red);
}
.site-header .inner {
  height: 84px;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo — transparent PNG on white bg */
.site-logo { display: block; flex-shrink: 0; text-decoration: none; line-height: 0; }
.site-logo:focus {
  outline: none;
}
.site-logo img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.site-branding {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.site-branding-title {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy);
}
.site-branding-subtitle {
  font-size: 13px;
  line-height: 1.4;
  color: var(--mid);
  max-width: 420px;
}

/* Spacer pushes actions to right */
.header-spacer { flex: 0 0 16px; }

.header-search {
  display: flex;
  align-items: center;
  flex: 1 1 0;
  min-width: 210px;
  max-width: 760px;
  width: 100%;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 6px;
}
.header-search input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--charcoal);
}
.header-search input::placeholder {
  color: rgba(74,74,74,0.6);
}
.header-search button {
  width: 38px;
  height: 38px;
  border: none;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.header-search button:hover {
  background: var(--red-dark);
}
.header-search input:focus,
.header-search button:focus {
  outline: none;
}

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 12px; flex: 1 1 0; justify-content: flex-end; min-width: 0; }

.btn-search {
  color: var(--muted); font-size: 14px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  background: var(--light); border: 1px solid var(--border); cursor: pointer;
  border-radius: 6px;
}
.btn-search:hover { color: var(--navy); background: var(--border); }

.btn-header-signin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 9px 15px;
  border: 1px solid var(--navy);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.2s;
}
.btn-header-signin:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(13,34,87,0.2);
}
.btn-header-signin i { font-size: 12px; }

/* Publish Post CTA */
.btn-publish {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-ui); font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 10px 20px; border: none; cursor: pointer;
  transition: all 0.2s;
  display: flex; align-items: center; gap: 8px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(200,16,46,0.32);
  white-space: nowrap;
}
.btn-publish:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,16,46,0.42);
}
.btn-publish i { font-size: 12px; }
.btn-publish.btn-account {
  background: var(--navy);
  box-shadow: 0 2px 10px rgba(9, 31, 58, 0.24);
  max-width: 190px;
  min-width: 0;
}
.btn-publish.btn-account span {
  overflow: hidden;
  text-overflow: ellipsis;
}
.btn-publish.btn-account:hover {
  background: #16395f;
  box-shadow: 0 4px 16px rgba(9, 31, 58, 0.32);
}
.publisher-account-menu {
  position: relative;
  flex: 0 1 auto;
}
.publisher-account-menu summary {
  list-style: none;
}
.publisher-account-menu summary::-webkit-details-marker {
  display: none;
}
.publisher-account-chevron {
  font-size: 9px !important;
  transition: transform 0.2s ease;
}
.publisher-account-menu[open] .publisher-account-chevron {
  transform: rotate(180deg);
}
.publisher-account-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 500;
  display: grid;
  width: max-content;
  min-width: 230px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(9, 31, 58, 0.2);
}
.publisher-account-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: var(--charcoal);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 7px;
}
.publisher-account-dropdown a:hover,
.publisher-account-dropdown a:focus-visible {
  color: var(--navy);
  background: var(--light);
}
.publisher-account-dropdown i {
  width: 16px;
  color: var(--red);
  text-align: center;
}
.publisher-account-dropdown .publisher-account-signout {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ── NAVIGATION ─────────────────────────────────── */
.main-nav {
  background: var(--navy);
  position: relative; z-index: 200;
  box-shadow: 0 3px 14px rgba(0,0,0,0.26);
}
.main-nav .inner {
  display: flex; align-items: stretch;
  justify-content: space-between;
  padding: 0 26px;
  overflow: visible;
}

.nav-list { display: flex; align-items: stretch; flex-shrink: 1; min-width: 0; }
.nav-list li { position: relative; }

.nav-list > li > a {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 0 11px; height: 44px;
  display: flex; align-items: center; gap: 3px;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}
.nav-list > li > a:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.nav-list > li.active > a {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.28);
}
.nav-list .has-dropdown > a::after { content: "▾"; font-size: 8px; opacity: 0.5; margin-left: 1px; }

/* Dropdown */
.dropdown {
  position: absolute; top: 100%; left: 0;
  min-width: 196px;
  background: var(--navy-deep);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 6px 6px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 300;
}
.nav-list li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; font-size: 12px; color: rgba(255,255,255,0.72);
  padding: 9px 15px; border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s, padding-left 0.15s;
}
.dropdown a:hover { background: rgba(255,255,255,0.07); color: var(--white); padding-left: 20px; }
.dropdown li:last-child a { border-bottom: none; border-radius: 0 0 6px 6px; }

/* Brands nav item — gold accent */
.nav-list > li.brands-nav > a {
  color: var(--gold);
}
.nav-list > li.brands-nav > a:hover { background: rgba(201,168,76,0.12); color: var(--gold); }
.nav-list > li.brands-nav.active > a { border-bottom-color: var(--gold); }

/* Nav right */
.nav-right { display: flex; align-items: center; flex-shrink: 0; }
.nav-right-dropdown { position: relative; display: flex; align-items: stretch; }
.nav-right a {
  font-family: var(--font-ui); font-size: 10px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: rgba(255,255,255,0.50); padding: 0 10px; height: 44px;
  display: flex; align-items: center; gap: 5px;
  transition: color 0.18s; white-space: nowrap;
}
.nav-right a:hover { color: var(--white); }
.nav-right a.is-active { color: var(--white); }
.nav-right a.live-matches { gap: 8px; }
.nav-right-toggle {
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.6);
  width: 30px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.nav-right-toggle:hover,
.nav-right-dropdown.is-open .nav-right-toggle {
  color: var(--white);
}
.nav-right-caret { font-size: 9px; opacity: .72; margin-left: 2px; }
.nav-right a.live-matches .live-ball {
  position: relative;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--red);
  flex: 0 0 18px;
}
.nav-right a.live-matches .live-ball i {
  position: relative;
  z-index: 2;
  font-size: 13px;
}
.nav-right a.live-matches.has-live-matches .live-ball::before,
.nav-right a.live-matches.has-live-matches .live-ball::after {
  content: "";
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  border: 1.5px solid rgba(232,41,74,0.78);
  transform: translate(-50%, -50%) scale(1);
}
.nav-right a.live-matches.has-live-matches .live-ball::before {
  width: 18px;
  height: 18px;
  opacity: .9;
}
.nav-right a.live-matches.has-live-matches .live-ball::after {
  width: 18px;
  height: 18px;
  opacity: .55;
  animation: livePulse 1.8s ease-out infinite;
}
.nav-right a.live-matches:hover .live-ball,
.nav-right a.live-matches.is-active .live-ball {
  color: #ff5a72;
}
.nav-right-menu {
  position: absolute;
  right: 0;
  top: calc(100% - 2px);
  min-width: 180px;
  padding: 8px 0;
  border-radius: 14px;
  background: rgba(7,18,46,0.98);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 42px rgba(15,23,42,0.34);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 40;
}
.nav-right-menu a {
  height: auto;
  padding: 10px 14px;
  color: rgba(255,255,255,0.72);
  justify-content: flex-start;
}
.nav-right-menu a:hover,
.nav-right-menu a.is-active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.nav-right-dropdown:hover .nav-right-menu,
.nav-right-dropdown.is-open .nav-right-menu,
.nav-right-dropdown:focus-within .nav-right-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@keyframes livePulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: .65; }
  70% { transform: translate(-50%, -50%) scale(1.9); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(1.9); opacity: 0; }
}

/* Compact automated services navigation */
.main-nav .inner { justify-content: flex-start; }
.services-nav {
  position: relative;
  z-index: 190;
  background: #fff;
  border-bottom: 1px solid #dce3eb;
  box-shadow: 0 3px 10px rgba(15, 34, 66, 0.07);
}
.services-nav .inner {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 0 26px;
  overflow: visible;
}
.services-nav__label {
  flex: 0 0 auto;
  padding-right: 14px;
  color: #7b8796;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.services-nav .nav-right {
  min-width: 0;
  flex: 1 1 auto;
  justify-content: flex-end;
}
.services-nav .nav-right a {
  height: 36px;
  padding: 0 12px;
  border-left: 1px solid #e7ebf0;
  color: #32445a;
  font-size: 9px;
  letter-spacing: .04em;
}
.services-nav__icon {
  width: 14px;
  flex: 0 0 14px;
  color: #42566d;
  font-size: 11px;
  line-height: 1;
  text-align: center;
}
.services-nav .nav-right a:hover,
.services-nav .nav-right a.is-active,
.services-nav .nav-right a[aria-current="page"] {
  color: var(--navy);
  background: #f3f6f9;
}
.services-nav .nav-right a.is-active,
.services-nav .nav-right a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--red);
}
.services-nav .nav-right a.has-live-matches {
  color: #a50e28;
  background: #fff1f3;
  font-weight: 900;
  box-shadow: inset 0 -2px 0 var(--red);
}
.services-nav .nav-right a.has-live-matches:hover { color: #7f0b20; background: #ffe7eb; }
.services-nav .live-match-count { color: var(--red); font-weight: 900; }
.services-nav .nav-right-toggle {
  width: 26px;
  height: 36px;
  border-right: 1px solid #e7ebf0;
  color: #526174;
}
.services-nav .nav-right-toggle:hover,
.services-nav .nav-right-dropdown.is-open .nav-right-toggle { color: var(--navy); background: #f3f6f9; }
.services-nav .nav-right-menu { z-index: 400; top: 100%; right: 0; border-radius: 0 0 6px 6px; }
.services-nav .nav-right-menu a { height: auto; border-left: 0; color: rgba(255,255,255,.76); box-shadow: none; }
.services-nav .nav-right-menu a:hover,
.services-nav .nav-right-menu a.is-active { color: #fff; background: rgba(255,255,255,.07); box-shadow: none; }
.services-nav .nav-right > a[href*="lotto"] i { color: #b98500; }
.services-nav .nav-right > a[href*="markets"] i { color: #157347; }
.services-nav .nav-right > a[href*="weather"] i { color: #1976a3; }
.services-nav .nav-right > a[href*="world-cup"] i { color: #9a6a00; }
.services-nav .nav-right > a[href*="education"] i { color: #b47d00; }
.services-nav .nav-right > a[href*="sassa"] i { color: #188251; }
.services-nav .nav-right > a[href*="tenders"] i { color: #a26d00; }
.services-nav .nav-right > a:is(
  [href*="/livescores/"],
  [href*="/match-center/"],
  [href*="/world-cup-2026/"],
  [href*="/lotto-results/"],
  [href*="/markets/"],
  [href*="/weather/"],
  [href*="/education/"],
  [href*="/sassa/"]
),
.services-nav .nav-right > a:is(
  [href*="/livescores/"],
  [href*="/match-center/"],
  [href*="/world-cup-2026/"],
  [href*="/lotto-results/"],
  [href*="/markets/"],
  [href*="/weather/"],
  [href*="/education/"],
  [href*="/sassa/"]
) i,
.services-nav .nav-right > a[href*="/match-center/"] .live-match-count {
  color: #000;
}

@media (max-width: 1100px) {
  .services-nav .inner {
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .services-nav .inner::-webkit-scrollbar { display: none; }
  .services-nav__label { display: none; }
  .services-nav .nav-right {
    width: max-content;
    min-width: max-content;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .services-nav { box-shadow: 0 2px 8px rgba(15,34,66,.08); }
  .services-nav .inner {
    min-height: 38px;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .services-nav .inner::-webkit-scrollbar { display: none; }
  .services-nav__label { display: none; }
  .services-nav .nav-right {
    display: flex;
    width: max-content;
    min-width: max-content;
    justify-content: flex-start;
  }
  .services-nav .nav-right a { height: 38px; padding: 0 11px; font-size: 9px; }
}

/* ── SEARCH OVERLAY ─────────────────────────────── */
.search-overlay {
  position: fixed; inset: 0;
  background: rgba(7,18,46,0.96);
  z-index: 500;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 120px;
  opacity: 0; visibility: hidden; transition: all 0.28s;
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-box { width: min(980px, 92%); max-width: 95%; }
.search-box .field { display: flex; border-bottom: 2px solid rgba(255,255,255,0.25); width: 100%; }
.search-box input { width: 100%; min-width: 0; padding: 16px 14px; }
.search-box label {
  display: block; margin-bottom: 14px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35);
}
.search-box .field { display: flex; border-bottom: 2px solid rgba(255,255,255,0.25); }
.search-box input {
  flex: 1; background: none; border: none; outline: none;
  font-family: var(--font-display); font-size: 28px; font-weight: 900;
  color: var(--white); padding: 6px 0;
}
.search-box input::placeholder { color: rgba(255,255,255,0.18); }
.search-box button { color: rgba(255,255,255,0.45); font-size: 18px; padding: 6px 10px; transition: color 0.2s; }
.search-box button:hover { color: var(--white); }
.search-results {
  margin-top: 24px;
  display: grid;
  gap: 14px;
  max-height: calc(100vh - 280px);
  overflow-y: auto;
  padding-right: 4px;
}
.search-results::-webkit-scrollbar {
  width: 8px;
}
.search-results::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
}

.eb-service-hero {
  max-width: var(--box-width);
  margin: 0 auto;
  padding: 34px 24px 24px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  color: #fff;
  border-bottom: 4px solid var(--gold);
}

.eb-service-hero h1 {
  margin: 8px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
}

.eb-service-hero p {
  max-width: 760px;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
}

.eb-service-kicker,
.eb-service-card .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eb-service-panel {
  max-width: var(--box-width);
  margin: 0 auto 28px;
  padding: 24px;
  background: var(--white);
}

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

.eb-service-card {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--border);
  background: var(--cream);
  box-shadow: var(--shadow-xs);
}

.eb-service-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 9px 0 8px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.2;
}

.eb-service-card p {
  color: var(--mid);
  font-size: 14px;
}

.eb-service-card .eb-service-value {
  color: var(--red);
  font-size: 24px;
  font-weight: 800;
}

.eb-brand-directory-title {
  margin-top: 30px;
}

.eb-brand-directory {
  margin-bottom: 30px;
}

.eb-brand-directory-card {
  min-height: 250px;
}

.eb-brand-directory-card h3 a {
  color: inherit;
  text-decoration: none;
}

.eb-brand-directory-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 74px;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid var(--border);
  background: var(--white);
}

.eb-brand-directory-logo img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.eb-brand-directory-logo span {
  color: var(--navy);
  font-size: 30px;
  font-weight: 800;
}

.eb-brands-hero {
  max-width: var(--box-width);
  margin: 0 auto;
  padding: 64px 24px 70px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200, 16, 46, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(26, 35, 126, 0.40) 0%, transparent 60%),
    var(--navy-deep);
  border-bottom: 4px solid var(--gold);
}

.eb-brands-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.eb-brands-hero h1 {
  margin: 14px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.12;
}

.eb-brands-hero p {
  margin: 0 auto 28px;
  max-width: 680px;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 20px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.88);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
}

.eb-press-hero {
  max-width: var(--box-width);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
  background: var(--navy);
  color: #fff;
  border-bottom: 4px solid var(--red);
}

.eb-press-hero h1 {
  margin: 5px 0 8px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
}

.eb-press-hero p {
  max-width: 680px;
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .eb-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .eb-press-hero {
    flex-direction: column;
    padding: 22px 18px;
  }
}

@media (max-width: 640px) {
  .eb-service-hero,
  .eb-service-panel {
    padding-left: 16px;
    padding-right: 16px;
  }

  .eb-service-grid {
    grid-template-columns: 1fr;
  }
}

/* South Africa weather service. */
.eb-weather-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--navy);
  background: #f8fafc;
  font-size: 11px;
  font-weight: 800;
}
.eb-weather-toolbar time { color: var(--muted); font-weight: 600; }
.eb-weather-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.eb-weather-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-top: 4px solid #2563eb;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .05);
}
.eb-weather-card.is-primary { grid-column: 1 / -1; border-top-color: var(--gold); }
.eb-weather-card > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 128px;
  padding: 20px;
  background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
}
.eb-weather-card > header h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0;
}
.eb-weather-card > header p { margin: 5px 0 0; color: var(--muted); font-size: 11px; }
.eb-weather-now { display: flex; align-items: center; gap: 13px; color: #2563eb; }
.eb-weather-now > i { font-size: 34px; }
.eb-weather-now strong { color: var(--navy); font-family: var(--font-display); font-size: 43px; letter-spacing: 0; white-space: nowrap; }
.eb-weather-now sup { font-size: 16px; }
.eb-weather-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
}
.eb-weather-facts > span {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 2px 7px;
  min-width: 0;
  padding: 12px;
  border-right: 1px solid var(--border-lt);
}
.eb-weather-facts > span:last-child { border-right: 0; }
.eb-weather-facts i { grid-row: 1 / 3; color: #2563eb; }
.eb-weather-facts small { color: var(--muted); font-size: 8px; text-transform: uppercase; }
.eb-weather-facts strong { overflow: hidden; color: var(--charcoal); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.eb-weather-forecast { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.eb-weather-forecast > div {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 13px 7px;
  border-right: 1px solid var(--border-lt);
  color: var(--navy);
  text-align: center;
}
.eb-weather-forecast > div:last-child { border-right: 0; }
.eb-weather-forecast > div > strong { font-size: 9px; text-transform: uppercase; }
.eb-weather-forecast > div > i { color: #2563eb; font-size: 18px; }
.eb-weather-forecast > div > span { font-size: 12px; font-weight: 900; }
.eb-weather-forecast > div > span small { color: var(--muted); font-size: 10px; font-weight: 600; }
.eb-weather-forecast em { color: #2563eb; font-size: 8px; font-style: normal; }
@media (max-width: 760px) {
  .eb-weather-grid { grid-template-columns: 1fr; }
  .eb-weather-card.is-primary { grid-column: auto; }
}
@media (max-width: 540px) {
  .eb-weather-toolbar { align-items: flex-start; flex-direction: column; gap: 5px; }
  .eb-weather-card > header { min-height: 112px; padding: 16px; }
  .eb-weather-card > header h2 { font-size: 19px; }
  .eb-weather-now { align-items: flex-end; flex-direction: column; gap: 3px; }
  .eb-weather-now > i { font-size: 25px; }
  .eb-weather-now strong { font-size: 34px; }
  .eb-weather-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .eb-weather-facts > span:nth-child(2) { border-right: 0; }
  .eb-weather-facts > span:nth-child(-n+2) { border-bottom: 1px solid var(--border-lt); }
  .eb-weather-forecast > div { padding: 11px 4px; }
}

.eb-weather-explorer { display: grid; gap: 18px; }
.eb-weather-provinces {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 2px 2px 9px;
  scrollbar-width: thin;
}
.eb-weather-provinces button {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 11px;
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--muted);
  background: #fff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}
.eb-weather-provinces button:hover { border-color: #2563eb; color: #2563eb; }
.eb-weather-provinces button.is-active { border-color: var(--navy); color: #fff; background: var(--navy); }
.eb-weather-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, .55fr);
  gap: 18px;
  align-items: stretch;
}
.eb-weather-map-layout + .eb-weather-national { margin-top: 4px; }
.eb-weather-map {
  width: 100%;
  min-height: 575px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #b9dce8;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .07);
  z-index: 0;
}
.eb-weather-map.leaflet-container { background: #b9dce8; }
.eb-weather-selected { display: flex; flex-direction: column; min-width: 0; }
.eb-weather-selected > header { min-height: 154px; }
.eb-weather-selected .eb-weather-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.eb-weather-selected .eb-weather-facts > span:nth-child(2) { border-right: 0; }
.eb-weather-selected .eb-weather-facts > span:nth-child(-n+2) { border-bottom: 1px solid var(--border-lt); }
.eb-weather-selected .eb-weather-forecast { margin-top: auto; }
.eb-weather-map-marker-wrap { border: 0; background: transparent; }
.eb-weather-map-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 48px;
  height: 30px;
  border: 2px solid #fff;
  border-radius: 15px;
  color: #fff;
  background: #0f766e;
  box-shadow: 0 4px 12px rgba(15, 23, 42, .28);
  font-size: 10px;
  line-height: 1;
}
.eb-weather-map-marker.is-cold { background: #2563eb; }
.eb-weather-map-marker.is-hot { background: #dc2626; }
.eb-weather-map-marker b { font-size: 11px; font-variant-numeric: tabular-nums; }
.eb-weather-map .leaflet-control-zoom a { color: var(--navy); }
.eb-weather-map .leaflet-control-attribution { font-size: 8px; }
.eb-weather-map .leaflet-tooltip {
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 5px 14px rgba(15, 23, 42, .18);
  font-size: 10px;
  font-weight: 800;
}
.eb-weather-city-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-top: 5px;
}
.eb-weather-city-heading h2 { margin: 0; color: var(--navy); font-family: var(--font-display); font-size: 20px; letter-spacing: 0; }
.eb-weather-city-heading > strong { color: var(--muted); font-size: 10px; }
.eb-weather-city-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}
.eb-weather-city-button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20px auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 58px;
  padding: 9px 11px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--charcoal);
  background: #fff;
  text-align: left;
  cursor: pointer;
}
.eb-weather-city-button:hover { border-color: #93c5fd; background: #f8fbff; }
.eb-weather-city-button.is-active { border-color: #2563eb; box-shadow: inset 3px 0 #2563eb; background: #eff6ff; }
.eb-weather-city-button[hidden] { display: none; }
.eb-weather-city-button > span { min-width: 0; }
.eb-weather-city-button strong,
.eb-weather-city-button small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.eb-weather-city-button strong { color: var(--navy); font-size: 11px; }
.eb-weather-city-button small { margin-top: 3px; color: var(--muted); font-size: 8px; }
.eb-weather-city-button > i { color: #2563eb; font-size: 15px; text-align: center; }
.eb-weather-city-button > b { color: var(--navy); font-size: 14px; font-variant-numeric: tabular-nums; }
@media (max-width: 1050px) {
  .eb-weather-map-layout { grid-template-columns: 1fr; }
  .eb-weather-map { min-height: 520px; }
  .eb-weather-selected { display: grid; grid-template-columns: minmax(250px, .8fr) minmax(0, 1.2fr); }
  .eb-weather-selected > header { min-height: 130px; }
  .eb-weather-selected .eb-weather-facts { border-top: 0; }
  .eb-weather-selected .eb-weather-forecast { grid-column: 1 / -1; }
  .eb-weather-city-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .eb-weather-map { min-height: 460px; }
  .eb-weather-selected { display: flex; }
  .eb-weather-selected .eb-weather-facts { border-top: 1px solid var(--border-lt); }
  .eb-weather-city-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 430px) {
  .eb-weather-map { min-height: 410px; }
  .eb-weather-city-heading { align-items: flex-start; flex-direction: column; gap: 4px; }
  .eb-weather-city-grid { grid-template-columns: 1fr; }
}

/* FIFA World Cup 2026 Match Center. */
.eb-wc-center { display: grid; min-width: 0; max-width: 100%; gap: 24px; }
.eb-wc-center > *,
.eb-wc-matches,
.eb-wc-groups,
.eb-wc-matches > *,
.eb-wc-groups > *,
.eb-wc-section-head,
.eb-wc-controls,
.eb-wc-match-days,
.eb-wc-match-day,
.eb-wc-match-grid,
.eb-wc-group-grid,
.eb-wc-group-card,
.eb-wc-table-wrap { min-width: 0; max-width: 100%; }
.eb-wc-matches > *,
.eb-wc-groups > *,
.eb-wc-section-head,
.eb-wc-controls { width: 100%; }
.eb-wc-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 6px;
  background: #f8fafc;
}
.eb-wc-toolbar strong { color: var(--navy); font-size: 12px; }
.eb-wc-toolbar time { color: var(--muted); font-size: 10px; }
.eb-wc-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--border);
  border-radius: 7px;
  overflow: hidden;
  background: var(--navy);
}
.eb-wc-summary span { display: grid; justify-items: center; gap: 3px; padding: 16px; border-right: 1px solid rgba(255,255,255,.12); }
.eb-wc-summary span:last-child { border-right: 0; }
.eb-wc-summary strong { color: #fff; font-family: var(--font-display); font-size: 27px; letter-spacing: 0; }
.eb-wc-summary small { color: rgba(255,255,255,.62); font-size: 8px; font-weight: 800; text-transform: uppercase; }
.eb-wc-jump { display: flex; gap: 8px; }
.eb-wc-jump a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--navy);
  background: #fff;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}
.eb-wc-jump a:hover { border-color: var(--red); color: var(--red); }
.eb-wc-matches,
.eb-wc-groups { display: grid; gap: 18px; scroll-margin-top: 100px; }
.eb-wc-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--navy);
}
.eb-wc-section-head h2 { margin: 0; color: var(--navy); font-family: var(--font-display); font-size: 24px; letter-spacing: 0; }
.eb-wc-section-head > strong { color: var(--muted); font-size: 10px; }
.eb-wc-controls { display: flex; align-items: end; justify-content: space-between; gap: 16px; }
.eb-wc-filter { display: flex; max-width: 100%; gap: 7px; overflow-x: auto; padding-bottom: 3px; }
.eb-wc-filter button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 11px;
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--muted);
  background: #fff;
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}
.eb-wc-filter button span { display: grid; min-width: 20px; height: 20px; place-items: center; border-radius: 10px; background: #eef2f7; font-size: 8px; }
.eb-wc-filter button.is-active { border-color: var(--navy); color: #fff; background: var(--navy); }
.eb-wc-filter button.is-active span { color: var(--navy); background: #fff; }
.eb-wc-stage-label { display: grid; gap: 5px; min-width: 165px; color: var(--muted); font-size: 8px; font-weight: 850; text-transform: uppercase; }
.eb-wc-stage-label select { width: 100%; height: 38px; padding: 0 9px; border: 1px solid var(--border); border-radius: 5px; color: var(--charcoal); background: #fff; font-size: 11px; }
.eb-wc-match-days { display: grid; gap: 22px; }
.eb-wc-match-day { display: grid; gap: 10px; }
.eb-wc-match-day[hidden] { display: none; }
.eb-wc-match-day > header { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.eb-wc-match-day > header h3 { margin: 0; color: var(--navy); font-size: 13px; letter-spacing: 0; }
.eb-wc-match-day > header span { color: var(--muted); font-size: 9px; }
.eb-wc-match-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.eb-wc-match-card {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--border);
  border-top: 3px solid #94a3b8;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15,23,42,.04);
}
.eb-wc-match-card[hidden] { display: none; }
.eb-wc-match-card.is-in { border-top-color: var(--red); }
.eb-wc-match-card.is-south-africa { border-color: #16a34a; border-top-color: #16a34a; background: #f0fdf4; }
.eb-wc-match-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; color: var(--muted); font-size: 8px; font-weight: 800; text-transform: uppercase; }
.eb-wc-match-meta strong { color: var(--navy); }
.eb-wc-match-card.is-in .eb-wc-match-meta strong { color: var(--red); }
.eb-wc-team { display: grid; grid-template-columns: 34px minmax(0, 1fr) auto; align-items: center; gap: 9px; min-height: 43px; color: var(--charcoal); font-size: 12px; font-weight: 700; }
.eb-wc-team img { width: 31px; height: 31px; object-fit: contain; }
.eb-wc-team > strong { color: var(--navy); font-size: 18px; }
.eb-wc-team.is-winner span,
.eb-wc-team.is-winner > strong { font-weight: 900; }
.eb-wc-match-card > p { overflow: hidden; margin: 9px 0 0; color: var(--muted); font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.eb-wc-empty { display: grid; justify-items: center; gap: 7px; padding: 40px 20px; border: 1px dashed var(--border); border-radius: 6px; color: var(--muted); text-align: center; }
.eb-wc-empty[hidden] { display: none; }
.eb-wc-empty i { color: var(--red); font-size: 20px; }
.eb-wc-group-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.eb-wc-group-card { min-width: 0; overflow: hidden; border: 1px solid var(--border); border-radius: 6px; background: #fff; }
.eb-wc-group-card > header { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 13px; color: #fff; background: var(--navy); }
.eb-wc-group-card > header span { font-size: 12px; font-weight: 900; }
.eb-wc-group-card > header small { color: rgba(255,255,255,.55); font-size: 7px; }
.eb-wc-table-wrap { width: 100%; overflow-x: auto; }
.eb-wc-group-card table { width: 100%; min-width: 350px; border-collapse: collapse; font-size: 9px; font-variant-numeric: tabular-nums; }
.eb-wc-group-card th,
.eb-wc-group-card td { padding: 8px 5px; border-bottom: 1px solid var(--border-lt); text-align: center; }
.eb-wc-group-card thead th { color: var(--muted); background: #f8fafc; font-size: 7px; text-transform: uppercase; }
.eb-wc-group-card tbody th { display: flex; align-items: center; gap: 6px; min-width: 120px; color: var(--charcoal); text-align: left; }
.eb-wc-group-card tbody th img { width: 21px; height: 21px; object-fit: contain; }
.eb-wc-group-card tbody tr.is-qualification { box-shadow: inset 3px 0 #16a34a; }
.eb-wc-group-card tbody td:last-child strong { color: var(--navy); font-size: 11px; }
@media (max-width: 1050px) {
  .eb-wc-match-grid,
  .eb-wc-group-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .eb-wc-toolbar,
  .eb-wc-controls { align-items: flex-start; flex-direction: column; }
  .eb-wc-filter { width: 100%; }
  .eb-wc-stage-label { width: 100%; }
  .eb-wc-match-grid,
  .eb-wc-group-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .eb-wc-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .eb-wc-summary span:nth-child(2) { border-right: 0; }
  .eb-wc-summary span:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .eb-wc-jump { display: grid; grid-template-columns: 1fr 1fr; }
  .eb-wc-jump a { justify-content: center; }
}

/* FIFA World Cup 2026 permanent archive. */
.eb-wc-archive { gap: 28px; }
.eb-wc-archive .eb-wc-toolbar { border-left-color: #c69320; background: #fffdf6; }
.eb-wc-archive-status { display: inline-flex; align-items: center; gap: 7px; color: #166534; font-size: 9px; font-weight: 850; text-transform: uppercase; }
.eb-wc-champion {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: center;
  gap: 28px;
  min-height: 300px;
  padding: 36px 40px;
  overflow: hidden;
  border-bottom: 6px solid #d4a62a;
  color: #fff;
  background: #064e3b;
}
.eb-wc-champion-copy { display: grid; grid-template-columns: 112px minmax(0, 1fr); align-items: center; column-gap: 24px; }
.eb-wc-champion-kicker { grid-column: 1 / -1; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px; color: #f6d878; font-size: 10px; font-weight: 900; text-transform: uppercase; }
.eb-wc-champion-kicker i { font-size: 17px; }
.eb-wc-champion-copy > img { width: 108px; height: 108px; padding: 10px; object-fit: contain; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: #fff; }
.eb-wc-champion h2 { margin: 0; color: #fff; font-family: var(--font-display); font-size: 46px; line-height: 1; letter-spacing: 0; }
.eb-wc-champion p { grid-column: 2; max-width: 560px; margin: 9px 0 0; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.6; }
.eb-wc-champion-final { display: grid; gap: 10px; padding-left: 28px; border-left: 1px solid rgba(255,255,255,.22); }
.eb-wc-champion-final > span { color: #f6d878; font-size: 9px; font-weight: 850; text-transform: uppercase; }
.eb-wc-champion-final > strong { color: #fff; font-family: var(--font-display); font-size: 22px; line-height: 1.35; letter-spacing: 0; }
.eb-wc-champion-final > strong b { padding: 0 3px; color: #f6d878; }
.eb-wc-champion-final > small { color: rgba(255,255,255,.62); font-size: 9px; line-height: 1.5; }
.eb-wc-archive .eb-wc-jump { flex-wrap: wrap; }
.eb-wc-archive-round { display: grid; gap: 14px; scroll-margin-top: 100px; }
.eb-wc-archive-round .eb-wc-match-card { height: 100%; }
.eb-wc-final-wrap { max-width: 760px; }
.eb-wc-archive-match.is-featured { padding: 22px 24px; border: 1px solid #e5c660; border-top: 5px solid #c69320; background: #fffdf6; box-shadow: 0 14px 34px rgba(15,23,42,.08); }
.eb-wc-archive-match.is-featured .eb-wc-team { grid-template-columns: 46px minmax(0, 1fr) auto; min-height: 58px; font-size: 16px; }
.eb-wc-archive-match.is-featured .eb-wc-team img { width: 42px; height: 42px; }
.eb-wc-archive-match.is-featured .eb-wc-team > strong { font-size: 25px; }
.eb-wc-team-mark { display: block; width: 28px; height: 28px; border-radius: 50%; background: #eef2f7; }
#world-cup-semi-finals .eb-wc-match-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.eb-wc-section-intro { max-width: 700px; margin: -6px 0 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.eb-wc-archive-group-list { display: grid; gap: 10px; }
.eb-wc-archive-group { overflow: hidden; border: 1px solid var(--border); border-radius: 6px; background: #fff; }
.eb-wc-archive-group summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 58px; padding: 0 18px; color: var(--navy); background: #f8fafc; cursor: pointer; list-style: none; }
.eb-wc-archive-group summary::-webkit-details-marker { display: none; }
.eb-wc-archive-group summary span { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 15px; font-weight: 900; letter-spacing: 0; }
.eb-wc-archive-group summary i { color: var(--red); font-size: 10px; transition: transform .18s ease; }
.eb-wc-archive-group summary small { color: var(--muted); font-size: 8px; font-weight: 750; text-transform: uppercase; }
.eb-wc-archive-group summary small b { padding: 0 4px; color: #cbd5e1; }
.eb-wc-archive-group[open] summary { border-bottom: 1px solid var(--border); background: #fff; }
.eb-wc-archive-group[open] summary i { transform: rotate(90deg); }
.eb-wc-archive-group-body { display: grid; grid-template-columns: minmax(0, 1.8fr) minmax(360px, 1fr); align-items: start; gap: 16px; padding: 16px; }
.eb-wc-archive-group-body .eb-wc-match-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.eb-wc-archive-group-body .eb-wc-group-card { position: sticky; top: 96px; }
.eb-wc-archive-group-body .eb-wc-group-card table { min-width: 340px; }
@media (max-width: 1050px) {
  .eb-wc-champion { grid-template-columns: 1fr; }
  .eb-wc-champion-final { padding: 20px 0 0; border-top: 1px solid rgba(255,255,255,.22); border-left: 0; }
  .eb-wc-archive-group-body { grid-template-columns: 1fr; }
  .eb-wc-archive-group-body .eb-wc-group-card { position: static; }
}
@media (max-width: 720px) {
  .eb-wc-champion { min-height: 0; padding: 28px 22px; }
  .eb-wc-champion-copy { grid-template-columns: 80px minmax(0, 1fr); column-gap: 16px; }
  .eb-wc-champion-copy > img { width: 78px; height: 78px; }
  .eb-wc-champion h2 { font-size: 34px; }
  .eb-wc-champion p { grid-column: 1 / -1; margin-top: 16px; }
  #world-cup-semi-finals .eb-wc-match-grid,
  .eb-wc-archive-group-body .eb-wc-match-grid { grid-template-columns: 1fr; }
  .eb-wc-archive-group summary { align-items: flex-start; flex-direction: column; justify-content: center; gap: 4px; padding: 12px 15px; }
}
@media (max-width: 480px) {
  .eb-wc-champion-copy { grid-template-columns: 64px minmax(0, 1fr); }
  .eb-wc-champion-copy > img { width: 62px; height: 62px; padding: 7px; }
  .eb-wc-champion h2 { font-size: 28px; }
  .eb-wc-champion-final > strong { font-size: 18px; }
  .eb-wc-archive-match.is-featured { padding: 17px; }
  .eb-wc-archive-match.is-featured .eb-wc-team { grid-template-columns: 36px minmax(0, 1fr) auto; font-size: 13px; }
  .eb-wc-archive-match.is-featured .eb-wc-team img { width: 32px; height: 32px; }
  .eb-wc-archive-group-body { padding: 12px; }
}
.search-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.18s ease, background 0.18s ease;
}
.search-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-1px);
}
.search-thumb {
  width: 96px;
  min-width: 96px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.search-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.search-copy {
  flex: 1;
  min-width: 0;
}
.search-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}
.search-excerpt {
  margin: 0 0 10px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.6;
}
.search-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.search-empty,
.search-loading {
  padding: 24px 0;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}
@media (max-width: 680px) {
  .search-card { flex-direction: column; }
  .search-thumb { width: 100%; height: 160px; }
}
.search-close {
  position: absolute; top: 28px; right: 30px;
  color: rgba(255,255,255,0.4); font-size: 22px;
  background: none; border: none; cursor: pointer; transition: color 0.2s;
}
.search-close:hover { color: var(--white); }

/* ── HERO ───────────────────────────────────────── */
.hero { background: #fff; padding: 12px 26px 26px; }
.hero .grid {
  display: grid;
  grid-template-columns: 1fr 288px;
  gap: 12px;
}

.hero-feature { position: relative; overflow: hidden; background: #1a1a20; border-radius: 6px; }
.hero-feature .img-wrap { height: 492px; overflow: hidden; position: relative; }
.hero-feature .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 7s ease;
}
.hero-feature:hover .img-wrap img { transform: scale(1.04); }
.hero-feature .overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(10,25,90,0.38) 0%, rgba(200,16,46,0.16) 50%, transparent 100%),
    linear-gradient(to top, rgba(0,0,0,0.93) 0%, rgba(0,0,0,0.38) 52%, rgba(0,0,0,0.05) 100%);
}
.hero-feature .content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 30px 32px;
}
.hero-feature .content .tag { margin-bottom: 10px; border-radius: 3px; }
.hero-feature h1,
.hero-feature h2 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 900; color: var(--white); line-height: 1.22; margin-bottom: 10px;
}
.hero-feature h1 a:hover,
.hero-feature h2 a:hover { color: rgba(255,255,255,0.84); }
.hero-feature .excerpt {
  font-size: 13px; color: rgba(255,255,255,0.70); margin-bottom: 14px; line-height: 1.56;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hero-feature .meta { color: rgba(255,255,255,0.48); font-size: 11px; }

.hero-side { display: flex; flex-direction: column; gap: 12px; }
.hero-side-item { position: relative; overflow: hidden; background: #1a1a20; flex: 1; border-radius: 6px; }
.hero-side-item .img-wrap { height: 100%; min-height: 162px; overflow: hidden; }
.hero-side-item .img-wrap img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 5s ease;
}
.hero-side-item:hover .img-wrap img { transform: scale(1.06); }
.hero-side-item .overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(10,25,90,0.35) 0%, rgba(200,16,46,0.15) 50%, transparent 100%),
    linear-gradient(to top, rgba(0,0,0,0.90) 0%, rgba(0,0,0,0.05) 60%);
}
.hero-side-item .content { position: absolute; bottom: 0; left: 0; right: 0; padding: 15px 17px; }
.hero-side-item h3 {
  font-family: var(--font-display); font-size: 13px; font-weight: 900;
  color: var(--white); line-height: 1.3; margin-top: 6px;
}
.hero-side-item h3 a:hover { color: rgba(255,255,255,0.82); }

/* ── PILL NAV ───────────────────────────────────── */
.pill-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.pill-nav .inner {
  display: flex; align-items: center;
  overflow-x: auto; scrollbar-width: none; padding: 0 26px;
}
.pill-nav .inner::-webkit-scrollbar { display: none; }
.pill-nav a {
  font-size: 10px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--mid); padding: 11px 13px;
  white-space: nowrap; border-bottom: 3px solid transparent;
  transition: all 0.18s; display: block;
}
.pill-nav a:hover { color: var(--navy); }
.pill-nav a.active { color: var(--red); border-bottom-color: var(--red); font-weight: 800; }

/* ── MAIN CONTENT ───────────────────────────────── */
.main-content { padding: 26px 26px; background: var(--white); }
.home main.main-content { padding-top: 12px; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 262px;
  gap: 26px;
  align-items: start;
}

/* ── SECTION TITLE ──────────────────────────────── */
.section-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase; color: var(--navy);
  border-bottom: 3px solid var(--red);
  padding: 0 0 8px 10px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: space-between;
  position: relative;
}
.section-title::before {
  content: "";
  position: absolute; left: 0; top: 2px; bottom: 2px;
  width: 3px; background: var(--red); border-radius: 2px;
}
.section-title a { font-size: 10px; color: var(--red); letter-spacing: 0.04em; padding-left: 10px; }

/* Brands section title variant */
.section-title.brands-title { color: var(--press-accent); border-bottom-color: var(--press-accent); }
.section-title.brands-title::before { background: var(--press-accent); }
.section-title.brands-title a { color: var(--press-accent); }

/* ── TAG ────────────────────────────────────────── */
.tag {
  font-size: 9px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--white); background: var(--red);
  padding: 3px 8px; display: inline-block; line-height: 1.4; border-radius: 3px;
}
.tag.navy { background: var(--navy); }
.tag.gold  { background: var(--gold); }
.tag.green { background: #1a7a4a; }
.tag.press { background: var(--press-accent); }

/* ── META ───────────────────────────────────────── */
.meta {
  font-size: 11px; color: var(--muted);
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.meta span { display: flex; align-items: center; gap: 4px; }

/* ── NEWS CARD ──────────────────────────────────── */
.news-card {
  display: grid; grid-template-columns: 182px 1fr; gap: 15px;
  padding-bottom: 18px; border-bottom: 1px solid var(--border-lt);
  margin-bottom: 18px;
  transition: all 0.18s;
}
.news-card:last-child { border-bottom: none; margin-bottom: 0; }
.news-card:hover { background: var(--light); margin-left: -8px; padding-left: 8px; border-radius: 6px; }

.news-card .img-wrap {
  height: 116px; overflow: hidden; background: var(--light); border-radius: 4px; flex-shrink: 0;
  position: relative;
}
.news-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s; }
.news-card:hover .img-wrap img { transform: scale(1.07); }
.news-card .img-wrap::after {
  content: ''; position: absolute; inset: 0; border-radius: 4px;
  background: linear-gradient(
    135deg,
    rgba(10,25,90,0.32) 0%,
    rgba(200,16,46,0.16) 55%,
    rgba(10,25,90,0.08) 100%
  );
  pointer-events: none;
}
.news-card .card-body { display: flex; flex-direction: column; gap: 5px; padding-top: 2px; }
.news-card h3 { font-family: var(--font-display); font-size: 15px; font-weight: 900; color: var(--charcoal); line-height: 1.28; }
.news-card h3 a:hover { color: var(--red); }
.news-card .excerpt { font-size: 12px; color: var(--mid); line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ── LIST CARD ──────────────────────────────────── */
.list-card {
  display: flex; gap: 11px; align-items: flex-start;
  padding-bottom: 13px; border-bottom: 1px solid var(--border-lt); margin-bottom: 13px;
  transition: background 0.18s;
}
.list-card:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.list-card:hover { background: var(--light); margin-left: -6px; padding-left: 6px; border-radius: 5px; }
.list-card .num {
  font-family: var(--font-display); font-size: 20px; font-weight: 900;
  color: rgba(200,16,46,0.13); line-height: 1; flex-shrink: 0; width: 24px; text-align: center;
}
.list-card .img-wrap { width: 72px; height: 54px; flex-shrink: 0; overflow: hidden; background: var(--light); border-radius: 3px; position: relative; }
.list-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.list-card .img-wrap::after {
  content: ''; position: absolute; inset: 0; border-radius: 3px;
  background: linear-gradient(
    135deg,
    rgba(10,25,90,0.30) 0%,
    rgba(200,16,46,0.14) 55%,
    rgba(10,25,90,0.06) 100%
  );
  pointer-events: none;
}
.list-card h4 { font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--charcoal); line-height: 1.35; }
.list-card h4 a:hover { color: var(--red); }

/* ── GRID CARD ──────────────────────────────────── */
.grid-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 7px; overflow: hidden;
  transition: box-shadow 0.22s, transform 0.22s;
}
.grid-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.grid-card .img-wrap { height: 178px; overflow: hidden; position: relative; }
.grid-card .img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,25,90,0.32) 0%,
    rgba(200,16,46,0.15) 55%,
    rgba(10,25,90,0.08) 100%
  );
  pointer-events: none;
}
.grid-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s; }
.grid-card:hover .img-wrap img { transform: scale(1.05); }
.grid-card .card-body { padding: 14px 15px 16px; }
.grid-card h3 { font-family: var(--font-display); font-size: 15px; font-weight: 900; line-height: 1.28; margin-bottom: 6px; }
.grid-card h3 a:hover { color: var(--red); }
.grid-card .excerpt { font-size: 12px; color: var(--mid); line-height: 1.55; margin-bottom: 10px; }

/* ── PRESS CARD (Brands section) ────────────────── */
.press-card {
  background: var(--white);
  border: 1px solid #d0d9f0;
  border-radius: 8px; overflow: hidden;
  transition: box-shadow 0.22s, transform 0.22s;
  display: flex; flex-direction: column;
}
.press-card:hover { box-shadow: 0 6px 24px rgba(45,82,176,0.15); transform: translateY(-3px); }

.press-card .img-wrap { height: 162px; overflow: hidden; background: var(--light); position: relative; }
.press-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s; }
.press-card .img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,25,90,0.34) 0%,
    rgba(200,16,46,0.16) 55%,
    rgba(10,25,90,0.08) 100%
  );
  pointer-events: none;
}
.press-card:hover .img-wrap img { transform: scale(1.05); }

/* Company logo badge on press card */
.press-card .company-badge {
  position: absolute; bottom: 10px; left: 12px;
  background: var(--white);
  border-radius: 5px;
  padding: 4px 8px;
  box-shadow: var(--shadow-sm);
  font-size: 10px; font-weight: 700; color: var(--press-accent);
  letter-spacing: 0.04em; text-transform: uppercase;
  display: flex; align-items: center; gap: 5px;
}
.press-card .company-badge i { font-size: 11px; }

.press-card .card-body { padding: 14px 15px 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.press-card h3 { font-family: var(--font-display); font-size: 14px; font-weight: 900; line-height: 1.3; color: var(--charcoal); }
.press-card h3 a:hover { color: var(--press-accent); }
.press-card .excerpt { font-size: 12px; color: var(--mid); line-height: 1.55; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.press-card .press-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 10px; border-top: 1px solid var(--border-lt);
  margin-top: auto;
}
.press-card .read-press { font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--press-accent); display: flex; align-items: center; gap: 4px; transition: gap 0.18s; }
.press-card .read-press:hover { gap: 8px; }

/* ── BRANDS SECTION ─────────────────────────────── */
.brands-section {
  background: var(--press-bg);
  border-top: 1px solid #d0d9f0;
  border-bottom: 1px solid #d0d9f0;
  padding: 28px 26px 32px;
}
.brands-section .section-title { margin-bottom: 8px; }

.brands-intro {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px; gap: 20px; flex-wrap: wrap;
}
.brands-intro p {
  font-size: 13px; color: #4a5880; line-height: 1.55; max-width: 520px;
}
.btn-submit-press {
  background: var(--press-accent); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 10px 20px; border: none; cursor: pointer;
  transition: all 0.2s; display: flex; align-items: center; gap: 8px;
  border-radius: 6px; flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(45,82,176,0.28);
}
.btn-submit-press:hover { background: #1e3d8f; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(45,82,176,0.38); }

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

/* Brands CTA strip */
.brands-cta-strip {
  background: var(--navy);
  padding: 28px 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.brands-cta-strip .cta-text h3 {
  font-family: var(--font-display); font-size: 18px; font-weight: 900; color: var(--white); margin-bottom: 5px;
}
.brands-cta-strip .cta-text p { font-size: 13px; color: rgba(255,255,255,0.60); }
.brands-cta-strip .cta-badges { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.brands-cta-strip .badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,0.70);
}
.brands-cta-strip .badge i { color: var(--gold); font-size: 14px; }
.brands-cta-strip .btn-submit-press { background: var(--red); box-shadow: 0 2px 10px rgba(200,16,46,0.32); }
.brands-cta-strip .btn-submit-press:hover { background: var(--red-dark); }

/* ── SECTIONS ───────────────────────────────────── */
.news-section { margin-bottom: 30px; }

.global-headlines-section {
  background: #fff;
  padding: 22px 26px 26px;
  margin-bottom: 30px;
  border-top: 3px solid var(--navy);
}
.global-headlines-title span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.category-archive-hero .global-headlines-title h1 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font: inherit;
  color: inherit;
  letter-spacing: 0;
  text-transform: inherit;
}
.global-headlines-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
  gap: 18px;
}
.global-headlines-lead {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--navy);
}
.global-headlines-image,
.global-headlines-image img {
  display: block;
  width: 100%;
  height: 100%;
}
.global-headlines-image {
  position: absolute;
  inset: 0;
}
.global-headlines-image img {
  object-fit: cover;
  transition: transform 0.45s ease;
}
.global-headlines-lead:hover .global-headlines-image img {
  transform: scale(1.04);
}
.global-headlines-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,19,37,0.1), rgba(8,19,37,0.88));
}
.global-headlines-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px;
  color: #fff;
}
.global-headlines-copy h2 {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.12;
  margin: 10px 0 8px;
}
.category-archive-hero-description {
  margin: -3px 0 16px;
}
.global-headlines-copy h2 a,
.global-headlines-copy .author-link {
  color: #fff;
}
.global-headlines-copy p {
  max-width: 680px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 10px;
}
.global-headlines-copy .meta {
  color: rgba(255,255,255,0.62);
  font-size: 11px;
}
.global-headlines-side {
  display: grid;
  gap: 12px;
}
.global-headlines-item {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 12px;
  align-items: stretch;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-lt);
}
.global-headlines-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.global-headlines-thumb {
  display: block;
  height: 92px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--light);
}
.global-headlines-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.global-headlines-item h3 {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.28;
  margin: 6px 0;
}
.global-headlines-item h3 a:hover {
  color: var(--red);
}

@media (max-width: 980px) {
  .global-headlines-grid {
    grid-template-columns: 1fr;
  }
  .global-headlines-lead {
    min-height: 340px;
  }
  .global-headlines-side {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .global-headlines-item {
    grid-template-columns: 1fr;
  }
  .global-headlines-thumb {
    height: 130px;
  }
}

@media (max-width: 640px) {
  .global-headlines-section {
    padding: 16px 14px;
  }
  .global-headlines-lead {
    min-height: 270px;
  }
  .global-headlines-copy {
    padding: 16px;
  }
  .global-headlines-copy h2 {
    font-size: 19px;
    line-height: 1.2;
  }
  .global-headlines-copy p {
    display: none;
  }
  .global-headlines-side {
    grid-template-columns: 1fr;
  }
  .global-headlines-item {
    grid-template-columns: 112px 1fr;
  }
  .global-headlines-thumb {
    height: 86px;
  }
  .global-headlines-item h3 {
    font-size: 13px;
  }
}

/* South African live video newsroom. */
.video-news-section {
  margin-bottom: 30px;
  padding: 22px 26px 26px;
  border-top: 3px solid var(--red);
  background: #151515;
  color: #fff;
}
.video-news-title { border-bottom-color: rgba(255,255,255,.18); color: #fff; }
.video-news-title span { display: inline-flex; align-items: center; gap: 8px; }
.video-news-title span i { color: #ef233c; }
.video-news-title a { color: rgba(255,255,255,.68); }
.video-news-title a:hover { color: #fff; }
.video-news-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr); gap: 18px; }
.video-news-lead { min-width: 0; }
.video-news-visual { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; background: #080808; }
.video-news-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.video-news-lead:hover .video-news-visual img { transform: scale(1.03); }
.video-news-play {
  position: absolute;
  left: 22px;
  bottom: 20px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid rgba(255,255,255,.8);
  border-radius: 50%;
  color: #fff;
  background: #c8102e;
  box-shadow: 0 6px 20px rgba(0,0,0,.28);
}
.video-news-status { position: absolute; top: 14px; left: 14px; padding: 6px 8px; color: #fff; background: #c8102e; font-size: 8px; font-weight: 900; text-transform: uppercase; }
.video-news-status.is-upcoming { color: #151515; background: #f4c95d; }
.video-upcoming-countdown { display: inline-flex; align-items: center; gap: 5px; color: #fff; font-size: 9px; font-weight: 750; letter-spacing: 0; text-transform: none; }
.video-upcoming-countdown strong { color: inherit; font-variant-numeric: tabular-nums; }
.video-news-visual > .video-upcoming-countdown { position: absolute; top: 14px; right: 14px; padding: 6px 8px; background: rgba(0,0,0,.78); }
.video-upcoming-countdown.is-compact { display: flex; width: max-content; margin-top: 5px; color: #f4c95d; font-size: 8px; }
.video-upcoming-countdown.is-due strong { color: #fff; }
.video-news-copy { padding: 15px 0 0; }
.video-news-source { color: #f4c95d; font-size: 8px; font-weight: 850; text-transform: uppercase; }
.video-news-copy h2 { margin: 7px 0 8px; font-family: var(--font-display); font-size: 24px; line-height: 1.18; letter-spacing: 0; }
.video-news-copy h2 a { color: #fff; }
.video-news-copy h2 a:hover { color: #f4c95d; }
.video-news-section .meta { color: rgba(255,255,255,.5); font-size: 9px; }
.video-news-list { display: grid; align-content: start; gap: 13px; }
.video-news-item { display: grid; grid-template-columns: 132px minmax(0, 1fr); gap: 12px; min-width: 0; padding-bottom: 13px; border-bottom: 1px solid rgba(255,255,255,.12); }
.video-news-item:last-child { padding-bottom: 0; border-bottom: 0; }
.video-news-thumb { position: relative; display: block; height: 88px; overflow: hidden; background: #080808; }
.video-news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-news-thumb > span { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; background: rgba(0,0,0,.24); }
.video-news-thumb > span i { display: grid; width: 29px; height: 29px; place-items: center; border-radius: 50%; background: #c8102e; font-size: 9px; }
.video-news-item h3 { margin: 5px 0 7px; font-family: var(--font-display); font-size: 14px; line-height: 1.28; letter-spacing: 0; }
.video-news-item h3 a { color: #fff; }
.video-news-item h3 a:hover { color: #f4c95d; }
@media (max-width: 980px) {
  .video-news-grid { grid-template-columns: 1fr; }
  .video-news-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .video-news-item { grid-template-columns: 1fr; }
  .video-news-thumb { height: auto; aspect-ratio: 16 / 9; }
}
@media (max-width: 640px) {
  .video-news-section { padding: 16px 14px; }
  .video-news-copy h2 { font-size: 19px; }
  .video-news-list { grid-template-columns: 1fr; }
  .video-news-item { grid-template-columns: 112px minmax(0, 1fr); }
  .video-news-thumb { height: 76px; aspect-ratio: auto; }
  .video-news-item h3 { font-size: 13px; }
}
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--col-gap); }
.news-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--col-gap); }

/* ── SIDEBAR ────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 20px; }

.sidebar-widget {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 7px; overflow: hidden;
}
.widget-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--white); background: var(--navy);
  padding: 9px 14px;
  display: flex; align-items: center; justify-content: space-between;
}
.widget-title a { font-size: 10px; color: rgba(255,255,255,0.5); font-weight: 600; }
.widget-body { padding: 12px 14px; }
.widget-inner { padding: 14px; }

/* WordPress block widgets use their own inner markup instead of widget-title/widget-inner. */
.sidebar .widget_block > .wp-block-group { margin: 0; }
.sidebar .widget_block .wp-block-heading,
.sidebar .widget_search .wp-block-search__label {
  display: block;
  margin: 0;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.sidebar .widget_block ul,
.sidebar .widget_block ol {
  margin: 0;
  padding: 4px 14px 8px;
  list-style: none;
}
.sidebar .widget_block li {
  margin: 0;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-lt);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.sidebar .widget_block li:last-child { border-bottom: 0; }
.sidebar .widget_block li a {
  color: var(--charcoal);
  font-weight: 600;
}
.sidebar .widget_block li a:hover { color: var(--red); }
.sidebar .widget_block .wp-block-archives-list,
.sidebar .widget_block .wp-block-categories-list {
  max-height: 330px;
  overflow-y: auto;
  scrollbar-color: var(--border) transparent;
  scrollbar-width: thin;
}
.sidebar .widget_block .wp-block-latest-comments:empty,
.sidebar .widget_block .wp-block-latest-comments__comment:empty { display: none; }
.sidebar .widget_block .no-comments {
  padding: 13px 14px;
  color: var(--muted);
  font-size: 12px;
}
.sidebar .widget_search .wp-block-search {
  margin: 0;
  padding: 14px;
}
.sidebar .widget_search .wp-block-search__inside-wrapper {
  display: flex;
  align-items: stretch;
  gap: 7px;
}
.sidebar .widget_search .wp-block-search__input {
  min-width: 0;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 9px 10px;
  color: var(--charcoal);
  font: inherit;
}
.sidebar .widget_search .wp-block-search__input:focus {
  outline: 3px solid rgba(200,16,46,.12);
  border-color: var(--red);
}
.sidebar .widget_search .wp-block-search__button {
  flex: 0 0 auto;
  margin: 0;
  border: 0;
  border-radius: 4px;
  background: var(--red);
  padding: 0 13px;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.sidebar .widget_search .wp-block-search__button:hover { background: var(--red-dark); }

/* Trending */
.trending-list { display: flex; flex-direction: column; gap: 0; }
.trending-item {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 14px; border-bottom: 1px solid var(--border-lt);
  transition: background 0.15s;
}
.trending-item:last-child { border-bottom: none; }
.trending-item:hover { background: var(--light); }
.trending-item .rank {
  font-family: var(--font-display); font-size: 18px; font-weight: 900;
  color: rgba(200,16,46,0.13); line-height: 1; flex-shrink: 0; width: 22px;
}
.trending-item h4 { font-family: var(--font-display); font-size: 12px; font-weight: 700; line-height: 1.35; color: var(--charcoal); }
.trending-item h4 a:hover { color: var(--red); }
.trending-item .meta { font-size: 10px; margin-top: 3px; }

/* Newsletter */
.newsletter-widget { background: var(--navy); border: none; border-radius: 7px; overflow: hidden; }
.newsletter-widget .widget-title { background: var(--red); }
.newsletter-widget .widget-inner { padding: 14px 14px; }
.newsletter-widget p { font-size: 12px; color: rgba(255,255,255,0.65); margin-bottom: 12px; line-height: 1.55; }
.newsletter-widget input {
  width: 100%; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18); color: var(--white);
  font-size: 12px; padding: 9px 11px;
  outline: none; transition: border-color 0.2s; margin-bottom: 8px; display: block;
  border-radius: 4px;
}
.newsletter-widget input::placeholder { color: rgba(255,255,255,0.30); }
.newsletter-widget input:focus { border-color: rgba(255,255,255,0.5); }
.newsletter-widget .btn-sub {
  width: 100%; background: var(--red); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 10px; border: none; cursor: pointer; transition: background 0.2s;
  border-radius: 4px;
}
.newsletter-widget .btn-sub:hover { background: var(--red-dark); }

/* Social */
.social-widget { display: flex; flex-direction: column; }
.social-btn {
  display: flex; align-items: center; gap: 9px; padding: 9px 14px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--white); transition: opacity 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.social-btn:last-child { border-bottom: none; }
.social-btn:hover { opacity: 0.85; }
.social-btn.fb { background: #1877f2; }
.social-btn.tw { background: #111; }
.social-btn.yt { background: #ff0000; }
.social-btn.wa { background: #25d366; }
.social-btn .count { margin-left: auto; font-size: 12px; font-weight: 900; }

/* Tags */
.tags-cloud { display: flex; flex-wrap: wrap; gap: 5px; padding: 13px 14px; }
.tags-cloud a {
  font-size: 10px; font-weight: 700; letter-spacing: 0.04em; color: var(--mid);
  background: var(--light); border: 1px solid var(--border);
  padding: 4px 9px; transition: all 0.18s; border-radius: 3px;
}
.tags-cloud a:hover { background: var(--red); color: var(--white); border-color: var(--red); }

/* Sport archive */
.sport-category-banner {
  position: relative;
  overflow: hidden;
  padding: 28px 26px 24px;
  border-bottom: 4px solid #22c55e;
  background:
    linear-gradient(115deg, rgba(4,11,20,0.94) 0%, rgba(9,28,40,0.82) 46%, rgba(15,91,68,0.72) 100%),
    radial-gradient(circle at 12% 20%, rgba(34,197,94,0.18), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(245,158,11,0.20), transparent 26%),
    var(--sport-stadium-image) center 52% / cover no-repeat;
  box-shadow: inset 0 -28px 60px rgba(0,0,0,0.18);
}
.sport-category-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 18%),
    linear-gradient(rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 18%);
  background-size: 220px 220px;
  opacity: 0.18;
  pointer-events: none;
}
.sport-category-banner__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: start;
}
.sport-category-banner__copy h1 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  margin-bottom: 12px;
}
.sport-category-banner__copy p {
  max-width: 620px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
}
.sport-category-banner__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  color: #d6ffe2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.sport-category-banner__stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.sport-stat-chip {
  min-width: 110px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
}
.sport-stat-chip strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}
.sport-stat-chip span {
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}
.sport-category-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.sport-btn-primary,
.sport-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}
.sport-btn-primary {
  color: #072114;
  background: linear-gradient(135deg, #facc15 0%, #f59e0b 100%);
  box-shadow: 0 8px 22px rgba(245,158,11,0.28);
}
.sport-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(245,158,11,0.34);
}
.sport-btn-secondary {
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}
.sport-btn-secondary:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.12);
}
.sport-category-banner__panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sport-panel-card,
.sport-fixture-card {
  border-radius: 18px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
}
.sport-panel-card--leader {
  padding: 18px 20px;
}
.sport-panel-card__eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: #fcd34d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.sport-panel-card__headline {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
}
.sport-panel-card__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.sport-panel-card__meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.74);
  font-size: 11px;
}
.sport-fixture-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sport-fixture-card.is-live {
  border-color: rgba(34,197,94,0.42);
  box-shadow: 0 0 0 1px rgba(34,197,94,0.12) inset;
}
.sport-fixture-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.sport-league-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86);
}
.sport-league-pill::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--league-accent, #22c55e);
  box-shadow: 0 0 0 5px rgba(34,197,94,0.18);
}
.sport-fixture-card__state {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.76);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sport-fixture-card__teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}
.sport-fixture-card__teams span:last-child {
  text-align: right;
}
.sport-fixture-card__teams strong {
  padding: 7px 10px;
  border-radius: 12px;
  background: rgba(7,18,46,0.55);
  color: #d9fbe7;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}
.sport-score-marquee {
  background: #071728;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sport-score-marquee__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 26px;
}
.sport-score-marquee__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.sport-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #64748b;
  box-shadow: 0 0 0 0 rgba(100,116,139,0.32);
}
.sport-live-dot.is-live {
  background: #22c55e;
  animation: sportPulse 1.8s ease-out infinite;
}
.sport-score-marquee__viewport {
  flex: 1;
  overflow: hidden;
}
.sport-score-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 14px;
  animation: sportTicker 54s linear infinite;
}
.sport-score-marquee:hover .sport-score-marquee__track {
  animation-play-state: paused;
}
.sport-score-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
  white-space: nowrap;
}
.sport-score-marquee__item::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--match-accent, #22c55e);
  box-shadow: 0 0 0 5px rgba(34,197,94,0.16);
}
.sport-score-marquee__item.is-live {
  background: rgba(34,197,94,0.10);
  border-color: rgba(34,197,94,0.26);
}
.sport-score-marquee__phase {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #dbeafe;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sport-score-marquee__league {
  color: rgba(255,255,255,0.58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.sport-score-marquee__teams {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
}
.sport-score-marquee__teams strong {
  color: var(--white);
  font-weight: 900;
}
.sport-category-main {
  padding-top: 24px;
}
.sport-section-title {
  color: #0f5b44;
  border-bottom-color: #22c55e;
}
.sport-section-title::before {
  background: #22c55e;
}
.sport-section-title a {
  color: #0f8a5d;
}
.sport-top-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 12px;
  margin-bottom: 26px;
}
.sport-top-grid--single {
  grid-template-columns: 1fr;
}
.sport-hero-feature .img-wrap {
  height: 450px;
}
.sport-hero-side {
  gap: 12px;
}
.sport-sidebar-widget {
  border-color: #d6eadc;
  box-shadow: 0 14px 34px rgba(17,94,69,0.08);
}
.sport-widget-title {
  background: linear-gradient(135deg, #0b2d22 0%, #13795b 100%);
}
.sport-standings-widget {
  padding: 14px;
  background: linear-gradient(180deg, #f6fff8 0%, #ffffff 100%);
}
.sport-standings-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sport-standings-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sport-standing-row {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 13px;
  background: var(--white);
  border: 1px solid #dfeee4;
}
.sport-standing-row.is-leader {
  background: linear-gradient(135deg, #0b2d22 0%, #166534 100%);
  border-color: #166534;
  color: var(--white);
}
.sport-standing-row.zone-playoff {
  box-shadow: inset 3px 0 0 #f59e0b;
}
.sport-standing-row.zone-relegation {
  box-shadow: inset 3px 0 0 #dc2626;
}
.sport-standing-rank {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #edf7ef;
  color: #14532d;
  font-size: 12px;
  font-weight: 900;
}
.sport-standing-row.is-leader .sport-standing-rank {
  background: rgba(255,255,255,0.14);
  color: #ecfccb;
}
.sport-standing-team {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}
.sport-standing-team img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}
.sport-standing-team span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
}
.sport-standing-points {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
}
.sport-standing-points strong {
  font-size: 16px;
  font-weight: 900;
}
.sport-standing-points span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.sport-standing-row.is-leader .sport-standing-points span {
  color: rgba(255,255,255,0.62);
}
.sport-standings-legend {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
  color: var(--muted);
  font-size: 10px;
}
.sport-standings-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sport-legend-swatch {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
}
.sport-legend-swatch.leader {
  background: #166534;
}
.sport-legend-swatch.playoff {
  background: #f59e0b;
}
.sport-legend-swatch.relegation {
  background: #dc2626;
}
.sport-standings-empty {
  color: var(--mid);
  font-size: 12px;
  line-height: 1.6;
}
.sport-view-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0a2233 0%, #0f5b44 100%);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(15,91,68,0.18);
}
.sport-view-all-btn:hover {
  transform: translateY(-1px);
}
@keyframes sportPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34,197,94,0.34);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(34,197,94,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34,197,94,0);
  }
}
@keyframes sportTicker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .sport-live-dot.is-live,
  .sport-score-marquee__track {
    animation: none;
  }
}

/* ── BANNER SECTION ─────────────────────────────── */
.banner-section { background: var(--navy-deep); padding: 26px 26px; }
.banner-section .section-title { color: var(--white); border-color: var(--red); padding-left: 0; }
.banner-section .section-title::before { display: none; }
.banner-section .section-title a { color: rgba(255,255,255,0.4); }

.banner-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.banner-card { position: relative; height: 240px; overflow: hidden; background: #222; border-radius: 4px; }
.banner-card .img-wrap { position: absolute; inset: 0; border-radius: 4px; overflow: hidden; }
.banner-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 5s; filter: brightness(0.62);
}
.banner-card:hover .img-wrap img { transform: scale(1.07); filter: brightness(0.48); }
.banner-card .content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, transparent 100%);
  border-radius: 0 0 4px 4px;
}
.banner-card h3 {
  font-family: var(--font-display); font-size: 14px; font-weight: 900;
  color: var(--white); line-height: 1.3; margin-top: 5px;
}
.banner-card h3 a:hover { color: rgba(255,255,255,0.8); }

/* ── OPINION CARD ───────────────────────────────── */
.opinion-card {
  background: var(--white); border: 1px solid var(--border);
  border-left: 4px solid var(--red); padding: 16px 15px 16px 13px;
  border-radius: 0 7px 7px 0; transition: box-shadow 0.2s;
}
.opinion-card:hover { box-shadow: var(--shadow-sm); }
.opinion-card .author-info { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--light); overflow: hidden; flex-shrink: 0; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-size: 11px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.04em; }
.author-role { font-size: 10px; color: var(--muted); margin-top: 1px; }
.meta .author-link {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}
.meta .author-link:hover {
  color: var(--red);
  text-decoration: underline;
}
.author-profile-card {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #fff;
}
.author-profile-avatar {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}
.archive-eyebrow {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.author-profile-card h1 {
  margin: 0 0 6px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.1;
}
.author-profile-card p {
  margin: 0;
  color: var(--mid);
  font-size: 13px;
  line-height: 1.65;
}
.author-profile-meta {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.opinion-card blockquote {
  font-family: var(--font-display); font-size: 13px; font-style: italic; font-weight: 900;
  color: var(--charcoal); line-height: 1.5; margin-bottom: 10px;
}

/* ── FOOTER ─────────────────────────────────────── */
.site-footer { background: var(--navy-deep); padding: 0; }
.footer-top { padding: 38px 26px 34px; }
.footer-grid {
  display: grid; grid-template-columns: 230px 1fr 1fr 1fr; gap: 34px;
  padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 14px;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.22);
}
.footer-brand p { font-size: 12px; color: rgba(255,255,255,0.46); line-height: 1.65; margin-bottom: 16px; }
.footer-social { display: flex; gap: 7px; flex-wrap: wrap; }
.footer-social a {
  width: 30px; height: 30px; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); font-size: 11px; transition: all 0.2s; border-radius: 4px;
}
.footer-social a:hover { background: var(--red); color: var(--white); }
.footer-col h4 {
  font-size: 10px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--white); margin-bottom: 13px; padding-bottom: 6px;
  border-bottom: 2px solid var(--red); display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 7px; }
.footer-col ul li a {
  font-size: 12px; color: rgba(255,255,255,0.50);
  transition: color 0.18s; display: flex; align-items: center; gap: 5px;
}
.footer-col ul li a::before { content: "›"; color: var(--red); font-size: 13px; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { background: rgba(0,0,0,0.32); padding: 14px 26px; }
.footer-bottom .inner {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 10px; color: rgba(255,255,255,0.30); gap: 12px; flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,0.38); transition: color 0.18s; }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom .links { display: flex; gap: 13px; }
.saglomedia-badge { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.28); display: flex; align-items: center; gap: 4px; }
.saglomedia-badge span { color: var(--gold); font-weight: 700; }

/* ── MISC ───────────────────────────────────────── */
.read-more {
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--red); display: inline-flex; align-items: center; gap: 4px;
  margin-top: 6px; transition: gap 0.18s;
}
.read-more:hover { gap: 8px; }

.load-more-btn {
  display: block; width: 100%; text-align: center; padding: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--navy); border: 2px solid var(--navy); cursor: pointer;
  transition: all 0.2s; background: none; margin-top: 22px; border-radius: 5px;
}
.load-more-btn:hover { background: var(--navy); color: var(--white); }

.scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 38px; height: 38px; background: var(--red); color: var(--white);
  border: none; cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.28s; z-index: 400;
  box-shadow: 0 4px 14px rgba(200,16,46,0.45); border-radius: 50%;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--red-dark); transform: translateY(-3px); }

.divider { display: flex; align-items: center; gap: 10px; margin: 26px 0; }
.divider::before, .divider::after { content: ""; flex: 1; border-top: 1px solid var(--border); }
.divider span { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); flex-shrink: 0; }

/* ── MOBILE MENU ─────────────────────────────────── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.8); transition: all 0.28s; }

/* ── RESPONSIVE ──────────────────────────────────── */
/* ════════════════════════════════════════════════
   RESPONSIVE — TABLET & MOBILE
   ════════════════════════════════════════════════ */

@media (max-width: 1060px) {
  .content-grid { grid-template-columns: 1fr; }
  .article-main .content-grid { grid-template-columns: 1fr 268px; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .hero .grid   { grid-template-columns: 1fr; }
  .hero-feature .img-wrap { height: 370px; }
  .hero-side    { flex-direction: row; }
  .banner-cards { grid-template-columns: 1fr 1fr; }
  .press-grid   { grid-template-columns: repeat(2,1fr); }
  .sport-category-banner__grid { grid-template-columns: 1fr; }
  .sport-top-grid { grid-template-columns: 1fr; }
  .sport-hero-feature .img-wrap { height: 360px; }
}

@media (max-width: 860px) {
  .article-main .content-grid { grid-template-columns: 1fr; }
}

/* ── 768px: Phone landscape / small tablet ──── */
@media (max-width: 768px) {
  /* ── Base ─────────────────────────────────── */
  .page-box {
    margin: 0;
    border-radius: 0;
    min-height: 100dvh;
    box-shadow: none;
  }

  .site-header-wrap {
    top: 0;
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    box-shadow: 0 1px 0 rgba(15,23,42,0.08), 0 10px 28px rgba(15,23,42,0.12);
  }

  /* ── Top bar — hidden on mobile ──────────── */
  .top-bar { display: none; }

  /* ── Site header ─────────────────────────── */
  .site-header { padding: 0 14px; }
  .site-header .inner { height: 56px; gap: 10px; justify-content: space-between; }
  .site-logo img { height: 36px; }
  .header-spacer { flex: 1; }
  .header-actions { display: none; }
  .btn-publish { padding: 8px 13px; font-size: 10px; letter-spacing: 0; }
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 10px;
    background: rgba(13,34,87,0.06);
  }
  .hamburger span { background: var(--navy); }

  /* ── Nav ────────────────────────────────── */
  .main-nav {
    background: transparent;
    box-shadow: none;
  }
  .main-nav .inner { padding: 0; min-height: 0; }
  .nav-list {
    display: none; flex-direction: column;
    position: absolute; top: 0; left: 0; right: 0;
    background: var(--navy-deep); z-index: 300;
    max-height: 80vh; overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  }
  .nav-list.open { display: flex; }
  .nav-list > li > a {
    height: auto; min-height: 48px;
    padding: 13px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex; align-items: center;
    -webkit-tap-highlight-color: rgba(255,255,255,0.06);
  }
  .has-dropdown > a::after { content: ' ▸'; font-size: 9px; opacity: 0.5; }
  .has-dropdown.dd-open > a::after { content: ' ▾'; opacity: 0.8; }
  .dropdown {
    position: static; opacity: 0; visibility: hidden;
    max-height: 0; overflow: hidden;
    transform: none; box-shadow: none; border-top: none;
    background: rgba(0,0,0,0.18); border-radius: 0;
    transition: max-height 0.28s ease, opacity 0.2s;
  }
  .has-dropdown.dd-open > .dropdown { opacity: 1; visibility: visible; max-height: 400px; }
  .main-nav .nav-right { display: none; }

  /* ── Pill nav ─────────────────────────────── */
  .pill-nav { position: sticky; top: 0; z-index: 150; background: var(--white); box-shadow: 0 1px 0 var(--border); }
  .pill-nav .inner { padding: 0 14px; gap: 2px; }
  .pill-nav a { font-size: 11px; padding: 10px 12px; white-space: nowrap; }

  /* ── Layout ─────────────────────────────── */
  .main-content { padding: 0; background: var(--white); }
  .container { padding: 0 14px; }
  .main-content,
  .hero,
  .brands-section,
  .banner-section {
    scroll-margin-top: 62px;
  }
  .banner-section { padding: 16px 14px; }
  .brands-section { padding: 16px 14px; }
  .sport-category-banner { padding: 22px 14px 18px; }
  .sport-category-banner__copy h1 { font-size: 30px; }
  .sport-category-banner__stats { gap: 10px; }
  .sport-stat-chip { min-width: calc(50% - 5px); flex: 1 1 140px; }
  .sport-score-marquee__inner {
    padding: 12px 14px;
    flex-direction: column;
    align-items: flex-start;
  }
  .sport-score-marquee__label { white-space: normal; }
  .sport-top-grid { gap: 14px; }
  .sport-hero-feature .img-wrap { height: 300px; }
  .sport-standing-row { grid-template-columns: 28px 1fr auto; }

  /* ── Hero ────────────────────────────────── */
  .hero-feature .img-wrap { height: 260px; }
  .hero-feature .content { padding: 16px; }
  .hero-feature h1 { font-size: 19px; line-height: 1.2; }
  .hero-feature .excerpt { display: none; }
  .hero-side { flex-direction: column; gap: 2px; }
  .hero-side-item .img-wrap { min-height: 130px; }
  .hero-side-item h3 { font-size: 13px; }
  .author-profile-card {
    align-items: flex-start;
    padding: 18px;
  }
  .author-profile-avatar {
    width: 54px;
    height: 54px;
    font-size: 21px;
  }
  .author-profile-card h1 {
    font-size: 22px;
  }

  /* ── News cards — full-width horizontal on mobile ── */
  .news-card {
    grid-template-columns: 110px 1fr;
    padding-bottom: 14px;
    margin-bottom: 14px;
  }
  .news-card .img-wrap { height: 86px; border-radius: 6px; }
  .news-card h3 { font-size: 13px; line-height: 1.3; }
  .news-card .excerpt { display: none; }
  .news-card .read-more { display: none; }

  /* ── Grid cards ─────────────────────────── */
  .news-grid, .news-grid-2 { grid-template-columns: 1fr; }
  .grid-card .img-wrap { height: 160px; }

  /* ── Section titles ─────────────────────── */
  .section-title { font-size: 10px; padding-bottom: 7px; margin-bottom: 14px; }
  .news-section { padding: 16px 14px; }

  /* ── Sidebar goes below on mobile ──────── */
  .sidebar { gap: 14px; }
  .sidebar-widget { border-radius: 12px; border-left: none; border-right: none; overflow: hidden; }
  .sidebar-widget .widget-inner { padding: 18px 16px; }
  .sidebar-widget .btn-sub { width: 100%; }

  /* ── Press / Brands grid ─────────────── */
  .banner-cards { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .brands-intro { flex-direction: column; align-items: flex-start; gap: 10px; }
  .brands-cta-strip { flex-direction: column; align-items: flex-start; }
  .press-card .img-wrap { height: 140px; }

  /* ── Footer ───────────────────────────── */
  .footer-top { padding: 24px 14px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-bottom { padding: 12px 14px; padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
  .footer-bottom .inner { flex-direction: column; text-align: center; gap: 8px; }

  /* ── Mobile bottom nav — shown ────────── */
  .mobile-bottom-nav { display: flex; }

  /* Push footer content above bottom nav */
  .site-footer { margin-bottom: 0; }
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
    background: #eef2f7;
  }
}

/* ── 480px: Phone portrait ──────────────── */
@media (max-width: 480px) {
  /* ── Header ─────────────────────────────── */
  .site-logo img { height: 32px; }
  .btn-publish span { display: none; }
  .btn-publish i { margin: 0; }
  .btn-publish { padding: 8px 12px; min-width: 38px; justify-content: center; }

  /* ── Hero ───────────────────────────────── */
  .hero-feature .img-wrap { height: 220px; }
  .hero-feature h1 { font-size: 17px; }
  .hero-side-item .img-wrap { min-height: 110px; }
  .sport-category-banner__copy h1 { font-size: 26px; }
  .sport-stat-chip { min-width: calc(50% - 5px); }
  .sport-panel-card,
  .sport-fixture-card { padding: 14px; }
  .sport-fixture-card__teams {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .sport-fixture-card__teams span:last-child { text-align: left; }
  .sport-hero-feature .img-wrap { height: 240px; }
  .sport-score-marquee__item { padding: 8px 12px; }

  /* ── News cards — tighter on smallest screens */
  .news-card { grid-template-columns: 90px 1fr; gap: 10px; }
  .news-card .img-wrap { height: 72px; }
  .news-card h3 { font-size: 12px; }
  .news-card .meta { font-size: 9px; }

  /* ── Pill nav ─────────────────────────── */
  .pill-nav a { font-size: 10px; padding: 9px 10px; }

  /* ── Brands section ─────────────────── */
  .brands-hero h1 { font-size: 22px !important; }
  .stat-item { padding: 14px 18px; }
  .stat-item .num { font-size: 20px; }
  .features-grid { grid-template-columns: 1fr !important; }
  .packages-grid { grid-template-columns: 1fr !important; }
}

/* ── Mobile Bottom Navigation ────────────────────── */
.mobile-bottom-nav {
  display: none; /* shown at 768px via media query above */
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  background: var(--white);
  border-top: 1px solid rgba(15,23,42,0.12);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -8px 24px rgba(15,23,42,0.14);
  /* Blur for glass effect on iOS */
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  background-color: rgba(255,255,255,0.95);
}
.mobile-bottom-nav .mbn-item {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 3px;
  padding: 8px 4px 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: 9px; font-weight: 600;
  letter-spacing: .03em; text-transform: uppercase;
  transition: color 0.18s;
  min-height: 52px;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.mobile-bottom-nav .mbn-item i {
  font-size: 18px;
  transition: transform 0.18s, color 0.18s;
}
.mobile-bottom-nav .mbn-item:active i { transform: scale(0.88); }
.mobile-bottom-nav .mbn-item.active,
.mobile-bottom-nav .mbn-item:hover {
  color: var(--red);
}
.mobile-bottom-nav .mbn-item.active::before {
  content: '';
  position: absolute; top: 2px; left: 24%; right: 24%;
  height: 3px; border-radius: 999px;
  background: var(--red);
}
.mobile-bottom-nav .mbn-search i {
  background: var(--red);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(200,16,46,0.4);
  margin-top: -10px;
}
.mobile-bottom-nav .mbn-search { color: var(--red); margin-top: 0; }

/* ── BREAKING NEWS TICKER ───────────────────────── */
.breaking-bar {
  background: var(--red);
  padding: 0;
  overflow: hidden;
  border-bottom: 2px solid var(--red-dark);
}
.breaking-bar .inner {
  display: flex;
  align-items: stretch;
  height: 34px;
}
.breaking-bar .breaking-label {
  background: var(--red-dark);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  border-right: 2px solid rgba(0,0,0,0.15);
}
.breaking-bar .ticker-wrap {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.breaking-bar .ticker {
  display: flex;
  align-items: center;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
  gap: 0;
}
.breaking-bar .ticker:hover { animation-play-state: paused; }
.breaking-bar .ticker-item {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.breaking-bar .ticker-item::after {
  content: "•";
  opacity: 0.5;
  font-size: 14px;
}
.breaking-bar .ticker-item:last-child::after { display: none; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Image caption / copyright bar (universal) ──── */
/* Applied to any .img-wrap or .article-img-wrap that
   has a [data-caption] attribute via JS-injected pseudo */
.img-caption {
  display: flex; align-items: center; gap: 6px;
  background: rgba(10,19,51,0.82);
  color: rgba(255,255,255,0.58);
  font-size: 10px; line-height: 1.35;
  padding: 5px 10px;
  letter-spacing: 0.01em;
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 3;
  backdrop-filter: blur(4px);
  pointer-events: none;
}
.img-caption i { flex-shrink: 0; opacity: 0.6; }

/* ── UX IMPROVEMENTS ────────────────────────────── */

/* Loading Skeletons */
.skeleton {
  background: linear-gradient(90deg, var(--light) 25%, rgba(255,255,255,0.5) 50%, var(--light) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-text { height: 16px; border-radius: 4px; margin-bottom: 8px; }
.skeleton-text:last-child { margin-bottom: 0; }
.skeleton-title { height: 24px; width: 80%; }
.skeleton-subtitle { height: 18px; width: 60%; }
.skeleton-image { height: 120px; border-radius: 6px; }

/* Loading States */
.loading-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
}

.loading-spinner {
  width: 40px; height: 40px;
  border: 4px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Improved Form Feedback */
.form-feedback {
  padding: 12px 16px; border-radius: 6px; margin-top: 8px;
  font-size: 14px; font-weight: 500;
}

.form-feedback.success {
  background: #d4edda; color: #155724; border: 1px solid #c3e6cb;
}

.form-feedback.error {
  background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb;
}

/* Button Loading States */
.btn-loading {
  position: relative; color: transparent !important;
}

.btn-loading::after {
  content: ''; position: absolute; width: 16px; height: 16px;
  top: 50%; left: 50%; margin: -8px 0 0 -8px;
  border: 2px solid rgba(255,255,255,0.3); border-top: 2px solid #fff;
  border-radius: 50%; animation: spin 1s linear infinite;
}

/* Tooltips */
.tooltip {
  position: relative; display: inline-block;
}

.tooltip .tooltip-text {
  visibility: hidden; background: var(--charcoal); color: #fff;
  text-align: center; padding: 8px 12px; border-radius: 4px;
  font-size: 12px; position: absolute; bottom: 125%; left: 50%;
  transform: translateX(-50%); opacity: 0; transition: opacity 0.3s;
  z-index: 1000; white-space: nowrap;
}

.tooltip:hover .tooltip-text {
  visibility: visible; opacity: 1;
}

/* Improved Focus States */
*:focus {
  outline: none;
}
button:focus, a:focus, input:focus, textarea:focus {
  outline: none;
}
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid rgba(30,41,59,0.75);
  outline-offset: 2px;
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute; top: -40px; left: 6px;
  background: var(--red); color: white; padding: 8px;
  text-decoration: none; border-radius: 4px; z-index: 10000;
  font-weight: bold;
}

.skip-link:focus { top: 6px; }

/* Image Loading States */
img.loading {
  filter: blur(2px);
  transition: filter 0.3s ease;
}

img:not(.loading) {
  filter: none;
}

/* Page Load Indicator */
.page-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  z-index: 9999;
  transform: translateX(-100%);
  animation: pageLoad 0.8s ease-out forwards;
  transition: opacity 0.3s ease;
}

/* Shared navigation and search polish */
.nav-list > li > a[aria-current="page"] {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.28);
}

.dropdown a[aria-current="page"] {
  color: var(--white);
  background: rgba(255,255,255,0.07);
  padding-left: 20px;
}

.nav-right a[aria-current="page"],
.nav-right-menu a[aria-current="page"] {
  color: var(--white);
}

.nav-right-menu a[aria-current="page"] {
  background: rgba(255,255,255,0.08);
}

.hamburger {
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: background 0.18s ease;
}

.hamburger:hover {
  background: rgba(255,255,255,0.08);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.search-open {
  overflow: hidden;
}

.search-overlay[aria-hidden="true"] {
  pointer-events: none;
}

.search-overlay[aria-hidden="false"] {
  pointer-events: auto;
}

.search-box {
  position: relative;
}

.search-close {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.search-close:hover,
.search-close:focus-visible {
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.28);
}

.mobile-bottom-nav .mbn-item[aria-current="page"],
.mobile-bottom-nav .mbn-item.active,
.mobile-bottom-nav .mbn-item:hover {
  color: var(--red);
}

.mobile-bottom-nav .mbn-item[aria-current="page"]::before,
.mobile-bottom-nav .mbn-item.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  border-radius: 0 0 2px 2px;
  background: var(--red);
}

.pwa-install-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(72px + env(safe-area-inset-bottom));
  z-index: 520;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(7,18,46,0.94);
  color: #fff;
  box-shadow: 0 14px 36px rgba(15,23,42,0.28);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transform: translateY(12px);
  opacity: 0;
  transition: transform .18s ease, opacity .18s ease;
}

.pwa-install-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.pwa-install-banner__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.pwa-install-banner__copy strong {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
}

.pwa-install-banner__copy span {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255,255,255,0.72);
}

.pwa-install-banner__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.pwa-install-btn,
.pwa-install-dismiss {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pwa-install-btn {
  background: linear-gradient(135deg, #facc15 0%, #f59e0b 100%);
  color: #07122e;
}

.pwa-install-dismiss {
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}

body.is-standalone-app .site-header-wrap {
  padding-top: env(safe-area-inset-top);
}

body.is-standalone-app .mobile-bottom-nav {
  padding-bottom: max(env(safe-area-inset-bottom), 8px);
}

@media (max-width: 768px) {
  .pwa-install-banner[hidden] {
    display: none !important;
  }

  .pwa-install-banner {
    display: flex;
  }

  .nav-list[aria-hidden="true"] {
    display: none;
  }

  .nav-list[aria-hidden="false"] {
    display: flex;
  }
}

@media (min-width: 769px) {
  .pwa-install-banner {
    display: none !important;
  }
}

@keyframes pageLoad {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0%); }
}

/* PSL players directory and profiles */
.dir-hero{color:#fff;padding:36px 36px 28px;--sport-hero-overlay:linear-gradient(135deg,rgba(6,16,29,.94) 0%,rgba(12,30,49,.82) 55%,rgba(13,87,73,.68) 100%);border-bottom:4px solid rgba(34,197,94,.66);}
.dir-label{display:inline-flex;align-items:center;gap:8px;padding:6px 14px;border-radius:999px;background:rgba(255,255,255,.09);border:1px solid rgba(255,255,255,.14);font-size:11px;letter-spacing:.18em;text-transform:uppercase;font-weight:800;margin-bottom:14px;}
.dir-label::before{content:"";width:8px;height:8px;border-radius:50%;background:#22c55e;box-shadow:0 0 0 4px rgba(34,197,94,.2);}
.dir-hero h1{margin:0 0 8px;font-size:clamp(1.8rem,3.8vw,2.8rem);font-family:var(--font-display);line-height:1.05;}
.dir-hero p{margin:0;color:rgba(255,255,255,.72);font-size:14px;max-width:540px;line-height:1.7;}
.dir-filter-bar{background:#fff;border-bottom:1px solid #e5e7eb;padding:0 28px;display:flex;gap:4px;overflow-x:auto;scrollbar-width:none;}
.dir-filter-bar::-webkit-scrollbar{display:none;}
.dir-filter-btn{padding:14px 18px;border:0;background:none;font-size:13px;font-weight:700;color:#64748b;white-space:nowrap;border-bottom:3px solid transparent;margin-bottom:-1px;}
.dir-filter-btn.is-active{color:#0d2257;border-bottom-color:#0d2257;}
.dir-main{padding:24px 28px 36px;background:#f1f4f8;}
.dir-toolbar{display:grid;grid-template-columns:minmax(220px,320px) 1fr;gap:16px;align-items:start;margin-bottom:18px;}
.dir-search{display:flex;align-items:center;gap:10px;min-height:48px;padding:0 14px;background:#fff;border:1px solid #dbe3ec;border-radius:14px;box-shadow:0 4px 16px rgba(15,23,42,.05);}
.dir-search input{width:100%;border:0;outline:0;font-size:14px;color:#0f172a;}
.dir-team-filters{display:flex;flex-wrap:wrap;gap:8px;}
.dir-team-btn,.dir-reset-btn{min-height:36px;padding:0 13px;border-radius:999px;border:1px solid #dbe3ec;background:#fff;color:#475569;font-size:12px;font-weight:800;}
.dir-team-btn.is-active{background:#0d2257;color:#fff;border-color:#0d2257;}
.dir-advanced{display:grid;grid-template-columns:repeat(4,minmax(0,1fr)) auto;gap:10px;margin-bottom:16px;}
.dir-select{min-height:40px;border:1px solid #dbe3ec;border-radius:10px;background:#fff;color:#334155;padding:0 12px;font-weight:700;font-size:12px;}
.dir-count{display:flex;flex-wrap:wrap;gap:10px 14px;align-items:center;margin:0 0 18px;color:#64748b;font-size:13px;}
.dir-count strong{color:#0d2257;}
.dir-count-sub,.dir-active-filters{color:#94a3b8;}
.dir-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:20px;}
.dir-card{display:block;background:#fff;border:1px solid rgba(15,23,42,.07);border-radius:20px;overflow:hidden;box-shadow:0 6px 20px rgba(15,23,42,.06);color:inherit;transition:box-shadow .2s,transform .2s;position:relative;}
.dir-card:hover{box-shadow:0 16px 40px rgba(15,23,42,.14);transform:translateY(-4px);}
.dir-card-strip{height:6px;}
.dir-card-media{position:relative;}
.dir-card-photo,.dir-card-avatar{width:100%;aspect-ratio:3/4;}
.dir-card-photo{object-fit:cover;object-position:top center;background:#e2e8f0;}
.dir-card-avatar{display:flex;align-items:center;justify-content:center;color:#fff;font-family:var(--font-display);font-size:3.2rem;font-weight:900;}
.dir-position-badge{position:absolute;top:12px;right:10px;padding:4px 10px;border-radius:999px;background:rgba(15,23,42,.75);color:#fff;font-size:10px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;}
.dir-card-body{padding:16px 16px 18px;}
.dir-player-name{margin:0 0 4px;color:#0f172a;font-family:var(--font-display);font-size:1.05rem;font-weight:900;line-height:1.2;}
.dir-player-team{margin:0 0 10px;color:#475569;font-size:12px;font-weight:700;}
.dir-player-meta{display:flex;align-items:center;justify-content:space-between;gap:8px;flex-wrap:wrap;}
.dir-player-nat{color:#64748b;font-size:12px;}
.dir-player-age{padding:4px 10px;border-radius:999px;background:#f1f5f9;color:#475569;font-size:11px;font-weight:700;}
.dir-view-cta{margin-top:12px;padding:10px;border-radius:12px;border:1.5px solid #e2e8f0;background:#f8fafc;color:#0d2257;font-size:12px;font-weight:800;letter-spacing:.06em;text-align:center;text-transform:uppercase;}
.dir-card:hover .dir-view-cta{background:#0d2257;border-color:#0d2257;color:#fff;}
.dir-empty{grid-column:1/-1;padding:40px 20px;text-align:center;color:#64748b;}
.player-profile-main{padding:24px 28px 40px;background:#f1f4f8;}
.player-breadcrumb{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:14px;color:#64748b;font-size:12px;font-weight:700;}
.player-breadcrumb a{color:#0d2257;}
.player-profile{background:#fff;border-radius:18px;overflow:hidden;box-shadow:0 12px 36px rgba(15,23,42,.1);}
.player-profile-hero{display:grid;grid-template-columns:minmax(220px,330px) 1fr;gap:28px;align-items:end;padding:34px;color:#fff;--sport-hero-overlay:linear-gradient(135deg,rgba(6,16,29,.94),rgba(8,19,37,.82));}
.player-photo-panel{min-height:320px;border-radius:20px;overflow:hidden;background:linear-gradient(180deg,var(--player-team-color,#0d2257),#081325);box-shadow:0 18px 44px rgba(0,0,0,.24);}
.profile-photo,.profile-avatar{width:100%;height:100%;min-height:320px;object-fit:cover;object-position:top center;}
.profile-avatar{display:flex;align-items:center;justify-content:center;color:#fff;font-family:var(--font-display);font-size:4rem;font-weight:900;}
.profile-league-badge{display:inline-flex;padding:6px 12px;border-radius:999px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.16);font-size:11px;font-weight:900;letter-spacing:.16em;text-transform:uppercase;margin-bottom:14px;}
.profile-name{margin:0 0 8px;font-family:var(--font-display);font-size:clamp(2.1rem,5vw,4rem);line-height:.98;}
.profile-summary{margin:0 0 18px;color:rgba(255,255,255,.75);font-size:16px;}
.profile-chips{display:flex;flex-wrap:wrap;gap:8px;}
.profile-chips span{padding:8px 12px;border-radius:999px;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.14);font-size:12px;font-weight:800;}
.player-profile-grid{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:24px;padding:28px;}
.profile-section-title{margin:0 0 12px;color:#0d2257;font-family:var(--font-display);font-size:16px;font-weight:900;text-transform:uppercase;letter-spacing:.04em;}
.profile-copy{color:#334155;line-height:1.75;margin-bottom:24px;}
.profile-highlight-list{display:grid;gap:10px;margin-bottom:24px;}
.profile-highlight-list li{padding:12px 14px;border-radius:12px;background:#f8fafc;color:#334155;font-weight:700;}
.profile-highlight-list i{color:#22c55e;margin-right:8px;}
.profile-team-history{display:flex;flex-wrap:wrap;gap:10px;}
.profile-team-history span{padding:8px 12px;border-radius:999px;background:#f8fafc;border:1px solid #e2e8f0;color:#475569;font-weight:800;font-size:12px;}
.profile-team-history small{margin-left:6px;color:#64748b;}
.profile-facts{border:1px solid #e2e8f0;border-radius:16px;padding:18px;background:#fbfdff;}
.profile-facts dl{display:grid;gap:12px;}
.profile-facts div{display:grid;gap:3px;}
.profile-facts dt{color:#94a3b8;font-size:11px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;}
.profile-facts dd{color:#0f172a;font-size:14px;font-weight:800;}
@media (max-width:980px){.dir-grid{grid-template-columns:repeat(3,minmax(0,1fr));}.dir-advanced{grid-template-columns:repeat(2,minmax(0,1fr));}.player-profile-hero,.player-profile-grid{grid-template-columns:1fr;}}
@media (max-width:720px){.dir-hero{padding:24px 18px 20px;}.dir-filter-bar{padding:0 14px;}.dir-main,.player-profile-main{padding:18px 14px 28px;}.dir-toolbar,.dir-advanced{grid-template-columns:1fr;}.dir-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;}.player-profile-hero{padding:22px;}.player-profile-grid{padding:18px;}}
@media (max-width:380px){.dir-grid{grid-template-columns:1fr;}}

/* Brand partner profile */
.bp-hero{background:linear-gradient(135deg,#0d1333 0%,#1a237e 55%,#16236e 100%);position:relative;overflow:hidden;}
.bp-hero::before{content:"";position:absolute;inset:0;background:var(--sport-stadium-image) center/cover no-repeat;opacity:.06;}
.bp-hero-inner{position:relative;z-index:1;max-width:1200px;margin:0 auto;padding:52px 26px 48px;}
.bp-breadcrumb{font-size:11px;color:rgba(255,255,255,.4);margin-bottom:28px;display:flex;align-items:center;gap:6px;flex-wrap:wrap;}
.bp-breadcrumb a{color:rgba(255,255,255,.4);}
.bp-breadcrumb a:hover{color:rgba(255,255,255,.75);}
.bp-breadcrumb .sep{opacity:.3;}
.bp-brand-block{display:flex;align-items:flex-start;gap:28px;flex-wrap:wrap;}
.bp-logo-box{width:96px;height:96px;border-radius:18px;flex-shrink:0;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.14);display:flex;align-items:center;justify-content:center;backdrop-filter:blur(10px);}
.bp-logo-box img{max-width:82%;max-height:82%;object-fit:contain;display:block;}
.bp-logo-box span{font-family:var(--font-display);font-size:18px;font-weight:900;color:#fff;letter-spacing:0;}
.bp-author-logo{background:rgba(255,255,255,.95);}
.bp-author-logo span{color:#0d1333;}
.bp-author-hero .bp-brand-name{max-width:860px;}
.bp-brand-info{flex:1;min-width:200px;}
.bp-verified{display:inline-flex;align-items:center;gap:6px;background:rgba(201,168,76,.15);border:1px solid rgba(201,168,76,.35);color:#c9a84c;font-size:9px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;padding:4px 10px;border-radius:3px;margin-bottom:10px;}
.bp-brand-name{font-family:var(--font-display);font-size:clamp(22px,4vw,34px);font-weight:900;color:#fff;line-height:1.1;margin-bottom:6px;}
.bp-tagline{font-size:14px;color:rgba(255,255,255,.58);margin-bottom:18px;}
.bp-actions{display:flex;gap:10px;flex-wrap:wrap;}
.bp-btn-primary,.bp-btn-ghost{font-weight:700;font-size:12px;padding:11px 18px;border-radius:5px;text-decoration:none;display:inline-flex;align-items:center;gap:7px;transition:background .2s,transform .2s;}
.bp-btn-primary{background:var(--red);color:#fff;box-shadow:0 2px 12px rgba(200,16,46,.4);}
.bp-btn-primary:hover{background:#a80d25;transform:translateY(-1px);}
.bp-btn-ghost{background:rgba(255,255,255,.07);color:rgba(255,255,255,.8);border:1px solid rgba(255,255,255,.16);font-weight:600;}
.bp-btn-ghost:hover{background:rgba(255,255,255,.13);}
.bp-stats-row{display:flex;gap:0;margin-top:36px;border-top:1px solid rgba(255,255,255,.08);padding-top:24px;flex-wrap:wrap;}
.bp-stat{padding:0 28px 0 0;}
.bp-stat + .bp-stat{padding-left:28px;border-left:1px solid rgba(255,255,255,.08);}
.bp-stat .num{font-size:22px;font-weight:900;color:#fff;}
.bp-stat .lbl{font-size:10px;color:rgba(255,255,255,.38);letter-spacing:.07em;text-transform:uppercase;margin-top:2px;}
.bp-layout{max-width:1200px;margin:0 auto;padding:36px 26px 60px;display:grid;grid-template-columns:1fr 300px;gap:32px;}
.bp-articles{display:flex;flex-direction:column;gap:0;}
.bp-article-card{display:grid;grid-template-columns:220px 1fr;border-bottom:1px solid var(--border);padding:20px 0;gap:18px;transition:background .15s,padding .15s,margin .15s;}
.bp-article-card:last-child{border-bottom:none;}
.bp-article-card:hover{background:var(--light);margin:0 -12px;padding-left:12px;padding-right:12px;border-radius:6px;}
.bp-card-img{position:relative;overflow:hidden;border-radius:6px;height:130px;background:var(--light);}
.bp-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s;}
.bp-article-card:hover .bp-card-img img{transform:scale(1.04);}
.bp-card-img::after{content:"";position:absolute;inset:0;border-radius:6px;background:linear-gradient(135deg,rgba(10,25,90,.2) 0%,rgba(200,16,46,.09) 100%);mix-blend-mode:multiply;}
.bp-card-body{display:flex;flex-direction:column;gap:6px;justify-content:center;}
.bp-card-cat{display:inline-flex;align-items:center;gap:5px;font-size:9px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--red);}
.bp-card-title{font-family:var(--font-display);font-size:15px;font-weight:900;color:var(--charcoal);line-height:1.3;text-decoration:none;display:block;}
.bp-card-title:hover{color:var(--red);}
.bp-card-excerpt{font-size:12px;color:var(--mid);line-height:1.55;margin:0;}
.bp-card-meta{font-size:10px;color:var(--muted);display:flex;gap:10px;flex-wrap:wrap;}
.bp-empty{color:var(--muted);font-size:13px;}
.bp-sidebar{display:flex;flex-direction:column;gap:20px;}
.bp-widget{background:var(--white);border-radius:8px;border:1px solid var(--border);overflow:hidden;}
.bp-widget-head{background:#0d1333;color:#fff;font-size:10px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:10px 14px;display:flex;align-items:center;gap:7px;}
.bp-widget-body{padding:16px;}
.bp-widget-body p{font-size:12px;color:var(--mid);line-height:1.65;margin:0 0 14px;}
.bp-contact-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:9px;}
.bp-contact-list li{display:flex;align-items:flex-start;gap:8px;font-size:12px;color:var(--charcoal);}
.bp-contact-list i{color:var(--red);width:14px;flex-shrink:0;margin-top:2px;}
.bp-contact-list a{color:#1a237e;text-decoration:none;}
.bp-contact-list a:hover{text-decoration:underline;}
.bp-services{display:flex;flex-wrap:wrap;gap:6px;}
.bp-services span{background:rgba(26,35,126,.07);color:#1a237e;font-size:10px;font-weight:600;padding:4px 9px;border-radius:4px;}
.bp-quote-link{display:flex;align-items:center;justify-content:center;gap:8px;background:var(--red);color:#fff;text-align:center;padding:11px;border-radius:6px;font-size:12px;font-weight:700;text-decoration:none;}
.bp-brand-cta-widget{background:linear-gradient(135deg,#0d1333,#1a237e);border:none;}
.bp-brand-cta-widget .bp-widget-body{padding:18px;}
.bp-brand-cta-widget .bp-cta-kicker{font-size:10px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.45);margin-bottom:8px;}
.bp-brand-cta-widget p{color:rgba(255,255,255,.6);}
.bp-brand-cta-widget a{display:block;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);color:#fff;text-align:center;padding:10px;border-radius:6px;font-size:11px;font-weight:700;text-decoration:none;}
@media (max-width:860px){.bp-layout{grid-template-columns:1fr;}.bp-stats-row{gap:18px;}.bp-stat + .bp-stat{padding-left:0;border-left:0;}}
@media (max-width:560px){.bp-hero-inner{padding:34px 18px 32px;}.bp-layout{padding:28px 18px 48px;}.bp-article-card{grid-template-columns:1fr;}.bp-card-img{height:190px;}.bp-actions a{width:100%;justify-content:center;}}
/* Live football standings */
.eb-standings-shell {
  display: grid;
  gap: 22px;
}
.eb-standings-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 0 4px;
  scrollbar-width: thin;
}
.eb-standings-tabs a {
  flex: 0 0 auto;
  border: 1px solid var(--border);
  border-bottom: 3px solid var(--league-accent, var(--navy));
  border-radius: 6px;
  background: #fff;
  color: var(--navy);
  padding: 9px 14px 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.eb-standings-tabs a:hover { background: var(--light); }
.eb-standings-tabs a.is-active {
  background: var(--navy);
  border-color: var(--navy);
  border-bottom-color: var(--league-accent, var(--red));
  color: #fff;
}
.eb-standings-seasons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #fff;
}
.eb-standings-seasons .eb-data-label { margin: 0; }
.eb-standings-seasons > div {
  display: flex;
  gap: 8px;
}
.eb-standings-seasons a {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 165px;
  padding: 8px 11px;
  border: 1px solid var(--border-lt);
  border-radius: 6px;
  background: #f8fafc;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.2;
  text-decoration: none;
}
.eb-standings-seasons a i { color: var(--red); font-size: 14px; }
.eb-standings-seasons a span { display: grid; gap: 2px; }
.eb-standings-seasons a strong { color: var(--navy); font-size: 11px; }
.eb-standings-seasons a:hover { background: #fff8ea; }
.eb-standings-seasons a.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: rgba(255,255,255,.72);
}
.eb-standings-seasons a.is-active i { color: #f8bc30; }
.eb-standings-seasons a.is-active strong { color: #fff; }
.eb-standings-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: start;
  gap: 22px;
}
.eb-standings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.eb-standings-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-top: 4px solid var(--league-accent, var(--navy));
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
  scroll-margin-top: 100px;
}
.eb-standings-card.is-priority { grid-column: 1 / -1; }
.eb-standings-status {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border-bottom: 1px solid #dbe4ee;
  font-size: 12px;
  line-height: 1.45;
}
.eb-standings-status.is-live { color: #166534; background: #f0fdf4; }
.eb-standings-status.is-degraded { color: #854d0e; background: #fffbeb; }
.eb-live-dot { width: 8px; height: 8px; border-radius: 999px; background: #16a34a; box-shadow: 0 0 0 4px rgba(22, 163, 74, .14); }
.eb-standings-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px 16px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(13, 34, 87, .035), transparent 58%);
}
.eb-standings-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--league-accent, var(--red));
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eb-standings-head h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}
.eb-standings-meta {
  display: grid;
  justify-items: end;
  gap: 4px;
  color: var(--muted);
  font-size: 10px;
  text-align: right;
}
.eb-standings-meta span { color: var(--navy); font-weight: 800; }
.eb-standings-table-wrap { overflow-x: auto; }
.eb-standings-table {
  width: 100%;
  min-width: 590px;
  border-collapse: collapse;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.eb-standings-table th,
.eb-standings-table td {
  padding: 9px 8px;
  border-bottom: 1px solid var(--border-lt);
  text-align: center;
  white-space: nowrap;
}
.eb-standings-table thead th {
  background: var(--navy);
  color: rgba(255,255,255,.72);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eb-standings-table th.is-team {
  min-width: 210px;
  text-align: left;
}
.eb-standings-table tbody th.is-team {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 750;
  text-transform: none;
}
.eb-standings-table tbody th.is-team img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex: 0 0 auto;
}
.eb-standings-table tbody tr:nth-child(even) { background: #f8fafc; }
.eb-standings-table tbody tr:hover { background: #fff8ea; }
.eb-standings-table .is-rank {
  color: var(--muted);
  font-weight: 800;
}
.eb-standings-table .is-points {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}
.eb-standings-foot a { color: var(--navy); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.eb-standings-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 14px;
  color: var(--muted);
  background: #f8fafc;
  font-size: 9px;
}
.eb-standings-empty {
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 42px 20px;
  color: var(--muted);
  text-align: center;
}
.eb-standings-empty i { color: var(--league-accent, var(--red)); font-size: 22px; }
.eb-standings-empty strong { color: var(--navy); }
.eb-standings-switcher {
  position: sticky;
  top: 92px;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .05);
}
.eb-standings-switcher-list {
  display: grid;
  gap: 9px;
}
.eb-standings-switcher-list a {
  display: grid;
  gap: 3px;
  padding: 11px 12px;
  border: 1px solid var(--border-lt);
  border-left: 4px solid var(--league-accent, var(--navy));
  border-radius: 6px;
  background: #f8fafc;
  color: var(--charcoal);
  text-decoration: none;
}
.eb-standings-switcher-list a:hover { background: #fff8ea; }
.eb-standings-switcher-list a.is-active {
  border-color: rgba(13, 34, 87, .18);
  border-left-color: var(--league-accent, var(--red));
  background: rgba(13, 34, 87, .045);
}
.eb-standings-switcher-list span {
  color: var(--league-accent, var(--red));
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eb-standings-switcher-list strong {
  color: var(--navy);
  font-size: 12px;
  line-height: 1.25;
}

@media (max-width: 900px) {
  .eb-standings-layout { grid-template-columns: 1fr; }
  .eb-standings-grid { grid-template-columns: 1fr; }
  .eb-standings-card.is-priority { grid-column: auto; }
  .eb-standings-switcher {
    position: static;
    padding: 14px;
  }
  .eb-standings-switcher-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .eb-standings-seasons { align-items: stretch; padding: 11px; }
  .eb-standings-seasons > .eb-data-label { display: none; }
  .eb-standings-seasons > div { width: 100%; }
  .eb-standings-seasons a { flex: 1 1 0; min-width: 0; padding: 8px; }
  .eb-standings-head { padding: 15px 14px 13px; }
  .eb-standings-head h2 { font-size: 18px; }
  .eb-standings-meta { display: none; }
  .eb-standings-table { min-width: 560px; }
  .eb-standings-table th,
  .eb-standings-table td { padding: 8px 7px; }
  .eb-standings-table th.is-team { min-width: 190px; }
  .eb-standings-switcher-list { grid-template-columns: 1fr; }
}

/* Live reader services: match center, lottery and currency markets. */
.eb-data-label {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eb-match-toolbar,
.eb-lotto-toolbar,
.eb-markets-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #f8fafc;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
}
.eb-match-toolbar time,
.eb-lotto-toolbar time,
.eb-markets-toolbar time { color: var(--muted); font-weight: 600; }
.eb-match-groups { display: grid; gap: 24px; }
.eb-match-league {
  overflow: hidden;
  border: 1px solid var(--border);
  border-top: 4px solid var(--league-accent, var(--navy));
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .05);
}
.eb-match-league > header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--border);
}
.eb-match-league > header span {
  min-width: 52px;
  padding: 5px 8px;
  border-radius: 4px;
  background: var(--league-accent, var(--navy));
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}
.eb-match-league > header h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0;
}
.eb-match-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.eb-match-card {
  min-width: 0;
  padding: 15px;
  border-right: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
}
.eb-match-context {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 9px;
}
.eb-match-context strong { color: var(--navy); font-size: 9px; text-transform: uppercase; }
.eb-match-card.is-in .eb-match-context strong { color: var(--red); }
.eb-match-team {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 700;
}
.eb-match-team img { width: 30px; height: 30px; object-fit: contain; }
.eb-match-team > strong { color: var(--navy); font-size: 17px; }
.eb-match-team.is-winner > span,
.eb-match-team.is-winner > strong { font-weight: 900; }
.eb-match-card > p {
  overflow: hidden;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.eb-lotto-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.eb-lotto-card {
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--border);
  border-top: 4px solid var(--lotto-accent, var(--gold));
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
}
.eb-lotto-card header { display: flex; justify-content: space-between; gap: 14px; }
.eb-lotto-card h2 { margin: 0; color: var(--navy); font-family: var(--font-display); font-size: 19px; letter-spacing: 0; }
.eb-lotto-draw {
  align-self: flex-start;
  padding: 5px 7px;
  border-radius: 4px;
  background: #f1f5f9;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}
.eb-lotto-date { margin: 7px 0 14px; color: var(--muted); font-size: 10px; }
.eb-lotto-balls { display: flex; flex-wrap: wrap; gap: 8px; }
.eb-lotto-balls span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid var(--lotto-accent, var(--navy));
  border-radius: 50%;
  color: var(--navy);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}
.eb-lotto-balls span.is-bonus { color: #fff; background: var(--lotto-accent, var(--red)); }
.eb-lotto-card small { display: block; margin-top: 12px; color: var(--muted); font-size: 9px; }

.eb-service-news {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--border-lt);
}
.eb-service-news > header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.eb-service-news > header h2 {
  margin: 3px 0 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 23px;
  letter-spacing: 0;
}
.eb-service-news > header > a {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.eb-service-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.eb-service-news-card {
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--border-lt);
  border-radius: 6px;
  background: #fff;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.eb-service-news-card:hover {
  border-color: #cbd2df;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.eb-service-news-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--light);
}
.eb-service-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.eb-service-news-card:hover .eb-service-news-image img { transform: scale(1.04); }
.eb-service-news-card > div { padding: 13px 14px 15px; }
.eb-service-news-card > div > span {
  display: block;
  margin-bottom: 6px;
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}
.eb-service-news-card h3 {
  margin: 0 0 10px;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0;
}
.eb-service-news-card h3 a { color: inherit; text-decoration: none; }
.eb-service-news-card h3 a:hover { color: var(--red); }
.eb-service-news-card time { color: var(--muted); font-size: 10px; }

@media (max-width: 900px) {
  .eb-service-news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .eb-service-news { margin-top: 26px; padding-top: 22px; }
  .eb-service-news > header { align-items: flex-start; }
  .eb-service-news > header h2 { font-size: 20px; }
  .eb-service-news-grid { grid-template-columns: 1fr; gap: 12px; }
  .eb-service-news-card { display: grid; grid-template-columns: 112px minmax(0, 1fr); }
  .eb-service-news-image { height: 100%; min-height: 105px; aspect-ratio: auto; }
  .eb-service-news-card > div { padding: 11px 12px; }
  .eb-service-news-card h3 { font-size: 13px; }
}
.eb-service-source { margin: 18px 0 0; color: var(--muted); font-size: 10px; line-height: 1.6; }
.eb-service-source a { color: var(--red); font-weight: 700; }
.eb-service-empty {
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 48px 20px;
  border: 1px solid var(--border);
  border-radius: 7px;
  color: var(--muted);
  text-align: center;
}
.eb-service-empty i { color: var(--red); font-size: 22px; }
.eb-service-empty strong { color: var(--navy); }
.eb-markets-toolbar > div > strong { color: var(--navy); font-size: 13px; }
.eb-market-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.eb-market-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #fff;
}
.eb-market-code {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}
.eb-market-card h2 { margin: 1px 0 3px; color: var(--charcoal); font-size: 13px; letter-spacing: 0; }
.eb-market-card p { margin: 0; color: var(--muted); font-size: 9px; }
.eb-market-card > strong { grid-column: 1 / -1; color: var(--navy); font-family: var(--font-display); font-size: 24px; letter-spacing: 0; }
.eb-currency-converter {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 150px 150px minmax(160px, auto);
  align-items: end;
  gap: 14px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 7px;
  background: #f8fafc;
}
.eb-currency-converter h2 { margin: 0; color: var(--navy); font-family: var(--font-display); font-size: 18px; letter-spacing: 0; }
.eb-currency-converter label { color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.eb-currency-converter input,
.eb-currency-converter select {
  width: 100%;
  height: 42px;
  margin-top: 5px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--charcoal);
  background: #fff;
  font: inherit;
  font-size: 13px;
}
.eb-currency-converter output { padding-bottom: 8px; color: var(--navy); font-family: var(--font-display); font-size: 24px; font-weight: 900; letter-spacing: 0; text-align: right; }
@media (max-width: 980px) {
  .eb-match-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .eb-market-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .eb-currency-converter { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .eb-currency-converter output { text-align: left; }
}
@media (max-width: 640px) {
  .eb-match-toolbar,
  .eb-lotto-toolbar,
  .eb-markets-toolbar { align-items: flex-start; flex-direction: column; gap: 5px; }
  .eb-match-list,
  .eb-lotto-grid,
  .eb-market-grid,
  .eb-currency-converter { grid-template-columns: 1fr; }
  .eb-match-card { border-right: 0; }
  .eb-lotto-card { padding: 15px; }
  .eb-lotto-balls { gap: 6px; }
  .eb-lotto-balls span { width: 34px; height: 34px; font-size: 12px; }
}

/* Reader service visual dashboards */
.eb-service-hero--weather,
.eb-service-hero--lotto,
.eb-service-hero--markets,
.eb-service-hero--standings,
.eb-service-hero--live-matches,
.eb-service-hero--world-cup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  min-height: 170px;
}
.eb-service-hero-copy { position: relative; z-index: 1; min-width: 0; }
.eb-service-hero-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.08);
  font-size: 43px;
}
.eb-service-hero--weather { border-bottom-color: #54b9e8; background-color: #0b405e; background-image: linear-gradient(90deg, rgba(5,32,50,.97) 0%, rgba(7,48,70,.88) 54%, rgba(7,48,70,.42) 100%), url('../images/service-weather-hero.webp'); background-position: center; background-size: cover; }
.eb-service-hero--weather .eb-service-kicker { color: #9edcff; }
.eb-service-hero--lotto { border-bottom-color: #f1bd33; background-color: #111827; background-image: linear-gradient(90deg, rgba(10,15,27,.97) 0%, rgba(17,24,39,.88) 54%, rgba(17,24,39,.4) 100%), url('../images/service-lotto-hero.webp'); background-position: center; background-size: cover; }
.eb-service-hero--lotto .eb-service-kicker { color: #f1bd33; }
.eb-service-hero--markets { border-bottom-color: #48c59a; background-color: #0b3d35; background-image: linear-gradient(90deg, rgba(5,42,36,.97) 0%, rgba(8,58,49,.87) 54%, rgba(8,58,49,.4) 100%), url('../images/service-markets-hero.webp'); background-position: center; background-size: cover; }
.eb-service-hero--markets .eb-service-kicker { color: #83dfc1; }
.eb-service-hero--standings { border-bottom-color: #e3b341; background-color: #0c2545; background-image: linear-gradient(90deg, rgba(5,21,42,.97) 0%, rgba(8,37,70,.88) 54%, rgba(8,37,70,.42) 100%), url('../images/service-standings-hero.webp'); background-position: center; background-size: cover; }
.eb-service-hero--standings .eb-service-kicker { color: #f4ca61; }
.eb-service-hero--live-matches { border-bottom-color: #df2435; background-color: #0a2340; background-image: linear-gradient(90deg, rgba(5,20,38,.97) 0%, rgba(8,35,64,.86) 54%, rgba(8,35,64,.34) 100%), url('../images/service-live-matches-hero.webp'); background-position: center; background-size: cover; }
.eb-service-hero--live-matches .eb-service-kicker { color: #ff7d88; }
.eb-service-hero--world-cup { border-bottom-color: #d5aa43; background-color: #151f35; background-image: linear-gradient(90deg, rgba(8,17,32,.97) 0%, rgba(16,30,53,.86) 54%, rgba(16,30,53,.36) 100%), url('../images/service-world-cup-hero.webp'); background-position: center; background-size: cover; }
.eb-service-hero--world-cup .eb-service-kicker { color: #f3c95e; }
.eb-service-hero--weather h1,
.eb-service-hero--lotto h1,
.eb-service-hero--markets h1,
.eb-service-hero--standings h1,
.eb-service-hero--live-matches h1,
.eb-service-hero--world-cup h1 { color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,.3); }
.eb-service-panel--weather,
.eb-service-panel--lotto,
.eb-service-panel--markets { background: #fbfcfe; }

.eb-weather-national {
  overflow: hidden;
  border: 1px solid #cfe2ee;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15,23,42,.06);
}
.eb-weather-national > header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 17px;
  border-bottom: 1px solid #dceaf2;
  background: #f2f8fc;
}
.eb-weather-national h2,
.eb-lotto-filterbar h2,
.eb-market-secondary-head h2 { margin: 0; color: var(--navy); font-family: var(--font-display); font-size: 18px; letter-spacing: 0; }
.eb-weather-national > header > span,
.eb-market-secondary-head > span { color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.eb-weather-national-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.eb-weather-national-grid > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 17px;
  border-right: 1px solid #e1ebf1;
}
.eb-weather-national-grid > div:last-child { border-right: 0; }
.eb-weather-national-grid i { display: grid; place-items: center; width: 34px; height: 34px; flex: 0 0 auto; border-radius: 50%; font-size: 15px; }
.eb-weather-national-grid .is-warm i { color: #b42318; background: #fff0ed; }
.eb-weather-national-grid .is-cool i { color: #175cd3; background: #eff8ff; }
.eb-weather-national-grid .is-rain i { color: #1570a6; background: #eaf7ff; }
.eb-weather-national-grid .is-wind i { color: #087f5b; background: #eaf9f3; }
.eb-weather-national-grid span { display: grid; min-width: 0; gap: 2px; }
.eb-weather-national-grid small { color: var(--muted); font-size: 8px; text-transform: uppercase; }
.eb-weather-national-grid strong { color: var(--navy); font-family: var(--font-display); font-size: 19px; letter-spacing: 0; font-variant-numeric: tabular-nums; }
.eb-weather-national-grid b { overflow: hidden; color: var(--charcoal); font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }

.eb-lotto-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid #dce2ea;
  border-radius: 7px;
  background: #101820;
  color: #fff;
}
.eb-lotto-overview > div { display: flex; align-items: center; gap: 12px; min-width: 0; padding: 16px 18px; border-right: 1px solid rgba(255,255,255,.12); }
.eb-lotto-overview > div:last-child { border-right: 0; }
.eb-lotto-overview i { display: grid; place-items: center; width: 34px; height: 34px; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: #f1bd33; }
.eb-lotto-overview span { display: grid; min-width: 0; gap: 3px; }
.eb-lotto-overview small { color: #9ca9b5; font-size: 8px; text-transform: uppercase; }
.eb-lotto-overview strong { overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.eb-lotto-filterbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}
.eb-lotto-filterbar > div:last-child { display: flex; gap: 7px; overflow-x: auto; padding-bottom: 2px; }
.eb-lotto-filterbar button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 11px;
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--navy);
  background: #fff;
  font-size: 9px;
  font-weight: 850;
  white-space: nowrap;
  cursor: pointer;
}
.eb-lotto-filterbar button span { display: grid; place-items: center; min-width: 18px; height: 18px; padding: 0 4px; border-radius: 9px; color: var(--muted); background: #eef2f6; font-size: 8px; }
.eb-lotto-filterbar button.is-active { border-color: var(--navy); color: #fff; background: var(--navy); }
.eb-lotto-filterbar button.is-active span { color: var(--navy); background: #fff; }
.eb-lotto-card[hidden] { display: none; }
.eb-lotto-card { padding: 0; }
.eb-lotto-card header {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 15px 16px 11px;
}
.eb-lotto-game-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: #fff; background: var(--lotto-accent, var(--navy)); font-size: 14px; }
.eb-lotto-card .eb-lotto-date { margin: 0; padding: 0 16px 12px 65px; }
.eb-lotto-card .eb-lotto-balls { min-height: 84px; padding: 18px 16px; border-top: 1px solid var(--border-lt); border-bottom: 1px solid var(--border-lt); background: #f8fafc; }
.eb-lotto-card .eb-lotto-balls span { width: 42px; height: 42px; border-width: 3px; box-shadow: inset 0 -4px 0 rgba(15,23,42,.08); }
.eb-lotto-card > small { min-height: 33px; margin: 0; padding: 10px 16px; }
.eb-lotto-card.is-newest {
  grid-column: 1 / -1;
  border-top-width: 5px;
  box-shadow: 0 16px 36px rgba(15,23,42,.11);
}
.eb-lotto-card.is-newest header { padding: 19px 20px 14px; background: #111827; }
.eb-lotto-card.is-newest header h2 { color: #fff; font-size: 23px; }
.eb-lotto-card.is-newest header .eb-data-label { color: #f1bd33; }
.eb-lotto-card.is-newest .eb-lotto-draw { color: #d9e0e8; background: rgba(255,255,255,.1); }
.eb-lotto-card.is-newest .eb-lotto-date { padding: 12px 20px; color: #4b5968; background: #f8fafc; }
.eb-lotto-card.is-newest .eb-lotto-balls { min-height: 104px; padding: 22px 20px; background: #fff; }
.eb-lotto-card.is-newest .eb-lotto-balls span { width: 50px; height: 50px; font-size: 15px; }
.eb-lotto-empty-filter { padding: 30px 18px; border: 1px solid var(--border); color: var(--muted); background: #fff; text-align: center; font-size: 12px; }

.eb-market-board { overflow: hidden; border-radius: 7px; color: #fff; background: #101820; box-shadow: 0 14px 32px rgba(15,23,42,.14); }
.eb-market-board > header { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 13px 17px; border-bottom: 1px solid rgba(255,255,255,.12); background: #0b3d35; }
.eb-market-board > header > span { display: flex; align-items: center; gap: 7px; color: #8de2c5; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.eb-market-board > header small { color: #a7b5bd; font-size: 9px; }
.eb-market-major-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.eb-market-card.is-major { min-height: 148px; border: 0; border-right: 1px solid rgba(255,255,255,.11); border-radius: 0; color: #fff; background: transparent; }
.eb-market-card.is-major:last-child { border-right: 0; }
.eb-market-card.is-major .eb-market-code { color: #0b3d35; background: #8de2c5; }
.eb-market-card.is-major h2,
.eb-market-card.is-major > strong { color: #fff; }
.eb-market-card.is-major p,
.eb-market-card.is-major > small { color: #9fadb6; }
.eb-market-card > small { grid-column: 1 / -1; color: var(--muted); font-size: 8px; font-variant-numeric: tabular-nums; }
.eb-market-secondary-head { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin: 28px 0 13px; }
.eb-market-grid.is-secondary { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.eb-market-grid.is-secondary .eb-market-card { padding: 14px; }
.eb-market-grid.is-secondary .eb-market-card > strong { font-size: 20px; }
.eb-market-grid.is-secondary .eb-market-code { width: 38px; height: 38px; }
.eb-currency-converter { grid-template-columns: minmax(230px, 1.2fr) 150px minmax(190px, .9fr) minmax(190px, auto); margin-top: 18px; border: 0; border-left: 4px solid #48c59a; color: #fff; background: #101820; box-shadow: 0 12px 28px rgba(15,23,42,.1); }
.eb-converter-heading h2 { color: #fff; }
.eb-converter-heading .eb-data-label { color: #76d9b8; }
.eb-converter-modes { display: flex; gap: 5px; margin-top: 11px; }
.eb-converter-modes button { min-height: 30px; padding: 0 9px; border: 1px solid rgba(255,255,255,.2); border-radius: 4px; color: #b7c2ca; background: transparent; font-size: 8px; font-weight: 800; cursor: pointer; }
.eb-converter-modes button.is-active { border-color: #76d9b8; color: #092f28; background: #76d9b8; }
.eb-currency-converter label { color: #b6c0c8; }
.eb-currency-converter output { display: grid; justify-items: end; gap: 4px; padding-bottom: 3px; }
.eb-currency-converter output small { color: #a8b4bc; font-family: var(--font-ui); font-size: 8px; font-weight: 700; text-transform: uppercase; }
.eb-currency-converter output strong { color: #fff; font-family: var(--font-display); font-size: 25px; letter-spacing: 0; font-variant-numeric: tabular-nums; }

@media (max-width: 1050px) {
  .eb-weather-national-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .eb-weather-national-grid > div:nth-child(2) { border-right: 0; }
  .eb-weather-national-grid > div:nth-child(-n+2) { border-bottom: 1px solid #e1ebf1; }
  .eb-market-grid.is-secondary { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .eb-currency-converter { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .eb-currency-converter output { justify-items: start; }
}
@media (max-width: 760px) {
  .eb-service-hero--weather,
  .eb-service-hero--lotto,
  .eb-service-hero--markets,
  .eb-service-hero--standings,
  .eb-service-hero--live-matches,
  .eb-service-hero--world-cup { min-height: 150px; }
  .eb-service-hero-icon { width: 78px; height: 78px; font-size: 30px; }
  .eb-lotto-overview { grid-template-columns: 1fr; }
  .eb-lotto-overview > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .eb-lotto-overview > div:last-child { border-bottom: 0; }
  .eb-lotto-filterbar { align-items: flex-start; flex-direction: column; }
  .eb-lotto-filterbar > div:last-child { width: 100%; }
  .eb-lotto-card.is-newest .eb-lotto-balls span { width: 44px; height: 44px; }
  .eb-market-major-grid { grid-template-columns: 1fr; }
  .eb-market-card.is-major { min-height: 120px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.11); }
  .eb-market-grid.is-secondary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .eb-currency-converter { grid-template-columns: 1fr; }
  .eb-currency-converter output { justify-items: start; }
}
@media (max-width: 520px) {
  .eb-service-hero--weather,
  .eb-service-hero--lotto,
  .eb-service-hero--markets,
  .eb-service-hero--standings,
  .eb-service-hero--live-matches,
  .eb-service-hero--world-cup { min-height: 142px; padding: 25px 16px 21px; background-position: 62% center; }
  .eb-service-hero-icon { width: 58px; height: 58px; font-size: 23px; }
  .eb-service-hero p { font-size: 12px; }
  .eb-weather-national > header { align-items: flex-start; flex-direction: column; gap: 4px; }
  .eb-weather-national-grid { grid-template-columns: 1fr; }
  .eb-weather-national-grid > div { border-right: 0; border-bottom: 1px solid #e1ebf1; }
  .eb-weather-national-grid > div:last-child { border-bottom: 0; }
  .eb-lotto-filterbar > div:last-child { padding-bottom: 5px; }
  .eb-lotto-card header { grid-template-columns: 34px minmax(0, 1fr) auto; padding: 13px 12px 10px; }
  .eb-lotto-game-icon { width: 34px; height: 34px; }
  .eb-lotto-card .eb-lotto-date { padding: 0 12px 11px 57px; }
  .eb-lotto-card .eb-lotto-balls { min-height: 72px; padding: 14px 12px; }
  .eb-lotto-card.is-newest header { padding: 15px 12px 12px; }
  .eb-lotto-card.is-newest header h2 { font-size: 20px; }
  .eb-lotto-card.is-newest .eb-lotto-date { padding: 10px 12px; }
  .eb-lotto-card.is-newest .eb-lotto-balls { min-height: 82px; padding: 16px 12px; }
  .eb-lotto-card.is-newest .eb-lotto-balls span { width: 40px; height: 40px; font-size: 13px; }
  .eb-market-board > header { align-items: flex-start; flex-direction: column; gap: 4px; }
  .eb-market-grid.is-secondary { grid-template-columns: 1fr; }
  .eb-market-secondary-head { align-items: flex-start; flex-direction: column; gap: 4px; }
  .eb-converter-modes { flex-wrap: wrap; }
}

/* Homepage live match rail */
.home-live-strip{--live-marquee-duration:36s;display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:stretch;width:min(var(--box-width),calc(100% - 32px));min-height:58px;margin:18px auto 0;overflow:hidden;border:1px solid #dce2ea;border-top:3px solid var(--red);border-radius:6px 6px 0 0;background:#fff;box-shadow:0 5px 18px rgba(13,34,87,.08)}
.home-live-heading,.home-live-all{position:relative;z-index:2;display:flex;align-items:center;color:#fff;background:var(--navy);text-decoration:none}.home-live-heading{gap:10px;padding:0 18px}.home-live-heading>span:last-child{display:grid;gap:1px}.home-live-heading strong{font-size:12px;letter-spacing:.08em}.home-live-heading small{color:rgba(255,255,255,.72);font-size:9px;white-space:nowrap}.home-live-pulse{width:9px;height:9px;border-radius:50%;background:#ff4056;box-shadow:0 0 0 0 rgba(255,64,86,.6);animation:eb-live-pulse 1.8s ease-out infinite}
.home-live-marquee{min-width:0;overflow:hidden;background:#fff}.home-live-track{display:flex;width:max-content;min-width:100%;height:100%}.home-live-group{display:flex;align-items:stretch;flex:none}.home-live-group-copy{display:none}.home-live-match{display:grid;grid-template-columns:minmax(92px,auto) auto minmax(92px,auto) auto;align-items:center;gap:11px;min-width:390px;padding:8px 18px;border-right:1px solid #e5e9ef;color:var(--charcoal);text-decoration:none}.home-live-match:hover{background:#f7f9fc}.home-live-team{display:flex;align-items:center;gap:7px;min-width:0;font-size:11px;font-weight:800}.home-live-team.away{flex-direction:row-reverse;text-align:right}.home-live-team img{width:24px;height:24px;flex:none;object-fit:contain}.home-live-team span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.home-live-match>strong{color:var(--navy);font-family:var(--font-display);font-size:17px;white-space:nowrap}.home-live-match>small{color:var(--red);font-size:10px;font-weight:900;white-space:nowrap}.home-live-all{gap:8px;padding:0 16px;font-size:10px;font-weight:800;white-space:nowrap}.home-live-all:hover{background:var(--red);color:#fff}
.home-live-strip.is-overflowing .home-live-group-copy{display:flex}.home-live-strip.is-overflowing .home-live-track{animation:eb-live-marquee var(--live-marquee-duration) linear infinite}.home-live-strip.is-overflowing .home-live-marquee:hover .home-live-track,.home-live-strip.is-overflowing .home-live-marquee:focus-within .home-live-track{animation-play-state:paused}@keyframes eb-live-pulse{70%{box-shadow:0 0 0 7px rgba(255,64,86,0)}100%{box-shadow:0 0 0 0 rgba(255,64,86,0)}}@keyframes eb-live-marquee{to{transform:translateX(-50%)}}
@media(max-width:700px){.home-live-strip{grid-template-columns:auto minmax(0,1fr);width:calc(100% - 20px);min-height:54px;margin-top:12px}.home-live-heading{padding:0 12px}.home-live-heading small,.home-live-all{display:none}.home-live-match{grid-template-columns:minmax(78px,auto) auto minmax(78px,auto) auto;min-width:330px;padding:7px 12px;gap:8px}.home-live-team{font-size:10px}}
@media(prefers-reduced-motion:reduce){.home-live-pulse,.home-live-strip.is-overflowing .home-live-track{animation:none}.home-live-strip.is-overflowing .home-live-marquee{overflow-x:auto}}

/* Sponsored publishing banner used between editorial story cards. */
.eb-publisher-promo{position:relative;isolation:isolate;display:flex;min-height:300px;margin:24px 0;overflow:hidden;border-radius:8px;background:#07172e url('../images/publish-with-ebnewsdaily-banner.webp') center/cover no-repeat;color:#fff;box-shadow:0 12px 30px rgba(7,23,46,.18)}
.eb-publisher-promo::after{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(90deg,rgba(5,18,38,.98) 0%,rgba(5,18,38,.91) 42%,rgba(5,18,38,.32) 72%,rgba(5,18,38,.1) 100%)}
.eb-publisher-promo--archive{grid-column:1/-1}
.eb-publisher-promo--article{min-height:320px;margin:34px 0}
.eb-publisher-promo__content{display:flex;align-items:flex-start;flex-direction:column;justify-content:center;width:min(660px,62%);padding:34px 38px}
.eb-publisher-promo__eyebrow{display:inline-flex;margin-bottom:10px;padding:5px 8px;border:1px solid rgba(255,255,255,.28);border-radius:3px;color:#fff;font-size:9px;font-weight:900;letter-spacing:.12em;text-transform:uppercase}
.eb-publisher-promo h2,.article-wrap .eb-publisher-promo h2{max-width:620px;margin:0 0 10px;color:#fff!important;font-family:var(--font-display);font-size:clamp(25px,3vw,38px);line-height:1.05}
.eb-publisher-promo p{max-width:600px;margin:0 0 15px;color:rgba(255,255,255,.88);font-size:13px;line-height:1.55}
.eb-publisher-promo ul{display:flex;flex-wrap:wrap;gap:8px 18px;margin:0 0 20px;padding:0;list-style:none}
.eb-publisher-promo li{position:relative;padding-left:15px;color:#fff;font-size:10px;font-weight:800}
.eb-publisher-promo li::before{content:"";position:absolute;top:50%;left:0;width:7px;height:7px;border-radius:50%;background:var(--red);transform:translateY(-50%)}
.eb-publisher-promo__button{display:inline-flex;align-items:center;gap:9px;padding:12px 18px;border-radius:4px;color:#fff;background:var(--red);font-size:11px;font-weight:900;text-decoration:none;transition:transform .2s ease,background .2s ease}
.eb-publisher-promo__button:hover,.eb-publisher-promo__button:focus-visible{color:#fff;background:#b41226;transform:translateY(-1px)}
@media(max-width:760px){.eb-publisher-promo{min-height:340px;background-position:66% center}.eb-publisher-promo::after{background:linear-gradient(90deg,rgba(5,18,38,.98) 0%,rgba(5,18,38,.92) 58%,rgba(5,18,38,.45) 100%)}.eb-publisher-promo__content{width:100%;padding:28px 24px}.eb-publisher-promo h2{max-width:520px;font-size:28px}.eb-publisher-promo p{max-width:500px}}
@media(max-width:480px){.eb-publisher-promo{min-height:390px;margin:18px 0;background-position:72% center}.eb-publisher-promo::after{background:rgba(5,18,38,.86)}.eb-publisher-promo__content{padding:24px 18px}.eb-publisher-promo h2{font-size:25px}.eb-publisher-promo ul{gap:7px 12px}.eb-publisher-promo__button{width:100%;justify-content:center}}
