.page-news {
  --card-bg: rgba(255, 255, 255, 0.07);
  --card-border: rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
  padding-top: clamp(28px, 5vw, 72px);
  padding-bottom: clamp(40px, 7vw, 96px);
  background:
    radial-gradient(1100px 520px at 88% -8%, rgba(29, 78, 216, 0.38), transparent 62%),
    radial-gradient(800px 520px at 8% 22%, rgba(0, 180, 216, 0.2), transparent 56%),
    linear-gradient(180deg, var(--color-deep-blue) 0%, #081226 46%, #0B1B34 100%);
}

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

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

.page-news .news-hero {
  position: relative;
  padding: 24px 0 64px;
  overflow: hidden;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -120px;
  width: 560px;
  height: 420px;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.42), rgba(0, 180, 216, 0.16) 55%, rgba(245, 179, 1, 0.28));
  clip-path: polygon(28% 0, 100% 0, 82% 100%, 0 100%);
  pointer-events: none;
}

.page-news .news-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.page-news .news-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--color-light-gold);
  text-transform: uppercase;
}

.page-news .news-hero__kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--color-gold);
  flex-shrink: 0;
}

.page-news .news-hero__title {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(42px, 7vw, 84px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.page-news .news-hero__title em {
  font-style: normal;
  color: var(--color-gold);
}

.page-news .news-hero__title-sep {
  margin: 0 0.12em;
  color: var(--color-electric-blue);
}

.page-news .news-hero__desc {
  max-width: 680px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
}

.page-news .news-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
}

.page-news .news-hero__facts .data-stat {
  min-width: 108px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.page-news .news-hero__facts .stat-value {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1.2;
}

.page-news .news-hero__facts .stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.76rem;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
}

.page-news .news-hero__vnote {
  display: none;
}

.page-news .spotlight {
  position: relative;
  padding: 8px 0 60px;
}

.page-news .spotlight-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 5vw, 48px);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(245, 179, 1, 0.28);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(2, 8, 23, 0.45);
}

.page-news .spotlight-card::before {
  content: "";
  position: absolute;
  right: -32px;
  top: -32px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(245, 179, 1, 0.22), transparent 68%);
  pointer-events: none;
}

.page-news .spotlight-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--color-gold);
  box-shadow: 0 0 0 8px rgba(245, 179, 1, 0.12);
}

.page-news .spotlight-body {
  display: grid;
  align-content: start;
  gap: 16px;
}

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

.page-news .spotlight-date {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--color-light-gold);
}

.page-news .spotlight-body h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text);
}

.page-news .spotlight-body > p {
  margin: 0;
  max-width: 900px;
  font-family: var(--font-body);
  line-height: 1.8;
  color: var(--color-text-secondary);
}

.page-news .spotlight-body ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .spotlight-body li {
  position: relative;
  padding-left: 22px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
}

.page-news .spotlight-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  background: var(--color-gold);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.page-news .spotlight-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-news .spotlight-note span {
  padding: 6px 12px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--color-text-muted);
}

.page-news .spotlight-body .btn {
  justify-self: start;
  margin-top: 8px;
}

.page-news .filter-section,
.page-news .timeline-section {
  padding: 20px 0 48px;
}

.page-news .filter-desc {
  margin: -6px 0 24px;
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--color-text-secondary);
}

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

.page-news .filter-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, background 0.3s;
}

.page-news .filter-link small {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

.page-news .filter-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-gold);
}

.page-news .filter-link--update {
  border-color: rgba(245, 179, 1, 0.42);
}

.page-news .filter-link--optimize {
  border-color: rgba(0, 180, 216, 0.42);
}

.page-news .filter-link--data {
  border-color: rgba(29, 78, 216, 0.62);
}

.page-news .timeline-list {
  position: relative;
  margin-top: 40px;
  padding-bottom: 8px;
}

.page-news .timeline-list::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 4px;
  bottom: 16px;
  width: 2px;
  transform: translateX(-1px);
  background: linear-gradient(to bottom, rgba(245, 179, 1, 0.55), rgba(0, 180, 216, 0.3), rgba(29, 78, 216, 0.08));
}

.page-news .timeline-row {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 14px;
  margin-bottom: 72px;
}

.page-news .timeline-row:last-child {
  margin-bottom: 24px;
}

.page-news .timeline-dot {
  position: relative;
  justify-self: center;
  align-self: start;
  width: 16px;
  height: 16px;
  margin-top: 28px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 6px rgba(245, 179, 1, 0.16);
  z-index: 1;
}

.page-news .timeline-row--optimize .timeline-dot {
  background: var(--color-electric-blue);
  box-shadow: 0 0 0 6px rgba(0, 180, 216, 0.16);
}

