.page-news {
  --pnews-ink: #1A1816;
  --pnews-body: #2E2A27;
  --pnews-muted: #7C6B58;
  --pnews-line: #C7B8A6;
  --pnews-surface: #FFFDF8;
  --pnews-accent: #5A6B4E;
  --pnews-accent-strong: #7B8A5A;
  --pnews-warm: #B05E3C;
  --pnews-deep: #10233F;
  --pnews-deep-2: #1B3456;
  --pnews-energy: #FF6A2B;
  --pnews-highlight: #D9F24B;
  background: var(--c-bg);
  color: var(--c-body);
}

.page-news img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.page-news .pnews-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--pnews-energy);
  text-transform: uppercase;
}

.page-news .pnews-kicker::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.page-news .pnews-hero {
  position: relative;
  padding: 24px 0 56px;
  color: var(--c-text-dark);
  background: linear-gradient(135deg, var(--pnews-ink) 0%, var(--pnews-deep) 72%, var(--pnews-deep-2) 100%);
  overflow: hidden;
}

.page-news .pnews-hero::before,
.page-news .pnews-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.page-news .pnews-hero::before {
  width: 320px;
  height: 320px;
  right: -100px;
  top: -120px;
  background: radial-gradient(circle, rgba(217, 242, 75, 0.18) 0%, rgba(255, 106, 43, 0.06) 45%, transparent 72%);
}

.page-news .pnews-hero::after {
  width: 180px;
  height: 180px;
  left: -60px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(255, 106, 43, 0.22) 0%, transparent 70%);
}

.page-news .pnews-hero .container {
  position: relative;
  z-index: 1;
}

.page-news .pnews-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 36px;
}

.page-news .pnews-hero__title {
  margin: 0 0 16px;
  font-family: var(--font-head);
  font-size: clamp(34px, 6vw, 58px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--c-text-dark);
}

.page-news .pnews-hero__lead {
  max-width: 640px;
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.78);
}

.page-news .pnews-hero__line {
  display: flex;
  gap: 8px;
  width: min(360px, 100%);
  margin-top: 28px;
}

.page-news .pnews-hero__line span {
  height: 4px;
  border-radius: 999px;
  background: rgba(245, 240, 232, 0.2);
}

.page-news .pnews-hero__line span:nth-child(1) {
  width: 64px;
  background: var(--pnews-highlight);
}

.page-news .pnews-hero__line span:nth-child(2) {
  width: 28px;
}

.page-news .pnews-hero__line span:nth-child(3) {
  width: 12px;
  background: var(--pnews-energy);
}

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

.page-news .pnews-stat {
  padding: 16px 12px;
  border: 1px solid rgba(245, 240, 232, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(245, 240, 232, 0.06);
  text-align: center;
}

.page-news .pnews-stat__num {
  display: block;
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  color: var(--pnews-highlight);
}

.page-news .pnews-stat__label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: rgba(245, 240, 232, 0.7);
}

.page-news .breadcrumbs {
  color: rgba(245, 240, 232, 0.62);
  font-size: 13px;
}

.page-news .breadcrumbs a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-news .breadcrumbs a:hover {
  color: var(--pnews-highlight);
}

.page-news .breadcrumbs .breadcrumbs__sep {
  display: inline-block;
  margin: 0 8px;
  opacity: 0.6;
}

.page-news .breadcrumbs [aria-current="page"] {
  color: rgba(245, 240, 232, 0.9);
}

.page-news .pnews-editorial {
  padding: 56px 0 72px;
}

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

.page-news .pnews-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--pnews-ink);
  margin-bottom: 28px;
}

.page-news .pnews-section-head__title {
  margin: 0;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--pnews-ink);
}

.page-news .pnews-section-head__note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(176, 94, 60, 0.12);
  color: var(--pnews-warm);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.page-news .pnews-section-head__note::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.page-news .pnews-feature {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 32px;
  overflow: hidden;
  background: var(--pnews-surface);
  border: 1px solid var(--pnews-line);
  border-radius: var(--radius);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.page-news .pnews-feature:hover {
  box-shadow: 0 20px 44px rgba(26, 24, 22, 0.1);
  transform: translateY(-2px);
}

.page-news .pnews-feature__media {
  position: relative;
  min-height: 200px;
}

.page-news .pnews-feature__media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border-radius: 0;
}

.page-news .pnews-feature__flag {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--pnews-ink);
  color: var(--c-text-dark);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
}

