.page-news {
  background: var(--color-bg);
  color: var(--color-text);
}

.page-news .news-hero {
  background: linear-gradient(135deg, #0A1F44 0%, #10294a 46%, #1b3559 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: clamp(3.2rem, 8vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  border-bottom: 1px solid rgba(212, 175, 55, 0.45);
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 65%);
  top: -180px;
  right: -160px;
  pointer-events: none;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  bottom: -120px;
  right: 12%;
  pointer-events: none;
}

.page-news .news-hero__inner {
  position: relative;
  z-index: 1;
}

.page-news .news-hero__inner .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.page-news .news-hero__inner .breadcrumb a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

.page-news .news-hero__inner .breadcrumb a:hover {
  color: var(--color-gold);
}

.page-news .breadcrumb-sep {
  opacity: 0.5;
  color: rgba(255, 255, 255, 0.7);
}

.page-news .news-hero .section-eyebrow {
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.page-news .news-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  line-height: 1.18;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}

.page-news .news-hero__ext {
  display: block;
  font-size: 0.35em;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 0.4rem;
}

.page-news .news-hero .page-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  margin-bottom: 2rem;
}

.page-news .news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-news .news-filter__tag {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.875rem;
  text-decoration: none;
  background: rgba(212, 175, 55, 0.08);
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.page-news .news-filter__tag:hover {
  background: var(--color-gold);
  color: var(--color-primary);
  border-color: var(--color-gold);
}

.page-news .news-section {
  padding: var(--section-space) 0;
}

.page-news .news-section--dark {
  background: linear-gradient(180deg, #0A1F44 0%, #0d244a 100%);
  color: #ffffff;
}

.page-news .news-section--dark .section-lead {
  color: rgba(255, 255, 255, 0.7);
}

.page-news .news-section--bg {
  background: #e9eae5;
}

.page-news .featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 992px) {
  .page-news .featured-grid {
    grid-template-columns: 1.55fr 1fr;
    align-items: stretch;
  }
}

.page-news .featured-card {
  background: var(--color-surface);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.page-news .featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 64px rgba(10, 31, 68, 0.15);
}

.page-news .featured-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.page-news .featured-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.page-news .featured-card:hover .featured-card__img {
  transform: scale(1.04);
}

.page-news .featured-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
  align-items: flex-start;
}

.page-news .featured-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.page-news .featured-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.7rem);
  line-height: 1.35;
}

.page-news .featured-card__text {
  color: var(--color-text-soft);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.page-news .featured-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.page-news .featured-card--side {
  box-shadow: var(--shadow-soft);
  border-radius: 18px;
}

.page-news .featured-card--side:hover {
  box-shadow: var(--shadow-lift);
}

.page-news .featured-card__thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.page-news .featured-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.page-news .featured-card--side:hover .featured-card__thumb img {
  transform: scale(1.04);
}

@media (min-width: 992px) {
  .page-news .featured-card--side {
    flex: 1;
  }
}

.page-news .changelog-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (min-width: 1024px) {
  .page-news .changelog-wrap {
    grid-template-columns: 300px 1fr;
    align-items: start;
    gap: 3rem;
  }

  .page-news .changelog-aside {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
  }
}

.page-news .changelog-visual {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.page-news .changelog-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.page-news .changelog-current {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  margin-top: 1.5rem;
}

.page-news .changelog-current__label {
  color: var(--color-gold);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.page-news .changelog-current__name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.page-news .changelog-current__desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 1.6;
}

.page-news .changelog-list {
  padding-left: 1.5rem;
}

.page-news .timeline-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 14px;
  padding: 1.25rem 1.4rem;
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.page-news .timeline-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(3px);
}

.page-news .timeline-marker {
  background: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.22);
}

.page-news .timeline-card__tag {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.page-news .timeline-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 0.45rem;
}

.page-news .timeline-card__text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}

.page-news .timeline-card__time {
  display: inline-block;
  font-size: 0.75rem;
  color: rgba(212, 175, 55, 0.8);
  margin-top: 0.6rem;
}

.page-news .news-stats {
  background: linear-gradient(135deg, #0A1F44 20%, #132d52 65%, #1c3a63 100%);
  color: #ffffff;
  padding: clamp(2.2rem, 5vw, 3.2rem) 0;
  border-top: 1px solid rgba(212, 175, 55, 0.4);
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}

.page-news .news-stats__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
  text-align: center;
}

.page-news .news-stat {
  flex: 1 1 40%;
  min-width: 120px;
}

@media (min-width: 900px) {
  .page-news .news-stat {
    flex: 1;
  }
}

.page-news .news-stat__num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-gold);
  margin-bottom: 0.35rem;
}

.page-news .news-stat__label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
}

.page-news .topic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

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

.page-news .topic-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.page-news .topic-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(212, 175, 55, 0.45);
}

.page-news .topic-card__icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: linear-gradient(135deg, #0A1F44 0%, #2a4066 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.page-news .topic-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-news .topic-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.page-news .topic-card__text {
  color: var(--color-text-soft);
  line-height: 1.65;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.page-news .solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  .page-news .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.page-news .solution-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.page-news .solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  pointer-events: none;
}

.page-news .solution-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(212, 175, 55, 0.45);
}

.page-news .solution-card:hover::after {
  opacity: 1;
}

.page-news .solution-card__num {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
  color: var(--color-gold);
  font-weight: 700;
  opacity: 0.45;
  min-width: 2rem;
  position: relative;
  z-index: 1;
}

.page-news .solution-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.page-news .solution-card__title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  margin-bottom: 0.15rem;
}

.page-news .solution-card__text {
  color: var(--color-text-soft);
  line-height: 1.65;
  font-size: 0.92rem;
  margin-bottom: 0.55rem;
}

@media (prefers-reduced-motion: reduce) {
  .page-news *,
  .page-news *::before,
  .page-news *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
