.page-news {
  --news-primary: #0A2B4A;
  --news-primary-2: #1B3A5C;
  --news-bg-light: #F0F4F8;
  --news-border: #D0D9DF;
  --news-accent: #FF6A00;
  --news-gold: #D4AF37;
  --news-green: #2E7D32;
  --news-text-sub: #1B3A5C;
  --news-radius: 4px;
  background: #FFFFFF;
  color: var(--news-primary);
  font-family: var(--font-sans);
  overflow-wrap: break-word;
  scroll-behavior: smooth;
}

.page-news *,
.page-news *::before,
.page-news *::after {
  box-sizing: border-box;
}

.page-news h1,
.page-news h2,
.page-news h3,
.page-news p,
.page-news ul,
.page-news figure {
  margin: 0;
}

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

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

.page-news a {
  text-decoration: none;
}

.page-news .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.page-news .news-reading-progress {
  position: sticky;
  top: var(--header-height);
  z-index: 20;
  height: 3px;
  background: transparent;
  pointer-events: none;
}

.page-news .news-reading-progress::before {
  content: "";
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--news-accent), var(--news-gold));
  transition: width 0.1s linear;
}

.page-news .breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
}

.page-news .breadcrumb__link {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

.page-news .breadcrumb__link:hover {
  color: var(--news-gold);
}

.page-news .breadcrumb__item--current::before {
  content: "/";
  margin-right: 6px;
  color: rgba(255, 255, 255, 0.36);
}

.page-news .breadcrumb__current {
  color: #FFFFFF;
  font-weight: 700;
}

.page-news .news-hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(10, 43, 74, 0.98) 0%, rgba(27, 58, 92, 0.96) 100%),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.03) 0 12px, transparent 12px 24px);
  color: #FFFFFF;
  padding: 72px 0 56px;
  overflow: hidden;
}

.page-news .news-hero::before {
  content: "UPDATES";
  position: absolute;
  top: 8px;
  right: -12px;
  font-family: var(--font-mono);
  font-size: clamp(90px, 22vw, 260px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.07);
  pointer-events: none;
  user-select: none;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--news-accent) 0 10px, var(--news-gold) 10px 20px, #FFFFFF 20px 30px, var(--news-primary) 30px 40px);
}

.page-news .news-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 8px;
  padding-bottom: 8px;
}

.page-news .news-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.78);
}

.page-news .news-hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--news-accent);
}

.page-news .news-hero__title {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(36px, 6.8vw, 76px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.page-news .news-hero__title-part {
  display: block;
  color: #FFFFFF;
}

.page-news .news-hero__title-accent {
  display: block;
  color: var(--news-gold);
}

.page-news .news-hero__lead {
  max-width: 640px;
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.page-news .news-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.page-news .news-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.page-news .news-hero__chip:hover {
  background: rgba(255, 106, 0, 0.18);
  border-color: var(--news-accent);
  transform: translateY(-2px);
}

.page-news .news-hero__chip-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--news-gold);
}

.page-news .news-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 80px;
}

.page-news .news-side__inner {
  position: relative;
  background: var(--news-bg-light);
  border: 1px solid var(--news-border);
  border-radius: var(--news-radius);
  padding: 22px;
  overflow: hidden;
}

.page-news .news-side__inner::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, transparent 50%, rgba(212, 175, 55, 0.55) 50%);
}

.page-news .news-side__heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--news-primary-2);
  margin-bottom: 16px;
}

.page-news .news-side__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news .news-side__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--news-primary-2);
  background: #FFFFFF;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.page-news .news-side__link:hover {
  border-color: var(--news-accent);
  color: var(--news-accent);
}

.page-news .news-side__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--news-gold);
}

.page-news .news-side__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--news-border);
}

.page-news .news-side__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-news .news-side__stat-value {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--news-primary);
}

.page-news .news-side__stat-label {
  font-size: 11px;
  line-height: 1.4;
  color: var(--news-text-sub);
}

.page-news .news-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.page-news .news-block__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.page-news .news-block__index {
  font-family: var(--font-mono);
  font-size: 34px;
  font-weight: 300;
  color: var(--news-gold);
  line-height: 1;
}

.page-news .news-block__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--news-primary);
  letter-spacing: -0.01em;
}

.page-news .news-block__rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--news-gold), var(--news-border));
}

.page-news .news-feature {
  display: grid;
  grid-template-columns: 1fr;
  background: #FFFFFF;
  border: 1px solid var(--news-border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
}

.page-news .news-feature__media {
  background: var(--news-bg-light);
  overflow: hidden;
}

.page-news .news-feature__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news .news-feature__content {
  padding: 24px;
}

.page-news .news-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.page-news .news-chip--orange {
  background: rgba(255, 106, 0, 0.12);
  color: #C44D00;
}

.page-news .news-chip--blue {
  background: rgba(10, 43, 74, 0.1);
  color: var(--news-primary);
}

.page-news .news-chip--gold {
  background: rgba(212, 175, 55, 0.16);
  color: #8C6E1B;
}

.page-news .news-feature__title {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--news-primary);
}

.page-news .news-feature__desc {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--news-text-sub);
}

.page-news .news-feature__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.page-news .news-feature__meta span {
  padding: 4px 12px;
  background: var(--news-bg-light);
  border: 1px solid var(--news-border);
  border-radius: 4px;
  font-size: 12px;
  color: var(--news-primary-2);
}

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

.page-news .news-timeline::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: var(--news-border);
}

.page-news .news-item {
  position: relative;
  padding: 18px 0 18px 20px;
  border-left: 3px solid var(--item-color, var(--news-primary));
  background: var(--news-bg-light);
  border-radius: 0 6px 6px 0;
  margin-bottom: 14px;
  overflow: hidden;
}

