.page-news {
  --hover-violet: rgba(123, 47, 247, 0.08);
  --hover-cyan: rgba(0, 207, 253, 0.04);
  --line-faint: rgba(229, 231, 235, 0.1);
  --line-strong: rgba(0, 207, 253, 0.2);
  background: var(--color-space);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

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

.page-news .breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
  font-size: 14px;
  color: var(--color-mist);
}

.page-news .breadcrumb a {
  color: var(--color-cyan);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

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

.page-news .breadcrumb .sep {
  color: rgba(229, 231, 235, 0.4);
}

.page-news .breadcrumb [aria-current="page"] {
  color: var(--color-white);
  font-weight: 700;
}

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

.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -10%;
  width: 55%;
  height: 520px;
  background: radial-gradient(circle at 70% 30%, rgba(123, 47, 247, 0.18), transparent 60%),
              radial-gradient(circle at 30% 70%, rgba(0, 207, 253, 0.1), transparent 55%);
  pointer-events: none;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  right: -6%;
  top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(160deg, rgba(123, 47, 247, 0.12) 0%, rgba(0, 207, 253, 0.03) 80%);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
  z-index: 0;
}

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

.page-news .news-hero__grid {
  display: grid;
  gap: 36px;
  margin-bottom: 40px;
}

.page-news .news-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-news .news-hero__copy .eyebrow {
  color: var(--color-cyan);
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
}

.page-news .news-hero__copy h1 {
  font-size: clamp(32px, 6vw, 52px);
  line-height: 1.15;
  font-weight: 100;
  margin: 0;
  letter-spacing: 0.02em;
}

.page-news .news-hero__copy .lede {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-mist);
  margin: 8px 0 0;
}

.page-news .news-status {
  background: linear-gradient(150deg, rgba(15, 42, 74, 0.85), rgba(11, 29, 58, 0.75));
  border: 1px solid var(--line-strong);
  border-top: 2px solid var(--color-violet);
  padding: 24px;
  position: relative;
  align-self: start;
}

.page-news .news-status::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(255, 159, 28, 0.08), transparent 45%);
  pointer-events: none;
}

.page-news .news-status__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.page-news .news-status__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-family: var(--font-accent);
  letter-spacing: 0.08em;
  color: var(--color-cyan);
}

.page-news .news-status__live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 10px rgba(0, 207, 253, 0.8);
}

.page-news .news-status__list {
  margin: 0;
}

.page-news .news-status__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-faint);
}

.page-news .news-status__row dt {
  font-size: 14px;
  color: var(--color-mist);
}

.page-news .news-status__row dd {
  font-family: var(--font-accent);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
}

.page-news .news-status__note {
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(229, 231, 235, 0.7);
  padding-left: 12px;
  border-left: 2px solid var(--color-gold);
}

.page-news .news-hero__img {
  margin-top: 0;
  border: 1px solid rgba(0, 207, 253, 0.18);
  box-shadow: 0 24px 80px rgba(5, 11, 26, 0.55);
  position: relative;
}

.page-news .news-hero__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-violet) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.page-news .news-latest {
  position: relative;
  padding: 88px 0 64px;
}

.page-news .news-latest::before {
  content: "";
  position: absolute;
  top: 88px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--color-violet) 0%, transparent 70%);
  opacity: 0.35;
  pointer-events: none;
}

.page-news .news-latest .section-head {
  margin-bottom: 48px;
}

.page-news .section-head .eyebrow {
  color: var(--color-gold);
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.page-news .section-head h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 300;
  margin: 0 0 12px;
}

.page-news .section-head .lede {
  color: var(--color-mist);
  font-size: 15px;
  line-height: 1.7;
  max-width: 640px;
  margin: 0;
}

.page-news .news-latest__layout {
  display: grid;
  gap: 40px;
}

.page-news .news-list {
  display: flex;
  flex-direction: column;
}

.page-news .news-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  padding: 28px 8px;
  border-bottom: 1px solid var(--line-faint);
  transition: background 0.4s var(--ease), padding-left 0.4s var(--ease);
  position: relative;
}

