.videos_list {
  /* display: flex;
  flex-wrap: wrap;
  row-gap: 25px;
  column-gap: 25px; */
  display: grid;
  grid-auto-columns: 1fr;
  gap: 16px;
}
.videos_item {
  /* width: calc(calc((100% - 50px) / 3)); */
}

.imv {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.play_icon_small {
  height: 90px;
  width: 90px;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: scale 1s;
  scale: 1;
}

.play_icon_small:hover {
  scale: 1.1;
}

.block_videos_info {
  padding: 16px 0;
}

.videos_info_date {
  color: rgb(165, 166, 170);
  /* font-size: 15px; */
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 10px;
}

.videos_info_title {
  /* font-size: 20px; */
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: 8px;
}

.news_info_list {
  align-items: center;
  display: flex;
  gap: 16px;
}

.news_info_item {
  align-items: center;
  display: flex;
  gap: 8px;
  padding-right: 8px;
}

.news_info_subtitle_after::after {
  content: "";
  border-radius: 50%;
  height: 4px;
  width: 4px;
  position: absolute;
  left: 100%;
  top: 50%;
  background: #a5a6aa;
  transform: translateY(-50%);
}

.news_info_item_text {
  /* font-size: 15px; */
  font-size: 11px;
  font-weight: 500;
  color: rgb(165, 166, 170);
}

@media screen and (min-width: 768px) {
  .videos_list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .videos_info_date {
    font-size: 13px;
  }

  .videos_info_title {
    font-size: 18px;
  }

  .news_info_item_text {
    font-size: 13px;
  }
}

@media screen and (min-width: 1200px) {
  .videos_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .block_videos_info {
    padding: 24px 0;
  }
}

@media screen and (min-width: 1440px) {
  .videos_info_date {
    font-size: 15px;
  }

  .videos_info_title {
    font-size: 20px;
  }

  .news_info_item_text {
    font-size: 15px;
  }
}
