/*
Theme Name:  Yankees Savant
Theme URI:   https://diamondreport.com
Author:      Yankees Savant
Author URI:  https://diamondreport.com
Description: Yankees Savant — The premium Yankees-focused baseball news WordPress theme. Navy, white, and silver palette. Admin-managed hero video, live MLB Stats API standings and scores, infinite-scroll articles, and ticker filtered by followed team.
Version:     57.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yankees-savant
Tags:        news, sports, baseball, custom-colors, custom-logo, featured-images, post-formats, sticky-post, threaded-comments, wide-blocks
*/

/* ============================================================
   CSS CUSTOM PROPERTIES — Yankees Palette
   ============================================================ */
:root {
  /* Yankees Navy */
  --navy:        #0C1B33;
  --navy-mid:    #162545;
  --navy-light:  #1E3460;
  --navy-hover:  rgba(255,255,255,0.06);

  /* Yankees Silver / White */
  --silver:      #C4CDD6;
  --silver-light:#E8ECF0;
  --white:       #FFFFFF;

  /* Accent */
  --accent:      #C4CDD6; /* silver stripe accent */
  --gold-stripe: #A8966E; /* subtle pinstripe warmth */

  /* Background tones */
  --bg:          #F2F4F6;
  --bg-card:     #FFFFFF;
  --bg-dark:     #0C1B33;

  /* Typography */
  --text:        #111827;
  --text-mid:    #374151;
  --text-muted:  #6B7280;
  --text-light:  rgba(255,255,255,0.85);
  --text-dim:    rgba(255,255,255,0.5);

  /* Borders */
  --border:      #DDE2E8;
  --border-dark: rgba(255,255,255,0.10);

  /* Pinstripe highlight */
  --stripe:      rgba(196,205,214,0.12);

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(12,27,51,0.08);
  --shadow-md:   0 4px 16px rgba(12,27,51,0.12);
  --shadow-lg:   0 12px 40px rgba(12,27,51,0.18);

  /* Radius */
  --radius:      5px;
  --radius-lg:   8px;

  /* Typography */
  --font-display: 'Bebas Neue', 'Oswald', sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 19.2px; /* 1.2× base — all em/rem values scale automatically */
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Source Serif 4', Georgia, serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

/* ============================================================
   PINSTRIPE UTILITY  (vertical thin lines like Yankees jersey)
   ============================================================ */
.pinstripe-bg {
  background-image: repeating-linear-gradient(
    to right,
    var(--stripe) 0px,
    var(--stripe) 1px,
    transparent 1px,
    transparent 28px
  );
}

/* ============================================================
   SKIP LINK (accessibility)
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.1em;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ============================================================
   TICKER BAR
   ============================================================ */
#dr-ticker {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--navy-light);
  height: 36px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 90;
}

.dr-ticker__label {
  background: var(--silver);
  color: var(--navy);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  gap: 6px;
}

.dr-ticker__track-wrap { flex: 1; overflow: hidden; }

.dr-ticker__track {
  display: flex;
  white-space: nowrap;
  animation: dr-ticker-scroll 50s linear infinite;
}

.dr-ticker__track:hover { animation-play-state: paused; }

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

.dr-ticker__item {
  font-family: 'Source Serif 4', serif;
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dr-ticker__item strong { color: var(--silver); font-weight: 700; }
.dr-ticker__sep { color: var(--silver); opacity: 0.4; padding: 0 4px; }

/* ============================================================
   SITE HEADER  v7 — logo left-pinned, nav right, 30% larger
   ============================================================ */

/* Header height: 72px × 1.3 = 94px */
#masthead {
  background: #808B96 !important;
  background-color: #808B96 !important;
  border-bottom: 3px solid #C4CDD6;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.site-header__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 16px;          /* tight padding left/right */
  height: 94px;             /* 72 × 1.3 */
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

/* ── Spacer: eats all space between logo and nav ── */
.site-header__spacer {
  flex: 1 1 auto;           /* grows to fill all available space */
  min-width: 16px;
}

/* ── Logo: left-pinned, never affected by nav size ── */

/* Wrapper: flex-shrink 0 so nav can NEVER compress the logo */
.site-branding-wrap {
  flex-shrink: 0;
  flex-grow: 0;
  display: flex;
  align-items: center;
  height: 100%;
}

.site-branding {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 100%;
  padding: 10px 0;          /* vertical breathing room */
}

.site-branding a,
.site-branding .custom-logo-link {
  display: flex;
  align-items: center;
  height: 100%;
  line-height: 0;
}

/* Logo image: height = header content height (94 - 20px padding = 74px, capped at 74px) */
.site-branding img,
.site-branding .custom-logo-link img,
.site-branding img.custom-logo,
#masthead .custom-logo-link img,
#masthead img.custom-logo {
  height: 74px !important;
  max-height: 74px !important;
  width: auto !important;
  max-width: 240px !important;
  min-height: unset !important;
  object-fit: contain !important;
  display: block !important;
  transition: opacity .2s;
}

.site-branding:hover img { opacity: 0.85; }

/* Fallback text when no logo uploaded */
.site-branding__text-only {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.14em;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Primary Navigation */
.primary-navigation { display: flex; align-items: center; }

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0; padding: 0;
}

.primary-nav__list .menu-item { position: relative; }

.primary-nav__list .menu-item > a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; /* 2× original 14px */
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
  white-space: nowrap;
  position: relative;
  display: block;
  text-decoration: none;
  line-height: 1;
}

.primary-nav__list .menu-item > a:hover,
.primary-nav__list .current-menu-item > a,
.primary-nav__list .current-menu-ancestor > a {
  color: var(--white);
  background: var(--navy-hover);
}

.primary-nav__list .current-menu-item > a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 16px; right: 16px;
  height: 2px;
  background: var(--silver);
  border-radius: 2px;
}

/* Subscribe CTA */
.primary-nav__list .nav-subscribe > a,
.primary-nav__list .menu-item > a.nav-subscribe {
  background: var(--white) !important;
  color: var(--navy) !important;
  margin-left: 10px;
  padding: 8px 20px !important;
  font-size: 22px !important;
}
.primary-nav__list .nav-subscribe > a:hover { background: var(--silver-light) !important; }

/* Dropdown sub-menus */
.primary-nav__list .sub-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  min-width: 200px;
  background: var(--navy-mid);
  border: 1px solid var(--navy-light);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 6px 0;
  z-index: 200;
  box-shadow: var(--shadow-lg);
  list-style: none;
}
.primary-nav__list .menu-item:hover > .sub-menu { display: block; }
.primary-nav__list .sub-menu .menu-item > a {
  font-size: 20px; padding: 8px 18px; border-radius: 0;
  color: rgba(255,255,255,0.75);
}
.primary-nav__list .sub-menu .menu-item > a:hover { background: var(--navy-light); color: var(--white); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  padding: 7px 16px;
  border-radius: var(--radius);
  cursor: pointer;
}

/* Hero no-video placeholder */
.dr-hero__no-video {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background: var(--navy-mid);
  font-size: 56px; color: rgba(196,205,214,0.3);
}
.dr-hero__no-video p {
  font-family: 'Source Serif 4', serif;
  font-size: 15px; color: rgba(255,255,255,0.45);
  text-align: center; max-width: 320px;
}
.dr-hero__no-video a { color: var(--silver); text-decoration: underline; }

/* ============================================================
   HERO VIDEO SECTION
   ============================================================ */
#dr-hero {
  background: var(--navy);
  position: relative;
}

/* .dr-hero__container — removed, hero is now full-width */

.dr-hero__video-wrap {
  position: relative;
  width: 100%;
  height: 45vh;          /* locked to 45% of viewport height — matches screenshot ratio */
  min-height: 320px;     /* never collapses too small on short screens */
  max-height: 560px;     /* cap on very tall monitors so content stays in view */
  background: #000;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border: 1px solid var(--navy-light);
}

/* Upload prompt */


.dr-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.dr-hero__video.is-loaded { display: block; }

/* Overlay */
.dr-hero__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 36px;
  background: linear-gradient(to top, rgba(12,27,51,0.92) 0%, transparent 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s;
}

.dr-hero__overlay.is-visible { opacity: 1; }

.dr-hero__overlay-tag {
  display: inline-block;
  background: var(--silver);
  color: var(--navy);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.dr-hero__overlay-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 3.5vw, 46px);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  max-width: 760px;
  text-transform: uppercase;
}



/* ============================================================
   MAIN LAYOUT (articles + sidebar)
   ============================================================ */
#dr-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 28px 72px; /* 40px top gap below hero video */
  display: grid;
  grid-template-columns: 1fr 416px;
  gap: 36px;
  align-items: start;
}

/* ============================================================
   SECTION HEADING
   ============================================================ */
.dr-section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}

.dr-section-heading__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}

.dr-section-heading__title::before {
  content: '';
  display: block;
  width: 4px;
  height: 26px;
  background: var(--navy);
  border-radius: 2px;
}

/* ============================================================
   ARTICLES GRID
   ============================================================ */
.dr-articles__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

/* ── Article Card ── */
.dr-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease;
  animation: dr-card-in .4s ease both;
  /* When .dr-card is an <a> tag, reset link styles */
  display: block;
  text-decoration: none;
  color: inherit;
}

@keyframes dr-card-in {
  from { opacity:0; transform: translateY(18px); }
  to   { opacity:1; transform: translateY(0); }
}

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

/* ── Featured card: full width, image on top, content below ── */
.dr-card--featured {
  grid-column: 1 / -1;   /* span both grid columns */
  display: block;         /* stacked, not side-by-side */
}

/* Featured thumbnail: full width, taller aspect ratio */
.dr-card--featured .dr-card__thumb,
.dr-card__thumb--featured-top {
  width: 100% !important;
  height: 420px;
  aspect-ratio: unset;
  flex-shrink: unset;
}

.dr-card--featured .dr-card__thumb img,
.dr-card__thumb--featured-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Featured body: comfortable padding, larger title */
.dr-card--featured .dr-card__body {
  padding: 24px 28px 28px;
  display: block;
}

.dr-card__title--featured {
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--navy);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
}

.dr-card--featured .dr-card__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* Featured tag badge — slightly larger */
.dr-card__tag--featured {
  font-size: 11px;
  padding: 4px 11px;
  background: var(--navy) !important;
  color: #fff !important;
  border-color: #fff !important;
}

/* Card thumbnail */
.dr-card__thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--navy-mid);
}

.dr-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.dr-card:hover .dr-card__thumb img { transform: scale(1.05); }

.dr-card__thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  font-size: 48px;
  color: rgba(196,205,214,0.2);
}

.dr-card__tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--navy);
  color: var(--silver);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px;
  border: 1px solid var(--silver);
}

/* Card body */
.dr-card__body { padding: 18px; }

.dr-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.dr-card__team {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
}

.dr-card__dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
}

.dr-card__date {
  font-size: 22px;
  color: var(--text-muted);
}

.dr-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 8px;
  transition: color .2s;
}

.dr-card:hover .dr-card__title { color: var(--navy); }

.dr-card__excerpt {
  font-size: 26px;
  line-height: 1.65;
  color: var(--text-muted);
  display: none;
  margin-bottom: 12px;
}

.dr-card__author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  color: var(--text-muted);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.dr-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

/* ── Infinite Scroll Sentinel ── */
.dr-load-sentinel {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 1 / -1;
  margin-top: 12px;
}

.dr-loading-dots { display: none; gap: 7px; }
.dr-loading-dots.is-active { display: flex; }

.dr-loading-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--navy);
  animation: dr-dot-bounce .8s infinite alternate;
}

.dr-loading-dots span:nth-child(2) { animation-delay: .15s; }
.dr-loading-dots span:nth-child(3) { animation-delay: .3s; }

@keyframes dr-dot-bounce {
  from { transform: translateY(0); opacity:.4; }
  to   { transform: translateY(-7px); opacity:1; }
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.dr-sidebar { position: static; display: flex; flex-direction: column; gap: 28px; }

.dr-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 14px;  /* base for all widget content */
}

.dr-widget__header {
  background: var(--navy);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

.dr-widget__header-icon { font-size: 26px; }

/* Standings */
.dr-standings { width: 100%; border-collapse: collapse; }

.dr-standings th {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: right;
  padding: 10px 14px 8px;
  border-bottom: 1px solid var(--border);
}

.dr-standings th:first-child { text-align: left; }

.dr-standings td {
  font-size: 14px !important;
  color: var(--text);
  text-align: right;
  padding: 8px 14px;
  border-bottom: 1px solid rgba(0,0,0,.04);
}

.dr-standings td:first-child { text-align: left; font-weight: 700; }
.dr-standings tr:last-child td { border-bottom: none; }
.dr-standings tr:hover td { background: var(--bg); }

.dr-standings__rank {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  margin-right: 6px;
}

/* Trending */
.dr-trending__list { padding: 6px 0; }

.dr-trending__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 18px;
  cursor: pointer;
  border-bottom: 1px solid var(--bg);
  transition: background .15s;
}

.dr-trending__item:last-child { border-bottom: none; }
.dr-trending__item:hover { background: var(--bg); }

.dr-trending__rank {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  width: 30px;
  text-align: center;
  transition: color .2s;
}

.dr-trending__item:hover .dr-trending__rank { color: var(--navy); }

.dr-trending__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: var(--text);
  line-height: 1.35;
}

.dr-trending__meta { font-size: 14px; color: var(--text-muted); margin-top: 3px; }

/* Newsletter */
.dr-newsletter { padding: 20px; }

.dr-newsletter__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.dr-newsletter__input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Source Serif 4', serif;
  font-size: 14px;
  padding: 9px 12px;
  outline: none;
  color: var(--text);
  background: var(--bg);
  margin-bottom: 8px;
  transition: border-color .2s;
}

.dr-newsletter__input:focus { border-color: var(--navy); background: var(--white); }