.page-news .pnews-feature__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.page-news .pnews-feature__title {
  margin: 12px 0 10px;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
  color: var(--pnews-ink);
}

.page-news .pnews-feature__title a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 2px;
  background-position: left 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
}

.page-news .pnews-feature__title a:hover {
  background-size: 100% 2px;
}

.page-news .pnews-feature__excerpt {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--pnews-body);
}

.page-news .pnews-feature__foot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.page-news .pnews-feature__reading {
  font-size: 13px;
  color: var(--pnews-muted);
}

.page-news .pnews-list {
  border-top: 1px solid var(--pnews-line);
}

.page-news .pnews-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--pnews-line);
  transition: background 0.3s ease, padding 0.3s ease;
}

.page-news .pnews-item:hover {
  background: linear-gradient(90deg, rgba(90, 107, 78, 0.08) 0%, transparent 70%);
  padding-left: 8px;
  padding-right: 8px;
}

.page-news .pnews-item__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.page-news .pnews-item__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 24px;
  padding: 0 8px;
  border-radius: var(--radius-sm);
  background: rgba(176, 94, 60, 0.12);
  color: var(--pnews-warm);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 900;
}

.page-news .pnews-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
}

.page-news .pnews-meta__version {
  color: var(--pnews-muted);
  font-weight: 600;
  white-space: nowrap;
}

.page-news .pnews-item__title {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--pnews-ink);
}

.page-news .pnews-item__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-news .pnews-item__title a:hover {
  color: var(--pnews-accent);
}

.page-news .pnews-item__excerpt {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--pnews-body);
}

.page-news .pnews-item__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--pnews-warm);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.page-news .pnews-item__more:hover {
  gap: 8px;
  text-decoration: underline;
}

.page-news .pnews-list-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.page-news .pnews-list-footer p {
  margin: 0;
  max-width: 520px;
  font-size: 13px;
  color: var(--pnews-muted);
  text-align: center;
  line-height: 1.5;
}

.page-news .pnews-list-footer__line {
  flex: 1;
  height: 1px;
  background: var(--pnews-line);
}

.page-news .pnews-rail {
  display: grid;
  gap: 20px;
}

.page-news .pnews-rail__item {
  padding: 24px;
  background: var(--pnews-surface);
  border: 1px solid var(--pnews-line);
  border-radius: var(--radius);
}

.page-news .pnews-rail__title {
  margin: 0 0 16px;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--pnews-ink);
}

.page-news .pnews-rail__list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: news-hot;
}

.page-news .pnews-rail__list li {
  counter-increment: news-hot;
  padding: 12px 0;
  border-bottom: 1px solid var(--pnews-line);
}

.page-news .pnews-rail__list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.page-news .pnews-rail__list li::before {
  content: "0" counter(news-hot);
  display: inline-block;
  margin-right: 10px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 900;
  color: var(--pnews-warm);
}

.page-news .pnews-rail__list li:first-child::before {
  content: "1";
}

.page-news .pnews-rail__list a {
  color: var(--pnews-body);
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-news .pnews-rail__list a:hover {
  color: var(--pnews-accent);
  text-decoration: underline;
}

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

.page-news .pnews-rail__item--channel {
  background: var(--pnews-ink);
  color: var(--c-text-dark);
  border-color: transparent;
}

.page-news .pnews-rail__item--channel .pnews-rail__title {
  color: var(--c-text-dark);
}

.page-news .pnews-rail__item--channel p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.75);
}

.page-news .pnews-rail__item--channel a {
  color: var(--pnews-highlight);
  font-weight: 700;
  text-decoration: underline;
}

.page-news .pnews-guides {
  padding: 64px 0;
  background: var(--c-surface);
  border-top: 1px solid var(--pnews-line);
  border-bottom: 1px solid var(--pnews-line);
}

.page-news .pnews-guides__head {
  max-width: 760px;
  margin-bottom: 36px;
}

.page-news .pnews-guides__head .pnews-kicker {
  color: var(--pnews-accent);
}

.page-news .pnews-guides__title {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--pnews-ink);
}

.page-news .pnews-guides__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--pnews-muted);
}

.page-news .pnews-guides__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.page-news .pnews-guides__image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 24px 48px rgba(26, 24, 22, 0.14);
}

.page-news .pnews-guides__list {
  border-top: 2px solid var(--pnews-ink);
}

.page-news .pnews-guide-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--pnews-line);
  transition: background 0.25s ease, padding-left 0.25s ease;
}

