.page-news {
  max-width: 1440px;
  margin-inline: auto;
}
.page-news__pagination {
  display: flex;
  justify-content: center;
  margin-top: 100px;
  padding: 20px 0;
}
.page-news__item--empty {
  text-align: center;
  padding: 60px 20px;
  color: #959595;
  font-size: 16px;
}
.page-news__link {
  display: block;
  padding: 24px 40px;
  transition: background-color 0.3s ease;
  border-radius: 8px;
}
.page-news__link:hover {
  background-color: #EEF2F6;
  transition: all 0.3s ease;
}
.page-news__link:hover .page-news__title::after {
  background-image: url(../images/news/icon-arrow-right-hover.svg);
}
.page-news__title {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #222222;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.page-news__title::after {
  content: "";
  display: inline-block;
  min-width: 40px;
  min-height: 40px;
  background-image: url(../images/news/icon-arrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.page-news__date {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #959595;
}
.page-news__category {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #0C2D45;
  background-color: #CCDFF2;
  border-radius: 64px;
  padding: 4px 24px;
}
.page-news__head {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-bottom: 30px;
}
.page-news__select-wrap {
  width: 162px;
  position: relative;
}
.page-news__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 32px;
  width: 12px;
  height: 12px;
  border-right: 1px solid #0C2D45;
  border-bottom: 1px solid #0C2D45;
  transform: rotate(45deg) translate(-50%, -50%);
}
.page-news__select {
  width: 162px;
  padding: 12px 32px;
  border: 1px solid #0C2D45;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  background-color: #FFF;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.page-news__body {
  max-width: 900px;
  width: 73.125%;
  margin-left: 26.875%;
}
@media (max-width: 1024px) {
  .page-news__link {
    padding: 24px 20px;
  }
  .page-news__title {
    gap: 30px;
  }
  .page-news__body {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
  }
}

.category {
  max-width: 344px;
  width: 26.875vw;
  margin-left: auto;
}
.category__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}
.category__label {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #D7DEE5;
  position: relative;
}
.category__radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.category__radio:checked + .category__text {
  padding-left: 24px;
  color: #222222;
}
.category__radio:checked + .category__text::before {
  display: block;
  background-image: url(../images/common/ico_title.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
}
.category__text {
  position: relative;
  padding-left: 0;
  transition: padding-left 0.3s ease;
}
.category__text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  display: none;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .category {
    margin-left: 0;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .category {
    padding: 0 20px;
  }
}

.pagination {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pagination__item {
  font-family: "Montserrat", serif;
  width: 30px;
  height: 30px;
  border: 1px solid #959595;
  background-color: #FFFFFF;
  color: #959595;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination__item:hover {
  border-color: #0C2D45;
  color: #0C2D45;
}
.pagination__item--active {
  background-color: #0C2D45;
  color: #FFFFFF;
  border-color: #0C2D45;
}
.pagination__item--active:hover {
  background-color: #0C2D45;
  color: #FFFFFF;
}
@media (max-width: 600px) {
  .pagination__item {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

.relative {
  position: relative;
}

.fixed {
  position: fixed;
  z-index: 50;

}
@media (max-width: 1024px) {
  .fixed {
    position: static;
  }
}
/*# sourceMappingURL=page-news.css.map */