.news__list {
  margin-top: 32px;
}

.news__list__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  padding: 28px 0;
  border-top: .1px solid rgba(247, 247, 247, .5);
}

.news__list__item:last-of-type {
  border-bottom: .1px solid rgba(247, 247, 247, .5);
}

.news__list__item__content,
.news-detail__content__top {
  font-family: var(--en-font);
}

.news__list__item__content .new,
.news-detail__content__top .new {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 20px;
  background-color: #f3f3f3;
  color: #263245;
  letter-spacing: 0;
  font-size: .75rem;
}

.news__list__item__content .heading {
  margin-top: 16px;
  font-size: clamp(0.875rem, 0.833rem + 0.21vw, 1rem);
}

.news__list__item__content .category {
  margin-top: 8px;
  font-size: .75rem;
}

.news__list__item__content__link {
  position: relative;
  display: inline-block;
  margin-top: 20px;
}

.news__list__item__content__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: .1px;
  width: 100%;
  background-color: rgba(247, 247, 247, .5);

}

.news__list__item__image {
  justify-self: end;
}

.news__list__item__image .image {
  aspect-ratio: 5 / 3;
  width: clamp(7.5rem, 5.833rem + 8.33vw, 12.5rem);
  height: 120px;
}

.pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 40px;
  margin-top: 80px;
}

.pagenation__item {
  width: 100px;
  display: inline-block;
  padding: 4px 24px;
  font-family: var(--en-font);
  border: .1px solid rgba(247, 247, 247, .5);
  text-align: center;
}

.pagenation__number {
  font-family: var(--en-font);
}

@media screen and (min-width: 768px) {
  .news__inner {
    width: 90%;
    margin: auto;
  }

  .news__list__item {
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    margin: 0 0 0 auto;
    transition: .4s ease-out;
  }

  @media (any-hover: hover) {
    .news__list__item:hover .news__list__item__content__link:after {
      transition: all .3s;
      transform: scale(0, 1);
      transform-origin: right bottom;
    }
  }

  .news__list__item__content {
    display: flex;
    column-gap: 80px;
  }

  .news__list__item__content__link {
    margin-top: 40px;
  }

  .news__list__item__content__wrap .heading {
    margin-top: 0;
  }

  .news__list__item__content .new,
  .news-detail__content__top .new {
    margin-left: 16px;
    padding: 2px 12px;
  }
}