.page-news {
  position: relative;
  background: linear-gradient(180deg, var(--c-base) 0%, var(--c-base) 60%, var(--c-ink) 100%);
  color: var(--c-ivory);
  overflow-x: hidden;
}

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

.page-news .kicker {
  margin-bottom: 4px;
}

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

.page-news .news-hero {
  position: relative;
  padding: clamp(28px, 5vw, 72px) 0 28px;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(135deg, transparent 20%, rgba(255, 107, 53, 0.16) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.page-news .news-hero__grid {
  position: relative;
  display: grid;
  gap: 24px;
  align-items: center;
}

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

.page-news .news-hero__lede {
  margin: 0;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245, 241, 232, 0.82);
}

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

.page-news .news-hero__visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  line-height: 0;
  box-shadow: 0 18px 40px rgba(7, 31, 24, 0.45);
}

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

.page-news .news-rule {
  height: 10px;
  background: linear-gradient(100deg, var(--c-accent) 0 62%, var(--c-gold) 62% 82%, transparent 82%);
  clip-path: polygon(0 0, 100% 0, 100% 76%, 0 100%);
  margin: 4px 0 0;
}

.page-news .news-updates {
  padding-top: 56px;
}

.page-news .news-updates__layout {
  display: grid;
  gap: 40px;
  margin-top: 24px;
  align-items: start;
}

.page-news .news-versions {
  background: var(--c-ink);
  border: 1px solid rgba(245, 241, 232, 0.08);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
}

.page-news .news-versions__title {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-ochre);
}

.page-news .news-versions__tabs {
  margin-bottom: 4px;
}

.page-news .news-versions .tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.page-news .news-versions__tab {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(245, 241, 232, 0.16);
  color: var(--c-ivory);
  padding: 8px 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
}

.page-news .news-versions__tab:hover {
  border-color: rgba(255, 107, 53, 0.55);
}

.page-news .news-versions__tab[aria-selected="true"] {
  background: rgba(255, 107, 53, 0.16);
  border-color: var(--c-accent);
  color: var(--c-accent);
}

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

.page-news .news-versions__item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(245, 241, 232, 0.07);
}

.page-news .news-versions__item:last-child {
  border-bottom: 0;
}

.page-news .news-versions__ver {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-gold);
  min-width: 48px;
}

.page-news .news-versions__desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--c-ivory);
  opacity: 0.88;
}

.page-news .news-versions__note {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px dashed rgba(245, 241, 232, 0.14);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.7;
  color: var(--c-ochre);
}

.page-news .news-timeline {
  position: relative;
}

.page-news .update-entry {
  position: relative;
  padding-left: 26px;
  padding-bottom: 36px;
}

.page-news .update-entry:last-child {
  padding-bottom: 0;
}

.page-news .update-entry::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: -2px;
  width: 2px;
  background: linear-gradient(to bottom, var(--c-accent) 0%, rgba(255, 107, 53, 0.08) 100%);
}

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

.page-news .update-entry::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.14), 0 0 20px rgba(255, 107, 53, 0.28);
}

.page-news .update-entry__body {
  background: rgba(15, 76, 62, 0.34);
  border: 1px solid rgba(245, 241, 232, 0.08);
  border-radius: var(--radius);
  padding: 18px 18px 18px 20px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.page-news .update-entry__body:hover {
  border-color: rgba(255, 107, 53, 0.32);
  background: rgba(15, 76, 62, 0.55);
}

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

.page-news .update-entry__time {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--c-ochre);
  text-transform: uppercase;
}

.page-news .update-entry__title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
  color: var(--c-ivory);
}

.page-news .update-entry__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(245, 241, 232, 0.78);
}

.page-news .update-entry__desc a {
  color: var(--c-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 107, 53, 0.35);
}

.page-news .update-entry__desc a:hover {
  color: var(--c-gold);
  border-bottom-color: var(--c-gold);
}

.page-news .update-entry__img-wrap {
  margin-top: 16px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--c-ink);
  line-height: 0;
}

.page-news .update-entry__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news .news-topics {
  padding-top: 64px;
}

.page-news .news-topics__grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.page-news .topic-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 20px 20px;
  background: var(--c-mid);
  border: 1px solid rgba(245, 241, 232, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.page-news .topic-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 120px;
  height: 120px;
  background: var(--c-accent);
  opacity: 0.1;
  transform: rotate(14deg);
  pointer-events: none;
}

.page-news .topic-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 107, 53, 0.4);
}

.page-news .topic-card__no {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--c-gold);
}

.page-news .topic-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--c-ivory);
}

.page-news .topic-card__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(245, 241, 232, 0.78);
}

.page-news .topic-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-accent);
  text-decoration: none;
  border-top: 1px dashed rgba(245, 241, 232, 0.14);
}

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

.page-news .news-subscribe {
  padding-top: 64px;
  padding-bottom: 72px;
}

.page-news .news-subscribe__body {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.page-news .news-subscribe__main,
.page-news .news-subscribe__contact {
  border-radius: var(--radius);
  padding: 24px;
}

.page-news .news-subscribe__main {
  background: var(--c-ink);
  border: 1px solid rgba(245, 241, 232, 0.08);
}

.page-news .news-subscribe__contact {
  background: rgba(15, 76, 62, 0.5);
  border: 1px solid rgba(245, 241, 232, 0.08);
}

.page-news .news-subscribe__title {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-gold);
}

.page-news .news-subscribe__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-news .news-subscribe__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-ivory);
}

.page-news .news-subscribe__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background: var(--c-accent);
  transform: rotate(45deg);
  border-radius: 1px;
}

.page-news .news-subscribe__list a {
  color: var(--c-accent);
  text-decoration: none;
}

.page-news .news-subscribe__list a:hover {
  color: var(--c-gold);
}

.page-news .news-subscribe__line {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(245, 241, 232, 0.85);
}

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

.page-news .news-subscribe__line a {
  color: var(--c-accent);
  text-decoration: none;
}

.page-news .news-subscribe__line a:hover {
  color: var(--c-gold);
}

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

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

  .page-news .update-entry__title {
    font-size: 19px;
  }
}

@media (min-width: 960px) {
  .page-news .news-hero {
    padding-top: 64px;
    padding-bottom: 56px;
  }

  .page-news .news-hero__grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
  }

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

  .page-news .news-updates {
    padding-top: 72px;
  }

  .page-news .news-updates__layout {
    grid-template-columns: 280px 1fr;
    gap: 52px;
  }

  .page-news .news-versions {
    position: sticky;
    top: 24px;
  }

  .page-news .update-entry__body {
    padding: 22px 24px;
  }

  .page-news .news-topics,
  .page-news .news-subscribe {
    padding-top: 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .topic-card,
  .page-news .update-entry__body,
  .page-news .news-versions__tab {
    transition: none;
  }
}
