.page-news {
  background: var(--bg-warm);
  color: var(--ink);
  overflow-x: hidden;
}

.page-news__hero {
  background:
    radial-gradient(circle at 84% 20%, rgba(201, 160, 99, 0.2), transparent 34%),
    linear-gradient(135deg, var(--bg-deep) 0%, #101820 62%, var(--bg-deep) 100%);
  border-bottom: 2px solid var(--gold);
  color: var(--bg-cream);
  position: relative;
}

.page-news__hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 34px 20px 44px;
}

.page-news__hero-copy {
  min-width: 0;
}

.page-news__hero .breadcrumb {
  color: var(--gold-light);
  text-decoration: none;
}

.page-news__hero .breadcrumb-current {
  color: var(--bg-cream);
}

.page-news__kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--cyan);
  margin: 18px 0 10px;
  text-transform: uppercase;
}

.page-news__hero h1 {
  font-family: var(--font-title);
  font-size: 30px;
  line-height: 1.32;
  margin: 0 0 16px;
  max-width: 12em;
}

.page-news__lead {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(253, 251, 247, 0.82);
  max-width: 46em;
  margin: 0 0 22px;
}

.page-news__hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-news__hero-stats span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 14px;
  border: 1px solid rgba(201, 160, 99, 0.55);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold-light);
  background: rgba(11, 29, 58, 0.5);
}

.page-news__hero-art {
  margin: 0;
  position: relative;
}

.page-news__hero-art img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(229, 193, 122, 0.4);
  box-shadow: var(--shadow);
}

.page-news__wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.page-news__topics {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 26px 0 8px;
  border-bottom: 1px solid rgba(42, 58, 92, 0.16);
  margin-bottom: 26px;
}

.page-news__topics-title {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gold-strong);
  margin-right: 6px;
}

.page-news__topic {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-cream);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.2s, background 0.2s;
}

.page-news__topic:hover {
  border-color: var(--gold);
  color: var(--gold-strong);
  background: #ffffff;
  transform: translateY(-1px);
}

.page-news__topics-status {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold-strong);
  padding-left: 14px;
  border-left: 1px solid rgba(42, 58, 92, 0.16);
}

.page-news__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.page-news__stream {
  min-width: 0;
}

.page-news__section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.page-news__section-title {
  font-family: var(--font-title);
  font-size: 24px;
  line-height: 1.3;
  margin: 0;
  color: var(--ink);
}

.page-news__section-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold-strong);
}

.page-news__entry {
  position: relative;
  background: var(--bg-cream);
  border: 1px solid rgba(42, 58, 92, 0.12);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow);
  padding: 22px 20px 24px;
  margin: 0 0 24px 14px;
  transition: box-shadow 0.2s;
}

.page-news__entry::before {
  content: "";
  position: absolute;
  left: -17px;
  top: 34px;
  bottom: -26px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(201, 160, 99, 0) 100%);
}

.page-news__entry:last-child::before {
  bottom: auto;
  height: 74px;
}

.page-news__entry:target {
  box-shadow: 0 0 0 3px rgba(201, 160, 99, 0.3);
}

.page-news__entry-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.page-news__entry-num {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  margin-right: 2px;
}

.page-news__entry-time {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--line);
}

.page-news__entry-title {
  font-family: var(--font-title);
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0 10px;
  color: var(--ink);
}

.page-news__entry-summary {
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 16px;
  color: var(--ink);
}

.page-news__expand-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-strong);
  background: transparent;
  border: 1px solid rgba(201, 160, 99, 0.55);
  border-radius: 999px;
  padding: 8px 18px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.page-news__expand-btn:hover {
  background: rgba(201, 160, 99, 0.1);
  border-color: var(--gold);
  color: var(--ink);
}

.page-news__panel-detail {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed rgba(42, 58, 92, 0.3);
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink);
}

.page-news__panel-detail p {
  margin: 0 0 10px;
}

.page-news__panel-detail p:last-child {
  margin-bottom: 0;
}

.page-news__version {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(245, 243, 239, 0.72);
  border: 1px solid rgba(201, 160, 99, 0.3);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 18px;
}

