.c-news__link {
  display: flex;
  gap: 30px;
  text-decoration: none;
  padding: 30px 0;
  align-items: center;

  .c-news__date,
  .c-news__title {
    font-size: 1.6rem;
    color: var(--color-font-02);
    line-height: 150%;
    letter-spacing: 0.8px;
  }

  .c-news__title {
    font-weight: 700;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
}

.c-news__list {
  .c-news__list-item {
    border-top: 1px solid #E4E4E4;

    &:last-child {
      border-bottom: 1px solid #E4E4E4;
    }
  }
}

@media screen and (max-width: 768px) {
  .c-news__link {
    flex-direction: column;
    gap: 10px;
    padding: 30px 0;
    align-items: flex-start;

    .c-news__date,
    .c-news__title {
      font-size: 1.6rem;
      line-height: 200%;
    }

    .c-news__title {
      line-height: 150%;
      overflow: hidden;
      display: -webkit-box;
      text-overflow: ellipsis;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
      white-space: normal;
        }
  }
}