.page-news {
  --news-shadow: 8px 8px 0 var(--ink);
  --news-border: 3px solid var(--ink);
  --news-shadow-soft: 4px 4px 0 rgba(26, 26, 46, 0.2);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
}
.page-news .page-shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 16px 64px;
}
.page-news .breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  margin-bottom: 18px;
}
.page-news .breadcrumb a {
  color: var(--blue-ink);
  text-decoration: none;
  font-weight: 700;
}
.page-news .breadcrumb a:hover {
  text-decoration: underline;
}
.page-news .breadcrumb-sep {
  color: #777;
  font-family: var(--font-num);
}
.page-news .breadcrumb-current {
  font-weight: 700;
  color: var(--ink);
}
.page-news .news-hero {
  background: var(--db-blue);
  border: var(--news-border);
  border-radius: 16px;
  box-shadow: var(--news-shadow);
  padding: 28px 20px;
  margin: 0 0 40px;
  position: relative;
  overflow: hidden;
}
.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -30px;
  width: 160px;
  height: 160px;
  background: var(--magenta);
  border: 4px solid var(--ink);
  border-radius: 50%;
}
.page-news .news-hero::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 90px;
  height: 90px;
  background: var(--yellow);
  border: 4px solid var(--ink);
  border-radius: 12px;
  transform: rotate(15deg);
}
.page-news .news-hero-inner {
  position: relative;
  z-index: 1;
}
.page-news .hero-eyebrow {
  font-family: var(--font-num);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 8px;
}
.page-news .news-hero h1 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}
.page-news .news-hero-desc {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
}
.page-news .news-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.page-news .count-chip {
  display: inline-block;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 30px;
  padding: 4px 14px;
  font-family: var(--font-num);
  font-size: 13px;
  font-weight: 700;
}
.page-news .section-block {
  margin-bottom: 48px;
}
.page-news .section-head {
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--ink);
}
.page-news .section-head h2 {
  margin: 4px 0 4px;
  font-size: 24px;
  font-weight: 900;
}
.page-news .section-eyebrow {
  margin: 0;
  font-family: var(--font-num);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.page-news .section-note {
  margin: 4px 0 0;
  font-size: 13px;
  color: #555;
}
.page-news .theme-c {
  color: var(--cyan-ink);
}
.page-news .theme-m {
  color: var(--magenta-ink);
}
.page-news .theme-y {
  color: var(--orange);
}
.page-news .batch-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-news .batch-group {
  background: var(--white);
  border: var(--news-border);
  border-radius: 14px;
  box-shadow: var(--news-shadow);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.page-news .batch-group:hover {
  box-shadow: 12px 12px 0 var(--ink);
}
.page-news .batch-c {
  border-top: 8px solid var(--cyan);
}
.page-news .batch-m {
  border-top: 8px solid var(--magenta);
}
.page-news .batch-y {
  border-top: 8px solid var(--yellow);
}
.page-news .batch-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
  flex-wrap: wrap;
}
.page-news .batch-header::-webkit-details-marker {
  display: none;
}
.page-news .batch-header img {
  width: 60px;
  height: 60px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.page-news .batch-heading {
  flex: 1;
  min-width: 120px;
}
.page-news .batch-heading h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
}
.page-news .batch-count {
  font-family: var(--font-num);
  font-size: 13px;
  color: var(--blue-ink);
  font-weight: 700;
}
.page-news .batch-status {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border: 2px solid var(--ink);
  border-radius: 20px;
  flex-shrink: 0;
}
.page-news .bs-ok {
  background: var(--ok);
  color: var(--white);
}
.page-news .bs-change {
  background: var(--change);
  color: var(--white);
}
.page-news .batch-header::after {
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-family: var(--font-num);
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.page-news .batch-group[open] .batch-header::after {
  content: "−";
  transform: rotate(180deg);
}
.page-news .batch-entries {
  list-style: none;
  margin: 0;
  padding: 6px 16px 14px;
  border-top: 2px dashed rgba(26, 26, 46, 0.2);
}
.page-news .batch-entries li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 4px;
  border-bottom: 1px dashed rgba(26, 26, 46, 0.15);
  font-size: 14px;
}
.page-news .batch-entries li:last-child {
  border-bottom: none;
}
.page-news .change-tag {
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  flex-shrink: 0;
  min-width: 36px;
  text-align: center;
}
.page-news .ct-add {
  background: var(--cyan);
}
.page-news .ct-edit {
  background: var(--yellow);
}
.page-news .ct-re {
  background: var(--violet);
  color: var(--white);
}
.page-news .batch-texture-wrap {
  margin-top: 24px;
  text-align: center;
  opacity: 0.85;
}
.page-news .batch-texture-wrap img {
  max-width: 100%;
  height: auto;
  border: 2px solid var(--ink);
  border-radius: 8px;
}
.page-news .version-section {
  background: var(--dg-green);
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 28px 16px;
  box-shadow: var(--news-shadow);
}
.page-news .version-section .section-head {
  border-bottom-color: rgba(255, 255, 255, 0.3);
}
.page-news .version-section .section-head h2 {
  color: var(--white);
}
.page-news .version-section .section-note {
  color: rgba(255, 255, 255, 0.7);
}
.page-news .timeline-top {
  margin: 20px 0;
}
.page-news .timeline-top img {
  max-width: 100%;
  height: auto;
  border: 2px solid var(--ink);
  border-radius: 8px;
}
.page-news .version-timeline {
  position: relative;
  margin: 24px 0 0;
  padding-left: 24px;
}
.page-news .version-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: var(--magenta);
  border-radius: 2px;
}
.page-news .timeline-item {
  position: relative;
  padding-bottom: 20px;
}
.page-news .timeline-item:last-child {
  padding-bottom: 0;
}
.page-news .timeline-dot {
  position: absolute;
  left: -21px;
  top: 10px;
  width: 14px;
  height: 14px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.4);
}
.page-news .timeline-card {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 10px;
  padding: 12px 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.page-news .timeline-card:hover {
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
  transform: translate(-2px, -2px);
}
.page-news .timeline-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  gap: 8px;
  flex-wrap: wrap;
}
.page-news .timeline-version {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 18px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 4px;
  padding: 2px 8px;
}
.page-news .timeline-platform {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-ink);
  background: var(--cyan);
  border: 2px solid var(--ink);
  border-radius: 4px;
  padding: 1px 6px;
}
.page-news .timeline-card p {
  margin: 0;
  font-size: 14px;
}
.page-news .split-layout {
  display: block;
}
.page-news .split-aside {
  margin-top: 28px;
}
.page-news .aside-card {
  border: 3px solid var(--ink);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
  margin-bottom: 16px;
}
.page-news .aside-card h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 900;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 8px;
}
.page-news .aside-link-card {
  background: var(--yellow);
}
.page-news .aside-link-card a {
  display: block;
  padding: 8px 12px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 8px;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s, background 0.2s;
}
.page-news .aside-link-card a:hover {
  background: var(--cyan);
  transform: translate(-2px, -2px);
}
.page-news .aside-stats-card {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}
.page-news .aside-stats-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-news .aside-stats-card li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 14px;
  border-bottom: 1px dashed rgba(26, 26, 46, 0.2);
}
.page-news .aside-stats-card li:last-child {
  border-bottom: none;
}
.page-news .aside-stats-card .stat-num {
  font-family: var(--font-num);
  font-weight: 700;
  background: var(--db-blue);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 4px;
}
.page-news .price-section {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 16px;
  padding: 20px 12px;
  box-shadow: var(--news-shadow);
}
.page-news .table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.page-news .price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 680px;
}
.page-news .price-table th,
.page-news .price-table td {
  border: 2px solid var(--ink);
  padding: 10px 10px;
  text-align: left;
}
.page-news .price-table th {
  background: var(--db-blue);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}
