.news_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.news_item_pagination {
  transform: translateY(30px);
  transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.9s ease;
}

.news_item_pagination.fade {
  opacity: 1;
  transform: translateY(0);
}

.news_title {
  font-size: 16px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news_img_wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.news_img_wrap img {
  transition: transform 0.9s ease;
}

.content_link:hover .news_img_wrap img {
  transform: scale(1.1);
}

.news_subtitle {
  font-size: 12px;
  font-weight: 600;
  color: #747683;
  margin-bottom: 8px;
}

.news_info_wrap {
  padding: 16px 0 0;
}

@media screen and (min-width: 768px) {
  .news_list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .news_title {
    font-size: 18px;
  }

  .news_subtitle {
    font-size: 14px;
  }
}

@media screen and (min-width: 1200px) {
  .news_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .news_info_wrap {
    padding: 24px 0 0;
  }
}

@media screen and (min-width: 1440px) {
  .news_title {
    font-size: 20px;
  }

  .news_subtitle {
    font-size: 16px;
  }
}
