.page-news {
  --news-sidebar-width: 288px;
  background: var(--bg-deep);
  color: var(--text-warm);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  padding-bottom: 72px;
}

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

.page-news .breadcrumb {
  margin: 28px 0 0;
}

.page-news .news-hero {
  position: relative;
  padding: 40px 0 48px;
  border-bottom: 1px solid rgba(242, 240, 234, 0.08);
}

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

.page-news .news-hero__code {
  position: absolute;
  right: -6px;
  top: -18px;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(72px, 16vw, 172px);
  line-height: 1;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(225, 6, 0, 0.32);
  transform: skewX(-12deg);
  pointer-events: none;
  user-select: none;
}

.page-news .news-hero__title {
  margin: 10px 0 0;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(2rem, 5.4vw, 3.6rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  max-width: 760px;
  text-wrap: balance;
}

.page-news .news-hero__desc {
  margin: 20px 0 0;
  color: var(--text-soft);
  font-size: 1.0625rem;
  max-width: 640px;
}

.page-news .news-hero__rail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 9px 16px;
  background: rgba(28, 28, 36, 0.78);
  border-left: 3px solid var(--accent-red);
  border-right: 3px solid rgba(247, 255, 0, 0.55);
  font-size: 0.9375rem;
  color: var(--text-warm);
  letter-spacing: 0.02em;
}

.page-news .news-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-yellow);
  animation: news-pulse 2.4s ease-in-out infinite;
}

.page-news .news-hero__tape {
  height: 4px;
  margin-top: 40px;
  background: linear-gradient(90deg, var(--accent-red) 0%, var(--accent-red) 42%, var(--accent-yellow) 42%, var(--accent-yellow) 62%, transparent 62%, transparent 100%);
}

.page-news .news-grid {
  display: flex;
  flex-direction: column;
  gap: 42px;
  margin-top: 40px;
}

.page-news .news-timeline__kicker {
  margin: 0 0 18px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-yellow);
}

.page-news .news-timeline__list {
  list-style: none;
  margin: 0;
  padding: 4px 0 10px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.page-news .news-timeline__entry {
  flex: 0 0 auto;
  scroll-snap-align: start;
  position: relative;
}

.page-news .news-timeline__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(28, 28, 36, 0.85);
  border: 1px solid rgba(242, 240, 234, 0.08);
  border-left: 3px solid var(--accent-red);
  border-radius: 3px;
  text-decoration: none;
  color: var(--text-warm);
  white-space: nowrap;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.page-news .news-timeline__link:hover,
.page-news .news-timeline__link:focus-visible {
  background: rgba(225, 6, 0, 0.16);
  border-color: rgba(225, 6, 0, 0.55);
  color: var(--text-warm);
}

.page-news .news-timeline__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid var(--accent-red);
  flex: 0 0 auto;
}

.page-news .news-timeline__entry.is-live .news-timeline__dot {
  background: var(--accent-yellow);
  border-color: var(--accent-yellow);
  animation: news-pulse 2.4s ease-in-out infinite;
}

.page-news .news-timeline__meta {
  font-size: 0.8125rem;
  color: var(--text-soft);
}

.page-news .news-timeline__title {
  font-size: 0.9375rem;
  font-weight: 600;
}

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

.page-news .news-post {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(242, 240, 234, 0.09);
  padding: 30px 22px 24px;
}

.page-news .news-post::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, transparent 50%, rgba(225, 6, 0, 0.4) 50%);
  pointer-events: none;
}

.page-news .news-post--glass {
  background: rgba(28, 28, 36, 0.82);
}