.page-news .news-item:first-child {
  border-top: 1px solid var(--line-faint);
}

.page-news .news-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--grad-aurora);
  opacity: 0;
  transform: scaleY(0.4);
  transform-origin: center;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.page-news .news-item:hover {
  background: linear-gradient(90deg, var(--hover-violet), var(--hover-cyan));
  padding-left: 18px;
}

.page-news .news-item:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

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

.page-news .news-item__index {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 700;
  color: rgba(0, 207, 253, 0.6);
  letter-spacing: 0.1em;
}

.page-news .news-item__body h3 {
  font-size: 19px;
  font-weight: 500;
  margin: 0 0 10px;
  line-height: 1.4;
  color: var(--color-white);
}

.page-news .news-item__body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-mist);
  margin: 0 0 14px;
  max-width: 760px;
}

.page-news .link-more {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-cyan);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
  position: relative;
}

.page-news .link-more:hover {
  color: var(--color-gold);
  transform: translateX(4px);
}

.page-news .news-latest__side .panel {
  background: linear-gradient(160deg, rgba(15, 42, 74, 0.85), rgba(5, 11, 26, 0.6));
  border: 1px solid var(--line-faint);
  border-top: 2px solid var(--color-gold);
  padding: 28px;
}

.page-news .news-latest__side h3 {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--color-white);
}

.page-news .news-latest__side-note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-mist);
  margin: 0 0 20px;
}

.page-news .news-latest__links {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
}

.page-news .news-latest__links li {
  border-bottom: 1px solid var(--line-faint);
}

.page-news .news-latest__links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 4px;
  color: var(--color-mist);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}

.page-news .news-latest__links a::after {
  content: "→";
  font-family: var(--font-accent);
  color: var(--color-cyan);
  opacity: 0.5;
  transition: opacity 0.3s var(--ease);
}

.page-news .news-latest__links a:hover {
  color: var(--color-gold);
  padding-left: 12px;
}

.page-news .news-latest__links a:hover::after {
  opacity: 1;
}

.page-news .news-latest__cta {
  width: 100%;
  justify-content: center;
}

.page-news .news-topics {
  position: relative;
  padding: 72px 0;
}

.page-news .news-topics::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 159, 28, 0.4), transparent);
}

.page-news .news-topics .section-head {
  margin-bottom: 48px;
}

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

.page-news .topic-card {
  background: linear-gradient(180deg, rgba(15, 42, 74, 0.7), rgba(11, 29, 58, 0.5));
  border: 1px solid var(--line-faint);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.page-news .topic-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--color-violet), var(--color-cyan), var(--color-gold));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: 2;
}

.page-news .topic-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(5, 11, 26, 0.55);
  border-color: rgba(123, 47, 247, 0.35);
}

.page-news .topic-card:hover::before {
  opacity: 1;
}

.page-news .topic-card .image-frame {
  margin: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--line-faint);
  position: relative;
  overflow: hidden;
}

.page-news .topic-card .image-frame img {
  transition: transform 0.6s var(--ease);
}

.page-news .topic-card:hover .image-frame img {
  transform: scale(1.04);
}

.page-news .topic-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.page-news .topic-card__body h3 {
  font-size: 20px;
  font-weight: 500;
  margin: 4px 0 0;
  color: var(--color-white);
  line-height: 1.35;
}

.page-news .topic-card__body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-mist);
  margin: 0;
  flex: 1;
}

.page-news .topic-card .link-more {
  margin-top: 8px;
  align-self: flex-start;
}

.page-news .topic-card--number .topic-card__visual {
  position: relative;
  min-height: 216px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 30%, rgba(0, 207, 253, 0.14), transparent 55%),
              radial-gradient(circle at 70% 75%, rgba(123, 47, 247, 0.18), transparent 50%);
  border-bottom: 1px solid var(--line-faint);
  overflow: hidden;
}

