@media screen and (max-width: 768px) {
  article.post h2 {
    font-size: 1.25rem;
  }
}

.article_post-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
  row-gap: 2.5rem;
}
.article_post-wrap .category-news {
  margin: 0;
}
.article_post-wrap .category-news .post-thumbnail img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 6 / 4;
  border-radius: 10px;
}
.article_post-wrap .category-news p {
  font-size: 1rem;
}
.article_post-wrap .wp-pagenavi {
  grid-column: 1 / -1;
}
@media screen and (min-width: 959px) {
  .article-wrap {
    width: 75%;
  }
  .article_post-wrap .category-news .entry-header .entry-title {
    font-size: 1.25rem;
  }
  .article_post-wrap .category-news .post-thumbnail img {
    object-fit: cover;
  }

  .article_post-wrap .category-news p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .article_post-wrap {
    grid-template-columns: 1fr;
  }
  .article_post-wrap .category-news p {
    font-size: 0.875rem;
  }
}
.category-news > img {
  object-fit: cover;
  border-radius: 10px;
  aspect-ratio: 6 / 4;
  width: 100%;
}
.category-news .entry-header {
  margin-bottom: 1rem;
}
