.results_list {
  /* align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  row-gap: 25px;
  column-gap: 25px; */
  display: grid;
  grid-template-columns: 1fr;
  /* gap: 15px; */
  gap: 16px;
}

.results_item {
  /* width: calc(((100% - 50px) / 3)); */
  /* padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 24px; */
  padding: 16px;
  display: flex;
  justify-content: space-evenly;
  /* gap: 15px; */
  gap: 16px;
  border-style: solid;
  border-width: 1px;
  border-color: rgb(171, 184, 195);
  background: #ffffff;
}

.results_left_item {
  /* margin-bottom: 10px; */
  margin-bottom: 8px;
}

.results_left_item:last-child {
  margin-bottom: 0;
}

.results_left_link {
  display: flex;
  align-items: center;
  /* column-gap: 10px; */
  /* gap: 5px; */
  gap: 8px;
  transition: ease 0.5s;
  color: rgb(18, 18, 18);
}

.results_left_link:hover {
  color: rgb(251, 76, 53);
}

.results_left_link_img {
  /* height: 30px;
  width: 30px; */
  height: 20px;
  width: 20px;
  object-fit: contain;
}

.results_left_link_title {
  font-size: 16px;
  /* font-size: 18px; */
  font-weight: 600;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
}

.block_results_value {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* row-gap: 10px; */
  /* gap: 5px; */
  /* gap: 8px; */
  align-items: center;
}

.results_value {
  /* font-size: 20px; */
  font-size: 16px;
  font-weight: 500;
  color: rgb(18, 18, 18);
}

.block_results_right {
  /* padding-left: 16px;
  border-style: solid;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 2px;
  border-left-color: rgb(230, 231, 232);
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
  justify-content: center;
  margin-left: 16px; */
  display: none;
}

.results_link_img {
  height: 70px;
  width: 100px;
}

.block_results_play_status {
  align-items: center;
  display: flex;
  /* column-gap: 10px; */
  gap: 8px;
  position: absolute;
  left: 5%;
  bottom: 5%;
}

.results_play_status {
  border-top-color: rgba(0, 0, 0, 0);
  font-size: 12px;
  font-weight: 600;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
}

@media screen and (min-width: 576px) {
  .results_list {
    /* gap: 20px; */
  }

  .results_item {
    /* padding: 18px; */
    padding: 16px;
  }
}

@media screen and (min-width: 768px) {
  .results_item {
    justify-content: flex-start;
  }

  .results_left_link {
    /* gap: 10px; */
  }

  .results_left_link_img {
    height: 25px;
    width: 25px;
  }

  .results_left_link_title {
    font-size: 18px;
  }

  .block_results_value {
    /* gap: 10px; */
    gap: 16px;
  }

  .results_value {
    font-size: 18px;
  }

  .block_results_right {
    padding-left: 16px;
    border-style: solid;
    border-top-width: 0;
    border-right-width: 0;
    border-bottom-width: 0;
    border-left-width: 2px;
    border-left-color: rgb(230, 231, 232);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* row-gap: 10px; */
    justify-content: center;
    margin-left: 16px;
  }

  .results_left_item {
    /* margin-bottom: 20px; */
    margin-bottom: 24px;
  }

  .results_link_img {
    /* height: 70px; */
    /* width: 100px; */
    width: 125px;
  }
}

@media screen and (min-width: 1024px) {
  .results_list {
    grid-template-columns: repeat(2, 1fr);
    /* gap: 25px; */
    gap: 24px;
  }

  .results_link_img {
    width: 100px;
  }
}

@media screen and (min-width: 1200px) {
  .results_list {
    grid-template-columns: repeat(3, 1fr);
  }
}
