.news_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.news_item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 0px 5px rgba(0, 0, 64, 0.5);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.9s ease;
}

.slider_news_item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 64, 0.5);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.9s ease;
}

.news_item.hidden {
  opacity: 0;
  transform: translateY(20px);
  display: none;
}

.news_item.showing {
  display: block;
}

.news_item:hover {
  box-shadow: 0px 0px 25px rgba(0, 0, 64, 0.5);
}

.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_info_wrap {
  background: #ffffff;
  padding: 16px;
}

.news_info_subtitle {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgb(165, 165, 165);
  margin-bottom: 8px;
}

.news_info_title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news_info_text {
  font-size: 11px;
  font-weight: 500;
  color: rgb(26, 49, 60);
  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_subtitle {
    font-size: 14px;
  }

  .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_subtitle {
    font-size: 16px;
  }

  .news_info_title {
    font-size: 20px;
  }

  .news_info_text {
    font-size: 15px;
  }
}
