.page-news {
  --page-news-soft: rgba(255, 255, 255, 0.14);
}

.page-news .site-breadcrumb {
  margin-top: 18px;
}

.page-news [data-reveal] {
  transition-delay: var(--reveal-delay, 0s);
}

.page-news .news-hero {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  padding: 48px 0 64px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--inkblue) 100%);
  color: #fff;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 280px;
  height: 280px;
  border: 2px dashed rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.page-news .news-hero__band {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange) 78%, rgba(255, 255, 255, 0.14) 78%);
}

.page-news .news-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.page-news .news-hero__status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
}

.page-news .news-hero__status-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.55);
  animation: page-news-pulse 2s ease-out infinite;
}

@keyframes page-news-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.55);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(255, 107, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
  }
}

.page-news .news-hero h1 {
  margin: 0 0 18px;
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: #fff;
}

.page-news .news-hero__desc {
  max-width: 56ch;
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.page-news .news-hero__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 460px;
}

.page-news .news-hero__stat {
  padding: 12px 14px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, 0.08);
}

.page-news .news-hero__stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 24px;
  line-height: 1.1;
  color: #fff;
}

.page-news .news-hero__stat span {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
}

.page-news .news-hero__status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.page-news .news-progress-ring {
  width: 138px;
  height: 138px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: conic-gradient(var(--orange) 78%, rgba(255, 255, 255, 0.14) 0);
  display: grid;
  place-items: center;
}

.page-news .news-progress-ring__inner {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--navy);
  display: grid;
  place-content: center;
  text-align: center;
  gap: 2px;
}

.page-news .news-progress-ring__inner strong {
  font-family: var(--font-head);
  font-size: 30px;
  line-height: 1;
  color: var(--orange);
}

.page-news .news-progress-ring__inner span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

.page-news .news-hero__icon {
  width: 132px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.24);
  background: var(--paper);
}

.page-news .news-hero__bar {
  position: relative;
  z-index: 1;
  height: 8px;
  margin-top: 42px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.14);
}

.page-news .news-hero__bar-fill {
  width: 78%;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--orange), #ff8a5c);
}

.page-news .news-hero__bar-badge {
  position: absolute;
  top: calc(100% + 14px);
  left: 78%;
  transform: translateX(-50%);
  padding: 6px 12px;
  border-radius: 4px;
  background: var(--orange);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.35);
  font-family: var(--font-mono);
  font-size: 12px;
  white-space: nowrap;
  color: #fff;
}

.page-news .news-hero__bar-badge::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--orange);
}

.page-news .news-layout {
  padding-top: 48px;
}

.page-news .news-layout__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-news .news-layout__main {
  min-width: 0;
}

.page-news .news-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.page-news .news-heading-row h2 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.2;
  color: var(--navy);
}

.page-news .news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.page-news .news-filter__item {
  padding: 5px 12px;
  border: 1px solid var(--gray);
  border-radius: 999px;
  background: var(--white);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--navy);
  cursor: default;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-news .news-filter__item.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.page-news .news-filter__item:not(.is-active):hover {
  border-color: var(--blue);
  color: var(--blue);
}

.page-news .news-timeline {
  position: relative;
  padding-left: 32px;
}

.page-news .news-timeline::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--orange));
}

.page-news .news-timeline__item {
  position: relative;
  margin-bottom: 28px;
}

.page-news .news-timeline__dot {
  position: absolute;
  top: 16px;
  left: -28px;
  z-index: 1;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid var(--white);
  background: var(--orange);
  box-shadow: 0 0 0 2px rgba(13, 31, 60, 0.16);
}

.page-news .news-timeline__card {
  position: relative;
  padding: 20px 18px 18px;
  border: 1px solid var(--gray);
  border-top: 4px solid var(--blue);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.page-news .news-timeline__card:hover {
  transform: translateY(-3px);
  border-top-color: var(--orange);
  box-shadow: 0 12px 26px rgba(13, 31, 60, 0.12);
}

.page-news .news-timeline__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 2px 7px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 3px;
  background: rgba(59, 130, 246, 0.12);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--navy);
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.page-news .news-timeline__card:hover .news-timeline__badge,
.page-news .news-timeline__card:focus-within .news-timeline__badge {
  opacity: 1;
  transform: translateY(0);
}

.page-news .news-timeline__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  padding-right: 72px;
}

.page-news .news-timeline__round {
  padding: 2px 8px;
  border-radius: 3px;
  background: var(--gray);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--navy);
}

.page-news .news-timeline__cat {
  padding: 2px 8px;
  border: 1px solid rgba(255, 107, 53, 0.28);
  border-radius: 3px;
  background: rgba(255, 107, 53, 0.08);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--orange);
}

.page-news .news-timeline__card h3 {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-size: 17px;
  line-height: 1.35;
  color: var(--navy);
}

.page-news .news-timeline__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #555;
}

