.results_list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.results_item {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 0px 5px rgba(254, 89, 0, 0.5);
  transition: ease 0.5s;
  background: #f6f6f6;
  padding: 16px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.results_item_width {
  width: 100%;
}

.results_item:hover {
  box-shadow: 0px 0px 25px rgba(254, 89, 0, 0.5);
}

.team_meet_score_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.team_meet_score_link {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 25%;
  flex: 2 1;
  transition: ease 0.5s;
  color: rgb(3, 5, 35);
}

.team_meet_score_link:hover {
  color: rgb(255, 172, 75);
}

.team_meet_score_link_img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.team_meet_score_link_title {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  width: 70%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.team_meet_score_value_wrap {
  background: #fe5900;
  border-radius: 99px;
  padding: 5px;
  min-width: 90px;
  text-align: center;
}

.team_meet_score_value {
  font-size: 18px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  text-align: center;
}

.team_meet_date_wrap {
  border-top: 2px solid rgba(165, 165, 165, 0.35);
  padding-top: 10px;
}

.team_meet_date {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgb(3, 5, 35);
  text-align: center;
}

@media screen and (min-width: 576px) {
  .results_list {
    gap: 20px;
  }

  .team_meet_score_link_img {
    width: 45px;
    height: 45px;
  }
}

@media screen and (min-width: 768px) {
  .results_item {
    padding: 20px;
  }

  .results_item_width {
    width: calc((100% - 20px) / 2);
  }
}

@media screen and (min-width: 1024px) {
  .results_list {
    gap: 25px;
  }

  .results_item {
    padding: 24px;
  }

  .results_item_width {
    width: calc((100% - 50px) / 3);
  }

  .team_meet_score_link_img {
    width: 50px;
    height: 50px;
  }

  .team_meet_date {
    font-size: 16px;
  }
}

@media screen and (min-width: 1200px) {
  .team_meet_score_link_img {
    width: 55px;
    height: 55px;
  }

  .team_meet_score_value_wrap {
    padding: 8px;
  }
}
