.sports-page h1 {
  margin-bottom: 24px;
  max-width: 950px;
}
.sportsLettersTitle {
  margin-top: 48px;
  font-family: 'Gilroy 600', sans-serif;
  font-size: 20px;
  color: #18313F;
}
.letterWrap {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.letterWrap_letter {
  text-transform: uppercase;
  color: #333058;
  cursor: pointer;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  white-space: nowrap;
  background: white;
  border-radius: 12px;
  padding: 6px 14px;
  transition: all 0.2s;
}
.letterWrap_letter:hover {
  background: #FFEEED;
  color: #ED534F;
}
.letterWrap_letter > strong {
  color: #ED534F;
  font-weight: 700;
}
.sportsWrapper {
  margin-top: 24px;
  font-family: 'IBM Plex Sans', sans-serif;
  background: white;
  border-radius: 24px;
  padding: 32px 32px 32px 0;
  color: #333058;
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  gap: 24px;
}
.sportsWrapper_item span {
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.sportsList {
  margin: 0;
  list-style-type: none;
  padding: 0;
  font-size: 16px;
  line-height: 24px;
}
.sportsList li:not(:first-child) {
  margin-top: 8px;
}
.sportsList li a {
  color: #333058;
  text-decoration: underline;
}
.sportsList li a:hover {
  color: #ED534F;
}
@media screen and (max-width: 1100px) {
  .sportsWrapper {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .sportsWrapper {
    grid-template-columns: minmax(100px, 1fr);
    padding: 16px 16px 16px 0;
  }
}
