.page-news {
  --news-clip: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  --news-gap: 28px;
  --news-hero-bg: linear-gradient(118deg, #0A2540 0%, #0B3B6E 68%, #FF5A00 240%);
}

.page-news .news-hero {
  background: var(--news-hero-bg);
  color: #FFFFFF;
  padding: 56px 0 88px;
  position: relative;
  overflow: hidden;
}

.page-news .news-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, transparent 42%, rgba(255,255,255,0.07) 42%, rgba(255,255,255,0.07) 46%, transparent 46%);
}

.page-news .news-hero::after {
  content: '';
  position: absolute;
  left: -80px;
  bottom: -160px;
  width: 340px;
  height: 340px;
  border: 2px solid rgba(255,90,0,0.25);
  transform: rotate(18deg);
  border-radius: 8px;
}

.page-news .news-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
}

.page-news .news-hero .breadcrumbs {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  margin-bottom: 32px;
}

.page-news .news-hero .breadcrumbs a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

.page-news .news-hero .breadcrumbs__sep {
  margin: 0 8px;
  color: rgba(255,255,255,0.4);
}

.page-news .news-hero__kicker {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FF5A00;
  margin-bottom: 12px;
}

.page-news .news-hero__title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
  color: #FFFFFF;
}

.page-news .news-hero__title-slash {
  color: #FF5A00;
  margin: 0 8px;
}

.page-news .news-hero__desc {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255,255,255,0.88);
  margin: 0 0 18px;
  letter-spacing: 0.08em;
}

.page-news .news-hero__lead {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.page-news .news-cats {
  background: #F9FAFB;
  padding: 28px 0 32px;
  border-bottom: 1px solid #E2E8F0;
}

.page-news .news-cats__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}

.page-news .news-cats__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #2D3748;
  margin: 0;
}

.page-news .news-cats__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-news .news-cats__item {
  clip-path: var(--news-clip);
  background: #FFFFFF;
  color: #2D3748;
  border: 1px solid #E2E8F0;
  padding: 10px 26px 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--ease-out), color var(--ease-out), border-color var(--ease-out);
}

.page-news .news-cats__item--active {
  background: #0A2540;
  border-color: #0A2540;
  color: #FFFFFF;
}

.page-news .news-cats__item:hover,
.page-news .news-cats__item:focus {
  background: #FF5A00;
  border-color: #FF5A00;
  color: #0A2540;
}

.page-news .news-version {
  padding: 64px 0 56px;
  background: #0A2540;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-news .news-version::after {
  content: '';
  position: absolute;
  width: 560px;
  height: 560px;
  right: -220px;
  top: -260px;
  background: radial-gradient(circle, rgba(255,90,0,0.16) 0%, transparent 70%);
}

.page-news .news-version .section-kicker {
  color: #FF5A00;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 13px;
  text-transform: uppercase;
}

.page-news .news-version .section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 10px 0 12px;
  line-height: 1.15;
}

.page-news .news-version .section-description {
  color: rgba(255,255,255,0.68);
  max-width: 640px;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.page-news .news-version__head {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}

.page-news .news-version__timeline {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  margin-bottom: 36px;
}

.page-news .version-node {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 22px 24px 18px;
  transition: background var(--ease-out), border-color var(--ease-out);
}

.page-news .version-node:hover {
  background: rgba(255,90,0,0.1);
  border-color: rgba(255,90,0,0.4);
}

.page-news .version-node__dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FF5A00;
  margin-bottom: 14px;
  position: relative;
  box-shadow: 0 0 0 4px rgba(255,90,0,0.2);
}

.page-news .version-node--current .version-node__dot {
  background: #00A3A3;
  box-shadow: 0 0 0 4px rgba(0,163,163,0.24);
}

.page-news .version-node__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 10px;
  line-height: 1.35;
}

.page-news .version-node__desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  margin: 0 0 12px;
}

.page-news .version-node__meta {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #FF5A00;
  background: rgba(255,90,0,0.12);
  padding: 4px 12px;
  clip-path: var(--news-clip);
}

.page-news .news-version__media {
  position: relative;
  z-index: 1;
  margin: 0;
}

.page-news .news-version__media img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  box-shadow: var(--shadow-md);
}

