.videos_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.videos_item_pagination {
  transform: translateY(30px);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.videos_item_pagination.fade {
  opacity: 1;
  transform: translateY(0);
}

.videos_img_wrap {
  aspect-ratio: 16/9;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.videos_play_img {
  font-size: 70px;
  font-weight: 600;
  color: #ffffff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.5s ease;
}

.content_link:hover .videos_play_img {
  transform: translate(-50%, -50%) scale(1.1);
}

.videos_duration_wrap {
  position: absolute;
  top: 5%;
  right: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  padding: 8px;
}

.videos_duration_text {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.videos_info_wrap {
  padding-top: 16px;
}

.videos_info_title {
  font-size: 16px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 24px;
}

.videos_info_subtitle_wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.videos_info_subtitle_img {
  font-size: 12px;
  font-weight: 600;
  color: #707070;
}

.videos_info_subtitle {
  font-size: 12px;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .videos_list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .videos_info_title {
    font-size: 18px;
  }

  .videos_info_subtitle_img {
    font-size: 14px;
  }

  .videos_info_subtitle {
    font-size: 14px;
  }
}

@media screen and (min-width: 1200px) {
  .videos_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .videos_info_wrap {
    padding-top: 16px;
  }
}

@media screen and (min-width: 1440px) {
  .videos_info_title {
    font-size: 20px;
  }

  .videos_info_subtitle_img {
    font-size: 16px;
  }

  .videos_info_subtitle {
    font-size: 16px;
  }
}
