.c-news-latest-three {
  width: 100%;
}

.c-news-latest-three__heading {
  margin: 0 0 24px;
}

.c-news-latest-three__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.c-news-latest-three__item {
  min-width: 0;
}

.c-news-latest-three__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* アイキャッチ画像 */
.c-news-latest-three__thumb {
  margin: 0 0 16px;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 16 / 9;
  background: #f1f5f9;
}

.c-news-latest-three__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-news-latest-three__body {
  display: block;
}

.c-news-latest-three__date {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.c-news-latest-three__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}

.c-news-latest-three__empty {
  margin: 0;
}

.c-news-latest-three-editor-preview {
  padding: 16px;
  border: 1px dashed #cbd5e1;
}

@media (max-width: 767px) {
  .c-news-latest-three__list {
    grid-template-columns: 1fr;
  }
}