.news-detail-contents {
  display: grid;
  grid-template-columns: 1fr 38.6rem;
  gap: 8rem;
}
@media (max-width: 767px) {
  .news-detail-contents {
    display: flex;
    flex-direction: column;
    gap: 5rem;
  }
}

.news-list-contents {
  display: grid;
  grid-template-columns: 1fr 38.6rem;
  gap: 8rem;
}
@media (max-width: 767px) {
  .news-list-contents {
    display: flex;
    flex-direction: column;
    gap: 5rem;
  }
}

.news-list {
  position: relative;
  z-index: 3;
}

.news-list-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
}
@media (max-width: 767px) {
  .news-list-items {
    gap: 2.5rem 2rem;
  }
}

.news-cta {
  background-color: var(--accent2);
  height: 23rem;
  border-radius: 1rem;
  background-image: url("../images/common/bnr-bg1.png");
  background-repeat: no-repeat;
  background-size: 100%;
  margin-bottom: 5rem;
  padding: 4rem 0 0;
}
@media (max-width: 767px) {
  .news-cta {
    height: 20.4rem;
  }
}
.news-cta__title {
  font-weight: bold;
  font-size: 2.4rem;
  text-align: center;
  color: #fff;
  margin: 0 0 2.5rem;
}
@media (max-width: 767px) {
  .news-cta__title {
    font-size: 2rem;
  }
}

.news-aside {
  height: fit-content;
}
@media print, screen and (min-width: 768px) {
  .news-aside {
    position: sticky;
    top: var(--header-height);
  }
}
@media (max-width: 767px) {
  .news-aside {
    margin-bottom: 0;
  }
}

.news-categories-box {
  padding: 2.5rem;
}
@media (max-width: 767px) {
  .news-categories-box {
    padding: 2rem 1.5rem;
  }
}

.news-year {
  color: #afafaf;
  display: block;
  width: fit-content;
}
.news-year + .news-year {
  margin-top: 0.5rem;
}
.news-year.is-active {
  font-weight: bold;
  color: var(--color-black);
}

.news-categories__title {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .news-categories__title {
    font-size: 1.6rem;
  }
}
.news-categories__separate {
  margin: 2.5rem 0;
  border-bottom: 1px dashed #707070;
}

/*# sourceMappingURL=news.css.map */
