.close-active {
  color: #127ac0;
  cursor: pointer;
}
.close-active::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 1.5px #127ac0;
  border-right: solid 1.5px #127ac0;
  position: absolute;
  right: -20px;
  top: 6px;
  transform: rotate(45deg);
}
.close-active:last-child {
  color: #222f3e;
}
.close-active:last-child::after {
  display: none;
}

.news__list-wrap {
  flex: 1;
  font-family: "ryo-gothic-plusn", sans-serif;
  font-weight: 100;
  color: #222f3e;
}
.news__list {
  list-style: none;
  padding: 0;
  margin-bottom: 37px;
}
.news__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 23px;
  margin-bottom: 16px;
  transition: all 0.3s;
  cursor: pointer;
}
.news__item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #127ac0;
  opacity: 0.3;
}
.news__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #127ac0;
  transition: width 0.3s ease-in-out 0.3s;
}
.news__item:hover {
  color: #127ac0;
}
.news__item:hover::after {
  width: 100%;
}
.news__item:hover .news-view__link::after {
  transform: translateX(10px);
}
.news__item:hover .news__link::after {
  transform: translateX(10px);
}
.news__info {
  display: flex;
  align-items: center;
  gap: 6px;
}
.news__date {
  font-size: 16px;
  line-height: 16px;
}
.news__tag {
  font-size: 10px;
  line-height: 10px;
  color: #127ac0;
  padding: 4px 6px;
  border-radius: 2px;
  border: 1px solid #127ac0;
}
.news__link {
  position: relative;
  text-decoration: none;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.8px;
  padding-right: 34px;
  flex-grow: 1;
}
.news__link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background-image: url("../img/arrow_black.svg");
  width: 20px;
  height: 20px;
  background-size: cover;
  transition: transform 0.3s ease-in-out 0.3s;
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .news__item {
    padding-bottom: 16px;
  }
  .news__date {
    font-size: 14px;
    line-height: 14px;
  }
  .news__tag {
    font-size: 8px;
    line-height: 8px;
    padding: 3px 5px;
  }
  .news__link {
    font-size: 18px;
    line-height: 18px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .news__item {
    padding-bottom: 16px;
  }
  .news__date {
    font-size: 14px;
    line-height: 14px;
  }
  .news__tag {
    font-size: 8px;
    line-height: 8px;
    padding: 3px 5px;
  }
  .news__link {
    font-size: 18px;
    line-height: 18px;
  }
}
@media screen and (max-width: 767px) {
  .news__list-wrap {
    padding: 0;
  }
  .news__list > li::before {
    background: #222f3e;
  }
  .news__list > li::after {
    display: none;
  }
}
.news__list-wrap {
  max-width: 678px;
  margin: 0 auto;
}
.news__pagination {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 10px;
}
.news__pagination .page {
  border: none;
  background: white;
  color: #127ac0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.news__pagination .page.active {
  background: #127ac0;
  color: white;
}
.news__pagination .page.active:hover {
  background: #127ac0;
}
.news__pagination .page:hover {
  background: #ACD0E8;
  color: white;
}
.news__pagination .next, .news__pagination prev {
  font-size: 18px;
}

.news-detail {
  max-width: 1092px;
  margin: 0 auto;
  width: 100%;
  display: none;
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .news-detail {
    max-width: 960px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .news-detail {
    max-width: 720px;
  }
}
@media screen and (max-width: 767px) {
  .news-detail {
    padding: 0 20px;
  }
}
.news-detail__wrap {
  padding: 54px 40px 72px;
  background: #fff;
}
.news-detail__content__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.news-detail__content__title {
  font-size: 24px;
  line-height: 32px;
}
.news-detail__content__date {
  color: #127ac0;
  font-size: 16px;
  line-height: 16px;
}
.news-detail__content__body {
  margin-top: 70px;
  font-size: 16px;
  line-height: 24px;
}
.news-detail__content__body p {
  padding: 8px 0;
}
.news-detail__btn-back {
  position: relative;
  margin: 40px 0 72px;
  padding-left: 16px;
  font-size: 16px;
  cursor: pointer;
}
.news-detail__btn-back::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 2px #222f3e;
  border-right: solid 2px #222f3e;
  position: absolute;
  left: 0;
  top: 6px;
  transform: rotate(225deg);
}

/* --------------------------------
Responsive styles for screens between 768px and 1023px
----------------------------------*/
@media (min-width: 768px) and (max-width: 1023px) {
  .news__list-wrap {
    max-width: 90%;
    padding: 0 20px;
  }
  .news-detail__wrap {
    margin-bottom: 60px;
    background: #fff;
  }
  .news-detail__content__title {
    font-size: 20px;
    line-height: 24px;
  }
  .news-detail__content__date {
    font-size: 14px;
    line-height: 14px;
  }
  .news-detail__content__body {
    margin-top: 60px;
    font-size: 14px;
    line-height: 22px;
  }
  .news-detail__btn-back {
    margin: 20px 0 56px;
    font-size: 14px;
  }
  .news-detail__btn-back::before {
    width: 8px;
    height: 8px;
  }
}
/* --------------------------------
Responsive styles for screens max-width 767px and below
----------------------------------*/
@media screen and (max-width: 767px) {
  .breadcrumb__item {
    max-width: 140px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .news__list-wrap {
    padding: 0 20px;
  }
  .news-detail__wrap {
    padding: 24px 16px;
  }
  .news-detail__content__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px;
  }
  .news-detail__content__date {
    font-size: 16px;
    line-height: 16px;
  }
  .news-detail__content__body {
    margin-top: 32px;
    font-size: 16px;
    line-height: 26px;
  }
  .news-detail__btn-back {
    margin: 20px 0 56px;
    font-size: 16px;
  }
  .news-detail__btn-back::before {
    width: 10px;
    height: 10px;
    border-top: solid 1.5px #222f3e;
    border-right: solid 1.5px #222f3e;
  }
}/*# sourceMappingURL=news.css.map */