.matches-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin: -12px 0 32px;
  padding: 4px 0 10px;
  scrollbar-width: thin;
}

.matches-filters button {
  flex: 0 0 auto;
  border: 1px solid #d7d1ca;
  background: #fff;
  padding: 11px 15px;
  color: #151515;
  font: 700 11px var(--text);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.matches-filters button span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 7px;
  padding: 0 6px;
  background: #eee9e3;
  color: #666;
  font-size: 9px;
}

.matches-filters button.active {
  border-color: #151515;
  background: #151515;
  color: #fff;
}

.matches-filters button.active span {
  background: #b01e27;
  color: #fff;
}

.matches-main .matches-season {
  display: block;
}

.match-month {
  margin-bottom: 42px;
}

.match-month > h2 {
  margin: 0 0 18px;
  padding-bottom: 11px;
  border-bottom: 2px solid #151515;
  font-size: 36px;
  text-transform: capitalize;
}

.match-month__grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
}

@media (max-width: 991px) {
  .match-month__grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 650px) {
  .matches-filters {
    margin-top: 25px;
  }

  .match-month > h2 {
    font-size: 31px;
  }

  .match-month__grid {
    grid-template-columns: 1fr;
  }
}
