.page-news {
  --news-hero-grad: linear-gradient(120deg, #12284C 0%, #1E3A6E 58%, rgba(201, 165, 78, 0.72) 135%);
  background: var(--color-paper);
  overflow-x: hidden;
}

.page-news .section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--color-orange);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.page-news .section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  font-family: var(--font-head);
  margin: 0 0 8px;
}

.page-news .section-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--color-slate);
  max-width: 620px;
  margin: 0;
}

.page-news .news-hero {
  padding-block: clamp(28px, 5vw, 56px) clamp(24px, 4vw, 48px);
}

.page-news .news-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 48px);
}

.page-news .news-hero__kicker {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--color-orange);
  text-transform: uppercase;
  margin: 0 0 12px;
}

.page-news .news-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 4px;
}

.page-news .news-hero__title-main {
  display: block;
}

.page-news .news-hero__title-sep {
  color: var(--color-gold);
  font-weight: 400;
  font-size: 0.6em;
  line-height: 1;
}

.page-news .news-hero__title-sub {
  display: block;
  font-size: 0.5em;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-slate);
  line-height: 1.3;
}

.page-news .news-hero__desc {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  color: var(--color-slate);
  max-width: 760px;
  margin: 0;
}

.page-news .news-hero__facts {
  background: var(--color-navy);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 3vw, 28px);
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow-card);
}

.page-news .news-fact {
  border-bottom: 1px solid rgba(201, 165, 78, 0.25);
  padding-bottom: 12px;
}

.page-news .news-fact:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.page-news .news-fact__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.65rem;
  line-height: 1.2;
  color: var(--color-gold);
  letter-spacing: 0.02em;
}

.page-news .news-fact__label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.03em;
  margin-top: 3px;
}

.page-news .news-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 6px;
}

.page-news .news-featured {
  padding-top: 0;
}

.page-news .news-featured__head {
  margin-bottom: 20px;
}

.page-news .featured-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--news-hero-grad);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.4s var(--ease);
}

.page-news .featured-card:hover {
  box-shadow: 0 20px 52px rgba(18, 40, 76, 0.2);
}

.page-news .featured-card__media {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

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

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

.page-news .featured-card__body {
  padding: clamp(24px, 4vw, 40px);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.page-news .featured-card__tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  text-transform: uppercase;
  border: 1px solid rgba(201, 165, 78, 0.6);
  border-radius: var(--btn-radius);
  padding: 4px 14px;
  margin-bottom: 14px;
}

.page-news .featured-card__title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  font-weight: 900;
  line-height: 1.3;
  margin: 0 0 12px;
}

.page-news .featured-card__title a {
  color: var(--color-white);
  text-decoration: none;
  background-image: linear-gradient(var(--color-gold), var(--color-gold));
  background-repeat: no-repeat;
  background-position: 0 calc(100% - 2px);
  background-size: 0% 2px;
  transition: background-size 0.35s var(--ease);
}

.page-news .featured-card__title a:hover,
.page-news .featured-card__title a:focus-visible {
  background-size: 100% 2px;
}

.page-news .featured-card__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px;
  max-width: 52em;
}

.page-news .featured-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.page-news .featured-card__date {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-gold-soft);
  letter-spacing: 0.06em;
}

.page-news .news-latest {
  border-top: 1px solid var(--color-gold-soft);
}

.page-news .news-latest__banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: clamp(28px, 5vw, 52px);
  box-shadow: var(--shadow-card);
}

.page-news .news-latest__banner-img {
  width: 100%;
  height: clamp(160px, 28vw, 380px);
  max-width: 100%;
  object-fit: cover;
  display: block;
}

.page-news .news-latest__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 40, 76, 0.86), rgba(18, 40, 76, 0.18) 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: clamp(20px, 4vw, 40px);
}

.page-news .news-latest__banner-kicker {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin: 0 0 6px;
}

.page-news .news-latest__banner-text {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
  max-width: 18em;
  line-height: 1.35;
}

.page-news .news-latest__head {
  margin-bottom: 28px;
}

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

.page-news .news-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: 0 4px 16px rgba(18, 40, 76, 0.05);
  border: 1px solid var(--color-gold-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.page-news .news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(18, 40, 76, 0.1);
  border-color: var(--color-orange);
}

.page-news .news-card__number {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: var(--color-gold);
  line-height: 1;
  display: block;
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}

.page-news .news-card:hover .news-card__number {
  transform: scale(1.18);
  color: var(--color-orange);
  transform-origin: left center;
}

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

.page-news .news-card__time {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-slate);
}

.page-news .news-card__title {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

.page-news .news-card__title a {
  color: var(--color-navy);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.page-news .news-card__title a:hover {
  color: var(--color-orange);
}

.page-news .news-card__text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--color-slate);
  margin: 0;
}

.page-news .news-card__link {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--color-navy-soft);
  text-decoration: none;
  letter-spacing: 0.02em;
  align-self: flex-start;
  padding-top: 4px;
  transition: color 0.25s var(--ease);
}

.page-news .news-card__link:hover {
  color: var(--color-orange);
}

.page-news .news-card__link span {
  margin-left: 4px;
}

.page-news .news-series {
  background: var(--color-white);
  border-block: 1px solid var(--color-gold-soft);
}

.page-news .news-series__head {
  margin-bottom: 24px;
}

