/* ==============================================
   Scores Strip — matches template scores-bar
   ============================================== */
.ch-scores-strip {
  background: var(--navy-mid, #00408A);
  border-top: 1px solid rgba(168, 184, 200, 0.12);
  border-bottom: 1px solid rgba(168, 184, 200, 0.12);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ch-scores-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: stretch;
  width: 100%;
}

/* "Results" label on the left */
.ch-scores-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--silver);
  padding: 18px 24px 18px 0;
  border-right: 1px solid rgba(168, 184, 200, 0.15);
  margin-right: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Empty state */
.ch-scores-empty {
  width: 100%;
  padding: 18px 24px;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(168, 184, 200, 0.5);
}

/* Score item */
.ch-score-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 28px;
  border-right: 1px solid rgba(168, 184, 200, 0.08);
  flex-shrink: 0;
}

.ch-score-item:last-child {
  border-right: none;
}

/* Date */
.ch-score-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(168, 184, 200, 0.5);
  line-height: 1.5;
  flex-shrink: 0;
}

/* Matchup */
.ch-score-matchup {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.ch-score-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: 'Teko', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--white);
}

.ch-score-sep {
  color: rgba(168, 184, 200, 0.3);
  font-size: 14px;
}

/* Team logos */
.ch-score-logo {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

.ch-score-logo-upcoming {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.ch-score-team {
  color: var(--white);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.ch-score-pts {
  min-width: 14px;
  text-align: right;
  color: var(--white);
  flex-shrink: 0;
}

.ch-score-row.won .ch-score-team,
.ch-score-row.won .ch-score-pts {
  color: var(--white);
}

.ch-score-row.lost .ch-score-team,
.ch-score-row.lost .ch-score-pts {
  color: rgba(168, 184, 200, 0.4);
}

/* Status tag / pill */
.ch-score-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  padding: 3px 10px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 1px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Win/Loss/Tie pills */
.ch-score-tag-w,
.ch-score-tag[data-result="W"] {
  background: rgba(120, 210, 140, 0.15);
  color: #78D28C;
}

.ch-score-tag-l,
.ch-score-tag[data-result="L"],
.ch-score-tag[data-result="OTL"] {
  background: rgba(210, 100, 100, 0.15);
  color: #D26464;
}

.ch-score-tag-t,
.ch-score-tag[data-result="T"] {
  background: rgba(168, 184, 200, 0.12);
  color: var(--silver);
}

.ch-score-tag-next {
  background: rgba(100, 180, 220, 0.12);
  color: #64B4DC;
  padding: 3px 10px;
}

/* Upcoming game */
.ch-score-upcoming {
  min-width: 0;
}

.ch-score-upcoming-label {
  font-family: 'Teko', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ch-score-upcoming-detail {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(168, 184, 200, 0.5);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
