@charset "utf-8";

.top-news__wrap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 60px;
}
@media screen and (min-width: 1024px) {
  .top-news__wrap {
    grid-template-columns: 110px auto;
    justify-content: space-between;
    gap: 100px;
  }
  .top-news__body {
    width: calc(835 / 1366 * 100vw);
  }
}


.news__wrap a{
  width: 100%;
  padding-bottom: 18px;
  border-bottom: 1px solid #DBDFE2;
}


.news__wrap:last-of-type a {
  border-bottom: none;
}

.news__wrap + .news__wrap {
  margin-top: 24px;
}
.news__wrap a:hover {
  opacity: 0.8;
}

.news__body {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .news__body {
    flex-direction: row;
  }
}

.news__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.news__date {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
  display: inline;
}

.news__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 13px;
  font-weight: 500;
  line-height: calc(22.5 / 13);
  letter-spacing: 0.08em;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .news__title {
    -webkit-line-clamp: 1;
  }
}


.news__list .webgene-pagination {
  margin: 70px 0 55px;
}