.teams_list {
  /* display: flex;
  flex-wrap: wrap;
  row-gap: 25px;
  column-gap: 25px; */
  display: grid;
  grid-template-columns: 1fr;
  /* gap: 15px; */
  gap: 16px;
}

.teams_item {
  /* width: calc(((100% - 50px) / 3)); */
  background: #ffffff;
  border-style: solid;
  border-width: 1px;
  border-color: rgb(171, 184, 195);
  /* padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 24px; */
  padding: 16px;
}

.teams_logo_link {
  background-color: rgba(0, 0, 0, 0);
  color: rgb(18, 18, 18);
  transition: ease 0.5s;
  /* display: flex;
  column-gap: 25px;
  align-items: center;
  justify-content: flex-start; */

  /* display: flex;
  flex-direction: column; */
  display: grid;
  grid-template-columns: 1fr;
  /* gap: 15px; */
  gap: 16px;
  /* margin-bottom: 5px; */
  margin-bottom: 8px;
}

.teams_logo_link:hover {
  color: rgb(251, 76, 53);
}

.teams_logo_link_img {
  /* width: 90px;
  height: 90px; */
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin: 0 auto;
}

.block_teams_logo_link_title_subtitle {
  display: flex;
  flex-direction: column;
  /* row-gap: 15px; */
  /* gap: 5px; */
  gap: 8px;
}

.teams_logo_link_title {
  /* font-size: 25px; */
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.teams_link_info_text {
  /* font-size: 16px; */
  font-size: 12px;
  font-weight: 500;
  color: rgb(134, 133, 133);
  text-align: center;
}

.teams_stat_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-bottom: 10px; */
  margin-bottom: 8px;
}

.teams_stat_item {
  border-top-width: 0;
  border-bottom-color: rgba(0, 0, 0, 0);
  border-right-color: rgba(0, 0, 0, 0);
  padding-bottom: 3px;
  padding-top: 3px;
  padding-left: 10px;
  padding-right: 5px;
  width: 25%;
}

.teams_stat_item_subtitle {
  /* font-size: 25px; */
  font-size: 16px;
  font-weight: 600;
  color: rgb(18, 18, 18);
}

.teams_stat_item_text {
  border-bottom-color: rgba(0, 0, 0, 0);
  /* font-size: 18px; */
  font-size: 14px;
  font-weight: 500;
  color: rgb(108, 107, 107);
}

.teams_stat_item_subtitle:hover {
  background-color: rgba(0, 0, 0, 0);
}

.teams_info_list {
  display: flex;
  justify-content: space-between;
  /* margin-bottom: 10px; */
  margin-bottom: 8px;
}

.teams_info_list:hover {
  background-color: rgba(0, 0, 0, 0);
}

.teams_info_item_text {
  color: rgb(18, 18, 18);
  /* font-size: 17px; */
  font-size: 12px;
  font-weight: 600;
}

.teams_info_item_text:hover {
  background-color: rgba(0, 0, 0, 0);
}

.teams_info_item {
  border-bottom-color: rgba(0, 0, 0, 0);
}

.teams_info_item_text_accent {
  border-bottom-color: rgba(0, 0, 0, 0);
  color: rgb(108, 107, 107);
}

.block_teams_link {
  display: flex;
}

.block_teams_link:hover {
  background-color: rgba(0, 0, 0, 0);
}

.teams_link {
  border-bottom-color: rgba(0, 0, 0, 0);
  background: #fb4c35;
  /* font-size: 16px; */
  font-size: 12px;
  font-weight: 600;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  transition: ease 0.5s;
  /* padding-bottom: 5px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 5px; */
  /* padding: 5px 10px; */
  padding: 8px 16px;
}

.teams_link:hover {
  background: #121212;
}

@media screen and (min-width: 576px) {
  .teams_list {
    gap: 24px;
  }

  .teams_logo_link {
    /* gap: 20px; */
    /* margin-bottom: 10px; */
  }

  .teams_logo_link_img {
    width: 90px;
    height: 90px;
  }

  .teams_logo_link_title {
    font-size: 18px;
  }

  .teams_stat_item_subtitle {
    font-size: 18px;
  }

  .teams_stat_item_text {
    font-size: 16px;
  }

  .teams_info_list {
    /* margin-bottom: 15px; */
    margin-bottom: 16px;
  }

  .teams_info_item_text {
    font-size: 14px;
  }
}

@media screen and (min-width: 768px) {
  .teams_list {
    grid-template-columns: repeat(2, 1fr);
  }
  .teams_stat_item_subtitle {
    font-size: 16px;
  }
  .teams_stat_item_text {
    font-size: 14px;
  }
  .teams_info_item_text {
    font-size: 12px;
  }

  .teams_item {
    /* padding: 18px; */
    padding: 16px;
  }
}

@media screen and (min-width: 1024px) {
  .teams_logo_link_title {
    font-size: 20px;
  }

  .teams_stat_item_subtitle {
    font-size: 20px;
  }

  .teams_stat_item_text {
    font-size: 18px;
  }

  .teams_info_item_text {
    font-size: 16px;
  }

  .teams_link {
    /* padding: 5px 15px; */
    padding: 8px 16px;
    font-size: 14px;
  }
}

@media screen and (min-width: 1200px) {
  .teams_list {
    grid-template-columns: repeat(3, 1fr);
  }

  .teams_info_item_text {
    font-size: 14px;
  }

  .teams_item {
    /* padding: 20px; */
    padding: 24px;
  }
}

@media screen and (min-width: 1440px) {
  .teams_item {
    padding: 24px;
  }

  .teams_logo_link {
    display: flex;
    /* gap: 25px; */
    gap: 24px;
    /* align-items: center; */
    justify-content: flex-start;
  }

  .teams_logo_link_img {
    margin: 0;
  }

  .teams_logo_link_title {
    text-align: left;
    font-size: 25px;
  }

  .teams_link_info_text {
    text-align: left;
    font-size: 16px;
  }
}
