.newslist {
  max-width: 1200px;
  margin: 0 auto;
}
.newslist__container {
  align-items: start;
  flex-direction: row-reverse;
}
.newslist__sidebar {
  width: 280px;
  flex-shrink: 0;
  background: #FDF6E6;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .newslist__sidebar {
    width: 100%;
  }
}
.newslist__category-title {
  color: #E9A726;
  display: flex;
  align-items: center;
  gap: 10px;
}
.newslist__category-title::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../images/common/mark.svg) no-repeat center;
  background-size: contain;
}
.newslist__category-item {
  border-top: 1px solid #ECA202;
}
.newslist__list {
  flex: 1 1 auto !important;
}
.newslist__item {
  border-bottom: 1px solid #CCCCCC;
}
.newslist__item:first-child {
  border-top: 1px solid #CCCCCC;
}
.newslist__main {
  flex: 1;
}
@media (max-width: 767px) {
  .newslist__main {
    width: 100%;
  }
}
.newslist__main .news__title {
  color: inherit;
}
.newslist__main.detail .news__item {
  border-top: none !important;
  padding-top: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.newslist__item.detail {
  padding: 40px 0 !important;
}
.newslist__item.detail p {
  margin-bottom: 1em;
}
.newslist__keyword {
  background: #FDF6E6;
  padding: 4px 12px;
  border-radius: 4px;
  white-space: nowrap;
}
.newslist__pagination {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.newslist__page-link {
  width: 40px;
  height: 40px;
  border: 2px solid #E9A726;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #E9A726;
  font-size: 14px;
  transition: all 0.3s;
}
.newslist__page-link:hover {
  background: #E9A726;
  color: #FFF;
}
.newslist__page-link--active {
  background: #E9A726;
  color: #FFF;
}
