/**
 * Zona Deportes HD — Main Theme Stylesheet
 * Responsive, Lightweight, Accessible (WCAG 2.2 AA)
 */

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

body {
  background-color: var(--zd-color-background, #f8fafc);
  color: var(--zd-color-text, #0f172a);
  font-family: var(--zd-font-sans, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--zd-color-primary, #155dfc);
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}

a:hover {
  color: var(--zd-color-primary-hover, #0d47cb);
  text-decoration: underline;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.zdhd-container {
  width: 100%;
  max-width: var(--zd-container-width, 1240px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.zdhd-container--narrow {
  max-width: var(--zd-container-narrow, 840px);
}

.zdhd-container--wide {
  max-width: var(--zd-container-wide, 1400px);
}

/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */
.zdhd-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 1px solid var(--zd-color-border, #e2e8f0);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.zdhd-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.25rem;
}

.zdhd-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--zd-color-secondary, #0b192c);
}

.zdhd-brand:hover {
  text-decoration: none;
}

.zdhd-brand__logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  background: linear-gradient(135deg, var(--zd-color-primary, #155dfc), #0040c1);
  color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.5px;
  box-shadow: 0 2px 4px rgba(21, 93, 252, 0.25);
}

.zdhd-brand__title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.zdhd-brand__title span {
  color: var(--zd-color-primary, #155dfc);
}

.zdhd-brand__tagline {
  display: block;
  font-size: 0.7rem;
  color: var(--zd-color-muted, #64748b);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.zdhd-nav {
  display: none;
}

@media (min-width: 992px) {
  .zdhd-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}

.zdhd-nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.25rem;
}

.zdhd-nav__link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--zd-color-secondary, #0b192c);
  padding: 0.5rem 0.25rem;
  position: relative;
  text-decoration: none;
}

.zdhd-nav__link:hover,
.zdhd-nav__link[aria-current="page"] {
  color: var(--zd-color-primary, #155dfc);
  text-decoration: none;
}

.zdhd-nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--zd-color-primary, #155dfc);
  border-radius: 2px;
}

.zdhd-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.zdhd-search-form {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border: 1px solid var(--zd-color-border, #e2e8f0);
  border-radius: 9999px;
  padding: 0.25rem 0.65rem 0.25rem 0.85rem;
  transition: all 0.15s ease;
}

.zdhd-search-form:focus-within {
  background: #ffffff;
  border-color: var(--zd-color-primary, #155dfc);
  box-shadow: 0 0 0 3px rgba(21, 93, 252, 0.15);
}

.zdhd-search-form__input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.8125rem;
  color: var(--zd-color-secondary, #0b192c);
  width: 170px;
}

.zdhd-search-form__input::placeholder {
  color: var(--zd-color-muted, #94a3b8);
}

.zdhd-search-form__submit {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--zd-color-muted, #64748b);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.zdhd-search-form__submit:hover {
  color: var(--zd-color-primary, #155dfc);
}

.zdhd-btn-search,
.zdhd-btn-menu-toggle,
.zdhd-menu-toggle {
  background: transparent;
  border: 1px solid var(--zd-color-border, #e2e8f0);
  color: var(--zd-color-secondary, #0b192c);
  border-radius: var(--zd-radius-md, 8px);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.zdhd-btn-search:hover,
.zdhd-btn-menu-toggle:hover,
.zdhd-menu-toggle:hover {
  background-color: var(--zd-color-background, #f8fafc);
  border-color: #cbd5e1;
}

@media (min-width: 992px) {
  .zdhd-btn-menu-toggle,
  .zdhd-menu-toggle,
  .zdhd-mobile-drawer,
  .zdhd-drawer-backdrop,
  .zdhd-mobile-nav {
    display: none !important;
  }
}

/* Mobile Navigation Off-Canvas Drawer */
.zdhd-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 25, 44, 0.5);
  backdrop-filter: blur(2px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.zdhd-drawer-backdrop.is-active {
  opacity: 1;
  pointer-events: auto;
}

.zdhd-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: #ffffff;
  z-index: 1200;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.zdhd-mobile-drawer.is-open {
  transform: translateX(0);
}

.zdhd-mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}

.zdhd-drawer-close {
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  width: 2rem;
  height: 2rem;
  font-size: 1.25rem;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zdhd-drawer-close:hover {
  background: #e2e8f0;
  color: #0b192c;
}

.zdhd-mobile-drawer__nav {
  list-style: none;
  padding: 1rem 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.zdhd-mobile-drawer__nav li a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: #0b192c;
  border-left: 3px solid transparent;
  text-decoration: none;
}

.zdhd-mobile-drawer__nav li a:hover {
  background: #f1f5f9;
  color: #155dfc;
  border-left-color: #155dfc;
}

/* Fallback Dropdown Mobile Navigation */
.zdhd-mobile-nav {
  display: none;
  background-color: #ffffff;
  border-bottom: 1px solid var(--zd-color-border, #e2e8f0);
  padding: 1.25rem;
}

.zdhd-mobile-nav.is-open {
  display: block;
}

.zdhd-mobile-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.zdhd-mobile-nav__link {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--zd-color-secondary, #0b192c);
  display: block;
  padding: 0.5rem 0;
}

/* ==========================================================================
   3. HERO UTILITY & SCHEDULE CONTROLS
   ========================================================================== */
.zdhd-hero {
  padding: 2.5rem 0 2rem;
  background: linear-gradient(180deg, #ffffff 0%, var(--zd-color-background, #f8fafc) 100%);
  border-bottom: 1px solid var(--zd-color-border, #e2e8f0);
}

.zdhd-hero__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.zdhd-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--zd-color-secondary, #0b192c);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.zdhd-hero__lead {
  font-size: 1.0625rem;
  color: var(--zd-color-muted, #64748b);
  line-height: 1.5;
}

/* Timezone Indicator Banner */
.zdhd-tz-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  background-color: #ffffff;
  border: 1px solid var(--zd-color-border, #e2e8f0);
  padding: 0.5rem 1rem;
  border-radius: var(--zd-radius-full, 9999px);
  display: inline-flex;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--zd-color-muted, #64748b);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.zdhd-tz-bar strong {
  color: var(--zd-color-secondary, #0b192c);
}

.zdhd-tz-bar select {
  border: none;
  background: transparent;
  color: var(--zd-color-primary, #155dfc);
  font-weight: 600;
  cursor: pointer;
  padding-right: 0.5rem;
}

.zdhd-tz-bar select:focus {
  outline: none;
}

/* Schedule Controls Box */
.zdhd-controls {
  background-color: #ffffff;
  border: 1px solid var(--zd-color-border, #e2e8f0);
  border-radius: var(--zd-radius-lg, 12px);
  padding: 1.25rem;
  box-shadow: var(--zd-shadow-sm);
  margin-bottom: 2rem;
}

.zdhd-controls__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Date Pills */
.zdhd-date-tabs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.zdhd-date-btn {
  background-color: var(--zd-color-background, #f8fafc);
  border: 1px solid var(--zd-color-border, #e2e8f0);
  color: var(--zd-color-secondary, #0b192c);
  padding: 0.5rem 1rem;
  border-radius: var(--zd-radius-md, 8px);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}

.zdhd-date-btn:hover {
  background-color: #e2e8f0;
}

.zdhd-date-btn.is-active {
  background-color: var(--zd-color-primary, #155dfc);
  border-color: var(--zd-color-primary, #155dfc);
  color: #ffffff;
}

.zdhd-date-picker-input {
  border: 1px solid var(--zd-color-border, #e2e8f0);
  background-color: var(--zd-color-background, #f8fafc);
  color: var(--zd-color-secondary, #0b192c);
  border-radius: var(--zd-radius-md, 8px);
  padding: 0.45rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
}

/* Filters Row (Sports, League, Search) */
.zdhd-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--zd-color-border, #e2e8f0);
}

.zdhd-filter-select,
.zdhd-search-input {
  background-color: var(--zd-color-background, #f8fafc);
  border: 1px solid var(--zd-color-border, #e2e8f0);
  color: var(--zd-color-secondary, #0b192c);
  border-radius: var(--zd-radius-md, 8px);
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  min-height: 2.375rem;
}

.zdhd-filter-select {
  cursor: pointer;
}

.zdhd-search-input {
  flex: 1 1 200px;
}

.zdhd-filter-select:focus,
.zdhd-search-input:focus {
  border-color: var(--zd-color-primary, #155dfc);
  outline: none;
  background-color: #ffffff;
}

/* ==========================================================================
   4. EVENT CARDS & SCHEDULE GROUPS
   ========================================================================== */
.zdhd-schedule-group {
  margin-bottom: 2.5rem;
}

.zdhd-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--zd-color-border, #e2e8f0);
}

.zdhd-group-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--zd-color-secondary, #0b192c);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.zdhd-group-count {
  font-size: 0.75rem;
  background-color: var(--zd-color-border, #e2e8f0);
  color: var(--zd-color-secondary, #0b192c);
  padding: 0.125rem 0.5rem;
  border-radius: var(--zd-radius-full, 9999px);
  font-weight: 600;
}

.zdhd-event-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* Featured Match of the Day Showcase */
.zdhd-featured-match {
  background: linear-gradient(135deg, #0b192c 0%, #1e293b 60%, #0f172a 100%);
  color: #ffffff;
  border-radius: var(--zd-radius-lg, 16px);
  padding: 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 25px -5px rgba(11, 25, 44, 0.25);
  position: relative;
  overflow: hidden;
  border: 1px solid #334155;
}

.zdhd-featured-match::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(21, 93, 252, 0.2) 0%, rgba(21, 93, 252, 0) 70%);
  pointer-events: none;
}

.zdhd-featured-match__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.zdhd-featured-pill {
  background: rgba(21, 93, 252, 0.25);
  border: 1px solid #3b82f6;
  color: #93c5fd;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.zdhd-featured-match__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.zdhd-team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.zdhd-team-emblem {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.zdhd-team-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.zdhd-match-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.zdhd-match-score {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.25rem 1.25rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.zdhd-match-vs {
  font-size: 1.25rem;
  font-weight: 900;
  color: #94a3b8;
  letter-spacing: 1px;
}

.zdhd-match-time-hero {
  font-size: 1rem;
  color: #38bdf8;
  font-weight: 700;
}

.zdhd-featured-match__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.zdhd-broadcaster-chips {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.zdhd-chip {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  padding: 0.25rem 0.625rem;
  border-radius: 6px;
  font-weight: 600;
}

/* Quick Stats Ticker */
.zdhd-stats-ticker {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.zdhd-stat-card {
  background: #ffffff;
  border: 1px solid var(--zd-color-border, #e2e8f0);
  border-radius: var(--zd-radius-md, 8px);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--zd-shadow-xs);
}

.zdhd-stat-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 8px;
  background: #eff6ff;
  color: var(--zd-color-primary, #155dfc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.zdhd-stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--zd-color-secondary, #0b192c);
  line-height: 1.1;
}

.zdhd-stat-label {
  font-size: 0.75rem;
  color: var(--zd-color-muted, #64748b);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Event Card (Dashboard Sports Card Style) */
.zdhd-card {
  background-color: #ffffff;
  border: 1px solid var(--zd-color-border, #e2e8f0);
  border-radius: var(--zd-radius-lg, 12px);
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  box-shadow: var(--zd-shadow-xs);
  position: relative;
}

@media (min-width: 768px) {
  .zdhd-card {
    grid-template-columns: 150px 1fr 240px;
    gap: 1.5rem;
  }
}

.zdhd-card:hover {
  border-color: #cbd5e1;
  box-shadow: var(--zd-shadow-md);
}

.zdhd-card.is-live {
  border-left: 4px solid var(--zd-color-live, #10b981);
  background: linear-gradient(90deg, #f0fdf4 0%, #ffffff 15%);
}

/* Card Time & Status Column */
.zdhd-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.zdhd-card__time {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--zd-color-secondary, #0b192c);
  letter-spacing: -0.01em;
}

.zdhd-card__date-label {
  font-size: 0.75rem;
  color: var(--zd-color-muted, #64748b);
  font-weight: 600;
}

/* Status Badges */
.zdhd-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.5rem;
  border-radius: var(--zd-radius-sm, 4px);
  width: fit-content;
}

.zdhd-badge--live {
  background-color: var(--zd-color-live-bg, #ecfdf5);
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.zdhd-badge--live .zdhd-pulse {
  width: 6px;
  height: 6px;
  background-color: var(--zd-color-live, #10b981);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: zdhdPulse 1.8s infinite;
}

@keyframes zdhdPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.zdhd-badge--upcoming {
  background-color: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.zdhd-badge--finished {
  background-color: #f8fafc;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

.zdhd-badge--postponed {
  background-color: #fffbeb;
  color: #b45309;
  border: 1px solid #fef3c7;
}

.zdhd-badge--cancelled {
  background-color: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

/* Card Match / Participants Column */
.zdhd-card__details {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.zdhd-card__league {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--zd-color-primary, #155dfc);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.zdhd-card__title {
  font-size: 1.15rem;
  font-weight: 750;
  color: var(--zd-color-secondary, #0b192c);
  line-height: 1.3;
}

.zdhd-card__title a {
  color: inherit;
  text-decoration: none;
}

.zdhd-card__title a:hover {
  color: var(--zd-color-primary, #155dfc);
  text-decoration: none;
}

.zdhd-card__venue {
  font-size: 0.8125rem;
  color: var(--zd-color-muted, #64748b);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Card Action Column */
.zdhd-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .zdhd-card__actions {
    align-items: flex-end;
  }
}

.zdhd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--zd-radius-md, 8px);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}

.zdhd-btn:hover {
  text-decoration: none;
}

.zdhd-btn--primary {
  background-color: var(--zd-color-primary, #155dfc);
  color: #ffffff;
}

.zdhd-btn--primary:hover {
  background-color: var(--zd-color-primary-hover, #0d47cb);
  color: #ffffff;
}

.zdhd-btn--outline {
  background-color: transparent;
  border-color: var(--zd-color-border, #e2e8f0);
  color: var(--zd-color-secondary, #0b192c);
}

.zdhd-btn--outline:hover {
  background-color: var(--zd-color-background, #f8fafc);
  border-color: #cbd5e1;
  color: var(--zd-color-primary, #155dfc);
}

.zdhd-btn--sm {
  padding: 0.35rem 0.75rem;
  font-size: 0.8125rem;
}

.zdhd-btn--icon-only {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
}

.zdhd-card__action-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .zdhd-card__action-row {
    justify-content: flex-end;
  }
}

.zdhd-viewing-tag {
  font-size: 0.75rem;
  color: var(--zd-color-muted, #64748b);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.zdhd-viewing-tag strong {
  color: var(--zd-color-secondary, #0b192c);
}

/* Broadcaster Directory Table */
.zdhd-broadcaster-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border: 1px solid var(--zd-color-border, #e2e8f0);
  border-radius: var(--zd-radius-md, 8px);
  overflow: hidden;
  margin: 1.5rem 0;
}

.zdhd-broadcaster-table th,
.zdhd-broadcaster-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--zd-color-border, #e2e8f0);
  font-size: 0.9375rem;
}

.zdhd-broadcaster-table th {
  background: #f8fafc;
  color: var(--zd-color-secondary, #0b192c);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

/* Head-to-Head & Form Badges */
.zdhd-form-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-right: 0.25rem;
}

.zdhd-form-badge--w { background-color: #10b981; }
.zdhd-form-badge--d { background-color: #94a3b8; }
.zdhd-form-badge--l { background-color: #ef4444; }

/* FAQ Accordions */
.zdhd-faq-item {
  background: #ffffff;
  border: 1px solid var(--zd-color-border, #e2e8f0);
  border-radius: var(--zd-radius-md, 8px);
  padding: 1.25rem;
  margin-bottom: 0.75rem;
}

.zdhd-faq-question {
  font-size: 1.0625rem;
  font-weight: 750;
  color: var(--zd-color-secondary, #0b192c);
  margin-bottom: 0.5rem;
}

.zdhd-faq-answer {
  color: var(--zd-color-muted, #64748b);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ==========================================================================
   5. BREADCRUMBS
   ========================================================================== */
.zdhd-breadcrumbs {
  padding: 1rem 0;
  font-size: 0.875rem;
  color: var(--zd-color-muted, #64748b);
}

.zdhd-breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  gap: 0.5rem;
}

.zdhd-breadcrumbs__link {
  color: var(--zd-color-muted, #64748b);
}

.zdhd-breadcrumbs__link:hover {
  color: var(--zd-color-primary, #155dfc);
}

.zdhd-breadcrumbs__separator {
  color: #cbd5e1;
  user-select: none;
}

.zdhd-breadcrumbs__current {
  color: var(--zd-color-secondary, #0b192c);
  font-weight: 600;
}

/* ==========================================================================
   6. SINGLE EVENT PAGE DETAILS
   ========================================================================== */
.zdhd-event-detail {
  padding: 2rem 0 4rem;
}

.zdhd-event-detail__hero {
  background-color: #ffffff;
  border: 1px solid var(--zd-color-border, #e2e8f0);
  border-radius: var(--zd-radius-lg, 12px);
  padding: 2rem;
  box-shadow: var(--zd-shadow-sm);
  margin-bottom: 2rem;
}

.zdhd-event-detail__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.zdhd-event-detail__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--zd-color-secondary, #0b192c);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.zdhd-event-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 992px) {
  .zdhd-event-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.zdhd-panel {
  background-color: #ffffff;
  border: 1px solid var(--zd-color-border, #e2e8f0);
  border-radius: var(--zd-radius-lg, 12px);
  padding: 1.5rem;
  box-shadow: var(--zd-shadow-xs);
  margin-bottom: 1.5rem;
}

.zdhd-panel__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--zd-color-secondary, #0b192c);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--zd-color-border, #e2e8f0);
}

.zdhd-info-table {
  width: 100%;
  border-collapse: collapse;
}

.zdhd-info-table th,
.zdhd-info-table td {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--zd-color-border-subtle, #f1f5f9);
  text-align: left;
  font-size: 0.9375rem;
}

.zdhd-info-table th {
  color: var(--zd-color-muted, #64748b);
  font-weight: 600;
  width: 35%;
}

.zdhd-info-table td {
  color: var(--zd-color-secondary, #0b192c);
  font-weight: 500;
}

/* Official Viewing Box */
.zdhd-viewing-box {
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
  border: 1px solid #bfdbfe;
  border-radius: var(--zd-radius-lg, 12px);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.zdhd-viewing-box__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.zdhd-viewing-box__text {
  font-size: 0.875rem;
  color: #3b82f6;
  margin-bottom: 1rem;
}

/* ==========================================================================
   7. BLOG & EDITORIAL POSTS
   ========================================================================== */
.zdhd-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .zdhd-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .zdhd-blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.zdhd-post-card {
  background-color: #ffffff;
  border: 1px solid var(--zd-color-border, #e2e8f0);
  border-radius: var(--zd-radius-lg, 12px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: var(--zd-shadow-xs);
}

.zdhd-post-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--zd-shadow-md);
  border-color: #cbd5e1;
}

.zdhd-post-card__thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #e2e8f0;
}

.zdhd-post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.zdhd-post-card:hover .zdhd-post-card__thumb img {
  transform: scale(1.03);
}

.zdhd-post-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.zdhd-post-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--zd-color-muted, #64748b);
  margin-bottom: 0.5rem;
}

.zdhd-post-card__category {
  color: var(--zd-color-primary, #155dfc);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.zdhd-post-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--zd-color-secondary, #0b192c);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.zdhd-post-card__title a {
  color: inherit;
  text-decoration: none;
}

.zdhd-post-card__title a:hover {
  color: var(--zd-color-primary, #155dfc);
}

.zdhd-post-card__excerpt {
  font-size: 0.875rem;
  color: var(--zd-color-muted, #64748b);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

/* Single Post Article */
.zdhd-article {
  padding: 2rem 0 4rem;
}

.zdhd-article__header {
  margin-bottom: 2rem;
  text-align: center;
}

.zdhd-article__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--zd-color-secondary, #0b192c);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.zdhd-article__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--zd-color-muted, #64748b);
}

.zdhd-article__meta strong {
  color: var(--zd-color-secondary, #0b192c);
}

.zdhd-article__featured {
  margin-bottom: 2rem;
  border-radius: var(--zd-radius-lg, 12px);
  overflow: hidden;
  box-shadow: var(--zd-shadow-md);
}

.zdhd-article__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #1e293b;
}

.zdhd-article__body p {
  margin-bottom: 1.5rem;
}

.zdhd-article__body h2 {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--zd-color-secondary, #0b192c);
  margin: 2.25rem 0 1rem;
}

.zdhd-article__body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--zd-color-secondary, #0b192c);
  margin: 1.75rem 0 0.75rem;
}

.zdhd-article__body ul,
.zdhd-article__body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.zdhd-article__body li {
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   8. FOOTER & LEGAL DISCLAIMER
   ========================================================================== */
.zdhd-footer {
  background-color: var(--zd-color-secondary, #0b192c);
  color: #94a3b8;
  padding: 3.5rem 0 2rem;
  font-size: 0.875rem;
}

.zdhd-footer a {
  color: #cbd5e1;
  text-decoration: none;
}

.zdhd-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.zdhd-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .zdhd-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .zdhd-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.zdhd-footer__title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.zdhd-footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.zdhd-footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid #1e293b;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .zdhd-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.zdhd-disclaimer {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid #1e293b;
  border-radius: var(--zd-radius-md, 8px);
  padding: 1rem;
  margin-bottom: 2rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #94a3b8;
}

/* ==========================================================================
   9. EMPTY STATES & UTILITIES
   ========================================================================== */
.zdhd-empty-state {
  background-color: #ffffff;
  border: 1px dashed var(--zd-color-border, #e2e8f0);
  border-radius: var(--zd-radius-lg, 12px);
  padding: 3rem 1.5rem;
  text-align: center;
  color: var(--zd-color-muted, #64748b);
  margin: 1.5rem 0;
}

.zdhd-empty-state__icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  color: #cbd5e1;
}

.zdhd-empty-state__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--zd-color-secondary, #0b192c);
  margin-bottom: 0.5rem;
}

.zdhd-empty-state__text {
  font-size: 0.875rem;
  max-width: 420px;
  margin: 0 auto;
}

/* Search results badge */
.zdhd-type-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

.zdhd-type-badge--event {
  background-color: #dbeafe;
  color: #1e40af;
}

.zdhd-type-badge--article {
  background-color: #f1f5f9;
  color: #475569;
}

.zdhd-type-badge--page {
  background-color: #f3e8ff;
  color: #6b21a8;
}

/* ==========================================================================
   10. DATA-DENSE SPORTS DASHBOARD ENHANCEMENTS
   ========================================================================== */

/* Top Live Stats Ticker */
.zdhd-stats-ticker {
  background: #0b192c;
  color: #f1f5f9;
  border-bottom: 1px solid #1e293b;
  padding: 0.65rem 0;
  font-size: 0.8125rem;
}

.zdhd-stats-ticker__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.zdhd-stats-ticker__inner::-webkit-scrollbar {
  display: none;
}

.zdhd-stats-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
  color: #cbd5e1;
}

.zdhd-stats-item strong {
  color: #ffffff;
  font-weight: 700;
}

.zdhd-stats-item--live strong {
  color: #38bdf8;
}

/* Featured Match of the Day Showcase */
.zdhd-showcase {
  background: linear-gradient(135deg, #0b192c 0%, #172554 60%, #1e3a8a 100%);
  color: #ffffff;
  border-radius: var(--zd-radius-lg, 12px);
  padding: 2rem 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(11, 25, 44, 0.3), 0 8px 10px -6px rgba(11, 25, 44, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.zdhd-showcase::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.zdhd-showcase__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(239, 68, 68, 0.95);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.zdhd-showcase__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.zdhd-showcase__league {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.zdhd-showcase__matchup {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

@media (max-width: 640px) {
  .zdhd-showcase__matchup {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.zdhd-showcase__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.zdhd-team-crest {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e293b, #334155);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.35rem;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.zdhd-team-crest--p1 {
  background: linear-gradient(135deg, #155dfc, #0284c7);
}

.zdhd-team-crest--p2 {
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
}

.zdhd-showcase__team-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.zdhd-showcase__score-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.zdhd-showcase__score {
  font-size: 2.75rem;
  font-weight: 900;
  color: #38bdf8;
  letter-spacing: 0.05em;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(56, 189, 248, 0.3);
}

.zdhd-showcase__status-pill {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  color: #f1f5f9;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
}

.zdhd-showcase__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
}

.zdhd-showcase__meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: #94a3b8;
  flex-wrap: wrap;
}

.zdhd-showcase__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Form Pills Guide */
.zdhd-form-pills {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.zdhd-form-pill {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.zdhd-form-pill--w {
  background-color: #10b981;
}

.zdhd-form-pill--d {
  background-color: #f59e0b;
}

.zdhd-form-pill--l {
  background-color: #ef4444;
}

/* Head-to-Head & Stats Tables */
.zdhd-h2h-table,
.zdhd-standings-table,
.zdhd-broadcaster-matrix {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-top: 1rem;
}

.zdhd-h2h-table th,
.zdhd-standings-table th,
.zdhd-broadcaster-matrix th {
  background-color: #f8fafc;
  color: #475569;
  font-weight: 700;
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 2px solid #e2e8f0;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.zdhd-h2h-table td,
.zdhd-standings-table td,
.zdhd-broadcaster-matrix td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  color: #1e293b;
  vertical-align: middle;
}

.zdhd-h2h-table tr:hover,
.zdhd-standings-table tr:hover,
.zdhd-broadcaster-matrix tr:hover {
  background-color: #f8fafc;
}

/* Lineup Grid */
.zdhd-lineup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .zdhd-lineup-grid {
    grid-template-columns: 1fr;
  }
}

.zdhd-lineup-col {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.25rem;
}

.zdhd-lineup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}

.zdhd-lineup-formation {
  font-size: 0.75rem;
  font-weight: 700;
  background: #e2e8f0;
  color: #334155;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.zdhd-lineup-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.zdhd-lineup-player {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: #1e293b;
}

.zdhd-player-num {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #cbd5e1;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Venue Dossier Card */
.zdhd-venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.zdhd-venue-stat {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1rem;
}

.zdhd-venue-stat__label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
}

.zdhd-venue-stat__value {
  font-size: 1.125rem;
  font-weight: 800;
  color: #0b192c;
}

/* FAQ Accordion */
.zdhd-faq-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.zdhd-faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.zdhd-faq-item[open] {
  border-color: #155dfc;
}

.zdhd-faq-question {
  padding: 1rem 1.25rem;
  font-weight: 700;
  color: #0b192c;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.zdhd-faq-question::-webkit-details-marker {
  display: none;
}

.zdhd-faq-question::after {
  content: "+";
  font-size: 1.25rem;
  color: #155dfc;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.zdhd-faq-item[open] .zdhd-faq-question::after {
  content: "−";
}

.zdhd-faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Standings Mini Widget */
.zdhd-standings-pill {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.zdhd-standings-pill--ucl {
  background: #dbeafe;
  color: #1e40af;
}

.zdhd-standings-pill--uel {
  background: #fef3c7;
  color: #92400e;
}