.page-news .news-item--blue {
  --item-color: var(--news-primary);
}

.page-news .news-item--gold {
  --item-color: var(--news-gold);
}

.page-news .news-item::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 26px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--item-color);
  border: 3px solid #FFFFFF;
  box-shadow: 0 0 0 1px var(--item-color);
}

.page-news .news-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.page-news .news-item__version {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--news-text-sub);
  letter-spacing: 0.06em;
}

.page-news .news-item__title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
  color: var(--news-primary);
}

.page-news .news-item__desc {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--news-text-sub);
}

.page-news .news-palette {
  position: relative;
  border: 1px solid var(--news-border);
  border-radius: var(--news-radius);
  overflow: hidden;
  margin-bottom: 32px;
}

.page-news .news-palette img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news .news-palette__caption {
  padding: 12px 18px;
  font-size: 13px;
  color: var(--news-primary-2);
  background: var(--news-bg-light);
  border-top: 1px solid var(--news-border);
}

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

.page-news .news-topic {
  --topic-color: var(--news-primary);
  position: relative;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid var(--news-border);
  border-left: 4px solid var(--topic-color);
  border-radius: var(--news-radius);
  padding: 22px;
  scroll-margin-top: calc(var(--header-height) + 24px);
  box-shadow: 0 2px 0 rgba(10, 43, 74, 0.04);
}

.page-news .news-topic--orange {
  --topic-color: var(--news-accent);
}

.page-news .news-topic--blue {
  --topic-color: var(--news-primary);
}

.page-news .news-topic--gold {
  --topic-color: var(--news-gold);
}

.page-news .news-topic--green {
  --topic-color: var(--news-green);
}

.page-news .news-topic__head {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--news-border);
}

.page-news .news-topic__flag {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--topic-color);
  border-radius: 2px;
  margin-bottom: 12px;
}

.page-news .news-topic__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--news-primary);
}

.page-news .news-topic__desc {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--news-text-sub);
}

.page-news .news-thumb {
  margin: 18px 0 4px;
  border-radius: var(--news-radius);
  overflow: hidden;
  background: var(--news-bg-light);
}

.page-news .news-thumb img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news .news-list {
  margin-top: 10px;
}

.page-news .news-list__item {
  position: relative;
  padding: 14px 0 14px 20px;
  border-bottom: 1px solid var(--news-border);
}

.page-news .news-list__item:last-child {
  border-bottom: none;
}

.page-news .news-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 8px;
  height: 8px;
  background: var(--topic-color);
  border-radius: 2px;
  transform: rotate(45deg);
}

.page-news .news-list__meta {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--topic-color);
  margin-bottom: 5px;
}

.page-news .news-list__title {
  display: block;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
  color: var(--news-primary);
}

.page-news .news-subscribe {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.page-news .news-subscribe__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(10, 43, 74, 0.97), rgba(27, 58, 92, 0.94)),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.04) 0 10px, transparent 10px 20px);
  border-radius: 8px;
  padding: 34px 26px;
  color: #FFFFFF;
  overflow: hidden;
}

.page-news .news-subscribe__panel::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -60px;
  width: 160px;
  height: 160px;
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  pointer-events: none;
}

.page-news .news-subscribe__index {
  display: block;
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--news-gold);
  margin-bottom: 8px;
}

.page-news .news-subscribe__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
}

.page-news .news-subscribe__desc {
  max-width: 560px;
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.page-news .news-subscribe__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.page-news .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.page-news .btn:hover {
  transform: translateY(-2px);
}

.page-news .btn--gold {
  background: var(--news-gold);
  color: var(--news-primary);
}

.page-news .btn--gold:hover {
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.page-news .btn--ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}

.page-news .btn--ghost:hover {
  border-color: var(--news-gold);
  color: var(--news-gold);
}

@media (min-width: 700px) {
  .page-news .news-feature {
    grid-template-columns: 1.2fr 1fr;
  }

  .page-news .news-feature__media img {
    height: 100%;
    max-height: 360px;
    object-fit: cover;
  }

  .page-news .news-feature__content {
    padding: 32px;
  }

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

  .page-news .news-palette img {
    aspect-ratio: 2 / 1;
  }

  .page-news .news-thumb img {
    max-height: 220px;
  }

  .page-news .news-subscribe__panel {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
  }

  .page-news .news-subscribe__desc {
    margin-top: 8px;
  }

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

@media (min-width: 1024px) {
  .page-news .news-hero {
    padding: 96px 0 72px;
  }

  .page-news .news-layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 64px;
    padding-top: 60px;
    padding-bottom: 100px;
  }

  .page-news .news-side__inner {
    position: sticky;
    top: calc(var(--header-height) + 32px);
    padding: 26px;
  }

  .page-news .news-side__nav {
    flex-direction: column;
    gap: 6px;
  }

  .page-news .news-side__link {
    border-radius: 4px;
    background: transparent;
    justify-content: flex-start;
    padding: 11px 14px;
  }

  .page-news .news-side__link:hover {
    background: #FFFFFF;
  }

  .page-news .news-side__stats {
    grid-template-columns: 1fr;
  }

  .page-news .news-block__title {
    font-size: 30px;
  }

  .page-news .news-item {
    padding: 20px 24px 20px 22px;
  }

  .page-news .news-item__title {
    font-size: 18px;
  }

  .page-news .news-topic {
    padding: 26px;
  }

  .page-news .news-subscribe__panel {
    padding: 48px 56px;
  }
}
