.teams_list {
  /* display: flex;
  flex-wrap: wrap;
  row-gap: 25px;
  column-gap: 25px; */
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.teams_item {
  border-style: solid;
  border-width: 1px;
  border-color: rgb(222, 222, 219);
  display: flex;
}

.block_teams_left {
  width: 40%;
}

.teams_left_link {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
  transition: scale 1s;
  scale: 1;
}

.teams_left_link:hover {
  scale: 1.1;
}

.teams_left_link_img {
  height: 90px;
  width: 90px;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}

.block_teams_right {
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
  width: 100%;
  background: #ffffff;
}

.teams_right_title {
  /* font-size: 20px; */
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: rgb(34, 37, 45);
}

.teams_right_subtitle {
  font-size: 11px;
  font-weight: 700;
  color: rgb(165, 166, 170);
  margin-bottom: 16px;
}

.teams_right_records_list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.teams_right_records_item {
  /* padding-bottom: 3px;
  padding-left: 10px;
  padding-right: 3px;
  padding-top: 3px; */
  padding: 8px;
}

.teams_right_records_item_title {
  font-size: 11px;
  font-weight: 700;
  color: rgb(121, 124, 127);
}

.teams_right_records_item_text {
  font-size: 10px;
  font-weight: 600;
  color: rgb(121, 124, 127);
}

.teams_right_info_list {
  display: flex;
  margin-bottom: 16px;
  justify-content: space-between;
}

.teams_right_info_item {
}

.teams_right_info_item_text {
  font-size: 12px;
  font-weight: 700;
  color: rgb(20, 24, 39);
}

.teams_right_link {
  background: #e03821;
  border-radius: 30px;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: 700;
  /* padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px; */
  padding: 8px;
  transition: ease 0.5s;
}

.teams_right_link:hover {
  background: #c4301c;
}

@media screen and (min-width: 768px) {
  .teams_list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .teams_right_title {
    font-size: 16px;
  }

  .teams_right_subtitle {
    font-size: 13px;
  }

  .teams_right_records_item_title {
    font-size: 13px;
  }

  .teams_right_info_item_text {
    font-size: 14px;
    font-weight: 700;
    color: rgb(20, 24, 39);
  }
}

@media screen and (min-width: 1200px) {
  .teams_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media screen and (min-width: 1440px) {
  .teams_right_title {
    font-size: 18px;
  }

  .teams_right_subtitle {
    font-size: 15px;
  }

  .teams_right_records_item_title {
    font-size: 15px;
  }
}