.page-news .news-series__scroller {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold-soft) transparent;
}

.page-news .news-series__scroller::-webkit-scrollbar {
  height: 6px;
}

.page-news .news-series__scroller::-webkit-scrollbar-track {
  background: transparent;
}

.page-news .news-series__scroller::-webkit-scrollbar-thumb {
  background: var(--color-gold-soft);
  border-radius: var(--btn-radius);
}

.page-news .series-card {
  flex: 0 0 min(85%, 380px);
  scroll-snap-align: start;
  background: var(--color-paper);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-gold-soft);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.page-news .series-card:hover {
  border-color: var(--color-orange);
  box-shadow: 0 12px 28px rgba(18, 40, 76, 0.08);
  transform: translateY(-3px);
}

.page-news .series-card--primary {
  background: var(--color-navy);
  border-color: rgba(201, 165, 78, 0.35);
}

.page-news .series-card--primary:hover {
  border-color: var(--color-orange);
}

.page-news .series-card__media {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: -12px -12px 4px;
}

.page-news .series-card__img {
  width: 100%;
  height: 180px;
  max-width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}

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

.page-news .series-card__title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--color-navy);
  margin: 0;
}

.page-news .series-card__desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--color-slate);
  margin: 0;
}

.page-news .series-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-news .series-card__list a {
  font-size: 0.87rem;
  line-height: 1.55;
  color: var(--color-navy);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 165, 78, 0.4);
  padding-bottom: 2px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.page-news .series-card__list a:hover {
  color: var(--color-orange);
  border-color: var(--color-orange);
}

.page-news .series-card--primary .series-card__title {
  color: var(--color-white);
}

.page-news .series-card--primary .series-card__desc {
  color: rgba(255, 255, 255, 0.72);
}

.page-news .series-card--primary .series-card__list a {
  color: var(--color-gold);
  border-color: rgba(201, 165, 78, 0.35);
}

.page-news .series-card--primary .series-card__list a:hover {
  color: var(--color-orange);
  border-color: var(--color-orange);
}

.page-news .news-archive {
  color: var(--color-white);
}

.page-news .news-archive .section-title {
  color: var(--color-white);
}

.page-news .news-archive .section-desc {
  color: rgba(255, 255, 255, 0.72);
}

.page-news .news-archive .section-eyebrow {
  color: var(--color-gold);
}

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

.page-news .news-archive__side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-news .news-archive__icon {
  display: none;
}

.page-news .news-archive__img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.page-news .version-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.page-news .version-timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-gold), rgba(201, 165, 78, 0.12));
}

.page-news .version-timeline__item {
  position: relative;
  padding-left: 48px;
  padding-bottom: 32px;
}

.page-news .version-timeline__item:last-child {
  padding-bottom: 0;
}

.page-news .version-timeline__item::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 14px;
  height: 14px;
  background: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201, 165, 78, 0.2);
}

.page-news .version-timeline__node {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}

.page-news .version-timeline__version {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  color: var(--color-gold);
  letter-spacing: 0.02em;
}

.page-news .version-timeline__time {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-gold-soft);
}

.page-news .version-timeline__card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 165, 78, 0.28);
  padding: 18px 20px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.page-news .version-timeline__card:hover {
  border-color: var(--color-orange);
  background: rgba(255, 255, 255, 0.07);
}

.page-news .version-timeline__title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0 0 8px;
}

.page-news .version-timeline__text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 10px;
}

.page-news .version-timeline__card a {
  color: var(--color-gold);
  text-decoration: none;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(201, 165, 78, 0.4);
  padding-bottom: 2px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.page-news .version-timeline__card a:hover {
  color: var(--color-orange);
  border-color: var(--color-orange);
}

.page-news .news-note {
  background: var(--color-gold-soft);
}

.page-news .news-note__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-block: clamp(32px, 5vw, 56px);
}

.page-news .news-note__label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--color-orange);
  margin: 0;
  text-transform: uppercase;
}

.page-news .news-note__text {
  font-size: 0.92rem;
  color: var(--color-navy);
  max-width: 640px;
  margin: 0;
  line-height: 1.8;
}

.page-news a:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

@media (min-width: 768px) {
  .page-news .news-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(24px, 4vw, 48px);
    row-gap: 32px;
  }

  .page-news .news-card:nth-child(odd) {
    margin-top: 32px;
  }

  .page-news .news-hero__tags {
    padding-top: 8px;
    gap: 10px;
  }
}

@media (min-width: 880px) {
  .page-news .news-hero__grid {
    grid-template-columns: 1fr 320px;
    align-items: start;
  }

  .page-news .news-hero__title {
    gap: 6px;
  }

  .page-news .featured-card {
    grid-template-columns: 5fr 4fr;
    min-height: 420px;
  }

  .page-news .featured-card__media {
    min-height: auto;
  }

  .page-news .featured-card__meta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .page-news .news-archive__icon {
    display: block;
  }

  .page-news .news-note__inner {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .page-news .news-note__label {
    flex-shrink: 0;
  }

  .page-news .news-note__text {
    flex: 1;
  }
}

@media (min-width: 960px) {
  .page-news .news-archive__grid {
    grid-template-columns: 4fr 8fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
  }

  .page-news .version-timeline__item {
    padding-left: 56px;
  }
}
<<<PAGE_CSS_END>>>
