/* Full matches archive */
.matches-all-wrap {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.matches-all-wrap .button {
  min-width: 184px;
}

.matches-page {
  min-height: 100vh;
  padding-top: var(--header-height);
}

.matches-archive-hero {
  padding-block: 76px 58px;
}

.matches-archive-hero .section-kicker {
  margin-bottom: 20px;
}

.matches-archive-hero h1 {
  max-width: 950px;
  font-size: clamp(42px, 7.1vw, 102px);
  letter-spacing: -.065em;
  line-height: .93;
  text-transform: uppercase;
}

.matches-archive-hero h1 em {
  color: var(--red);
  font-style: normal;
}

.matches-archive-hero > p:not(.section-kicker) {
  max-width: 540px;
  margin-top: 25px;
  color: var(--gray-300);
}

.matches-archive-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line);
  background: var(--line);
}

.matches-archive-stats div {
  min-width: 150px;
  flex: 1;
  padding: 16px 20px;
  background: rgba(13, 13, 16, .9);
}

.matches-archive-stats dt {
  color: var(--gray-500);
  font-family: "Arial Black", "Segoe UI Black", sans-serif;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.matches-archive-stats dd {
  margin: 5px 0 0;
  color: var(--red-bright);
  font-family: "Arial Black", "Segoe UI Black", sans-serif;
  font-size: 30px;
  line-height: 1;
}

.matches-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 104px;
}

.matches-archive-grid .match-card {
  min-height: 448px;
}

.matches-archive-grid .match-teams {
  min-height: 258px;
}

.matches-archive-grid .tournament {
  max-width: 66%;
  line-height: 1.28;
}

.match-team img.logo-tile {
  border-radius: 14px;
}

@media (max-width: 760px) {
  .matches-archive-hero { padding-block: 52px 40px; }
  .matches-archive-stats { margin-top: 32px; }
  .matches-archive-grid { grid-template-columns: 1fr; padding-bottom: 70px; }
}

@media (max-width: 560px) {
  .matches-archive-stats div { min-width: 0; padding: 14px; }
  .matches-archive-stats dd { font-size: 25px; }
  .matches-archive-grid .match-card { min-height: 0; }
  .matches-archive-grid .match-teams { min-height: 218px; }
}