.page-news .news-version__media figcaption {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.page-news .news-articles {
  background: #F9FAFB;
  padding: 64px 0 72px;
}

.page-news .news-articles__head {
  margin-bottom: 32px;
}

.page-news .news-articles .section-kicker {
  color: #FF5A00;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 13px;
  text-transform: uppercase;
}

.page-news .news-articles .section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: #0A2540;
  margin: 10px 0 12px;
  line-height: 1.15;
}

.page-news .news-articles .section-description {
  color: #A0AEC0;
  max-width: 640px;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.page-news .news-articles__visual {
  margin: 0 0 40px;
}

.page-news .news-articles__visual img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: block;
}

.page-news .news-articles__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  scroll-margin-top: 96px;
}

.page-news .article-card {
  background: #FFFFFF;
  border-radius: var(--radius);
  border-left: 3px solid transparent;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease-out), border-left-color var(--ease-out), box-shadow var(--ease-out), background var(--ease-out);
  scroll-margin-top: 96px;
}

.page-news .article-card:hover {
  transform: translateY(-2px);
  border-left-color: #FF5A00;
  box-shadow: var(--shadow-md);
  background: #FFFFFF;
}

.page-news .article-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.page-news .article-card__tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-news .article-card__meta {
  font-size: 13px;
  color: #A0AEC0;
  font-weight: 500;
}

.page-news .article-card__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: #0A2540;
  margin: 0 0 12px;
}

.page-news .article-card__excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: #2D3748;
  margin: 0 0 18px;
}

.page-news .article-card__thumb {
  margin: 0 0 18px;
  border-radius: var(--radius);
  overflow: hidden;
}

.page-news .article-card__thumb img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-news .article-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #0A2540;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--ease-out), border-color var(--ease-out);
}

.page-news .article-card__link span {
  transition: transform var(--ease-out);
}

.page-news .article-card__link:hover,
.page-news .article-card__link:focus {
  color: #FF5A00;
  border-bottom-color: rgba(255,90,0,0.3);
}

.page-news .article-card__link:hover span {
  transform: translateX(4px);
}

.page-news .news-cta {
  background: #0A2540;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.page-news .news-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #FF5A00 0%, #0A2540 55%, #00A3A3 100%);
}

.page-news .news-cta::after {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  border: 2px solid rgba(255,90,0,0.2);
  transform: rotate(22deg);
  border-radius: 8px;
}

.page-news .news-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-news .news-cta__title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.25;
  color: #FFFFFF;
  margin: 0 0 14px;
}

.page-news .news-cta__desc {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.68);
}

.page-news .news-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

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

  .page-news .news-hero__title {
    font-size: 56px;
  }

  .page-news .news-hero__desc {
    font-size: 20px;
  }

  .page-news .news-hero__lead {
    font-size: 16px;
  }

  .page-news .news-cats__row {
    gap: 14px;
  }

  .page-news .news-version .section-title,
  .page-news .news-articles .section-title {
    font-size: 40px;
  }

  .page-news .news-version__timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
  }

  .page-news .news-version__timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(to right, rgba(255,90,0,0.6), rgba(255,255,255,0.14), rgba(0,163,163,0.5));
  }

  .page-news .version-node {
    padding: 28px 28px 22px;
    min-height: 208px;
  }

  .page-news .news-articles__grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 28px;
  }

  .page-news .article-card--large {
    grid-column: span 7;
  }

  .page-news .article-card--wide {
    grid-column: span 5;
  }

  .page-news .article-card:not(.article-card--large):not(.article-card--wide) {
    grid-column: span 5;
  }

  .page-news .article-card--large + .article-card:not(.article-card--large):not(.article-card--wide) {
    grid-column: span 5;
  }

  .page-news .article-card__title {
    font-size: 24px;
  }

  .page-news .article-card__excerpt {
    font-size: 15px;
  }

  .page-news .article-card {
    min-height: 260px;
  }

  .page-news .news-cta__title {
    font-size: 36px;
  }
}

@media (min-width: 1024px) {
  .page-news .news-version__media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 36px;
  }

  .page-news .news-version__media figcaption {
    margin-top: 0;
    font-size: 15px;
    line-height: 1.8;
    max-width: 320px;
  }

  .page-news .news-articles__grid {
    row-gap: 34px;
  }

  .page-news .article-card--large {
    grid-column: span 7;
  }

  .page-news .article-card--wide {
    grid-column: span 5;
  }

  .page-news .article-card:not(.article-card--large):not(.article-card--wide) {
    grid-column: span 4;
  }
}
