.hpd-sports-board {
  --hpd-navy: #0b1d3a;
  --hpd-gold: #b8860b;
  --hpd-line: #e7ecf2;
  --hpd-soft: #f8fafc;
  --hpd-text: #0f172a;
  margin: 18px 0;
  font-family: inherit;
}

.hpd-sports-board-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--hpd-navy);
  color: #fff;
  padding: 12px 16px;
  border-left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.hpd-sports-board-title {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.hpd-sports-board-meta {
  font-size: 11px;
  color: #d8dee9;
}

.hpd-sports-grid {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}

.hpd-game-card {
  display: grid;
  grid-template-columns: 1fr 70px 1fr 90px;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid var(--hpd-line);
  background: linear-gradient(180deg, #fff, var(--hpd-soft));
  box-shadow: 0 1px 2px rgba(15, 23, 42, .06);
}

.hpd-team {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.hpd-team.home {
  justify-content: flex-end;
  text-align: right;
}

.hpd-team-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex: 0 0 auto;
}

.hpd-team-logo-fallback {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0b1d3a;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2px;
  flex: 0 0 auto;
}

.hpd-team-name {
  font-weight: 800;
  font-size: 12px;
  color: var(--hpd-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hpd-score {
  background: var(--hpd-navy);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  padding: 4px 6px;
}

.hpd-game-state {
  text-align: right;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  color: #475569;
}

.hpd-game-state.live {
  color: #991b1b;
}

.hpd-game-state.final {
  color: #166534;
}

.hpd-game-note {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #64748b;
  margin-top: 2px;
}

@media (max-width: 720px) {
  .hpd-game-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hpd-team-logo,
  .hpd-team-logo-fallback {
    width: 32px;
    height: 32px;
  }

  .hpd-team,
  .hpd-team.home {
    justify-content: center;
    text-align: center;
  }

  .hpd-game-state {
    text-align: center;
  }
}

.hpd-sports-nav {
  margin: 0 0 20px 0;
  border-bottom: 2px solid var(--hpd-line);
}

.hpd-sports-nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 15px;
  overflow-x: auto;
  white-space: nowrap;
}

.hpd-sports-nav-list li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #475569;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
}

.hpd-sports-nav-list li a:hover {
  color: var(--hpd-navy);
}

.hpd-sports-nav-list li a.active {
  color: var(--hpd-navy);
  border-bottom-color: var(--hpd-gold);
}


/* Ajustes Inmediatos de Prioridad (CoverNews/Newsport override) */
.entry-content .hpd-sports-board {
  width: 100% !important;
  max-width: 100% !important;
  margin: 16px 0 24px !important;
}

.entry-content .hpd-game-card {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 90px minmax(0, 1fr) 100px !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 12px !important;
  border-radius: 0 !important;
  background: linear-gradient(180deg, #fff, var(--hpd-soft));
  /* Keep the gradient */
}

.entry-content .hpd-team-logo {
  width: 30px !important;
  height: 30px !important;
  object-fit: contain !important;
  margin: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.entry-content .hpd-team-name {
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  color: var(--hpd-text) !important;
}

.entry-content .hpd-score {
  min-width: 82px !important;
  font-size: 18px !important;
  padding: 6px 8px !important;
  border-radius: 0 !important;
  background: var(--hpd-navy) !important;
  color: #fff !important;
}

.entry-content .hpd-game-state {
  font-size: 11px !important;
  text-align: right !important;
}