.page-news .news-post--teal {
  background: linear-gradient(135deg, var(--bg-teal) 0%, #071F1F 100%);
}

.page-news .news-post--wine {
  background: linear-gradient(135deg, var(--bg-wine) 0%, #2D0916 100%);
}

.page-news .news-post--indigo {
  background: linear-gradient(135deg, var(--bg-indigo) 0%, #17102B 100%);
}

.page-news .news-post__index {
  position: absolute;
  right: 14px;
  bottom: 4px;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(72px, 10vw, 118px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 240, 234, 0.07);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.page-news .news-post__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.page-news .news-post__chip {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 2px;
  background: var(--bg-glass);
  border-left-width: 3px;
  border-left-style: solid;
  color: var(--text-warm);
}

.page-news .news-post__chip--red {
  border-left-color: var(--accent-red);
}

.page-news .news-post__chip--yellow {
  border-left-color: var(--accent-yellow);
}

.page-news .news-post__time {
  font-size: 0.875rem;
  color: var(--text-soft);
}

.page-news .news-post__title {
  margin: 0 0 20px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(1.375rem, 2.6vw, 1.9rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

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

.page-news .news-post__copy {
  min-width: 0;
  font-size: 1rem;
}

.page-news .news-post__copy p {
  margin: 0 0 16px;
  color: var(--text-warm);
}

.page-news .news-post__list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-news .news-post__list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 18px;
  position: relative;
  color: var(--text-warm);
}

.page-news .news-post__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 3px;
  background: var(--accent-red);
  transform: skewX(-32deg);
}

.page-news .news-post__list strong {
  font-weight: 700;
}

.page-news .news-post__list span {
  color: var(--text-soft);
  font-size: 0.9375rem;
}

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

.page-news .news-post__stat {
  flex: 1 1 84px;
  padding: 12px 14px;
  background: rgba(10, 10, 15, 0.55);
  border: 1px solid rgba(242, 240, 234, 0.08);
  border-top: 2px solid var(--accent-yellow);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
}

.page-news .news-post__stat-num {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--accent-yellow);
}

.page-news .news-post__stat-label {
  font-size: 0.8125rem;
  color: var(--text-soft);
  margin-top: 4px;
}

.page-news .news-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(10, 10, 15, 0.5);
  border: 1px solid rgba(242, 240, 234, 0.1);
  aspect-ratio: 4 / 3;
  margin: 0;
  flex: 0 1 360px;
}

.page-news .news-thumb--wide {
  aspect-ratio: 3 / 2;
}

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

.page-news .news-post__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(242, 240, 234, 0.08);
}

.page-news .news-post__tags span {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.8125rem;
  color: var(--text-soft);
  background: rgba(10, 10, 15, 0.5);
  border-radius: 2px;
  border-left: 2px solid var(--accent-red);
}

.page-news .news-version {
  margin-bottom: 18px;
}

.page-news .news-version__tag {
  display: inline-block;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1rem;
  color: var(--accent-yellow);
  margin-bottom: 6px;
}

.page-news .news-version__item {
  padding: 12px 14px;
  background: rgba(10, 10, 15, 0.32);
  border-radius: 3px;
  border: 1px solid rgba(242, 240, 234, 0.08);
  margin-bottom: 8px;
}

.page-news .news-version__item:last-child {
  margin-bottom: 0;
}

.page-news .news-version__item strong {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 2px;
}

.page-news .news-version__item p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-soft);
}

.page-news .news-post__note {
  font-size: 0.875rem;
  color: var(--text-soft);
  background: rgba(10, 10, 15, 0.4);
  padding: 10px 14px;
  border-radius: 3px;
}

.page-news .news-post__quote {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-left: 4px solid var(--accent-yellow);
  background: rgba(10, 10, 15, 0.4);
  font-family: var(--font-title);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-warm);
}

.page-news .news-coverage {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news .news-coverage li {
  padding: 6px 12px;
  background: rgba(10, 10, 15, 0.45);
  border: 1px solid rgba(242, 240, 234, 0.1);
  border-left: 3px solid var(--accent-red);
  border-radius: 3px;
  font-size: 0.9375rem;
  font-weight: 600;
}

.page-news .btn {
  margin-top: 4px;
}

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

.page-news .news-side__block {
  background: rgba(28, 28, 36, 0.66);
  border: 1px solid rgba(242, 240, 234, 0.08);
  border-radius: 5px;
  padding: 20px 18px;
}

.page-news .news-side__title {
  margin: 0 0 14px;
  font-family: var(--font-title);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-yellow);
}

