/*---------------------------
  News
---------------------------*/
.news__posts-list{
  display: grid;
  gap: 72px;
}
.news__post-link-area{
  display: grid;
  gap: 1.6rem;
}
.news__post-thumbnail{
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.news__post-thumbnail img{
  width: 100%;
  height: 100%;
}
.news__post-heading{
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--accent-color);
}

/* For PC */
@media (912px < width) {
  .news__post-link-area{
    grid-template-columns: 0.7fr 1fr;
  }
  .news__post-heading{
    display: grid;
    gap: 16px;
    padding-bottom: 0;
    padding:  0 1em 24px;
    margin-bottom: 24px;
  }
  .news__post-text{
    padding: 0 1em;
  }
}