.dr-newsletter__btn {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px;
  cursor: pointer;
  transition: background .2s;
}

.dr-newsletter__btn:hover { background: var(--navy-light); }

/* ============================================================
   SINGLE POST
   ============================================================ */
.dr-single { max-width: 820px; margin: 48px auto; padding: 0 28px; }

.dr-single__tag {
  display: inline-block;
  background: var(--navy);
  color: var(--silver);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.dr-single__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: 0.05em;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 16px;
}

.dr-single__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}

.dr-single__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}

.dr-single__content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-mid);
}

.dr-single__content p { margin-bottom: 20px; }
.dr-single__content h2, .dr-single__content h3 { color: var(--navy); margin: 32px 0 12px; }
.dr-single__content blockquote {
  border-left: 4px solid var(--navy);
  padding: 12px 24px;
  background: var(--bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  margin: 24px 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
#colophon {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  padding: 48px 0 24px;
  border-top: 3px solid var(--silver);
}

.site-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-brand__logo-icon {
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}

.footer-brand__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
}

.footer-brand__desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
}

.footer-col__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  padding: 4px 0;
  transition: color .2s;
}

.footer-col a:hover { color: var(--white); }

.site-footer__bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 28px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.dr-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 40px 0;
}

.dr-pagination a, .dr-pagination span {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  border: 1px solid var(--border);
  color: var(--text);
  transition: all .2s;
}

.dr-pagination a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.dr-pagination .current { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1280px) {
  #dr-content { grid-template-columns: 1fr 364px; }
}

@media (max-width: 900px) {
  #dr-content { grid-template-columns: 1fr; }
  .dr-sidebar { position: static; }
  .dr-card--featured .dr-card__thumb,
  .dr-card__thumb--featured-top { height: 240px; }
  .dr-hero__video-wrap { height: 40vh; min-height: 260px; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 680px) {
  .site-header__inner { padding: 0 16px; }
  /* mobile nav handled below */
  #dr-content { padding: 40px 16px 48px; }
  .dr-hero__container { padding: 16px 16px 0; }
  .site-footer__inner { grid-template-columns: 1fr; }
  /* Single-column article grid on mobile */
  .dr-articles__grid { grid-template-columns: 1fr; gap: 16px; }
  .dr-card--featured { display: block; }
}

/* ============================================================
   STANDINGS WIDGET
   ============================================================ */
.dr-standings {
  width: 100%;
  border-collapse: collapse;
}

.dr-standings th {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: right;
  padding: 10px 14px 8px;
  border-bottom: 1px solid var(--border);
}
.dr-standings th:first-child { text-align: left; }

.dr-standings td {
  font-size: 14px !important;
  color: var(--text);
  text-align: right;
  padding: 8px 14px;
  border-bottom: 1px solid rgba(0,0,0,.04);
  transition: background .15s;
}
.dr-standings td:first-child { text-align: left; font-weight: 600; }
.dr-standings tr:last-child td { border-bottom: none; }
.dr-standings tr:hover td { background: var(--bg); }

/* Followed team row highlight */
.dr-standings__followed td {
  background: rgba(12, 27, 51, 0.05) !important;
}
.dr-standings__followed td:first-child {
  color: var(--navy);
  font-weight: 700;
}

.dr-standings__rank {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  margin-right: 5px;
}

.dr-standings__star {
  color: var(--navy);
  font-size: 14px;
  margin-left: 4px;
}

.dr-widget__note {
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
  padding: 6px 12px 10px;
  font-style: italic;
}

/* ============================================================
   GAME RESULTS WIDGET
   ============================================================ */
.dr-game-results {
  padding: 6px 0;
}

.dr-game-result {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--bg);
  transition: background .15s;
}
.dr-game-result:last-child { border-bottom: none; }
.dr-game-result:hover { background: var(--bg); }

.dr-game-result__outcome {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  width: 26px;
  text-align: center;
  flex-shrink: 0;
  line-height: 1;
}