.page-news__version-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.page-news__version-meta {
  min-width: 0;
}

.page-news__version-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold-strong);
  display: block;
  margin-bottom: 4px;
}

.page-news__version-num {
  font-family: var(--font-title);
  font-size: 30px;
  line-height: 1.2;
  color: var(--ink);
  display: block;
}

.page-news__version-meta p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(16, 24, 32, 0.75);
  margin: 6px 0 0;
}

.page-news__archive {
  margin-top: 50px;
  padding-top: 8px;
  border-top: 1px solid rgba(42, 58, 92, 0.18);
}

.page-news__archive-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.page-news__archive-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 8px 14px;
  padding: 18px 0;
  border-bottom: 1px dashed rgba(42, 58, 92, 0.18);
}

.page-news__archive-index {
  grid-row: 1 / span 2;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  padding-top: 2px;
}

.page-news__archive-time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold-strong);
  align-self: start;
}

.page-news__archive-body {
  min-width: 0;
}

.page-news__archive-title {
  font-family: var(--font-title);
  font-size: 17px;
  line-height: 1.45;
  margin: 0 0 6px;
  color: var(--ink);
}

.page-news__archive-desc {
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
  color: rgba(16, 24, 32, 0.8);
}

.page-news__next {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.page-news__console {
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
  border: 1px solid rgba(201, 160, 99, 0.4);
  border-radius: 16px;
  padding: 24px 22px 28px;
  color: var(--bg-cream);
  box-shadow: var(--shadow);
}

.page-news__console::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--cyan) 60%, var(--violet) 100%);
}

.page-news__console-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.page-news__console-icon {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  border: 1px solid rgba(201, 160, 99, 0.4);
  object-fit: cover;
  flex-shrink: 0;
}

.page-news__console-title {
  font-family: var(--font-title);
  font-size: 22px;
  line-height: 1.3;
  margin: 0 0 4px;
}

.page-news__console-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin: 0;
}

.page-news__console-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 2px;
}

.page-news__console-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.page-news__console-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(245, 243, 239, 0.68);
}

.page-news__console-value {
  color: var(--bg-cream);
  font-weight: 600;
  text-align: right;
}

.page-news__live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  margin-right: 8px;
  box-shadow: 0 0 0 0 rgba(63, 224, 197, 0.55);
  animation: page-news-pulse 2s infinite;
}

@keyframes page-news-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(63, 224, 197, 0.55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(63, 224, 197, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(63, 224, 197, 0);
  }
}

.page-news__console-note {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(245, 243, 239, 0.76);
  background: rgba(63, 224, 197, 0.08);
  border-left: 2px solid var(--cyan);
  padding: 12px 14px;
  border-radius: 0 12px 12px 0;
  margin: 0 0 20px;
}

.page-news__console-figure {
  margin: 0;
  padding-top: 18px;
  border-top: 1px dashed rgba(255, 255, 255, 0.14);
  text-align: center;
}

.page-news__console-tree {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(201, 160, 99, 0.3);
  display: block;
  margin: 0 auto 12px;
}

.page-news__console-figure figcaption {
  font-size: 12px;
  line-height: 1.65;
  color: rgba(245, 243, 239, 0.64);
}

@media (min-width: 640px) {
  .page-news__hero-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 36px;
    align-items: center;
    padding: 46px 32px 52px;
  }

  .page-news__hero h1 {
    font-size: 32px;
  }

  .page-news__version {
    flex-direction: row;
    align-items: center;
  }

  .page-news__version-icon {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
  }
}

@media (min-width: 1024px) {
  .page-news__layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 42px;
  }

  .page-news__hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 44px;
  }

  .page-news__hero-art {
    transform: translateX(8px) rotate(0.5deg);
  }

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

  .page-news__archive-item {
    grid-template-columns: 44px 92px minmax(0, 1fr);
    gap: 8px 16px;
  }

  .page-news__archive-index {
    grid-row: auto;
  }

  .page-news__archive-time {
    padding-top: 3px;
  }
}
