.news_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.news_item_pagination {
  border: 1px solid #eaeaea;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 27, 0.25);
  transform: translateY(30px);
  transition: box-shadow 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.news_item_pagination.fade {
  opacity: 1;
  transform: translateY(0);
}

.news_item_pagination:hover {
  box-shadow: 0 0 25px rgba(0, 0, 27, 0.5);
}

.news_item_slider {
  border: 1px solid rgba(0, 0, 27, 0.25);
  border-radius: 16px;
  overflow: hidden;
}

.news_item {
  border: 1px solid #eaeaea;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 27, 0.25);
  transition: box-shadow 0.3s ease;
}

.news_item:hover {
  box-shadow: 0 0 25px rgba(0, 0, 27, 0.5);
}

.news_img_wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.news_img_wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 27, 0.25);
  z-index: 2;
  transition: background-color 0.3s ease;
}

.content_link:hover .news_img_wrap::before {
  background-color: rgba(0, 0, 27, 0.5);
}

.news_img_wrap img {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.content_link:hover .news_img_wrap img {
  transform: scale(1.1);
}

.news_info_wrap {
  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: 12px;
  font-weight: 500;
  color: #00001b;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 16px;
}

.news_info_list {
  display: flex;
  align-items: center;
  gap: 16px;
}

.news_info_item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.news_info_item_img {
  font-size: 12px;
  font-weight: 600;
  color: #ff4b44;
}

.news_info_item_text {
  font-size: 12px;
  font-weight: 600;
  color: #00001b;
  text-transform: capitalize;
}

@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: 14px;
  }

  .news_info_item_img {
    font-size: 14px;
  }

  .news_info_item_text {
    font-size: 14px;
  }
}

@media screen and (min-width: 1200px) {
  .news_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .news_info_wrap {
    padding: 24px;
  }

  .news_info_title {
    margin-bottom: 16px;
  }

  .news_info_text {
    margin-bottom: 24px;
  }
}

@media screen and (min-width: 1440px) {
  .news_info_title {
    font-size: 20px;
  }

  .news_info_text {
    font-size: 16px;
  }

  .news_info_item_img {
    font-size: 16px;
  }

  .news_info_item_text {
    font-size: 16px;
  }
}
