.l-news_item {
  gap: 2rem;
  display: grid;
  grid-template: auto auto / 1fr auto;
  grid-template-areas: "tag tag" "txt link";
  padding: 2rem 0 4rem;
  border-top: 1px solid #000;
}

.l-news_item_wrapper {
  margin-bottom: 8rem;
}

.l-news_item_tag {
  color: #75787b;
  font-size: 1.4rem;
  font-weight: 700;
}

.l-news_item_tag_wrapper {
  gap: 0 6rem;
  display: grid;
  grid-area: tag;
  grid-template: auto / auto auto;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.l-news_item_tag_time {
  font-family: "Inter",sans-serif;
  font-size: 1.4rem;
}

.l-news_item_txt {
  grid-area: txt;
  font-size: 2rem;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.l-news_item_link {
  grid-area: link;
  align-self: flex-end;
  font-size: 1.4rem;
}

.l-news_pagenation {
  gap: 0 8rem;
  display: grid;
  grid-template: auto / auto auto auto;
  grid-template-areas: "prev all next";
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 20rem;
}

.l-news_pagenation_prev,.l-news_pagenation_next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  font-family: "Inter",sans-serif;
}

.l-news_pagenation_prev.is-empty,.l-news_pagenation_next.is-empty {
  opacity: .4;
}

.l-news_pagenation_prev {
  grid-area: prev;
  justify-self: flex-end;
}

.l-news_pagenation_next {
  grid-area: next;
  justify-self: flex-start;
}

.l-news_pagenation_btn {
  padding: 0 1.6rem 1.6rem;
  font-family: "Inter",sans-serif;
  font-size: 1.4rem;
}

.l-news_pagenation_btn_wrapper {
  grid-area: all;
}

.l-news_pagenation_btn_icn {
  width: 4rem;
  height: 1.6rem;
}

.l-news_pagenation_btn_icn.is-prev {
  margin-right: 1.1rem;
}

.l-news_pagenation_btn_icn.is-next {
  margin-left: 1.1rem;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.l-news_pagenation_btn_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 48em) {
  .l-news_item {
    padding-bottom: 2rem;
  }
  .l-news_item_wrapper {
    margin-bottom: 6rem;
  }
  .l-news_item_txt {
    font-size: 1.6rem;
  }
  .l-news_pagenation {
    gap: 3rem;
    grid-template: auto auto / auto auto;
    grid-template-areas: "prev next" "all all";
    margin-bottom: 12rem;
  }
  .l-news_pagenation_btn_wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