.dr-game-result--win  .dr-game-result__outcome { color: #1a7a3c; }
.dr-game-result--loss .dr-game-result__outcome { color: #b91c1c; }

.dr-game-result--win  { border-left: 3px solid #1a7a3c; }
.dr-game-result--loss { border-left: 3px solid #b91c1c; }

.dr-game-result__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dr-game-result__matchup {
  font-size: 14px !important;
  font-weight: 600;
  color: var(--text);
}

.dr-game-result__score {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--navy);
  line-height: 1;
}

.dr-game-result__date {
  font-size: 14px !important;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE UPDATES v2
   ============================================================ */
@media (max-width: 900px) {
  .primary-nav__list .menu-item > a { font-size: 22px; padding: 8px 12px; }
}

@media (max-width: 680px) {
  .primary-navigation { display: none; }
  .primary-navigation.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    padding: 12px 16px 20px;
    border-top: 1px solid var(--navy-light);
    z-index: 99;
  }
  .primary-nav__list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 2px;
  }
  .primary-nav__list .menu-item { width: 100%; }
  .primary-nav__list .menu-item > a { font-size: 26px; padding: 10px 14px; width: 100%; }
  .primary-nav__list .nav-subscribe > a { margin-left: 0 !important; margin-top: 6px; display: block; width: 100%; text-align: center; }
  .primary-nav__list .sub-menu { position: static; min-width: 100%; box-shadow: none; }
  .menu-toggle { display: block; }
}

/* ============================================================
   LIVE DATA INDICATORS
   ============================================================ */
.dr-live-dot {
  color: #22c55e;
  font-size: 10px;
  margin-right: 3px;
  animation: dr-pulse 2s ease-in-out infinite;
}

@keyframes dr-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* Streak column colors */
.streak-w { color: #16a34a; font-weight: 700; font-family: 'Bebas Neue', sans-serif; font-size: 14px; }
.streak-l { color: #dc2626; font-weight: 700; font-family: 'Bebas Neue', sans-serif; font-size: 14px; }

/* Standings STK column */
.dr-standings th:last-child,
.dr-standings td:last-child { text-align: center; padding-right: 10px; }

/* ============================================================
   SETTINGS PAGE — cache clear button
   ============================================================ */
.dr-cache-btn {
  background: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 12px;
  cursor: pointer;
  margin-top: 8px;
  display: inline-block;
}
.dr-cache-btn:hover { background: #e0e0e0; }

/* ============================================================
   v4 ADDITIONS
   ============================================================ */

/* ── GREY HEADER ── */
/* grey header already set above with !important */
.dr-ticker__label { background: var(--silver); color: var(--navy); }



/* ── FULL-WIDTH HERO VIDEO ── */
#dr-hero {
  width: 100%;
  background: var(--navy);
}

.dr-hero__video-wrap {
  position: relative;
  width: 100%;
  height: 45vh;
  min-height: 320px;
  max-height: 560px;
  overflow: hidden;
  background: #000;
  /* NO border-radius — full bleed */
}

@media (max-width: 768px) {
  .dr-hero__video-wrap { height: 40vh; min-height: 260px; }
}

/* ── LEADERS WIDGET ── */
.dr-leaders { padding: 8px 0; }

.dr-leaders__category {
  padding: 8px 16px 10px;
  border-bottom: 1px solid var(--bg);
}

.dr-leaders__category:last-child { border-bottom: none; }

.dr-leaders__cat-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--navy);
  display: inline-block;
}

.dr-leaders__row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}

.dr-leaders__rank {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  width: 18px;
  flex-shrink: 0;
  text-align: center;
}

.dr-leaders__name {
  font-size: 14px !important;
  color: var(--text);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dr-leaders__value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  color: var(--navy);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.dr-leaders--loading {
  padding: 16px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

/* ── LIVE SCORE WIDGET ── */
.dr-live-score {
  padding: 14px 16px;
}

.dr-live-score--no-game {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; padding: 28px 16px;
  font-size: 36px; color: rgba(196,205,214,0.3);
}
.dr-live-score--no-game p { font-size: 14px; color: var(--text-muted); text-align: center; }

.dr-live-score__status {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.dr-final-badge {
  background: var(--navy);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 14px;
}

.dr-preview-badge {
  color: var(--text-muted);
  font-size: 14px;
}

.dr-live-score__board {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.dr-live-score__team {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dr-live-score__team--home { text-align: right; }

.dr-live-score__team-name {
  font-size: 14px !important;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dr-live-score__runs {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--navy);
  line-height: 1;
}

.dr-live-score__divider {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--border);
}

.dr-live-score__count {
  display: flex;
  justify-content: space-between;
  font-size: 14px !important;
  color: var(--text-muted);
  padding: 6px 0;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.dr-linescore {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px !important;
  margin-top: 10px;
  border-top: 1px solid var(--border);
}

.dr-linescore th, .dr-linescore td {
  text-align: center;
  padding: 4px 3px;
  border-right: 1px solid var(--bg);
}

.dr-linescore th:first-child, .dr-linescore td:first-child {
  text-align: left; font-weight: 600; padding-left: 0; max-width: 80px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.dr-linescore th { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.08em; color: var(--text-muted); }

/* ── YOUTUBE WIDGET ── */
.dr-yt-videos { padding: 8px 0; }

.dr-yt-item {
  display: flex;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--bg);
  text-decoration: none;
  transition: background .15s;
}

.dr-yt-item:last-child { border-bottom: none; }
.dr-yt-item:hover { background: var(--bg); }

.dr-yt-thumb {
  width: 96px; flex-shrink: 0;
  aspect-ratio: 16/9;
  overflow: hidden; border-radius: 3px;
  background: var(--navy);
}

.dr-yt-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.dr-yt-info { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 0; }

.dr-yt-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dr-yt-date { font-size: 14px; color: var(--text-muted); }

.dr-yt-empty, .dr-yt-setup { padding: 16px; font-size: 14px; color: var(--text-muted); }
.dr-yt-setup a { color: var(--navy); text-decoration: underline; }

/* ── SOCIAL FOLLOW WIDGET ── */
.dr-social-follow {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dr-social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #fff;
  transition: opacity .15s, transform .15s;
}

.dr-social-btn:hover { opacity: 0.88; transform: translateX(2px); }

.dr-social-icon { width: 18px; height: 18px; flex-shrink: 0; display: flex; align-items: center; }
.dr-social-icon svg { width: 18px; height: 18px; }

.dr-social-btn--twitter   { background: #000; }
.dr-social-btn--facebook  { background: #1877F2; }
.dr-social-btn--instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.dr-social-btn--youtube   { background: #FF0000; }
.dr-social-btn--tiktok    { background: #010101; }
.dr-social-btn--threads   { background: #101010; }
.dr-social-btn--linkedin  { background: #0A66C2; }

.dr-social-empty { padding: 16px; font-size: 14px; color: var(--text-muted); }
.dr-social-empty a { color: var(--navy); text-decoration: underline; }

/* ── FOOTER v4 ── */
#colophon {
  background: var(--navy);
  border-top: 3px solid var(--silver);
  padding: 56px 0 0;
  color: rgba(255,255,255,0.6);
}

.site-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-col__logo-link { display: inline-block; margin-bottom: 14px; }
.footer-col__logo { max-height: 52px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: .85; }
.footer-col__logo:hover { opacity: 1; }

/* Col 1 brand */
.footer-brand__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
  text-decoration: none;
}

.footer-brand__site-logo img { max-height: 48px; width: auto; filter: brightness(0) invert(1); opacity: .9; margin-bottom: 12px; }

.footer-brand__desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.footer-social__icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background .2s, color .2s;
  text-decoration: none;
}

.footer-social__icon:hover { background: rgba(255,255,255,0.2); color: var(--white); }
.footer-social__icon svg { width: 16px; height: 16px; }

/* Footer nav lists */
.footer-col__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 14px;
}

.footer-nav__list { list-style: none; padding: 0; margin: 0; }
.footer-nav__list .menu-item { border-bottom: none; padding: 0; }
.footer-nav__list .menu-item a {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  padding: 5px 0;
  transition: color .2s;
  text-decoration: none;
}

.footer-nav__list .menu-item a:hover { color: var(--white); }

.site-footer__bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding: 18px 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.site-footer__bottom nav { display: flex; gap: 4px; }
.site-footer__bottom nav a { color: rgba(255,255,255,0.35); font-size: 12px; padding: 2px 8px; text-decoration: none; transition: color .2s; }
.site-footer__bottom nav a:hover { color: var(--white); }

/* ── NEXT POST AUTO-LOAD ── */
.dr-post-separator {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0 40px;
  color: var(--text-muted);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dr-post-separator::before,
.dr-post-separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.dr-single--stream + .dr-single--stream { margin-top: 0; }

/* ── RESPONSIVE FOOTER ── */
@media (max-width: 1024px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── RESPONSIVE HEADER (grey) ── */
@media (max-width: 680px) {
  .site-header__inner { height: 64px; padding: 0 12px; }
  .site-branding-wrap { height: 100%; }
  .site-branding { padding: 8px 0; }
  .site-branding img,
  .site-branding .custom-logo-link img,
  .site-branding img.custom-logo,
  #masthead img,
  #masthead .custom-logo-link img {
    height: 48px !important;
    max-height: 48px !important;
    max-width: 150px !important;
  }
}

/* ============================================================
   v8 — MLB PAGES: Standings, Scoreboard, Team Stats
   ============================================================ */

/* ── Page container ── */
.dr-page-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px 64px;
}

/* ── Page hero ── */
.dr-page-hero {
  background: var(--navy);
  margin: 0 -28px 32px;
  padding: 36px 28px 32px;
  border-bottom: 3px solid var(--silver);
}

.dr-page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 8px;
}

.dr-page-subtitle {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Tabs (shared) ── */
.dr-standings-tabs,
.dr-stats-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}

.dr-tab {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 10px 18px;
  cursor: pointer;
  color: var(--text-muted);
  margin-bottom: -2px;
  transition: color .2s, border-color .2s;
}

.dr-tab:hover { color: var(--navy); }
.dr-tab.active { color: var(--navy); border-bottom-color: var(--navy); }

/* ── Standings page ── */
.dr-standings-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.dr-standings-block { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }

.dr-standings-block__header {
  background: var(--navy);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 16px;
}

.dr-standings--full { width:100%; font-size:14px; border-collapse:collapse; }
.dr-standings--full th {
  font-family:'Bebas Neue',sans-serif; font-size:10px; letter-spacing:.14em;
  color:var(--text-muted); padding:8px 8px 6px; border-bottom:1px solid var(--border);
  text-align:right; white-space:nowrap;
}
.dr-standings--full .dr-th-team { text-align:left; }
.dr-standings--full td { padding:7px 8px; border-bottom:1px solid rgba(0,0,0,.03); text-align:right; }
.dr-standings--full .dr-td-team { text-align:left; font-weight:600; white-space:nowrap; }
.dr-standings--full .dr-td-num { font-size:14px; }
.dr-standings--full tr:last-child td { border-bottom:none; }
.dr-standings--full tr:hover td { background:var(--bg); }
.dr-standings__followed td { background:rgba(12,27,51,.06)!important; }
.dr-standings__followed .dr-td-team { color:var(--navy); font-weight:700; }
.dr-standings__lead-badge,
.dr-standings__wc-badge {
  display:inline-block; font-size:9px; padding:1px 4px; border-radius:2px;
  margin-left:4px; font-family:'Bebas Neue',sans-serif; letter-spacing:.08em;
}
.dr-standings__lead-badge { background:var(--navy); color:var(--silver); }
.dr-standings__wc-badge   { background:#6B21A8; color:#fff; }
.dr-td-pos { color:#16a34a; font-weight:700; }
.dr-td-neg { color:#dc2626; font-weight:700; }
.dr-td-streak { font-family:'Bebas Neue',sans-serif; font-size:13px; }

/* ── Scoreboard page ── */
.dr-scoreboard {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.dr-scoreboard__empty {
  grid-column: 1/-1;
  display: flex; flex-direction:column; align-items:center; gap:12px;
  padding: 64px 0; font-size:48px; color:rgba(196,205,214,.3);
}
.dr-scoreboard__empty p { font-size:15px; color:var(--text-muted); }

.dr-score-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.dr-score-card:hover { transform:translateY(-2px); box-shadow:var(--shadow-md); }
.dr-score-card--live  { border-left:4px solid #22c55e; }
.dr-score-card--final { border-left:4px solid var(--navy); }
.dr-score-card--fav   { box-shadow: 0 0 0 2px var(--navy); }

.dr-score-card__status {
  font-family:'Bebas Neue',sans-serif; font-size:11px; letter-spacing:.14em;
  color:var(--text-muted); margin-bottom:6px;
  display:flex; align-items:center; gap:4px;
}

.dr-score-card__row {
  display: flex; align-items:center; justify-content:space-between;
}

.dr-score-card__team { font-size:14px; font-weight:700; color:var(--text); }
.dr-score-card__score {
  font-family:'Bebas Neue',sans-serif; font-size:26px;
  color:var(--text-muted); line-height:1;
}
.dr-score-card__score--win { color:var(--navy); }

/* ── Game Detail Panel ── */
.dr-game-detail {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 32px;
  position: relative;
}

.dr-game-detail__close {
  position:absolute; top:16px; right:16px;
  background:var(--bg); border:1px solid var(--border); border-radius:var(--radius);
  font-family:'Bebas Neue',sans-serif; font-size:13px; letter-spacing:.08em;
  padding:6px 12px; cursor:pointer; color:var(--text-muted);
}
.dr-game-detail__close:hover { background:var(--navy); color:#fff; border-color:var(--navy); }

.dr-detail-header {
  display:flex; flex-direction:column; align-items:center; gap:8px;
  padding-bottom:20px; border-bottom:1px solid var(--border); margin-bottom:20px;
}

.dr-detail-teams {
  display:flex; align-items:center; gap:24px;
}

.dr-detail-team { display:flex; flex-direction:column; align-items:center; gap:4px; }
.dr-detail-abbr { font-family:'Bebas Neue',sans-serif; font-size:18px; letter-spacing:.08em; color:var(--text); }
.dr-detail-score { font-family:'Bebas Neue',sans-serif; font-size:56px; line-height:1; color:var(--navy); }
.dr-detail-sep { display:flex; flex-direction:column; align-items:center; color:var(--text-muted); font-family:'Bebas Neue',sans-serif; font-size:18px; }
.dr-detail-count { font-size:13px; color:var(--text-muted); }
.dr-detail-matchup { font-size:13px; color:var(--text-muted); }
.dr-detail-last-play {
  background:var(--bg); border-left:3px solid var(--navy);
  padding:8px 12px; font-size:13px; line-height:1.6;
  border-radius:0 var(--radius) var(--radius) 0; max-width:600px; text-align:center;
}

.dr-detail-section { margin-bottom:24px; }
.dr-detail-section h3 {
  font-family:'Bebas Neue',sans-serif; font-size:15px; letter-spacing:.1em;
  color:var(--navy); margin-bottom:12px; text-transform:uppercase;
}
.dr-detail-scroll { overflow-x:auto; }

.dr-linescore--detail th, .dr-linescore--detail td { min-width:28px; }

.dr-boxscore-table {
  width:100%; font-size:12px; border-collapse:collapse; white-space:nowrap;
}
.dr-boxscore-table th {
  font-family:'Bebas Neue',sans-serif; font-size:10px; letter-spacing:.15em;
  color:var(--text-muted); padding:6px 8px; border-bottom:1px solid var(--border);
  text-align:right;
}
.dr-boxscore-table th:first-child { text-align:left; }
.dr-boxscore-table td { padding:6px 8px; border-bottom:1px solid rgba(0,0,0,.03); text-align:right; }
.dr-boxscore-table td:first-child { text-align:left; font-weight:600; }
.dr-boxscore-table tr:hover td { background:var(--bg); }

.dr-scoring-plays { list-style:none; padding:0; }
.dr-scoring-plays li {
  padding:8px 0; border-bottom:1px solid var(--bg);
  font-size:13px; line-height:1.5; display:flex; gap:10px; align-items:flex-start;
}
.dr-scoring-plays li:last-child { border-bottom:none; }
.dr-sp-inning {
  font-family:'Bebas Neue',sans-serif; font-size:14px; letter-spacing:.06em;
  color:var(--navy); flex-shrink:0; min-width:36px;
}
.dr-sp-score { font-weight:700; flex-shrink:0; white-space:nowrap; }
.dr-sp-desc  { color:var(--text-muted); flex:1; }
.dr-detail-venue { font-size:12px; color:var(--text-muted); text-align:center; margin-top:16px; }

/* ── Team Stats page ── */
.dr-leaders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.dr-leaders-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.dr-leaders-card__title {
  background: var(--navy);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px 16px;
}

.dr-leaders-list { list-style:none; padding:8px 0; margin:0; counter-reset:leaders; }
.dr-leaders-list__item {
  display:flex; align-items:center; gap:10px;
  padding:8px 16px; border-bottom:1px solid var(--bg);
}
.dr-leaders-list__item:last-child { border-bottom:none; }
.dr-leaders-list__rank {
  font-family:'Bebas Neue',sans-serif; font-size:16px; color:var(--text-muted);
  width:20px; flex-shrink:0; text-align:center;
}
.dr-leaders-list__name { font-size: 14px; flex:1; color:var(--text); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.dr-leaders-list__val  { font-family:'Bebas Neue',sans-serif; font-size:20px; color:var(--navy); }

.dr-stats-empty {
  background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:48px 24px; text-align:center; color:var(--text-muted); font-size:14px;
}

/* ── Schedule panel ── */
.dr-page-section { margin-bottom:40px; }
.dr-page-section__title {
  font-family:'Bebas Neue',sans-serif; font-size:22px; letter-spacing:.08em;
  color:var(--navy); margin-bottom:16px; padding-bottom:10px;
  border-bottom:2px solid var(--border); display:flex; align-items:center; gap:8px;
}

.dr-schedule-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; }

.dr-schedule-col h3 {
  font-family:'Bebas Neue',sans-serif; font-size:14px; letter-spacing:.12em;
  text-transform:uppercase; color:var(--text-muted); margin-bottom:10px;
}

.dr-sched-item {
  display:flex; align-items:center; gap:10px;
  padding:9px 0; border-bottom:1px solid var(--bg);
  font-size:13px;
}
.dr-sched-item:last-child { border-bottom:none; }
.dr-sched-item__wl {
  font-family:'Bebas Neue',sans-serif; font-size:15px;
  width:20px; text-align:center; flex-shrink:0;
}
.dr-sched-item--win  .dr-sched-item__wl { color:#16a34a; }
.dr-sched-item--loss .dr-sched-item__wl { color:#dc2626; }
.dr-sched-item--win  { border-left:3px solid #16a34a; padding-left:8px; }
.dr-sched-item--loss { border-left:3px solid #dc2626; padding-left:8px; }
.dr-sched-item--upcoming { border-left:3px solid var(--border); padding-left:8px; }
.dr-sched-item__matchup { flex:1; font-weight:600; }
.dr-sched-item__score   { font-family:'Bebas Neue',sans-serif; font-size:16px; color:var(--navy); }
.dr-sched-item__date    { font-size:11px; color:var(--text-muted); flex-shrink:0; }

.dr-refresh-link { color:var(--navy); text-decoration:underline; font-size:12px; }

/* ── Loading wrap ── */
.dr-loading-wrap { display:flex; justify-content:center; padding:40px; }

/* ── Responsive ── */
@media (max-width:1100px) { .dr-standings-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:768px)  {
  .dr-standings-grid { grid-template-columns:1fr; }
  .dr-schedule-grid  { grid-template-columns:1fr; }
  .dr-page-container { padding:0 16px 48px; }
  .dr-page-hero { margin:0 -16px 24px; padding:24px 16px 20px; }
  .dr-scoreboard { grid-template-columns:repeat(auto-fill,minmax(130px,1fr)); }
}

/* ============================================================
   v12 — SINGLE POST STREAM SENTINEL
   ============================================================ */
.dr-stream-sentinel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px 0 16px;
  color: var(--text-muted);
}

.dr-stream-sentinel__label {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   CARD — fully clickable via JS data-href delegation (v14)
   ============================================================ */

/* Cards are navigable — cursor shows hand everywhere */
.dr-card[data-href] { cursor: pointer; }

/* Restore normal stacking — no overlay tricks needed */
.dr-card__body   { position: static; }
.dr-card__title  { position: static; }
.dr-card__title a { position: relative; z-index: 1; }


/* ============================================================
   v17 — LIVE GAME CENTER
   ============================================================ */

/* ── Game Selector Bar ── */
.dr-game-selector {
  background: var(--navy);
  position: sticky;
  top: 94px;
  z-index: 40;
  border-bottom: 2px solid rgba(196,205,214,0.15);
}
.dr-game-selector__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 48px;
  overflow: hidden;
}
.dr-game-selector__label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: .1em;
  color: rgba(196,205,214,0.6);
  white-space: nowrap;
}
.dr-game-selector__games {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 4px 0;
  scrollbar-width: none;
}
.dr-game-selector__games::-webkit-scrollbar { display: none; }

.dr-gs-game {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 4px 10px;
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}
.dr-gs-game:hover { background: rgba(255,255,255,0.12); }
.dr-gs-game--active { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.35); }
.dr-gs-game--live   { border-color: #22c55e; }
.dr-gs-game__teams  { font-size: 12px; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 5px; }
.dr-gs-game__score  { font-family: 'Bebas Neue', sans-serif; font-size: 14px; color: #22c55e; }
.dr-gs-game__vs     { color: rgba(255,255,255,0.4); font-size: 10px; }
.dr-gs-game__status { font-size: 10px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 3px; }

/* ── Main content ── */
.dr-live-page { min-height: 80vh; }
.dr-live-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 28px 64px;
}

/* ── Score Header ── */
.dr-live-header {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 24px 0;
  margin-bottom: 0;
  color: #fff;
}
.dr-live-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.dr-live-team { text-align: center; }
.dr-live-team--home { text-align: right; }
.dr-live-team--away { text-align: left; }
.dr-live-team__abbr { font-family: 'Bebas Neue', sans-serif; font-size: 48px; letter-spacing: .06em; line-height: 1; }
.dr-live-team__name { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.dr-live-team__score { font-family: 'Bebas Neue', sans-serif; font-size: 80px; line-height: 1; letter-spacing: -.02em; }
.dr-live-status { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 160px; }
.dr-live-status__badge {
  font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: .15em;
  padding: 4px 12px; border-radius: 20px;
}
.dr-live-status__badge--live   { background: #22c55e; color: #fff; }
.dr-live-status__badge--final  { background: rgba(255,255,255,0.15); color: #fff; }
.dr-live-status__badge--preview{ background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.dr-live-status__inning { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: .08em; }
.dr-live-status__count  { font-size: 13px; color: rgba(255,255,255,0.65); }
.dr-live-status__detail { font-size: 13px; color: rgba(255,255,255,0.5); }

/* Win probability bar (header) */
.dr-win-prob { display: flex; align-items: center; gap: 8px; width: 100%; }
.dr-win-prob__label { font-family: 'Bebas Neue', sans-serif; font-size: 14px; white-space: nowrap; min-width: 40px; }
.dr-win-prob__label--away { text-align: right; }
.dr-win-prob__bar { flex: 1; height: 6px; background: rgba(255,255,255,0.15); border-radius: 3px; overflow: hidden; display: flex; }
.dr-win-prob__fill { height: 100%; transition: width .5s ease; }
.dr-win-prob__fill--away { background: #C4CDD6; }
.dr-win-prob__fill--home { background: #fff; }

/* R/H/E row */
.dr-rhe {
  display: grid;
  grid-template-columns: auto repeat(3, 40px) auto repeat(3, 40px) auto repeat(3, 40px);
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 10px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-align: center;
  gap: 0;
  display: none; /* hidden — info is in linescore */
}

/* ── Linescore ── */
.dr-live-linescore-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin-bottom: 16px;
}
.dr-live-linescore-scroll { overflow-x: auto; }
.dr-live-linescore {
  width: 100%; border-collapse: collapse; font-size: 13px; white-space: nowrap;
}
.dr-live-linescore th {
  font-family: 'Bebas Neue', sans-serif; font-size: 11px; letter-spacing: .12em;
  color: var(--text-muted); padding: 8px 10px; border-bottom: 1px solid var(--border);
  text-align: center; font-weight: 400;
}
.dr-live-linescore td { padding: 9px 10px; text-align: center; border-bottom: 1px solid rgba(0,0,0,.04); }
.dr-live-linescore tr:last-child td { border-bottom: none; }
.dr-ls-team-col { text-align: left !important; padding-left: 16px !important; min-width: 60px; }
.dr-ls-r, .dr-ls-h, .dr-ls-e { font-weight: 700; border-left: 1px solid var(--border); }
.dr-ls-cell--runs { font-weight: 700; color: var(--navy); background: rgba(12,27,51,.04); }
.dr-ls-ext { display: none; }

/* ── Tabs ── */
.dr-live-tabs {
  display: flex; gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}
.dr-live-tabs::-webkit-scrollbar { display: none; }
.dr-live-tab {
  font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: .1em;
  background: none; border: none; border-bottom: 3px solid transparent; margin-bottom: -2px;
  padding: 12px 18px; cursor: pointer; color: var(--text-muted); white-space: nowrap;
  transition: color .15s, border-color .15s;
}
.dr-live-tab:hover { color: var(--navy); }
.dr-live-tab.active { color: var(--navy); border-bottom-color: var(--navy); }
.dr-live-tabpanel { display: none; }
.dr-live-tabpanel.active { display: block; }

/* ── Live Situation ── */
.dr-live-situation { display: grid; grid-template-columns: 220px 1fr; gap: 24px; align-items: start; }
.dr-situation-left { display: flex; flex-direction: column; align-items: center; gap: 16px; }

.dr-diamond-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; width: 140px; }
.dr-diamond { width: 140px; height: 140px; color: var(--navy); }
.dr-base { transition: fill .3s; }

/* Count dots */
.dr-count-display { display: flex; flex-direction: column; gap: 6px; }
.dr-count-row { display: flex; align-items: center; gap: 6px; }
.dr-count-label { font-family:'Bebas Neue',sans-serif; font-size:12px; letter-spacing:.1em; color:var(--text-muted); width:16px; }
.dr-count-dot {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid var(--border); background: transparent; transition: background .2s, border-color .2s;
}
.dr-count-dot.active               { background: #22c55e; border-color: #22c55e; }
.dr-count-dot--strike.active       { background: #f59e0b; border-color: #f59e0b; }
.dr-count-dot--out.active          { background: #ef4444; border-color: #ef4444; }

/* Matchup card */
.dr-matchup-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px; margin-bottom: 16px; }
.dr-matchup-row { display: flex; align-items: center; gap: 10px; padding: 6px 0; border-bottom: 1px solid var(--border); }
.dr-matchup-row:last-child { border-bottom: none; }
.dr-matchup-row--ondeck { opacity: .7; }
.dr-matchup-role  { font-size: 11px; color: var(--text-muted); width: 70px; flex-shrink: 0; }
.dr-matchup-name  { font-weight: 600; font-size: 14px; flex: 1; }
.dr-matchup-detail{ font-size: 11px; color: var(--text-muted); }

/* Last pitch */
.dr-last-pitch {
  background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 14px 16px; margin-bottom: 12px;
}
.dr-last-pitch__header { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 6px; }
.dr-last-pitch__type   { font-family:'Bebas Neue',sans-serif; font-size: 20px; letter-spacing:.06em; }
.dr-last-pitch__speed  { font-family:'Bebas Neue',sans-serif; font-size: 36px; line-height: 1; margin: 4px 0; }
.dr-last-pitch__call   { font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.call--strike { color: #f59e0b; }
.call--ball   { color: #22c55e; }
.dr-last-pitch__stat   { font-size: 12px; color: rgba(255,255,255,.65); }
.dr-last-pitch__statcast{ display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,.15); }
.dr-last-pitch__statcast span { font-size: 12px; color: rgba(255,255,255,.8); }

/* Pitch sequence pips */
.dr-pitch-sequence { margin-bottom: 12px; }
.dr-pitch-seq__label { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; letter-spacing: .08em; text-transform: uppercase; }
.dr-pitch-seq__list  { display: flex; flex-wrap: wrap; gap: 4px; }
.dr-pitch-pip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 28px; border-radius: 4px; font-size: 9px; font-weight: 700;
  letter-spacing: .04em; color: #fff;
}
.pip--strike { background: #f59e0b; }
.pip--ball   { background: #22c55e; }
.pip--play   { background: var(--navy); }

.dr-last-play {
  background: var(--bg); border-left: 3px solid var(--navy); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 10px 14px; font-size: 13px; line-height: 1.6; color: var(--text-muted);
}

/* ── Boxscore ── */
.dr-boxscore-team { margin-bottom: 32px; }
.dr-boxscore-team__name {
  font-family:'Bebas Neue',sans-serif; font-size:18px; letter-spacing:.08em;
  color:var(--navy); margin-bottom:10px; padding-bottom:8px; border-bottom:2px solid var(--border);
}
.dr-bs-scroll { overflow-x: auto; }
.dr-bs-table { width: 100%; border-collapse: collapse; font-size: 12px; white-space: nowrap; }
.dr-bs-table th {
  font-family:'Bebas Neue',sans-serif; font-size:10px; letter-spacing:.14em;
  color:var(--text-muted); padding:6px 8px; border-bottom:1px solid var(--border); text-align:right;
}
.dr-bs-table th:first-child,.dr-bs-table td:first-child { text-align:left; }
.dr-bs-table td { padding:7px 8px; border-bottom:1px solid rgba(0,0,0,.03); text-align:right; }
.dr-bs-table tr:last-child td { border-bottom: none; }
.dr-bs-table tr:hover td { background: var(--bg); }
.dr-bs-row--current td { background: rgba(12,27,51,.05) !important; font-weight: 700; }
.dr-bs-pos  { font-size: 10px; color: var(--text-muted); margin-left: 4px; }
.dr-bs-hit  { color: var(--navy); font-weight: 700; }
.dr-bs-hr   { color: #dc2626; font-weight: 700; }
.dr-bs-note { font-size: 10px; color: var(--text-muted); margin-left: 4px; font-style: italic; }
.dr-sub     { color: var(--text-muted); font-size: 10px; margin-right: 3px; }
.dr-bs-player { min-width: 140px; }
.dr-game-notes { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.dr-game-note  { font-size: 12px; color: var(--text-muted); padding: 3px 0; }

/* ── Play Log ── */
.dr-play-log { display: flex; flex-direction: column; gap: 1px; }
.dr-play-item {
  display: grid; grid-template-columns: 60px 1fr; gap: 10px;
  padding: 9px 12px; background: var(--bg); border-radius: 4px; font-size: 13px;
  align-items: start;
}
.dr-play-item--scoring {
  background: rgba(12,27,51,.06); border-left: 3px solid var(--navy);
  grid-template-columns: 60px 1fr auto;
}
.dr-play-inning { font-family:'Bebas Neue',sans-serif; font-size:12px; color:var(--text-muted); white-space:nowrap; }
.dr-play-desc   { line-height: 1.5; }
.dr-play-score  { font-family:'Bebas Neue',sans-serif; font-size:13px; color:var(--navy); white-space:nowrap; }

/* ── Scoring Summary ── */
.dr-scoring-log { display: flex; flex-direction: column; gap: 2px; }
.dr-scoring-item {
  display: grid; grid-template-columns: 48px 160px 1fr;
  gap: 12px; align-items: start;
  padding: 12px 14px; background: var(--bg); border-radius: 6px;
  border-left: 3px solid var(--navy);
}
.dr-scoring-item__inning {
  font-family:'Bebas Neue',sans-serif; font-size:18px; line-height:1; color:var(--navy);
}
.dr-scoring-item__score { font-weight:700; font-size:14px; padding-top:2px; }
.dr-scoring-item__desc  { font-size:13px; color:var(--text-muted); line-height:1.5; }

/* ── Win Probability Panel ── */
.dr-wp-panel { padding: 16px 0; }
.dr-wp-big { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.dr-wp-team { font-size: 16px; font-weight: 600; white-space: nowrap; }
.dr-wp-team strong { font-family:'Bebas Neue',sans-serif; font-size:24px; color:var(--navy); }
.dr-wp-bar-big { flex: 1; height: 20px; background: var(--bg); border-radius: 10px; overflow: hidden; }
.dr-wp-bar-fill-away { height: 100%; background: var(--silver); border-radius: 10px; transition: width .5s; }
.dr-wp-chart { width: 100% !important; }
.dr-wp-note { font-size: 12px; color: var(--text-muted); margin-top: 8px; text-align: center; }

/* ── Footer ── */
.dr-live-footer {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
  margin-top: 32px; padding-top: 16px; border-top: 1px solid var(--border);
  font-size: 12px; color: var(--text-muted);
}
.dr-live-footer__source { margin-left: auto; font-style: italic; }

/* ── No game ── */
.dr-live-no-game { text-align: center; padding: 80px 24px; }
.dr-live-no-game__icon { font-size: 64px; margin-bottom: 16px; opacity: .4; }
.dr-live-loading { display: flex; justify-content: center; padding: 80px; }
.dr-empty { color: var(--text-muted); font-size: 14px; padding: 24px; text-align: center; }
.dr-live-pulse { animation: dr-pulse 1.2s ease-in-out infinite; color: #22c55e; }
@keyframes dr-pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ── Responsive ── */
@media (max-width: 700px) {
  .dr-live-main { padding: 16px; }
  .dr-live-header__inner { grid-template-columns: 1fr auto 1fr; gap: 8px; }
  .dr-live-team__abbr  { font-size: 32px; }
  .dr-live-team__score { font-size: 56px; }
  .dr-live-situation   { grid-template-columns: 1fr; }
  .dr-scoring-item     { grid-template-columns: 40px 1fr; }
  .dr-scoring-item__desc { grid-column: 1/-1; }
  .dr-game-selector__inner { padding: 0 12px; }
}

/* ============================================================
   v18 — YANKEES FARM SYSTEM / MiLB WIDGET
   ============================================================ */

/* Live badge in widget header */
.dr-milb-live-badge {
  margin-left: auto;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: .1em;
  background: rgba(34,197,94,.15);
  color: #16a34a;
  padding: 2px 7px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Widget container */
.dr-milb-widget {
  display: flex;
  flex-direction: column;
  padding: 0 16px;  /* match live score & standings horizontal padding */
}

/* Individual game row */
.dr-milb-game {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.dr-milb-game:last-of-type { border-bottom: none; }

/* Game header: badge + affiliate name + status */
.dr-milb-game__header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

/* Level badge: AAA / AA / A+ / A */
.dr-milb-badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px;
  letter-spacing: .12em;
  background: var(--navy);
  color: var(--silver);
  padding: 2px 6px;
  border-radius: 3px;
  flex-shrink: 0;
  min-width: 26px;
  text-align: center;
}

.dr-milb-game__affiliate {
  font-size: 14px !important;
  font-weight: 600;
  color: var(--text);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Status pill */
.dr-milb-game__status {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: .08em;
  padding: 2px 6px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}
.milb-status--live    { color: #16a34a; background: rgba(34,197,94,.1); }
.milb-status--final   { color: var(--text-muted); background: var(--bg); }
.milb-status--preview { color: var(--text-muted); background: var(--bg); }
.milb-status--off     { color: var(--text-muted); background: var(--bg); opacity: .6; }

/* Score row: Away @ Home */
.dr-milb-game__score {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
}

.dr-milb-team {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  padding: 7px 10px;
  gap: 8px;
  transition: background .2s;
}

.dr-milb-team--win {
  background: rgba(12,27,51,.06);
}

.dr-milb-team__name {
  font-size: 14px !important;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.dr-milb-team__score {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  line-height: 1;
  color: var(--navy);
  flex-shrink: 0;
  min-width: 20px;
  text-align: right;
}

.dr-milb-team--win .dr-milb-team__score {
  color: var(--navy);
}

.dr-milb-score__sep {
  font-size: 11px;
  color: var(--text-muted);
  padding: 0 4px;
  flex-shrink: 0;
}

/* Mini linescore (live only) */
/* dr-milb-linescore table rules below at dr-milb-linescore-wrap */





.dr-milb-inn__run {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  width: 18px;
  text-align: center;
}

.milb-inn--scored {
  color: var(--navy);
  font-weight: 700;
}

/* Count dots (B-S-O) */
.dr-milb-count {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: auto;
  flex-shrink: 0;
  padding-left: 8px;
  border-left: 1px solid var(--border);
}

.dr-milb-count__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  transition: background .2s, border-color .2s;
}

.milb-dot--ball   { background: #22c55e; border-color: #22c55e; }
.milb-dot--strike { background: #f59e0b; border-color: #f59e0b; }
.milb-dot--out    { background: #ef4444; border-color: #ef4444; }

.dr-milb-count__sep {
  width: 1px;
  height: 10px;
  background: var(--border);
  margin: 0 1px;
}

/* Off / no game */
.dr-milb-off {
  font-size: 14px !important;
  color: var(--text-muted);
  padding: 6px 0;
  font-style: italic;
}

/* Source footer */
.dr-milb-source {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  font-style: italic;
  /* Prevent emoji from rendering at system size */
  font-family: var(--font-sans, sans-serif);
}
/* Force all emoji inside widgets to stay at inherited size */
.dr-widget .dr-widget__header { font-size: 22px; }
.dr-widget .dr-widget__header-icon { font-size: 26px !important; }
.dr-milb-source, .dr-milb-source * { font-size: 10px !important; }

/* ============================================================
   v19 — MiLB WIDGET FIXES + RECENT RESULTS
   ============================================================ */

/* Kill the source footer emoji enlargement */
.dr-milb-source {
  font-size: 10px !important;
  line-height: 1.4 !important;
  color: var(--text-muted);
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  font-style: italic;
}

/* Force any emoji in .dr-milb-source to be inline text size */
.dr-milb-source * { font-size: inherit !important; }

/* Recent results toggle button */
.dr-milb-history {
  margin-top: 6px;
}

.dr-milb-history__toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.dr-milb-history__label {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  flex: 1;
}

.dr-milb-history__arrow {
  font-size: 10px;
  color: var(--text-muted);
  transition: transform .15s;
}

.dr-milb-history__toggle:hover .dr-milb-history__label,
.dr-milb-history__toggle:hover .dr-milb-history__arrow {
  color: var(--navy);
}

/* Result rows */
.dr-milb-history__rows {
  padding: 4px 0 2px;
}

.dr-milb-result {
  display: grid;
  grid-template-columns: 18px 1fr auto auto;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(0,0,0,.04);
  font-size: 14px;
}
.dr-milb-result:last-child { border-bottom: none; }

.dr-milb-result__wl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
.wl--win  { color: #16a34a; }
.wl--loss { color: #dc2626; }

.dr-milb-result__matchup {
  color: var(--text);
  font-weight: 500;
}

.dr-milb-result__score {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  color: var(--navy);
  white-space: nowrap;
}

.dr-milb-result__date {
  font-size: 14px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ── MiLB date nav ── */
.dr-milb-date-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.dr-milb-date-nav__btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3px 8px;
  font-size: 11px;
  cursor: pointer;
  color: var(--text-muted);
  transition: background .15s, color .15s;
  line-height: 1.4;
}
.dr-milb-date-nav__btn:hover { background: var(--bg); color: var(--navy); }
.dr-milb-date-nav__btn:disabled { opacity: .35; cursor: default; }
.dr-milb-date-nav__date {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--navy);
}
.dr-milb-loading {
  text-align: center;
  padding: 16px 0;
  color: var(--text-muted);
  font-size: 12px;
}

/* ============================================================
   v21 — MiLB RECENT RESULTS PANEL
   ============================================================ */

/* History toggle button */
.dr-milb-history {
  margin-top: 6px;
}
.dr-milb-history__toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 4px 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.dr-milb-history__label {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: .05em;
  text-transform: uppercase;
  flex: 1;
}
.dr-milb-history__arrow {
  font-size: 9px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.dr-milb-history__toggle:hover .dr-milb-history__label,
.dr-milb-history__toggle:hover .dr-milb-history__arrow {
  color: var(--navy);
}

/* Result rows */
.dr-milb-history__rows {
  padding: 2px 0 4px;
}
.dr-milb-result {
  display: grid;
  grid-template-columns: 18px 1fr auto auto;
  align-items: center;
  gap: 6px;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.dr-milb-result:last-child { border-bottom: none; }

.dr-milb-result__wl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
.wl--win  { color: #16a34a; }
.wl--loss { color: #dc2626; }

.dr-milb-result__matchup {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dr-milb-result__score {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  color: var(--navy);
  white-space: nowrap;
}
.dr-milb-result__date {
  font-size: 14px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ============================================================
   WIDGET CONTENT FONT SIZE — NUCLEAR OVERRIDE
   Ensures Game Center and Farm System match Standings (14px)
   ============================================================ */
.dr-widget .dr-live-score__team-name,
.dr-widget .dr-live-score__count,
.dr-widget .dr-live-score__status,
.dr-widget .dr-linescore,
.dr-widget .dr-linescore th,
.dr-widget .dr-linescore td,
.dr-widget .dr-linescore td:first-child,
.dr-widget .dr-game-result__matchup,
.dr-widget .dr-game-result__date,
.dr-widget .dr-game-result__score,
.dr-widget .dr-standings td,
.dr-widget .dr-standings th,
.dr-widget .dr-milb-game__affiliate,
.dr-widget .dr-milb-team__name,
.dr-widget .dr-milb-off,
.dr-widget .dr-milb-result,
.dr-widget .dr-milb-history__label,
.dr-widget .dr-leaders__name,
.dr-widget .dr-leaders__value {
  font-size: 14px !important;
}

/* ============================================================
   v28 — PROSPECTS PAGE
   ============================================================ */
.dr-prospects-tabs { margin-bottom: 24px; flex-wrap: wrap; }

.dr-prospects-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.dr-prospects-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: .06em;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}

.dr-prospects-table-wrap { overflow-x: auto; }

.dr-prospects-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  white-space: nowrap;
}

.dr-prospects-table th {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: right;
  padding: 8px 10px;
  border-bottom: 2px solid var(--border);
  background: var(--bg);
}

.dr-prospects-table th.dr-pt-player,
.dr-prospects-table th.dr-pt-pos { text-align: left; }

.dr-prospects-table td {
  padding: 9px 10px;
  text-align: right;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.dr-prospects-table td.dr-pt-player,
.dr-prospects-table td.dr-pt-pos { text-align: left; }

.dr-prospects-table tr:hover td { background: var(--bg); }

.dr-pt-name {
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}
.dr-pt-name:hover { text-decoration: underline; }

.dr-pt-pos {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--text-muted);
  min-width: 36px;
}

.dr-pt-highlight {
  color: var(--navy);
  font-weight: 700;
}

.dr-prospects-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-muted);
  font-size: 14px;
}

.dr-prospects-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-style: italic;
}

/* ============================================================
   v28 — TRANSACTIONS WIDGET
   ============================================================ */
.dr-txn-list { padding: 4px 16px 0; }

.dr-txn-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  border-left: 3px solid var(--border);
  padding-left: 10px;
  margin-left: -13px;
}
.dr-txn-item:last-child { border-bottom: none; }

/* Color-code by transaction type */
.txn--callup  { border-left-color: #16a34a; }
.txn--signing { border-left-color: #2563eb; }
.txn--dfa     { border-left-color: #dc2626; }
.txn--option  { border-left-color: #d97706; }
.txn--trade   { border-left-color: #7c3aed; }

.dr-txn-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3px;
}

.dr-txn-type {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.dr-txn-date {
  font-size: 11px;
  color: var(--text-muted);
}

.dr-txn-player {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.dr-txn-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.4;
  white-space: normal;
}

.dr-txn-empty {
  font-size: 14px;
  color: var(--text-muted);
  padding: 16px 0;
  text-align: center;
  font-style: italic;
}

/* ============================================================
   v28 PROSPECTS — affiliate nav + hitting/pitching sub-tabs
   ============================================================ */

/* Affiliate selector row */
.dr-prospects-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}

.dr-prospects-aff-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}
.dr-prospects-aff-tab:hover { color: var(--navy); }
.dr-prospects-aff-tab.active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}
.dr-prospects-aff-name { font-size: 14px; }

/* Affiliate panel */
.dr-prospects-panel { display: none; }
.dr-prospects-panel.active { display: block; }

/* Hitting / Pitching sub-tabs */
.dr-prospects-subtabs {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.dr-prospects-subtab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  padding: 9px 20px;
  cursor: pointer;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: .08em;
  color: var(--text-muted);
  transition: color .15s, border-color .15s;
}
.dr-prospects-subtab:hover { color: var(--navy); }
.dr-prospects-subtab.active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

/* Stat panel show/hide */
.dr-prospects-stat-panel { display: none; }
.dr-prospects-stat-panel.active { display: block; }

/* ============================================================
   v29 — PAGE FEATURED IMAGE HERO
   ============================================================ */
.dr-page-feat-hero {
  position: relative;
  width: 100%;
  height: 45vh;
  min-height: 280px;
  max-height: 500px;
  overflow: hidden;
  background: var(--navy);
}

.dr-page-feat-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.dr-page-feat-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,40,.75) 0%, rgba(10,20,40,.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 36px 40px;
}

.dr-page-feat-hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: .05em;
  color: #fff;
  line-height: 1.05;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
  margin: 0;
}

@media (max-width: 680px) {
  .dr-page-feat-hero { height: 38vh; min-height: 220px; }
  .dr-page-feat-hero__overlay { padding: 20px; }
}

/* ============================================================
   v30 — MILB SCOREBOARD & STANDINGS PAGE
   ============================================================ */

/* Affiliate tab bar */
.dr-milb-page-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--border);
  margin-bottom: 28px;
  padding-bottom: 0;
}

.dr-milb-page-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}
.dr-milb-page-tab:hover  { color: var(--navy); }
.dr-milb-page-tab.active { color: var(--navy); border-bottom-color: var(--navy); }
.dr-milb-tab-name        { font-size: 14px; }

/* Affiliate panel */
.dr-milb-panel         { display: none; }
.dr-milb-panel.active  { display: block; }

/* Two-column grid: scores left, standings right */
.dr-milb-page-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .dr-milb-page-grid { grid-template-columns: 1fr; }
}

/* Section headings */
.dr-milb-page-section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: .08em;
  color: var(--navy);
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}

/* Score box (today's game) */
.dr-milb-scorebox {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
}
.milb-scorebox--live    { border-color: #22c55e; }
.milb-scorebox--final   { }
.milb-scorebox--preview { opacity: .85; }
.milb-scorebox--off     { padding: 20px 16px; text-align: center; color: var(--text-muted); font-size: 14px; }

.dr-milb-scorebox__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
  padding: 8px 14px;
  color: rgba(255,255,255,.8);
  font-size: 12px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .1em;
}
.dr-milb-scorebox__status { display: flex; align-items: center; gap: 5px; }
.dr-milb-scorebox__date   { color: rgba(255,255,255,.5); }

.dr-milb-scorebox__matchup {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 16px;
}
.dr-milb-scorebox__team {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
}
.milb-team--win { background: rgba(12,27,51,.05); }
.dr-milb-scorebox__abbr  { font-size: 14px; font-weight: 700; color: var(--text); }
.dr-milb-scorebox__score { font-family: 'Bebas Neue', sans-serif; font-size: 36px; line-height: 1; color: var(--navy); }
.dr-milb-scorebox__sep   { font-size: 13px; color: var(--text-muted); padding: 0 6px; }

/* Mini linescore inside scorebox */
.dr-milb-scorebox__linescore {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px 12px;
  border-top: 1px solid var(--border);
  background: var(--bg);
  overflow-x: auto;
  scrollbar-width: none;
}
.dr-milb-scorebox__linescore::-webkit-scrollbar { display: none; }
.dr-milb-ls-inn  { display: flex; flex-direction: column; align-items: center; gap: 2px; min-width: 20px; }
.dr-milb-ls-num  { font-size: 9px; color: var(--text-muted); font-family: 'Bebas Neue', sans-serif; }
.dr-milb-ls-run  { font-size: 12px; font-weight: 600; color: var(--text-muted); text-align: center; width: 20px; }
.ls-run--scored  { color: var(--navy); font-weight: 700; }
.dr-milb-ls-count{ display: flex; align-items: center; gap: 3px; margin-left: auto; padding-left: 10px; border-left: 1px solid var(--border); }
.dr-milb-ls-dot  { width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid var(--border); background: transparent; }
.dot--ball       { background: #22c55e; border-color: #22c55e; }
.dot--strike     { background: #f59e0b; border-color: #f59e0b; }
.dot--out        { background: #ef4444; border-color: #ef4444; }
.dr-milb-ls-divider { width: 1px; height: 10px; background: var(--border); margin: 0 1px; }

/* Recent results list */
.dr-milb-results-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: .1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin: 0 0 8px;
}
.dr-milb-results-list    { display: flex; flex-direction: column; gap: 1px; }
.dr-milb-result-row {
  display: grid;
  grid-template-columns: 20px 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--bg);
  border-radius: 4px;
  font-size: 14px;
}
.dr-milb-result-wl  { font-family: 'Bebas Neue', sans-serif; font-size: 15px; font-weight: 700; text-align: center; }
.wl--win            { color: #16a34a; }
.wl--loss           { color: #dc2626; }
.dr-milb-result-matchup { font-weight: 600; color: var(--text); }
.dr-milb-result-score   { font-family: 'Bebas Neue', sans-serif; font-size: 14px; color: var(--navy); }
.dr-milb-result-date    { font-size: 12px; color: var(--text-muted); }

/* Standings */
.dr-milb-standings-block { margin-bottom: 28px; }
.dr-milb-div-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: .12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin: 0 0 8px;
}
.dr-milb-standings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.dr-milb-standings-table th {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--text-muted);
  text-align: right;
  padding: 6px 8px;
  border-bottom: 2px solid var(--border);
}
.dr-milb-standings-table th.dr-milb-st-team { text-align: left; }
.dr-milb-standings-table td {
  padding: 8px 8px;
  text-align: right;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.dr-milb-standings-table td.dr-milb-st-team { text-align: left; }
.dr-milb-standings-table tr:last-child td   { border-bottom: none; }
.dr-milb-standings-table tr:hover td        { background: var(--bg); }
.dr-milb-st-row--affiliate td              { font-weight: 700; background: rgba(12,27,51,.03); }
.dr-milb-st-star  { color: var(--navy); margin-right: 4px; font-size: 10px; }
.dr-milb-st-streak{ font-family: 'Bebas Neue', sans-serif; font-size: 13px; }
.dr-milb-empty    { color: var(--text-muted); font-size: 14px; font-style: italic; }

/* ============================================================
   v32 — YOUTUBE PAGE TEMPLATE
   ============================================================ */

/* Hero when no featured image */
.dr-yt-page-hero {
  background: var(--navy);
  padding: 48px 40px 36px;
  margin-bottom: 0;
}
.dr-yt-page-hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: .05em;
  color: #fff;
  margin: 0;
}

/* Setup / error notice */
.dr-yt-setup-notice {
  text-align: center;
  padding: 64px 24px;
  max-width: 480px;
  margin: 0 auto;
  color: var(--text-muted);
}
.dr-yt-setup-notice h2 { font-family:'Bebas Neue',sans-serif; font-size:28px; color:var(--navy); margin-bottom:12px; }
.dr-yt-setup-notice a  { color:var(--navy); }

/* ── GRID LAYOUT ── */
.dr-yt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 680px) { .dr-yt-grid { grid-template-columns: 1fr; gap: 16px; } }

.dr-yt-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  color: var(--text);
}
.dr-yt-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }

.dr-yt-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy);
}
.dr-yt-card__thumb img { width:100%; height:100%; object-fit:cover; display:block; transition: transform .2s; }
.dr-yt-card:hover .dr-yt-card__thumb img { transform: scale(1.03); }

.dr-yt-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 32px;
  opacity: 0;
  transition: opacity .15s;
}
.dr-yt-card:hover .dr-yt-card__play { opacity: 1; }

.dr-yt-card__body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.dr-yt-card__title { font-family:'Bebas Neue',sans-serif; font-size: 16px; letter-spacing:.04em; color:var(--navy); line-height:1.3; }
.dr-yt-card__desc  { font-size: 13px; color:var(--text-muted); line-height:1.5; flex:1; }
.dr-yt-card__date  { font-size: 12px; color:var(--text-muted); margin-top: auto; }

/* ── LIST LAYOUT ── */
.dr-yt-list-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
  margin-bottom: 32px;
}
@media (max-width: 1000px) { .dr-yt-list-layout { grid-template-columns: 1fr; } }

.dr-yt-featured-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: .04em;
  color: var(--navy);
  margin: 14px 0 8px;
}
.dr-yt-featured-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Playlist sidebar */
.dr-yt-playlist-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.dr-yt-playlist-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: .1em;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  margin: 0;
  background: var(--bg);
}
.dr-yt-playlist-items { max-height: 580px; overflow-y: auto; }
.dr-yt-playlist-item {
  display: flex;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  text-align: left;
  transition: background .1s;
}
.dr-yt-playlist-item:last-child { border-bottom: none; }
.dr-yt-playlist-item:hover, .dr-yt-playlist-item.active { background: var(--bg); }
.dr-yt-playlist-item.active { border-left: 3px solid var(--navy); }

.dr-yt-pi-thumb { position: relative; flex-shrink: 0; width: 80px; aspect-ratio: 16/9; border-radius: 4px; overflow: hidden; background: var(--navy); }
.dr-yt-pi-thumb img { width:100%; height:100%; object-fit:cover; }
.dr-yt-pi-play { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; background:rgba(0,0,0,.4); color:#fff; font-size:14px; opacity:0; transition:opacity .15s; }
.dr-yt-playlist-item:hover .dr-yt-pi-play { opacity:1; }

.dr-yt-pi-info   { display:flex; flex-direction:column; gap:4px; flex:1; min-width:0; }
.dr-yt-pi-title  { font-size:13px; font-weight:600; color:var(--text); line-height:1.3; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.dr-yt-pi-date   { font-size:11px; color:var(--text-muted); }

/* ============================================================
   v32 — MILB LINESCORE + SITUATION (page-milb.php)
   ============================================================ */
.dr-milb-linescore-wrap { overflow-x: auto; padding: 0 0 4px; -webkit-overflow-scrolling: touch; }

.dr-milb-linescore {
  width: 100%;
  min-width: 260px;
  border-collapse: collapse;
  font-size: 13px;
  white-space: nowrap;
}
.dr-milb-linescore th {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--text-muted);
  text-align: center;
  padding: 4px 5px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.dr-milb-linescore th.dr-mls-team { text-align: left; padding-left: 12px; min-width: 36px; }
.dr-milb-linescore th.dr-mls-rhe  { font-weight: 700; color: var(--navy); }
.dr-milb-linescore td {
  text-align: center;
  padding: 6px 5px;
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.dr-milb-linescore td.dr-mls-team {
  text-align: left;
  padding-left: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: .06em;
  color: var(--text);
  font-weight: 700;
}
.dr-milb-linescore td.dr-mls-rhe  { font-weight: 700; color: var(--navy); }
.dr-mls-scored { color: var(--navy); font-weight: 700; }

/* Situation row: diamond + BSO + matchup */
.dr-milb-situation {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 14px 12px;
  border-top: 1px solid var(--border);
  background: var(--bg);
  flex-wrap: wrap;
}
.dr-milb-diamond { color: var(--border); flex-shrink: 0; }

/* BSO dots */
.dr-milb-bso { display:flex; flex-direction:column; gap:4px; flex-shrink:0; }
.dr-milb-bso-row { display:flex; align-items:center; gap:4px; }
.dr-milb-bso-label { font-family:'Bebas Neue',sans-serif; font-size:11px; color:var(--text-muted); width:10px; }
.dr-milb-bso-dot {
  width: 9px; height: 9px; border-radius: 50%;
  border: 1.5px solid var(--border); background: transparent;
}
.dot--ball   { background: #22c55e; border-color: #22c55e; }
.dot--strike { background: #f59e0b; border-color: #f59e0b; }
.dot--out    { background: #ef4444; border-color: #ef4444; }

/* Batter/pitcher matchup */
.dr-milb-matchup { flex: 1; min-width: 120px; }
.dr-milb-matchup-row { display:flex; align-items:baseline; gap:6px; padding:2px 0; }
.dr-milb-matchup-label { font-family:'Bebas Neue',sans-serif; font-size:10px; letter-spacing:.1em; color:var(--text-muted); flex-shrink:0; width:52px; }
.dr-milb-matchup-name  { font-size:13px; font-weight:600; color:var(--text); }

/* ============================================================
   v33 — MILB WIDGET LINESCORE (sidebar)
   ============================================================ */
.dr-milb-widget-ls-wrap {
  overflow-x: auto;
  margin: 6px 0 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.dr-milb-widget-ls-wrap::-webkit-scrollbar { display: none; }

.dr-milb-widget-ls {
  border-collapse: collapse;
  font-size: 12px;
  white-space: nowrap;
  width: 100%;
  min-width: 180px;
}
.dr-milb-widget-ls th {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--text-muted);
  text-align: center;
  padding: 3px 4px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.dr-milb-widget-ls th.dr-mwls-team { text-align: left; min-width: 32px; }
.dr-milb-widget-ls th.dr-mwls-rhe  { color: var(--navy); font-weight: 700; }
.dr-milb-widget-ls td {
  text-align: center;
  padding: 4px 4px;
  font-size: 12px;
  color: var(--text-muted);
}
.dr-milb-widget-ls td.dr-mwls-team {
  text-align: left;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--text);
  font-weight: 700;
}
.dr-milb-widget-ls td.dr-mwls-rhe  { font-weight: 700; color: var(--navy); }
.dr-mwls-scored { color: var(--navy); font-weight: 700; }

/* Situation row: diamond + BSO + names */
.dr-milb-widget-sit {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 2px 4px;
  flex-wrap: nowrap;
}
.dr-milb-widget-diamond { color: var(--border); flex-shrink: 0; }
.dr-milb-widget-bso     { display: flex; flex-direction: column; gap: 3px; flex-shrink: 0; }
.dr-milb-widget-matchup { flex: 1; min-width: 0; }


/* ============================================================
   v34 — MLB SCOREBOARD PAGE (dr-sb-*)
   ============================================================ */

/* Responsive card grid */
.dr-sb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 680px) { .dr-sb-grid { grid-template-columns: 1fr; } }

/* Card */
.dr-sb-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: box-shadow .15s, transform .15s;
}
.dr-sb-card:hover   { box-shadow: 0 6px 20px rgba(0,0,0,.1); transform: translateY(-2px); }
.dr-sb-card--live   { border-color: #22c55e; }
.dr-sb-card--fav    { border-color: var(--navy); box-shadow: 0 0 0 2px rgba(12,27,51,.15); }

/* Status bar */
.dr-sb-card__status {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 7px 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: .1em;
}
.dr-sb-card--live .dr-sb-card__status { background: #14532d; }

/* BSO dots in status bar */
.dr-sb-bso { display: flex; align-items: center; gap: 3px; margin-left: auto; }
.dr-sb-dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.3); background: transparent;
}
.dot--ball   { background: #22c55e; border-color: #22c55e; }
.dot--strike { background: #f59e0b; border-color: #f59e0b; }
.dot--out    { background: #ef4444; border-color: #ef4444; }
.dr-sb-bso-sep { width: 1px; height: 10px; background: rgba(255,255,255,.2); margin: 0 1px; }

/* Score rows */
.dr-sb-card__scores { padding: 12px 14px 8px; display: flex; flex-direction: column; gap: 4px; }
.dr-sb-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
}
.dr-sb-row--win { }
.dr-sb-card__abbr {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: .06em;
  color: var(--text);
}
.dr-sb-card__runs {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  line-height: 1;
  color: var(--text-muted);
}
.dr-sb-runs--win { color: var(--navy); }

/* Linescore table */
.dr-sb-linescore-wrap {
  overflow-x: auto;
  padding: 0 14px 8px;
  scrollbar-width: none;
}
.dr-sb-linescore-wrap::-webkit-scrollbar { display: none; }
.dr-sb-linescore {
  border-collapse: collapse;
  font-size: 12px;
  white-space: nowrap;
  width: 100%;
  border-top: 1px solid var(--border);
  padding-top: 6px;
}
.dr-sb-linescore th {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--text-muted);
  text-align: center;
  padding: 4px 4px 2px;
  border-bottom: 1px solid var(--border);
}
.dr-sb-linescore th.dr-sb-ls-team { text-align: left; min-width: 30px; }
.dr-sb-linescore th.dr-sb-ls-rhe  { color: var(--navy); font-weight: 700; }
.dr-sb-linescore td {
  text-align: center;
  padding: 4px;
  font-size: 12px;
  color: var(--text-muted);
}
.dr-sb-linescore td.dr-sb-ls-team {
  text-align: left;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--text);
  font-weight: 700;
}
.dr-sb-linescore td.dr-sb-ls-rhe { font-weight: 700; color: var(--navy); }
.dr-sb-ls-scored { color: var(--navy); font-weight: 700; }

/* Live situation: diamond + matchup */
.dr-sb-card__situation {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px 12px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.dr-sb-diamond { color: var(--border); flex-shrink: 0; }
.dr-sb-matchup { flex: 1; min-width: 0; }
.dr-sb-matchup-row { display: flex; align-items: baseline; gap: 6px; padding: 1px 0; }
.dr-sb-matchup-label { font-family:'Bebas Neue',sans-serif; font-size:10px; letter-spacing:.1em; color:var(--text-muted); flex-shrink:0; width:46px; }
.dr-sb-matchup-name  { font-size:13px; font-weight:600; color:var(--text); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }

/* ============================================================
   v34 — SIDEBAR GAME CENTER WIDGET (dr-gc-*)
   ============================================================ */
.dr-gc-widget { padding: 12px 16px; }

/* Status */
.dr-gc-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.dr-gc-inning { color: var(--text); }
.dr-gc-bso    { display: flex; align-items: center; gap: 3px; margin-left: auto; }
.dr-gc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: 1.5px solid var(--border); background: transparent;
}
.dr-gc-sep { width: 1px; height: 9px; background: var(--border); margin: 0 1px; }

/* Score rows */
.dr-gc-score { display: flex; flex-direction: column; gap: 3px; margin-bottom: 10px; }
.dr-gc-team  { display: flex; align-items: center; justify-content: space-between; padding: 3px 0; }
.dr-gc-team--win { }
.dr-gc-abbr  { font-family: 'Bebas Neue', sans-serif; font-size: 16px; letter-spacing: .06em; color: var(--text); }
.dr-gc-runs  { font-family: 'Bebas Neue', sans-serif; font-size: 28px; line-height: 1; color: var(--text-muted); }
.gc-runs--win { color: var(--navy); }

/* Linescore table */
.dr-gc-ls-wrap { overflow-x: auto; margin-bottom: 10px; scrollbar-width: none; }
.dr-gc-ls-wrap::-webkit-scrollbar { display: none; }
.dr-gc-linescore {
  border-collapse: collapse; font-size: 12px; white-space: nowrap; width: 100%;
  border-top: 1px solid var(--border);
}
.dr-gc-linescore th {
  font-family: 'Bebas Neue', sans-serif; font-size: 10px; letter-spacing: .08em;
  color: var(--text-muted); text-align: center; padding: 4px 3px 2px;
  border-bottom: 1px solid var(--border);
}
.dr-gc-linescore th.dr-gc-ls-team { text-align: left; min-width: 28px; }
.dr-gc-linescore th.dr-gc-ls-rhe  { color: var(--navy); font-weight: 700; }
.dr-gc-linescore td { text-align: center; padding: 3px; font-size: 12px; color: var(--text-muted); }
.dr-gc-linescore td.dr-gc-ls-team {
  text-align: left; font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: .06em; color: var(--text); font-weight: 700;
}
.dr-gc-linescore td.dr-gc-ls-rhe { font-weight: 700; color: var(--navy); }
.dr-gc-ls-scored { color: var(--navy); font-weight: 700; }

/* Situation */
.dr-gc-situation {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0 4px; border-top: 1px solid var(--border);
}
.dr-gc-diamond { color: var(--border); flex-shrink: 0; }
.dr-gc-matchup { flex: 1; min-width: 0; }
.dr-gc-matchup-row   { display: flex; align-items: baseline; gap: 5px; padding: 1px 0; }
.dr-gc-matchup-label { font-family:'Bebas Neue',sans-serif; font-size:10px; letter-spacing:.1em; color:var(--text-muted); flex-shrink:0; width:22px; }
.dr-gc-matchup-name  { font-size:13px; font-weight:600; color:var(--text); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }

/* =========================================================
   PHOTO GALLERY  (page-gallery.php)
   ========================================================= */
.pg-page { background: #fff; }

/* Shared hero */
.pg-hero, .pg-album-hero {
  position: relative; min-height: 160px;
  background: linear-gradient(135deg, var(--navy) 0%, #0d1f31 100%);
  display: flex; align-items: flex-end; overflow: hidden;
}
.pg-hero-overlay, .pg-album-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,20,35,.1) 0%, rgba(10,20,35,.7) 100%);
}
.pg-hero-inner, .pg-album-hero-inner {
  position: relative; z-index: 2; width: 100%; max-width: 1448px;
  margin: 0 auto; padding: 24px 24px 20px;
}
.pg-hero-title, .pg-album-title {
  font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.4rem);
  font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  color: #fff; margin: 0 0 6px;
}
.pg-album-hero { min-height: 220px; background-size: cover; background-position: center; }
.pg-album-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.pg-album-date, .pg-album-count {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font-display); font-size: .7rem;
  text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.6);
}
.pg-album-desc { font-size: .88rem; color: rgba(255,255,255,.65); margin: 8px 0 0; }

/* Back nav */
.pg-album-nav {
  background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 8px 24px;
}
.pg-back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-size: .68rem;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.55); text-decoration: none;
  transition: color .13s;
}
.pg-back-link:hover { color: #fff; text-decoration: none; }

/* Filters */
.pg-filters {
  max-width: 1448px; margin: 0 auto;
  padding: 16px 20px 10px;
  display: flex; flex-direction: column; gap: 8px;
  border-bottom: 1px solid #eee;
}
.pg-filter-group { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pg-filter-label {
  font-family: var(--font-display); font-size: .65rem;
  text-transform: uppercase; letter-spacing: .1em;
  color: #888; white-space: nowrap;
}
.pg-filter-pill {
  display: inline-flex; align-items: center; padding: 3px 12px;
  border: 1px solid #dde0e5; border-radius: 50px;
  font-family: var(--font-display); font-size: .64rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: #555; text-decoration: none;
  transition: background .12s, color .12s, border-color .12s;
}
.pg-filter-pill:hover { background: var(--navy); color: #fff; border-color: var(--navy); text-decoration: none; }
.pg-filter-pill--active { background: var(--color-orange); color: #fff; border-color: var(--color-orange); }

/* Albums grid */
.pg-albums-grid {
  max-width: 1448px; margin: 0 auto; padding: 28px 20px 60px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px;
}
.pg-album-card {
  display: flex; flex-direction: column;
  border-radius: 6px; overflow: hidden;
  border: 1px solid #e8ecf0; text-decoration: none;
  transition: transform .16s, box-shadow .16s;
  background: #fff;
}
.pg-album-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  text-decoration: none;
}
.pg-album-card-cover {
  position: relative; aspect-ratio: 16/9;
  background: var(--navy); overflow: hidden;
}
.pg-album-card-cover img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .22s;
}
.pg-album-card:hover .pg-album-card-cover img { transform: scale(1.05); }
.pg-album-card-cover-placeholder {
  width: 100%; height: 100%; display: flex;
  align-items: center; justify-content: center; background: var(--navy);
}
.pg-album-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.45) 100%);
}
.pg-album-card-count {
  position: absolute; bottom: 8px; right: 10px;
  font-family: var(--font-display); font-size: .65rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.pg-album-card-count span { font-weight: 400; }

.pg-album-card-body { padding: 14px 16px 16px; flex: 1; }
.pg-album-card-title {
  font-family: var(--font-display); font-size: .92rem;
  font-weight: 700; color: var(--navy); margin: 0 0 4px;
}
.pg-album-card-date {
  display: block; font-family: var(--font-display); font-size: .66rem;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--color-orange); margin-bottom: 7px;
}
.pg-album-card-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 7px; }
.pg-album-card-tag {
  background: #f0f3f7; color: #555; border-radius: 3px;
  font-size: .64rem; padding: 2px 7px; font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: .06em;
}
.pg-album-card-desc { font-size: .82rem; color: #666; margin: 0; line-height: 1.55; }

/* Photo grid (single album) */
.pg-photo-grid {
  max-width: 1448px; margin: 0 auto; padding: 24px 20px 60px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 6px;
}
.pg-photo-item {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  border: 0; padding: 0; cursor: pointer; background: #111;
  border-radius: 2px;
}
.pg-photo-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .22s;
}
.pg-photo-item:hover img { transform: scale(1.07); }
.pg-photo-item-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.35);
  display: flex; align-items: center; justify-content: center;
  color: #fff; opacity: 0; transition: opacity .16s;
}
.pg-photo-item:hover .pg-photo-item-overlay { opacity: 1; }

/* Photo lightbox */
.pg-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  display: none; align-items: center; justify-content: center;
  flex-direction: column;
}
.pg-lightbox--open { display: flex; }
.pg-lightbox-backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,.92);
}
.pg-lightbox-box {
  position: relative; z-index: 2; width: min(94vw, 1100px);
  display: flex; align-items: center; gap: 10px;
}
.pg-lb-img-wrap {
  flex: 1; position: relative; display: flex;
  align-items: center; justify-content: center; min-height: 60px;
}
.pg-lb-img {
  max-width: 100%; max-height: 80vh; display: block;
  border-radius: 3px; transition: opacity .18s;
}
.pg-lb-loader {
  position: absolute; width: 32px; height: 32px;
  border: 3px solid rgba(255,255,255,.2);
  border-top-color: #fff; border-radius: 50%;
  animation: pg-spin .7s linear infinite; display: none;
}
@keyframes pg-spin { to { transform: rotate(360deg); } }
.pg-lb-close {
  position: absolute; top: -44px; right: 0;
  background: 0; border: 0; color: #fff; font-size: 2.2rem;
  cursor: pointer; line-height: 1; padding: 0; opacity: .7;
  transition: opacity .13s;
}
.pg-lb-close:hover { opacity: 1; }
.pg-lb-prev, .pg-lb-next {
  background: rgba(255,255,255,.12); border: 0; color: #fff;
  font-size: 2.5rem; width: 44px; height: 70px;
  border-radius: 4px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .14s;
  line-height: 1;
}
.pg-lb-prev:hover, .pg-lb-next:hover { background: rgba(255,255,255,.25); }
.pg-lb-caption {
  position: absolute; bottom: -32px; left: 0; right: 0;
  text-align: center; font-size: .8rem; color: rgba(255,255,255,.6);
}
.pg-lb-counter {
  position: absolute; top: -36px; left: 0;
  font-family: var(--font-display); font-size: .68rem;
  letter-spacing: .1em; color: rgba(255,255,255,.5);
  text-transform: uppercase;
}

.pg-empty-state {
  max-width: 1448px; margin: 0 auto; padding: 60px 24px;
  text-align: center; color: #888; font-family: var(--font-display);
  font-size: .85rem; text-transform: uppercase; letter-spacing: .08em;
}

@media (max-width: 640px) {
  .pg-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .pg-albums-grid { grid-template-columns: 1fr; }
  .pg-lb-prev, .pg-lb-next { width: 34px; }
}



/* ============================================================
   v46 — 404 PAGE
   ============================================================ */
.dr-404-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 24px 80px;
    min-height: 400px;
}
.dr-404-content {
    text-align: center;
    max-width: 520px;
    width: 100%;
}
.dr-404-icon {
    margin: 0 auto 24px;
    opacity: .9;
}
.dr-404-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    letter-spacing: .04em;
    color: var(--navy);
    margin: 0 0 12px;
    line-height: 1.1;
}
.dr-404-headline::before {
    content: '| ';
    color: var(--text-muted);
    font-weight: 300;
}
.dr-404-subtext {
    color: var(--text-muted);
    font-size: 15px;
    margin: 0 0 28px;
    line-height: 1.6;
}
.dr-404-search {
    margin-bottom: 24px;
}
.dr-404-search .search-form {
    display: flex;
    gap: 8px;
    justify-content: center;
}
.dr-404-search input[type="search"] {
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 10px 14px;
    font-size: 14px;
    width: 260px;
    background: var(--bg-card);
    color: var(--text);
}
.dr-404-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.dr-404-btn {
    display: inline-block;
    background: var(--navy);
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: .1em;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    transition: background .15s, transform .1s;
}
.dr-404-btn:hover { background: #1a3a6b; transform: translateY(-1px); color: #fff; }
.dr-404-btn--secondary {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}
.dr-404-btn--secondary:hover { background: var(--navy); color: #fff; }
.dr-404-links {
    border-top: 1px solid var(--border);
    padding-top: 20px;
}
.dr-404-links p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
    margin: 0 0 10px;
    font-family: 'Bebas Neue', sans-serif;
}
.dr-404-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.dr-404-links a {
    color: var(--navy);
    font-size: 13px;
    text-decoration: underline;
}
.dr-404-links a:hover { color: #1a3a6b; }

/* ============================================================
   404 PAGE
   ============================================================ */
.dr-404-wrap {
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 24px;
    background: #f4f6f9;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
}
.dr-404-wrap--hasbg { background-color: #0C1B33; }
.dr-404-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 45, 0.78);
}
.dr-404-inner {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 auto;
}
.dr-404-badge {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 96px;
    line-height: 1;
    letter-spacing: .05em;
    color: transparent;
    -webkit-text-stroke: 3px var(--navy);
    margin-bottom: 8px;
}
.dr-404-wrap--hasbg .dr-404-badge {
    -webkit-text-stroke-color: rgba(255,255,255,.25);
}
.dr-404-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: .06em;
    color: var(--navy);
    margin: 0 0 12px;
    line-height: 1.1;
}
.dr-404-wrap--hasbg .dr-404-headline { color: #fff; }

.dr-404-subtext {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0 0 28px;
    line-height: 1.6;
}
.dr-404-wrap--hasbg .dr-404-subtext { color: rgba(255,255,255,.7); }

.dr-404-btn {
    display: inline-block;
    background: var(--navy);
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: .12em;
    font-size: 15px;
    padding: 12px 32px;
    border-radius: 5px;
    text-decoration: none;
    transition: opacity .15s;
    margin-bottom: 32px;
}
.dr-404-btn:hover { opacity: .85; color: #fff; }
.dr-404-wrap--hasbg .dr-404-btn {
    background: #fff;
    color: var(--navy);
}
.dr-404-wrap--hasbg .dr-404-btn:hover { opacity: .9; }

.dr-404-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    justify-content: center;
    font-size: 13px;
}
.dr-404-nav a { color: var(--text-muted); text-decoration: none; }
.dr-404-nav a:hover { color: var(--navy); text-decoration: underline; }
.dr-404-wrap--hasbg .dr-404-nav a { color: rgba(255,255,255,.5); }
.dr-404-wrap--hasbg .dr-404-nav a:hover { color: #fff; }

/* ============================================================
   v46 — LIVE GAME CENTER (page-live-game.php)
   All-AJAX shell — no heavy server-side rendering
   ============================================================ */
.dr-live-page-hero {
    background: var(--navy);
    padding: 32px 40px 24px;
}
.dr-live-page-hero__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(24px, 3vw, 40px);
    color: #fff;
    margin: 0;
    letter-spacing: .05em;
}

/* League tabs */
.dr-live-league-tabs {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--navy);
    padding: 0 20px;
    border-bottom: 3px solid rgba(255,255,255,.1);
}
.dr-live-league-tab {
    background: none;
    border: none;
    color: rgba(255,255,255,.6);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: .12em;
    padding: 14px 20px 11px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
    transition: color .15s, border-color .15s;
}
.dr-live-league-tab.active,
.dr-live-league-tab:hover {
    color: #fff;
    border-bottom-color: #fff;
}
.dr-live-refresh-badge {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #22c55e;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: .1em;
}

/* Game selector */
.dr-game-selector {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    scrollbar-width: none;
}
.dr-game-selector::-webkit-scrollbar { display: none; }
.dr-game-selector__inner {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    min-width: max-content;
}
.dr-game-selector__label {
    font-size: 11px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: .1em;
    color: var(--text-muted);
    white-space: nowrap;
    margin-right: 4px;
}
.dr-gs-game {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 12px;
    white-space: nowrap;
    transition: border-color .15s, background .15s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 72px;
}
.dr-gs-game:hover { border-color: var(--navy); }
.dr-gs-game--active { background: var(--navy); border-color: var(--navy); color: #fff; }
.dr-gs-game--live { border-color: #22c55e; }
.dr-gs-game--live.dr-gs-game--active { background: #14532d; border-color: #22c55e; }
.dr-gs-teams { font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: .08em; }
.dr-gs-score  { font-size: 11px; color: var(--text-muted); }
.dr-gs-game--active .dr-gs-score { color: rgba(255,255,255,.7); }
.dr-gs-loading, .dr-gs-no-games { font-size: 12px; color: var(--text-muted); padding: 4px 8px; }

/* Game card */
.dr-live-main { padding: 20px; max-width: 760px; }
.dr-live-game-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.dr-live-card-header {
    background: var(--navy);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: .08em;
    color: rgba(255,255,255,.8);
}
.dr-live-status-badge {
    margin-left: auto;
    font-size: 11px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: .1em;
    padding: 2px 8px;
    border-radius: 3px;
    background: rgba(255,255,255,.15);
}
.dr-live-status-badge--live   { color: #22c55e; background: rgba(34,197,94,.15); }
.dr-live-status-badge--final  { color: rgba(255,255,255,.6); }
.dr-live-venue { font-size: 11px; color: rgba(255,255,255,.5); margin-left: 8px; }

/* Score rows */
.dr-live-scores { padding: 16px 20px 8px; display: flex; flex-direction: column; gap: 4px; }
.dr-live-score-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
}
.dr-live-score-row--win { font-weight: 700; }
.dr-live-team {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: .04em;
    color: var(--text);
    flex: 1;
}
.dr-live-score {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    line-height: 1;
    color: var(--text-muted);
}
.dr-live-score--win { color: var(--navy); }

/* Linescore */
.dr-live-ls-wrap {
    overflow-x: auto;
    padding: 0 20px 8px;
    border-top: 1px solid var(--border);
    scrollbar-width: none;
}
.dr-live-ls-wrap::-webkit-scrollbar { display: none; }
.dr-live-linescore {
    border-collapse: collapse;
    font-size: 15px; /* +25% from 12px */
    white-space: nowrap;
    width: 100%;
}
/* Linescore inside the dark navy score header */
.dr-live-score-header .dr-live-linescore th {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px; /* +25% from 10px */
    letter-spacing: .08em;
    color: rgba(255,255,255,.55);
    text-align: center;
    padding: 7px 6px 5px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.dr-live-score-header .dr-live-linescore th.dr-ls-team-col { text-align: left; min-width: 38px; }
.dr-live-score-header .dr-live-linescore th.dr-ls-r,
.dr-live-score-header .dr-live-linescore th.dr-ls-h,
.dr-live-score-header .dr-live-linescore th.dr-ls-e { color: rgba(255,255,255,.85); font-weight: 700; }
.dr-live-score-header .dr-live-linescore td {
    text-align: center;
    padding: 6px 6px;
    color: rgba(255,255,255,.65);
}
.dr-live-score-header .dr-live-linescore td.dr-ls-team-col {
    text-align: left;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px; /* +25% from 13px */
    letter-spacing: .06em;
    color: #fff;
    font-weight: 700;
}
.dr-live-score-header .dr-live-linescore td.dr-ls-r { font-weight: 700; color: #fff; }
.dr-live-score-header .dr-ls-cell--runs { color: #fde68a; font-weight: 700; } /* warm amber highlight for runs scored */

/* Situation */
.dr-live-situation {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    border-top: 1px solid var(--border);
    background: var(--bg);
}
.dr-live-matchup { flex: 1; }

/* Win prob */
.dr-wp-bar-wrap {
    display: flex;
    height: 28px;
    margin: 0 20px 16px;
    border-radius: 4px;
    overflow: hidden;
    font-size: 11px;
    font-weight: 700;
}
.dr-wp-bar-away, .dr-wp-bar-home {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width .4s ease;
    overflow: hidden;
}
.dr-wp-bar-away { background: rgba(12,27,51,.75); color: #fff; }
.dr-wp-bar-home { background: var(--navy); color: #fff; }

/* MiLB affiliate tabs */
.dr-milb-aff-tabs {
    display: flex;
    gap: 6px;
    padding: 12px 20px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    scrollbar-width: none;
    flex-wrap: wrap;
}
.dr-milb-aff-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13px;
    cursor: pointer;
    transition: border-color .15s, background .15s;
    white-space: nowrap;
}
.dr-milb-aff-tab:hover { border-color: var(--navy); }
.dr-milb-aff-tab.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.dr-milb-aff-tab.active .dr-milb-badge { background: rgba(255,255,255,.2); color: #fff; }

/* Loading + no-game states */
.dr-live-loading-state {
    text-align: center;
    padding: 48px 24px;
    color: var(--text-muted);
    font-size: 14px;
}
.dr-live-no-game {
    text-align: center;
    padding: 40px 24px;
    color: var(--text-muted);
    font-size: 14px;
}

/* Recent results in MiLB view */
.dr-milb-recent { padding: 12px 20px; border-top: 1px solid var(--border); }
.dr-milb-recent__label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* ============================================================
   v47 — PITCH LOG, STRIKE ZONE, BOXSCORE (Live Game Center)
   ============================================================ */

/* Score header */
.dr-live-score-header {
    background: var(--navy);
    color: #fff;
    padding: 0;
}
.dr-live-score-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px 10px;
    gap: 12px;
}
.dr-lsh-team { display: flex; flex-direction: column; align-items: center; gap: 2px; flex: 1; }
.dr-lsh-team--away { align-items: flex-start; }
.dr-lsh-team--home { align-items: flex-end; }
.dr-lsh-abbr { font-family: "Bebas Neue",sans-serif; font-size: 22px; letter-spacing: .08em; color: rgba(255,255,255,.7); }
.dr-lsh-name { font-size: 10px; letter-spacing: .06em; color: rgba(255,255,255,.45); text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 120px; }
.dr-lsh-score { font-family: "Bebas Neue",sans-serif; font-size: 48px; line-height: 1; color: rgba(255,255,255,.85); }
.dr-lsh-score--win { color: #fff; }
.dr-lsh-mid { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 80px; }
.dr-lsh-status { font-family: "Bebas Neue",sans-serif; font-size: 12px; letter-spacing: .1em; color: rgba(255,255,255,.7); white-space: nowrap; }
.dr-lsh-bso { display: flex; align-items: center; }

/* Matchup bar */
.dr-live-matchup-bar {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding: 8px 20px;
    background: rgba(0,0,0,.25);
    border-top: 1px solid rgba(255,255,255,.1);
}
.dr-mbar-row { display: flex; align-items: center; gap: 6px; font-size: 12px; }
.dr-mbar-label { color: rgba(255,255,255,.5); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.dr-mbar-name { color: #fff; font-weight: 600; }
.dr-mbar-hand { color: rgba(255,255,255,.4); font-size: 10px; }

/* Tab panel layout */
.dr-live-tab-inner { padding: 16px 20px; max-width: 900px; }
.dr-live-tabpanel { display: none; }
.dr-live-tabpanel.active { display: block; }

/* Live situation */
.dr-last-pitch {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 10px 14px;
    margin-bottom: 12px;
    font-size: 13px;
}
.dr-last-pitch__label { font-family: "Bebas Neue",sans-serif; font-size: 10px; letter-spacing: .1em; color: var(--text-muted); text-transform: uppercase; }
.dr-last-pitch__speed { font-weight: 700; color: var(--navy); }
.dr-last-pitch__call  { color: var(--text-muted); }
.dr-last-pitch__spin, .dr-last-pitch__ev { font-size: 11px; color: var(--text-muted); }
.pitch-type-badge {
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-size: 10px; font-weight: 700; font-family: monospace;
    letter-spacing: .05em;
    padding: 2px 6px; border-radius: 3px;
    white-space: nowrap;
}
.dr-live-preview, .dr-live-final-note {
    padding: 32px 0;
    color: var(--text-muted);
    font-size: 14px;
}
.dr-prob { font-size: 13px; color: var(--text-muted); margin: 4px 0; }
.dr-weather { font-size: 11px; color: var(--text-muted); margin-top: 8px; }

/* Boxscore */
.dr-bs-team { margin-bottom: 24px; }
.dr-bs-team__header { margin-bottom: 8px; }
.dr-bs-team__name { font-family: "Bebas Neue",sans-serif; font-size: 17px; letter-spacing: .06em; color: var(--navy); }
.dr-bs-scroll { overflow-x: auto; scrollbar-width: thin; margin-bottom: 4px; }
.dr-bs-table {
    border-collapse: collapse;
    font-size: 12px;
    white-space: nowrap;
    width: 100%;
    min-width: 500px;
}
.dr-bs-table thead th {
    background: var(--navy);
    color: rgba(255,255,255,.75);
    font-family: "Bebas Neue",sans-serif;
    font-size: 10px;
    letter-spacing: .08em;
    padding: 6px 6px;
    text-align: center;
    white-space: nowrap;
}
.dr-bs-table thead th.dr-bs-player { text-align: left; min-width: 130px; }
.dr-bs-table tbody tr { border-bottom: 1px solid var(--border); }
.dr-bs-table tbody tr:hover { background: var(--bg); }
.dr-bs-table td { padding: 5px 6px; text-align: center; color: var(--text-muted); }
.dr-bs-table td.dr-bs-player {
    text-align: left; font-size: 12px; color: var(--text);
    display: flex; align-items: center; gap: 4px;
}
.dr-bs-pos { color: var(--text-muted); font-size: 10px; }
.dr-bs-note { color: var(--text-muted); font-size: 10px; font-style: italic; }
.dr-bs-hit, .dr-bs-hr { color: var(--navy); font-weight: 700; }
.dr-bs-row--current { background: rgba(12,27,51,.06); }
.dr-bs-row--current td { font-weight: 600; }
.dr-sub { color: var(--text-muted); font-size: 9px; }

/* Pitch log */
.dr-pbp-section-label {
    font-family: "Bebas Neue",sans-serif;
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--text-muted);
    text-transform: uppercase;
    padding: 12px 0 6px;
    border-top: 1px solid var(--border);
    margin-top: 16px;
}
.dr-pbp-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
}
.dr-pbp-block--current {
    border-color: var(--navy);
    border-width: 2px;
}
.dr-pbp-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    background: var(--navy);
    padding: 8px 14px;
    font-size: 12px;
    color: rgba(255,255,255,.8);
}
.dr-pbp-inning { font-family: "Bebas Neue",sans-serif; font-size: 13px; letter-spacing: .08em; color: rgba(255,255,255,.6); }
.dr-pbp-matchup { flex: 1; }
.dr-pbp-matchup strong { color: #fff; }
.dr-pbp-result { color: rgba(255,255,255,.75); font-size: 12px; }
.dr-pbp-result--scoring { color: #fbbf24; font-weight: 700; }
.dr-pbp-count { color: rgba(255,255,255,.5); font-size: 11px; margin-left: auto; }
.dr-pbp-pitchcount { color: rgba(255,255,255,.45); font-size: 10px; white-space: nowrap; }

.dr-pbp-body {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 0;
    align-items: start;
}
@media (max-width: 600px) {
    .dr-pbp-body { grid-template-columns: 1fr; }
}
.dr-pbp-zone {
    background: #0C1B33;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    min-height: 230px;
}
.dr-sz-svg { display: block; }
.dr-pbp-table { padding: 10px 14px; overflow-x: auto; }
.dr-pbp-desc {
    font-size: 12px;
    color: var(--text-muted);
    padding: 8px 14px;
    border-top: 1px solid var(--border);
    font-style: italic;
}

/* Pitch table */
.dr-pitch-table {
    border-collapse: collapse;
    font-size: 12px;
    width: 100%;
    white-space: nowrap;
}
.dr-pitch-table th {
    font-family: "Bebas Neue",sans-serif;
    font-size: 10px;
    letter-spacing: .08em;
    color: var(--text-muted);
    text-align: left;
    padding: 4px 6px 2px;
    border-bottom: 1px solid var(--border);
}
.dr-pitch-table td { padding: 5px 6px; color: var(--text-muted); vertical-align: middle; }
.dr-pitch-table .pt-num { color: var(--text-muted); font-size: 11px; font-family: monospace; text-align: center; width: 24px; }
.dr-pitch-table .pt-speed { font-weight: 600; color: var(--text); font-family: monospace; }
.pitch-call--strike { color: #dc2626; font-weight: 600; }
.pitch-call--ball   { color: #2563eb; }
.pitch-call--inplay { color: #16a34a; font-weight: 600; }

/* Play-by-play */
.dr-plays-list { }
.dr-play-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}
.dr-play-inning {
    font-family: "Bebas Neue",sans-serif;
    font-size: 12px;
    letter-spacing: .06em;
    color: var(--text-muted);
    white-space: nowrap;
    min-width: 44px;
}
.dr-play-desc { flex: 1; color: var(--text); line-height: 1.5; }
.dr-play-score { font-weight: 700; color: var(--navy); white-space: nowrap; font-family: monospace; }
.dr-play--scoring { background: rgba(12,27,51,.04); }
.dr-play--scoring .dr-play-desc { font-weight: 500; }

@media (max-width: 600px) {
    .dr-lsh-score { font-size: 36px; }
    .dr-live-tab-inner { padding: 12px 14px; }
}

/* ============================================================
   v50 — UNIFIED PAGE HERO (template-parts/page-hero.php)
   Used by all stat and content page templates.
   ============================================================ */

/* ── Featured-image hero (existing, kept for compatibility) ── */
/* .dr-page-feat-hero styles already exist — just add subtitle */
.dr-page-feat-hero__sub {
    font-size: 14px;
    color: rgba(255,255,255,.7);
    margin: 6px 0 0;
    letter-spacing: .04em;
    line-height: 1.5;
}

/* ── Solid stat-page hero (replaces all the per-page variants) ── */
.dr-page-stat-hero {
    background: var(--navy);
    padding: 0;
    position: relative;
    overflow: hidden;
}
/* Subtle diagonal stripe texture */
.dr-page-stat-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 28px,
        rgba(255,255,255,.018) 28px,
        rgba(255,255,255,.018) 29px
    );
    pointer-events: none;
}
.dr-page-stat-hero__inner {
    position: relative;
    padding: 28px 40px 22px;
    max-width: 1200px;
    margin: 0 auto;
}
.dr-page-stat-hero__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(26px, 3.5vw, 44px);
    letter-spacing: .06em;
    color: #fff;
    margin: 0 0 4px;
    line-height: 1;
}
.dr-page-stat-hero__sub {
    font-size: 13px;
    color: rgba(255,255,255,.6);
    margin: 0;
    letter-spacing: .04em;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
.dr-page-stat-hero__sub .dr-live-dot {
    color: #22c55e;
    font-size: 9px;
}

@media (max-width: 680px) {
    .dr-page-stat-hero__inner { padding: 20px 20px 16px; }
    .dr-page-stat-hero__title { font-size: 28px; }
}
