.news_top_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.news_left_link_img_wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.news_left_info_wrap {
  padding: 16px 0;
}

.news_left_info_subtitle {
  font-size: 12px;
  font-weight: 600;
  color: #5b5a5f;
  margin-bottom: 8px;
}

.news_left_info_title {
  font-size: 16px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news_top_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.news_item {
  transform: translateY(30px);
  transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.9s ease;
}

.news_item.fade {
  opacity: 1;
  transform: translateY(0);
}

.news_item_slider {
}

.news_right_link_img_wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.news_right_info_wrap {
  padding: 16px 0;
}

.news_right_info_subtitle {
  font-size: 12px;
  font-weight: 600;
  color: #5b5a5f;
  margin-bottom: 8px;
}

.news_right_info_title {
  font-size: 16px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.news_link_img_wrap {
  aspect-ratio: 14/12;
  overflow: hidden;
}

.news_info_wrap {
  padding: 8px 0;
}

.news_info_subtitle {
  font-size: 12px;
  font-weight: 600;
  color: #5b5a5f;
  margin-bottom: 8px;
}

.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;
}

@media screen and (min-width: 768px) {
  .news_top_list {
    grid-template-columns: repeat(2, 1fr);
  }

  .news_list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .news_left_info_subtitle {
    font-size: 14px;
  }

  .news_left_info_title {
    font-size: 22px;
  }

  .news_right_info_subtitle {
    font-size: 14px;
  }

  .news_right_info_title {
    font-size: 18px;
  }

  .news_info_subtitle {
    font-size: 14px;
  }

  .news_info_title {
    font-size: 18px;
  }
}

@media screen and (min-width: 1200px) {
  .news_top_wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .news_left_link_img_wrap {
    aspect-ratio: auto;
    overflow: hidden;
    height: 100%;
  }

  .news_left_info_wrap {
    padding: 24px 0;
  }

  .news_right_info_wrap {
    padding: 24px 0;
  }

  .news_list {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .news_info_wrap {
    padding: 16px 0;
  }
}

@media screen and (min-width: 1440px) {
  .news_left_info_subtitle {
    font-size: 16px;
  }

  .news_left_info_title {
    font-size: 28px;
  }

  .news_right_info_subtitle {
    font-size: 16px;
  }

  .news_right_info_title {
    font-size: 20px;
  }

  .news_info_subtitle {
    font-size: 16px;
  }

  .news_info_title {
    font-size: 20px;
  }
}