.page-news .news-timeline__img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 14px;
  border: 1px solid var(--gray);
  border-radius: 4px;
}

.page-news .news-side-panel {
  margin-bottom: 24px;
  padding: 22px 18px;
  border: 1px solid var(--gray);
  border-top: 4px solid var(--orange);
  background: var(--white);
  box-shadow: var(--shadow);
}

.page-news .news-side-panel__title {
  margin: 0 0 14px;
  padding-left: 12px;
  border-left: 4px solid var(--orange);
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.page-news .news-side-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .news-side-list li + li {
  border-top: 1px solid var(--gray);
}

.page-news .news-side-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 2px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.page-news .news-side-list a:hover {
  color: var(--orange);
  transform: translateX(2px);
}

.page-news .news-side-list__tag {
  flex: 0 0 auto;
  padding: 2px 6px;
  border-radius: 3px;
  background: var(--navy);
  font-family: var(--font-mono);
  font-size: 11px;
  color: #fff;
}

.page-news .news-side-panel--dark {
  border-top-color: var(--orange);
  border-color: transparent;
  background: var(--inkblue);
}

.page-news .news-side-panel--dark .news-side-panel__title {
  color: #fff;
}

.page-news .news-overview {
  margin: 0;
}

.page-news .news-overview div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.page-news .news-overview div:last-child {
  border-bottom: 0;
}

.page-news .news-overview dt {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.page-news .news-overview dd {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  text-align: right;
  color: #fff;
}

.page-news .news-topics {
  padding-top: 56px;
}

.page-news .news-topics__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.page-news .news-topic-card {
  position: relative;
  overflow: hidden;
  padding: 22px 18px 20px;
  border: 1px solid var(--gray);
  border-top: 6px solid var(--blue);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-news .news-topic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(13, 31, 60, 0.12);
}

.page-news .news-topic-card--orange {
  border-top-color: var(--orange);
}

.page-news .news-topic-card--dark {
  border-top-color: var(--inkblue);
}

.page-news .news-topic-card__num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--font-head);
  font-size: 56px;
  line-height: 1;
  color: rgba(13, 31, 60, 0.07);
  pointer-events: none;
}

.page-news .news-topic-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-size: 19px;
  color: var(--navy);
}

.page-news .news-topic-card p {
  margin: 0 0 16px;
  font-size: 13.5px;
  line-height: 1.65;
  color: #555;
}

.page-news .news-topic-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 2px;
  border-bottom: 2px solid rgba(59, 130, 246, 0.3);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-news .news-topic-card--orange .news-topic-card__link {
  border-bottom-color: rgba(255, 107, 53, 0.3);
  color: var(--orange);
}

.page-news .news-topic-card--dark .news-topic-card__link {
  border-bottom-color: rgba(13, 31, 60, 0.3);
  color: var(--navy);
}

.page-news .news-topic-card__link:hover {
  border-color: currentColor;
}

.page-news .news-topics__figure {
  margin: 28px 0 0;
  padding: 10px;
  border-radius: 8px;
  background: var(--navy);
  transform: rotate(-1deg);
}

.page-news .news-topics__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.page-news .news-topics__figure figcaption {
  padding: 10px 4px 2px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
}

.page-news .news-report {
  padding-top: 56px;
  padding-bottom: 56px;
  background: var(--gray);
}

.page-news .news-report__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.page-news .news-report__content p {
  max-width: 52ch;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.page-news .news-report__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.page-news .news-report__stats li {
  padding: 14px 16px;
  border-left: 4px solid var(--orange);
  background: var(--white);
  box-shadow: var(--shadow);
}

.page-news .news-report__stats strong {
  display: block;
  font-family: var(--font-head);
  font-size: 28px;
  line-height: 1.05;
  color: var(--navy);
}

.page-news .news-report__stats span {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: #666;
}

.page-news .news-report__figure {
  margin: 0;
  padding: 12px;
  border-radius: 10px;
  background: var(--navy);
  transform: rotate(1deg);
}

.page-news .news-report__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.page-news .news-report__figure figcaption {
  padding: 10px 4px 2px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 480px) {
  .page-news .news-hero__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 720px) {
  .page-news .news-topics__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .page-news .news-report__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 900px) {
  .page-news .news-report__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
  }
}

@media (min-width: 920px) {
  .page-news .news-hero__grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 48px;
  }
}

@media (min-width: 992px) {
  .page-news .news-layout__grid {
    grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
  }
}

@media (max-width: 480px) {
  .page-news .news-hero__bar-badge {
    left: 50%;
    transform: translateX(-50%);
  }

  .page-news .news-hero__status {
    justify-content: center;
  }

  .page-news .news-hero__icon {
    width: 110px;
  }
}

@media (hover: none) {
  .page-news .news-timeline__badge {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news *,
  .page-news *::before,
  .page-news *::after {
    animation: none !important;
    transition: none !important;
  }

  .page-news [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

.page-news {
  --reveal-delay: 0.3s;
}
