.news_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.news_item_pagination {
  transform: translateY(30px);
  transition: transform 0.9s ease, opacity 0.9s ease;
}

.news_item_pagination.fade {
  opacity: 1;
  transform: translateY(0);
}

.news_img_wrap {
  aspect-ratio: 16/9;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.news_img_wrap img {
  transition: transform 0.9s ease;
}

.content_link:hover .news_img_wrap img {
  transform: scale(1.1);
}

.news_subtitle_wrap {
  position: absolute;
  left: 5%;
  bottom: 0;
  background-color: #000000;
  padding: 4px 8px;
  transition: all 0.9s ease;
}

.content_link:hover .news_subtitle_wrap {
  background-color: #024274;
}

.news_subtitle {
  font-size: 12px;
  font-weight: 600;
  color: #999;
  transition: all 0.9s ease;
}

.content_link:hover .news_subtitle {
  color: #ffffff;
}

.news_info_wrap {
  background-color: #e9e9e9;
  border: 1px solid #e0e0e0;
  padding: 16px;
}

.news_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: 8px;
}

.news_info_text {
  font-size: 11px;
  font-weight: 500;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (min-width: 768px) {
  .news_list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .news_info_title {
    font-size: 18px;
  }

  .news_info_text {
    font-size: 13px;
  }
}

@media screen and (min-width: 1200px) {
  .news_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .news_info_wrap {
    padding: 24px;
  }
}

@media screen and (min-width: 1440px) {
  .news_info_title {
    font-size: 20px;
  }

  .news_info_text {
    font-size: 15px;
  }
}