.page-news .topic-card__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 207, 253, 0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0, 207, 253, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.page-news .topic-card__num {
  font-family: var(--font-accent);
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  background: var(--grad-aurora);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.page-news .topic-card__label {
  font-size: 14px;
  color: var(--color-mist);
  margin: 12px 0 0;
  position: relative;
  z-index: 1;
  letter-spacing: 0.12em;
}

.page-news .news-changelog {
  padding: 72px 0 96px;
  position: relative;
}

.page-news .news-changelog::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 207, 253, 0.4), transparent);
}

.page-news .news-changelog .section-head {
  margin-bottom: 48px;
}

.page-news .news-changelog__layout {
  display: grid;
  gap: 40px;
}

.page-news .timeline {
  position: relative;
  padding-left: 56px;
}

.page-news .timeline::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-violet) 0%, var(--color-cyan) 55%, rgba(0, 207, 253, 0.1) 100%);
}

.page-news .timeline__item {
  position: relative;
  padding-bottom: 44px;
}

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

.page-news .timeline__node {
  position: absolute;
  left: -56px;
  top: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 12px;
  color: var(--color-white);
  background: var(--grad-aurora);
  border-radius: 2px;
  box-shadow: 0 0 0 4px rgba(123, 47, 247, 0.15), 0 0 24px rgba(123, 47, 247, 0.25);
}

.page-news .timeline__content {
  padding: 4px 0 0 4px;
}

.page-news .timeline__content h3 {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 10px;
  color: var(--color-white);
}

.page-news .timeline__content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-mist);
  margin: 0;
  max-width: 640px;
}

.page-news .news-changelog__side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-news .news-changelog__side .image-frame {
  margin: 0;
  border: 1px solid var(--line-faint);
  box-shadow: 0 20px 48px rgba(5, 11, 26, 0.5);
  position: relative;
}

.page-news .news-changelog__side .image-frame::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--color-gold) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.page-news .news-changelog__note {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-mist);
  padding: 16px 20px;
  background: rgba(15, 42, 74, 0.4);
  border-left: 2px solid var(--color-cyan);
  margin: 0;
}

.page-news .news-changelog__side .image-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-news .news-status .tag,
.page-news .news-item .tag,
.page-news .topic-card .tag {
  margin: 0;
}

.page-news .tag--violet {
  background: rgba(123, 47, 247, 0.16);
  border: 1px solid rgba(123, 47, 247, 0.5);
  color: #ccb3ff;
}

.page-news .tag--cyan {
  background: rgba(0, 207, 253, 0.12);
  border: 1px solid rgba(0, 207, 253, 0.45);
  color: #9ae9ff;
}

.page-news .tag--gold {
  background: rgba(255, 159, 28, 0.14);
  border: 1px solid rgba(255, 159, 28, 0.5);
  color: #ffd699;
}

@media (min-width: 768px) {
  .page-news .container {
    padding: 0 32px;
  }

  .page-news .news-hero__grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    align-items: stretch;
  }

  .page-news .news-hero__copy {
    justify-content: center;
  }

  .page-news .news-hero__copy h1 {
    font-size: 48px;
  }

  .page-news .news-status {
    padding: 32px;
  }

  .page-news .news-latest__layout {
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
  }

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

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

  .page-news .news-changelog__layout {
    grid-template-columns: 1fr 300px;
    gap: 56px;
    align-items: start;
  }

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

  .page-news .news-item {
    grid-template-columns: 120px 1fr;
    gap: 28px;
    padding: 32px 12px;
  }

  .page-news .news-item:hover {
    padding-left: 24px;
  }
}

@media (min-width: 1024px) {
  .page-news .container {
    padding: 0 40px;
  }

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

  .page-news .news-hero__copy h1 {
    font-size: 52px;
  }

  .page-news .news-latest {
    padding-top: 104px;
  }

  .page-news .news-topics {
    padding: 88px 0;
  }

  .page-news .news-changelog {
    padding: 88px 0 112px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news *,
  .page-news *::before,
  .page-news *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
