.teams_list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.teams_item {
  background-color: #2c2f37;
  border-radius: 8px;
  border: 1px solid #696d7e;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  transition: ease 0.5s;
}

.teams_left_wrap {
  padding: 16px;
  border-bottom: 3px solid #696d7e;
  width: 100%;
}

.teams_left_link_img {
  height: 90px;
  width: 90px;
  object-fit: contain;
  margin: 0 auto;
}

.teams_right_wrap {
  padding: 16px;
  width: 100%;
}

.teams_right_link_title {
  font-size: 16px;
  font-weight: 700;
  color: #eaeaee;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
  transition: ease 0.5s;
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.teams_right_link_title:hover {
  color: #c30f25;
}

.teams_right_link_list {
  display: flex;
  justify-content: center;
  align-items: center;
}

.teams_right_link_item {
  width: 25%;
}

.teams_right_link {
  font-size: 14px;
  font-weight: 500;
  transition: ease 0.5s;
  color: #eaeaee;
  display: flex;
  justify-content: center;
}

.teams_right_link:hover {
  color: #c30f25;
}

.teams_left_wrap:hover + .teams_right_wrap .teams_right_link_title {
  color: #c30f25;
}

@media screen and (min-width: 576px) {
  .teams_list {
    gap: 20px;
  }

  .teams_item {
    width: calc((100% - 20px) / 2);
  }
}

@media screen and (min-width: 768px) {
  .teams_left_wrap {
    padding: 20px;
  }

  .teams_left_link_img {
    height: 100px;
    width: 100px;
  }

  .teams_right_wrap {
    padding: 20px;
  }

  .teams_right_link_title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .teams_right_link {
    font-size: 16px;
  }
}

@media screen and (min-width: 1024px) {
  .teams_list {
    gap: 25px;
  }

  .teams_item {
    width: calc((100% - 50px) / 3);
  }
}

@media screen and (min-width: 1200px) {
  .teams_left_wrap {
    border-right: 5px solid #696d7e;
    border-bottom: none;
    width: 30%;
  }

  .teams_right_wrap {
    width: 70%;
  }

  .teams_right_link_title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .teams_right_link_list {
    justify-content: space-between;
  }

  .teams_right_link_item {
    width: auto;
  }

  .teams_right_link {
    font-size: 18px;
  }
}

@media screen and (min-width: 1440px) {
  .teams_left_wrap {
    padding: 24px;
  }

  .teams_left_link_img {
    width: 100%;
  }

  .teams_right_wrap {
    padding: 24px;
  }
}
