.teams_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.teams_item {
  display: flex;
  flex-direction: column;
  border: 2px solid #adccf9;
}

.teams_left_wrap {
  background-color: #adccf9;
  width: 100%;
}

.teams_left_link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 16px;
}

.teams_left_link_img {
  height: 100px;
  width: 100px;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}

.teams_right_wrap {
  background-color: #f6f5f4;
  width: 100%;
  padding: 16px;
}

.teams_right_title {
  font-size: 20px;
  font-weight: 700;
  color: #040113;
  text-align: center;
  margin-bottom: 8px;
}

.teams_item:has(.teams_left_link:hover) .teams_right_title {
  color: #fc0307;
  transition: all 0.5s ease;
}

.teams_right_subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #5b5a5f;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.teams_right_stat_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.teams_right_stat_title {
  font-size: 18px;
  font-weight: 700;
  color: #040113;
  text-align: center;
}

.teams_right_stat_text {
  font-size: 14px;
  font-weight: 500;
  color: #5b5a5f;
  text-align: center;
}

.teams_right_info_list {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.teams_right_info_item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.teams_right_info_item_title {
  font-size: 18px;
  font-weight: 700;
  color: #040113;
}

.teams_right_info_item_text {
  font-size: 14px;
  font-weight: 500;
  color: #5b5a5f;
}

.teams_right_link {
  font-size: 20px;
  font-weight: 600;
  color: #040113;
  text-transform: uppercase;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
}

.teams_right_link:hover {
  color: #fc0307;
}

@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: 22px;
  }

  .teams_right_subtitle {
    font-size: 18px;
  }

  .teams_right_stat_title {
    font-size: 20px;
  }

  .teams_right_stat_text {
    font-size: 16px;
  }

  .teams_right_info_item_title {
    font-size: 20px;
  }

  .teams_right_info_item_text {
    font-size: 16px;
  }

  .teams_right_link {
    font-size: 18px;
  }
}

@media screen and (min-width: 1200px) {
  .teams_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .teams_item {
    flex-direction: row;
  }

  .teams_left_wrap {
    width: 30%;
  }

  .teams_right_wrap {
    width: 70%;
  }

  .teams_right_title {
    text-align: left;
  }

  .teams_right_subtitle {
    text-align: left;
  }

  .teams_right_stat_list {
    grid-template-columns: repeat(4, 1fr);
    justify-items: flex-start;
  }

  .teams_right_stat_title {
    font-size: 16px;
    text-align: left;
  }

  .teams_right_stat_text {
    font-size: 12px;
    text-align: left;
  }

  .teams_right_info_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .teams_right_info_list li:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .teams_right_info_item_title {
    font-size: 16px;
  }

  .teams_right_info_item_text {
    font-size: 14px;
  }

  .teams_right_link {
    font-size: 16px;
    justify-content: flex-start;
  }
}