.page-news .price-table td {
  background: var(--white);
}
.page-news .price-table tbody tr:nth-child(even) td {
  background: #F0EDE0;
}
.page-news .price-table tbody tr {
  transition: background 0.2s;
}
.page-news .price-table tbody tr:hover td {
  background: rgba(0, 168, 255, 0.12);
}
.page-news .price-old {
  font-family: var(--font-num);
  text-decoration: line-through;
  color: #777;
}
.page-news .price-new {
  font-family: var(--font-num);
  font-weight: 700;
}
.page-news .price-up {
  color: var(--stop);
}
.page-news .price-down {
  color: var(--ok);
}
.page-news .price-type {
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  display: inline-block;
  text-align: center;
  min-width: 42px;
}
.page-news .type-up {
  background: var(--magenta);
  color: var(--white);
}
.page-news .type-down {
  background: var(--cyan);
}
.page-news .price-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.page-news .price-foot img {
  max-width: 100%;
  height: auto;
  border: 2px solid var(--ink);
  border-radius: 8px;
}
.page-news .price-foot-note {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 6px 14px;
  text-align: center;
}
.page-news .archive-section {
  background: var(--db-blue);
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 28px 16px;
  box-shadow: var(--news-shadow);
}
.page-news .archive-section .section-head {
  border-bottom-color: rgba(255, 255, 255, 0.3);
}
.page-news .archive-section .section-head h2 {
  color: var(--white);
}
.page-news .archive-section .section-note {
  color: rgba(255, 255, 255, 0.7);
}
.page-news .archive-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.page-news .archive-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 10px 12px;
  flex-wrap: wrap;
  transition: background 0.2s, border-color 0.2s;
}
.page-news .archive-item:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
}
.page-news .archive-status {
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--stop);
  color: var(--white);
  border: 2px solid var(--ink);
  flex-shrink: 0;
}
.page-news .archive-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
}
.page-news .archive-cat {
  font-size: 12px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--yellow);
  padding: 2px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
.page-news .archive-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-left: auto;
  font-family: var(--font-num);
}
.page-news .news-topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 32px;
}
.page-news .topic-tag {
  display: inline-block;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 3px 3px 0 var(--ink);
}
.page-news .news-crosslinks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px;
}
.page-news .news-crosslinks a {
  display: inline-block;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 30px;
  padding: 10px 22px;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.2s, box-shadow 0.2s;
}
.page-news .news-crosslinks a:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}
@media (min-width: 768px) {
  .page-news .page-shell {
    padding: 32px 32px 80px;
  }
  .page-news .news-hero {
    padding: 40px 48px;
  }
  .page-news .news-hero h1 {
    font-size: 38px;
  }
  .page-news .news-hero-desc {
    font-size: 15px;
  }
  .page-news .batch-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
  .page-news .version-section,
  .page-news .archive-section {
    padding: 36px 32px;
  }
  .page-news .split-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    align-items: start;
  }
  .page-news .split-aside {
    margin-top: 50px;
    position: sticky;
    top: 100px;
  }
  .page-news .price-section {
    padding: 32px 28px;
  }
  .page-news .price-table {
    font-size: 14px;
  }
  .page-news .price-foot {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .page-news .archive-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}
@media (min-width: 1200px) {
  .page-news .page-shell {
    padding: 40px 48px 80px;
  }
  .page-news .batch-list {
    gap: 28px;
  }
}
