/* Match results section */
#resultats {
  background: var(--bg2);
}
.res-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 28px;
  background: linear-gradient(180deg, var(--surface-shine), transparent);
}
.res-stat {
  flex: 1;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.res-stat:last-child {
  border-right: 0;
}
.res-stat .n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
}
.res-stat .u {
  color: var(--green-b);
}
.res-stat .t {
  font-size: 12px;
  color: var(--fg3);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-display);
}
.res-list {
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.res-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  transition: background 0.18s;
  flex-wrap: wrap;
}
.res-row:last-child {
  border-bottom: 0;
}
.res-row:hover {
  background: var(--surface-hover);
}
.res-date {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--fg3);
  width: 86px;
  flex: none;
}
.res-loc {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
  flex: none;
  color: var(--fg2);
}
.res-opp {
  flex: 1;
  min-width: 120px;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
}
.res-score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
  flex: none;
  letter-spacing: 0.02em;
}
.res-loc--home {
  background: var(--green-tint-strong);
}

.res-loc--away {
  background: var(--loc-away-bg);
}
.res-dash {
  color: var(--fg3);
  font-weight: 400;
}
.res-result {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid;
  flex: none;
}
