.videos_list {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr;
}

.videos_item {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  border: 1px solid #696d7e;
  transition: ease 0.5s;

  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.9s ease;
}

.videos_item.hidden {
  opacity: 0;
  transform: translateY(20px);
  display: none;
}

.videos_item.showing {
  display: block;
}

.videos_link {
  color: #eaeaee;
  transition: ease 0.5s;
  position: relative;
}

.videos_link:hover {
  color: #c30f25;
}

.videos_link_img_wrap {
  height: 250px;
}

.videos_play_icon {
  height: 90px;
  width: 90px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.videos_info_wrap {
  padding: 16px;
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
}

.videos_info_title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.videos_duration_wrap {
  border-radius: 5px;
  padding: 3px 5px;
  position: absolute;
  right: 2%;
  top: 2%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}

.videos_duration {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #eaeaee;
}

@media screen and (min-width: 576px) {
  .videos_top_wrapper {
    gap: 20px;
    margin-bottom: 20px;
  }

  .videos_top_list {
    gap: 20px;
  }

  .videos_list {
    gap: 20px;
  }
}

@media screen and (min-width: 768px) {
  .videos_left_link_img_wrap {
    height: 350px;
  }

  .videos_left_play_icon {
    height: 110px;
    width: 110px;
  }

  .videos_left_info_wrap {
    padding: 18px;
  }

  .videos_left_info_title {
    font-size: 18px;
  }

  .videos_left_duration {
    font-size: 13px;
  }

  .videos_top_list {
    flex-direction: row;
  }

  .videos_list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .videos_top_wrapper {
    display: grid;
    grid-template-columns: 65% 1fr;
    gap: 25px;
    margin-bottom: 25px;
    align-items: stretch;
  }

  .videos_left_wrap {
    width: 100%;
    height: 100%;
  }

  .videos_left_link_img_wrap {
    height: 100%;
  }

  .videos_top_list {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 25px;
    width: 100%;
  }

  .videos_right_link_img_wrap {
    height: 100%;
  }

  .videos_list {
    gap: 25px;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1200px) {
  .videos_top_wrapper {
    margin-bottom: 30px;
  }

  .videos_left_play_icon {
    height: 130px;
    width: 130px;
  }

  .videos_left_info_wrap {
    padding: 20px;
  }

  .videos_left_info_title {
    font-size: 20px;
  }

  .videos_left_duration_wrap {
    padding: 5px 7px;
  }

  .videos_right_play_icon {
    height: 100px;
    width: 100px;
  }

  .videos_info_title {
    font-size: 18px;
  }

  .videos_duration {
    font-size: 12px;
  }
}

@media screen and (min-width: 1440px) {
  .videos_left_play_icon {
    height: 150px;
    width: 150px;
  }

  .videos_left_info_wrap {
    padding: 24px;
  }

  .videos_left_info_title {
    font-size: 25px;
  }

  .videos_left_duration {
    font-size: 15px;
  }

  .videos_right_play_icon {
    height: 110px;
    width: 110px;
  }

  .videos_right_info_title {
    font-size: 18px;
  }

  .videos_right_duration {
    font-size: 12px;
  }
}