.page-news .news-filters__list,
.page-news .news-related__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-news .news-filters__list a,
.page-news .news-related__list a {
  display: block;
  padding: 8px 10px;
  border-radius: 3px;
  background: rgba(10, 10, 15, 0.4);
  border: 1px solid transparent;
  border-left: 2px solid var(--accent-red);
  color: var(--text-warm);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.page-news .news-filters__list a:hover,
.page-news .news-filters__list a:focus-visible,
.page-news .news-related__list a:hover,
.page-news .news-related__list a:focus-visible {
  background: rgba(225, 6, 0, 0.14);
  border-color: rgba(225, 6, 0, 0.45);
  color: var(--text-warm);
}

.page-news .news-side__cta {
  position: relative;
  padding: 24px 18px;
  background: linear-gradient(145deg, rgba(90, 16, 38, 0.7) 0%, rgba(28, 28, 36, 0.9) 100%);
  border: 1px solid rgba(242, 240, 234, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

.page-news .news-side__cta::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, transparent 50%, rgba(247, 255, 0, 0.4) 50%);
}

.page-news .news-side__cta-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-yellow);
  margin-bottom: 12px;
  animation: news-pulse 2.4s ease-in-out infinite;
}

.page-news .news-side__cta-title {
  margin: 0 0 8px;
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 800;
}

.page-news .news-side__cta-text {
  margin: 0 0 16px;
  font-size: 0.9375rem;
  color: var(--text-soft);
}

.page-news .news-side__email {
  margin: 14px 0 0;
  font-size: 0.875rem;
  color: var(--text-soft);
  word-break: break-all;
}

@keyframes news-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(247, 255, 0, 0.5);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(247, 255, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(247, 255, 0, 0);
  }
}

@media (min-width: 960px) {
  .page-news .news-hero {
    padding: 56px 0 62px;
  }

  .page-news .news-hero__rail {
    margin-top: 32px;
  }

  .page-news .news-grid {
    display: grid;
    grid-template-columns: 232px minmax(0, 1fr) var(--news-sidebar-width);
    gap: 34px;
    align-items: start;
    margin-top: 48px;
  }

  .page-news .news-timeline {
    position: sticky;
    top: 96px;
  }

  .page-news .news-timeline__list {
    display: block;
    gap: 0;
    overflow: visible;
    scroll-snap-type: none;
    padding: 4px 0 0;
    margin-left: 0;
  }

  .page-news .news-timeline__entry {
    flex: none;
    position: relative;
    padding: 0 0 26px 28px;
  }

  .page-news .news-timeline__entry::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 26px;
    bottom: -2px;
    width: 2px;
    background: rgba(225, 6, 0, 0.28);
  }

  .page-news .news-timeline__entry:last-child::before {
    display: none;
  }

  .page-news .news-timeline__link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    white-space: normal;
    padding: 9px 12px;
    background: transparent;
    border: 1px solid transparent;
    border-left: 2px solid rgba(225, 6, 0, 0.45);
    border-radius: 0;
  }

  .page-news .news-timeline__link:hover,
  .page-news .news-timeline__link:focus-visible {
    background: rgba(28, 28, 36, 0.9);
    border-color: rgba(225, 6, 0, 0.55);
    border-left-width: 2px;
  }

  .page-news .news-timeline__dot {
    position: absolute;
    left: 0;
    top: 14px;
    width: 18px;
    height: 18px;
    border-width: 3px;
  }

  .page-news .news-timeline__meta {
    font-size: 0.75rem;
  }

  .page-news .news-timeline__title {
    font-size: 0.9375rem;
  }

  .page-news .news-post {
    padding: 34px 30px 28px;
  }

  .page-news .news-post__body--split {
    flex-direction: row;
    align-items: flex-start;
  }

  .page-news .news-post__body--split .news-post__copy {
    flex: 1 1 56%;
  }

  .page-news .news-post__body--split .news-thumb {
    flex: 0 1 42%;
  }

  .page-news .news-post__body--reverse {
    flex-direction: row-reverse;
  }

  .page-news .news-side {
    position: sticky;
    top: 96px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .news-hero__dot,
  .page-news .news-timeline__entry.is-live .news-timeline__dot,
  .page-news .news-side__cta-dot {
    animation: none;
  }
}