.page-news .timeline-row--data .timeline-dot {
  background: var(--color-royal-blue);
  box-shadow: 0 0 0 6px rgba(29, 78, 216, 0.24);
}

.page-news .timeline-card {
  min-width: 0;
  padding: clamp(20px, 4vw, 28px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--card-border);
  border-top: 3px solid var(--color-gold);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(2, 8, 23, 0.3);
}

.page-news .timeline-card--optimize {
  border-top-color: var(--color-electric-blue);
}

.page-news .timeline-card--data {
  border-top-color: var(--color-royal-blue);
}

.page-news .timeline-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 12px;
}

.page-news .timeline-meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--color-text-muted);
}

.page-news .timeline-card h3 {
  margin: 4px 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(19px, 2.4vw, 24px);
  font-weight: 800;
  line-height: 1.28;
  color: var(--color-text);
}

.page-news .timeline-card p {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
}

.page-news .timeline-media {
  margin-top: 16px;
}

.page-news .timeline-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  object-fit: cover;
}

.page-news .timeline-card details {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.16);
}

.page-news .timeline-card summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  cursor: pointer;
  user-select: none;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  color: var(--color-light-gold);
}

.page-news .timeline-card summary::-webkit-details-marker {
  display: none;
}

.page-news .timeline-card summary::before {
  content: "＋";
  font-family: var(--font-mono);
  color: var(--color-gold);
}

.page-news .timeline-card details[open] summary::before {
  content: "－";
}

.page-news .timeline-card details p {
  margin-top: 12px;
  font-size: 0.86rem;
  color: var(--color-text-muted);
}

.page-news .timeline-outro {
  padding: 16px 0 8px;
  text-align: center;
}

.page-news .timeline-outro .btn {
  margin-inline: auto;
}

.page-news .subscribe-section {
  padding: 56px 0 0;
}

.page-news .subscribe-panel {
  position: relative;
  display: grid;
  gap: 24px;
  overflow: hidden;
  padding: clamp(28px, 6vw, 56px);
  background:
    radial-gradient(circle at 85% 15%, rgba(245, 179, 1, 0.2), transparent 44%),
    linear-gradient(140deg, rgba(29, 78, 216, 0.32), rgba(10, 30, 63, 0.88) 52%);
  border: 1px solid rgba(245, 179, 1, 0.32);
  border-radius: 22px;
}

.page-news .subscribe-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 200px;
  height: 200px;
  border: 1px dashed rgba(245, 179, 1, 0.35);
  border-radius: 50%;
  pointer-events: none;
}

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

.page-news .subscribe-panel h2 {
  margin: 8px 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--color-text);
}

.page-news .subscribe-panel p {
  max-width: 640px;
  margin: 0;
  font-family: var(--font-body);
  line-height: 1.8;
  color: var(--color-text-secondary);
}

.page-news .subscribe-points {
  display: grid;
  gap: 12px;
  margin: 16px 0 24px;
  padding: 0;
  list-style: none;
}

.page-news .subscribe-points li {
  position: relative;
  padding-left: 22px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.84);
}

.page-news .subscribe-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 12px;
  height: 2px;
  background: var(--color-gold);
}

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

.page-news .subscribe-aside {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.page-news .subscribe-aside .vertical-note {
  color: var(--color-text-muted);
}

@media (min-width: 720px) {
  .page-news .news-hero__grid {
    grid-template-columns: 1fr 340px;
    align-items: end;
  }

  .page-news .news-hero__facts {
    justify-content: flex-end;
  }

  .page-news .spotlight-card {
    grid-template-columns: 100px 1fr;
    column-gap: 36px;
    align-items: start;
  }

  .page-news .spotlight-icon {
    grid-row: 1;
  }
}

@media (min-width: 900px) {
  .page-news .subscribe-panel {
    grid-template-columns: 1fr 180px;
    align-items: end;
  }
}

@media (min-width: 1024px) {
  .page-news .timeline-list::before {
    left: 50%;
  }

  .page-news .timeline-row {
    grid-template-columns: 1fr 64px 1fr;
    column-gap: 0;
    align-items: start;
  }

  .page-news .timeline-dot {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    margin: 0;
    transform: translateY(28px);
  }

  .page-news .timeline-card {
    grid-column: 1;
    grid-row: 1;
  }

  .page-news .timeline-row--right .timeline-card {
    grid-column: 3;
  }
}

@media (min-width: 1200px) {
  .page-news .news-hero__vnote {
    display: block;
    position: absolute;
    right: -8px;
    top: 80px;
    z-index: 2;
  }
}
