@charset "utf-8";

.top-news__wrap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 100px;
}
@media screen and (min-width: 1200px) {
  .top-news__wrap {
   grid-template-columns: 274px 1fr;
    
  }
  .top-news__body {
 margin-top: 26px;
  }
}


.news__wrap a{
  padding: 35px 0;
  border-bottom: 1px solid #A7A7A7;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .news__wrap a{
    padding: 45px 0;
  }
}
.news__wrap a:hover {
  background: rgba(64, 64, 64, 0.1);
}
.news__wrap:first-of-type a {
  border-top: 1px solid #A7A7A7;
}

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

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

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

.news__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 16px;
  font-weight: 400;
  line-height: calc(22.5 / 16);
  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;
}