.p-news-archive {
  margin: 90px 0;
}
@media (max-width: 780px) {
  .p-news-archive {
    margin: 60px 0;
  }
  .p-news-archive .l-common-container__heading > span {
    font-size: 3rem;
  }
}
.p-news-archive__container {
  display: grid;
  grid-template-columns: 1fr 3fr;
  margin-top: 60px;
}
@media (max-width: 780px) {
  .p-news-archive__container {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
}
.p-news-archive #category-sidebar {
  padding: 0 30px;
}
@media (max-width: 780px) {
  .p-news-archive #category-sidebar {
    margin-bottom: 45px;
    padding: 0;
  }
}
.p-news-archive #category-sidebar .category-menu {
  padding: 0 1.5em;
}
@media (max-width: 780px) {
  .p-news-archive #category-sidebar .category-menu {
    padding: 0;
  }
}
.p-news-archive #category-sidebar .category-menu li {
  position: relative;
  margin-bottom: 1.5em;
  padding: 0.5em 1em;
  font-size: 2rem;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 780px) {
  .p-news-archive #category-sidebar .category-menu li {
    width: 50%;
    font-size: 1.6rem;
    margin-bottom: 0.5em;
    padding: 0.25em 1em;
  }
}
.p-news-archive #category-sidebar .category-menu li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #707070;
}
.p-news-archive #category-sidebar .category-menu li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #FFDB54;
  scale: 0 1;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.p-news-archive #category-sidebar .category-menu li:hover::after {
  scale: 1 1;
}
.p-news-archive #category-sidebar .category-menu li:hover a {
  color: #FFDB54;
}
.p-news-archive__main {
  margin-bottom: 30px;
}
.p-news-archive__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 30px;
}
@media (max-width: 780px) {
  .p-news-archive__list {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
  }
}
.p-news-archive__list > li {
  width: 100%;
  padding: 0.5em;
  border-radius: 1rem;
  background: #FFDB54;
}
.p-news-archive__list .no-posts {
  grid-column: 1/3;
  grid-row: 1/3;
  text-align: center;
  font-size: 3rem;
}

.p-news-article {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 2em 1em;
  border-radius: 0.5rem;
  background: #fff;
}
.p-news-article__date {
  display: block;
  font-weight: 700;
  color: #707070;
  margin-bottom: 1.5em;
}
.p-news-article__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1em;
}
.p-news-article__heading {
  position: relative;
  font-size: 2rem;
  margin-bottom: 0.5em;
  padding-bottom: 0.25em;
  border-bottom: dashed 2px #FFDB54;
}
.p-news-article > p {
  padding: 0 0.5em;
}

.p-news-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
.p-news-pagination [class*=page-numbers] {
  border-radius: 3px;
  background: #c3c3c3;
  font-weight: 700;
  color: #222;
}
.p-news-pagination [class*=page-numbers]:hover {
  background: #FFDB54;
}
.p-news-pagination [class*=page-numbers].current {
  background: #FFDB54;
}
.p-news-pagination [class*=page-numbers].next, .p-news-pagination [class*=page-numbers].prev {
  padding: 0 0.25em;
}/*# sourceMappingURL=news.css.map */