.teams_list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.teams_item {
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  box-shadow: 0px 0px 5px rgba(254, 89, 0, 0.5);
  display: flex;
  flex-wrap: wrap;
  background: #f6f6f6;
  transition: ease 0.5s;
}

.teams_item:hover {
  box-shadow: 0px 0px 25px rgba(254, 89, 0, 0.5);
}

.teams_left_wrap {
  padding: 16px;
  border-bottom: 3px solid rgb(255, 172, 75);
  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: rgb(3, 5, 35);
  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: rgb(255, 172, 75);
}

.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: rgb(105, 105, 105);
  display: flex;
  justify-content: center;
}

.teams_right_link:hover {
  color: rgb(255, 172, 75);
}

.teams_left_wrap:hover + .teams_right_wrap .teams_right_link_title {
  color: rgb(255, 172, 75);
}

@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 rgb(255, 172, 75);
    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;
  }
}