.page-news .pnews-guide-item:hover {
  background: rgba(90, 107, 78, 0.06);
  padding-left: 12px;
}

.page-news .pnews-guide-item__num {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  color: var(--pnews-accent);
}

.page-news .pnews-guide-item__body h3 {
  margin: 2px 0 6px;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--pnews-ink);
}

.page-news .pnews-guide-item__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--pnews-muted);
}

.page-news .pnews-version {
  padding: 64px 0;
}

.page-news .pnews-version__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 32px 24px;
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(135deg, var(--pnews-warm) 0%, #9C4E32 100%);
  color: var(--c-text-dark);
  overflow: hidden;
}

.page-news .pnews-version__body .pnews-kicker {
  color: var(--c-text-dark);
}

.page-news .pnews-version__title {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--c-text-dark);
}

.page-news .pnews-version__lead {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.88);
}

.page-news .pnews-version .list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.page-news .pnews-version .list li {
  position: relative;
  padding: 8px 0 8px 18px;
  border-bottom: 1px dashed rgba(245, 240, 232, 0.28);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.92);
}

.page-news .pnews-version .list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pnews-highlight);
}

.page-news .pnews-version .list strong {
  color: var(--c-text-dark);
  font-weight: 800;
}

.page-news .pnews-version__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--c-text-dark);
  font-weight: 800;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(16, 35, 63, 0.28);
  transition: background 0.2s ease, gap 0.2s ease;
}

.page-news .pnews-version__link:hover {
  background: rgba(16, 35, 63, 0.5);
  gap: 8px;
}

.page-news .pnews-version__image img {
  width: 100%;
  border-radius: var(--radius);
  border: 4px solid rgba(245, 240, 232, 0.35);
  box-shadow: 0 20px 40px rgba(26, 24, 22, 0.25);
}

.page-news .pnews-timeline {
  padding: 64px 0;
  background: var(--pnews-ink);
  color: var(--c-text-dark);
}

.page-news .pnews-timeline__head .pnews-kicker {
  color: var(--pnews-highlight);
}

.page-news .pnews-timeline__title {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--c-text-dark);
}

.page-news .pnews-timeline__lead {
  margin: 0 0 28px;
  max-width: 680px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.7);
}

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

.page-news .pnews-timeline__image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

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

.page-news .pnews-timeline-item {
  padding: 20px;
  border-radius: var(--radius-sm);
  background: rgba(245, 240, 232, 0.06);
  border-left: 4px solid var(--pnews-accent-strong);
  transition: background 0.25s ease;
}

.page-news .pnews-timeline-item:hover {
  background: rgba(245, 240, 232, 0.1);
}

.page-news .pnews-timeline-item--current {
  border-left-color: var(--pnews-energy);
  background: var(--pnews-deep);
}

.page-news .pnews-timeline-item__version {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(217, 242, 75, 0.18);
  color: var(--pnews-highlight);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
}

.page-news .pnews-timeline-item h3 {
  margin: 0 0 6px;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--c-text-dark);
}

.page-news .pnews-timeline-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.72);
}

.page-news .pnews-subscribe {
  padding: 64px 0;
  background: var(--c-bg);
}

.page-news .pnews-subscribe__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 28px;
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(135deg, var(--pnews-accent) 0%, #46543D 100%);
  color: var(--c-text-dark);
}

.page-news .pnews-subscribe__body .pnews-kicker {
  color: var(--pnews-highlight);
}

.page-news .pnews-subscribe__title {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--c-text-dark);
}

.page-news .pnews-subscribe__desc {
  margin: 0;
  max-width: 700px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.78);
}

.page-news .pnews-subscribe__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.page-news .pnews-subscribe .btn--ghost {
  border-color: rgba(245, 240, 232, 0.56);
  color: var(--c-text-dark);
}

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

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

  .page-news .pnews-feature__media img {
    min-height: 240px;
  }

  .page-news .pnews-timeline__items {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 900px) {
  .page-news .pnews-hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: end;
  }

  .page-news .pnews-guides__grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 56px;
  }

  .page-news .pnews-version__card {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 48px;
    padding: 44px;
    align-items: center;
  }

  .page-news .pnews-subscribe__card {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    align-items: center;
    padding: 36px 40px;
  }
}

@media (min-width: 1024px) {
  .page-news .pnews-editorial__grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
    align-items: start;
  }

  .page-news .pnews-rail {
    position: sticky;
    top: calc(var(--header-h) + 24px);
  }
}
