.matches__container {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 50px;
}

.matches .title {
  text-transform: uppercase;
}

.matches .label {
  text-transform: uppercase;
  color: var(--green-bright);
}

.matches__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--line-color);
  border-radius: var(--radius-main);
  overflow: hidden;
}

.match {
  background: var(--card);
  padding: 1.4rem 1.8rem;
  transition: background 0.2s;
}

.match__data {
  display: grid;
  grid-template-columns: 90px 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
}

.match:hover {
  background: var(--muted);
}

.match--past {
  opacity: 0.65;
}

.match__badge {
  margin-bottom: 10px;
}

.match__type {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  line-height: 1.1;
  margin-right: 10px
}

.match__tier {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  max-width: max-content;
}

.match__date {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--green-bright);
  line-height: 1.1;
}

.match__day {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.match__teams {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.match__team-accent {
  font-style: normal;
  color: var(--green-bright);
}

.match__vs {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  font-weight: 500;
  margin: 0 0.7rem;
}

.match__venue {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: right;
}

/* Badge Component */
.badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  display: inline-block;
  text-align: center;
}

.badge--upcoming {
  border: 1px solid var(--green);
  color: var(--green-bright);
}

.badge--win {
  background: var(--accent);
  color: var(--accent-foreground);
}

.badge--loss {
  background: var(--destructive);
  color: #fff;
}

.matches a:hover {
  color: var(--green-bright);
}

@media (max-width: 768px) {
  .match {
    grid-template-columns: 70px 1fr;
  }
  .match__venue {
    display: none;
  }
}
