/* ---------- page-news 专属样式 ---------- */
.page-news {
  --news-green: #00E676;
  --news-gold: #FFC107;
  --news-deep: #0A1F44;
  --news-deep-darker: #071533;
  --news-surface: #FFFFFF;
  --news-surface-alt: #F5F7FA;
  --news-border: #E1E8ED;
  --news-text: #1A1A1A;
  --news-text-muted: #5C6B7A;
  --news-font-display: Impact, "Arial Black", "Noto Sans SC", sans-serif;
  --news-font-body: "Roboto", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
  --news-font-mono: Consolas, "Courier New", monospace;
  background: var(--news-surface);
  color: var(--news-text);
  font-family: var(--news-font-body);
  line-height: 1.6;
}

.page-news .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ===== 头条横幅 ===== */
.page-news .news-hero {
  background: linear-gradient(135deg, #0A1F44 0%, #071533 55%, #0a254f 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--news-green);
}
.page-news .news-hero__inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
  z-index: 2;
}
.page-news .news-hero__eyebrow {
  font-family: var(--news-font-mono);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--news-green);
  margin: 0 0 12px;
  text-transform: uppercase;
}
.page-news .news-hero h1 {
  font-family: var(--news-font-display);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.16;
  margin: 0 0 20px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.30);
}
.page-news .news-hero__lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 0 0 24px;
}
.page-news .news-hero__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* 头条视觉装饰 */
.page-news .news-hero__visual {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-news .news-hero__ring {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px dashed rgba(0, 230, 118, 0.55);
  animation: none;
}
.page-news .news-hero__ring::before,
.page-news .news-hero__ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.page-news .news-hero__ring::before {
  inset: 18px;
  border: 2px solid rgba(255, 255, 255, 0.22);
}
.page-news .news-hero__ring::after {
  inset: -12px;
  border: 1px solid rgba(255, 193, 7, 0.35);
}
.page-news .news-hero__goal {
  font-family: var(--news-font-display);
  font-size: 84px;
  line-height: 1;
  color: var(--news-green);
  position: relative;
  z-index: 2;
  text-shadow: 0 0 24px rgba(0, 230, 118, 0.35);
}
.page-news .news-hero__goal-sub {
  font-family: var(--news-font-mono);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  display: block;
  margin-top: 6px;
  text-shadow: none;
}
.page-news .news-hero__line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--news-gold), transparent);
  height: 2px;
  transform-origin: left center;
}
.page-news .news-hero__line--1 { width: 140px; top: 18%; right: -8%; opacity: 0.55; }
.page-news .news-hero__line--2 { width: 100px; bottom: 16%; right: 10%; opacity: 0.38; }
.page-news .news-hero__line--3 { width: 180px; bottom: 6%; left: -12%; opacity: 0.25; }

/* ===== 栏目导读 ===== */
.page-news .news-index {
  padding-top: 56px;
  padding-bottom: 16px;
}
.page-news .news-index__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.page-news .news-index__item {
  display: block;
  padding: 20px;
  background: var(--news-surface);
  border: 1px solid var(--news-border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--news-text);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.page-news .news-index__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(10, 31, 68, 0.08);
  border-color: var(--news-green);
}
.page-news .news-index__code {
  font-family: var(--news-font-mono);
  font-size: 13px;
  color: var(--news-text-muted);
  letter-spacing: 0.06em;
}
.page-news .news-index__name {
  display: block;
  font-weight: 700;
  font-size: 16px;
  margin-top: 8px;
}
.page-news .news-index__count {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--news-text-muted);
  background: var(--news-surface-alt);
  border-radius: 20px;
  padding: 3px 10px;
}

/* ===== 章节通用 ===== */
.page-news .section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.page-news .section-head__index {
  font-family: var(--news-font-mono);
  font-size: 13px;
  background: var(--news-deep);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.page-news .section-head__title {
  font-family: var(--news-font-display);
  font-size: 28px;
  line-height: 1.25;
  margin: 0;
  color: var(--news-text);
  letter-spacing: 0.01em;
}
.page-news .section-head__note {
  font-size: 13px;
  color: var(--news-text-muted);
  border-left: 2px solid var(--news-gold);
  padding-left: 10px;
  margin-left: auto;
  white-space: nowrap;
}
.page-news .section-lead {
  font-size: 15px;
  color: var(--news-text-muted);
  max-width: 720px;
  margin: 0 0 28px;
  line-height: 1.7;
}

/* ===== 面板 ===== */
.page-news .panel {
  padding-top: 56px;
  padding-bottom: 56px;
}
.page-news .panel--alt {
  background: var(--news-surface-alt);
  border-top: 1px solid var(--news-border);
  border-bottom: 1px solid var(--news-border);
}
.page-news .panel--dark {
  background: var(--news-deep);
  color: #fff;
}

/* ===== 最新文章列表 ===== */
.page-news .section-head--with-filter {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.page-news .news-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.page-news .news-filter__item {
  font-size: 13px;
  font-family: var(--news-font-mono);
  padding: 5px 12px;
  border: 1px solid var(--news-border);
  border-radius: 999px;
  background: var(--news-surface);
  color: var(--news-text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
}
.page-news .news-filter__item:hover,
.page-news .news-filter__item.is-active {
  background: var(--news-deep);
  color: #fff;
  border-color: var(--news-deep);
}
.page-news .article-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-news .article-row {
  display: grid;
  grid-template-columns: 48px 140px 1fr;
  gap: 20px;
  align-items: start;
  background: var(--news-surface);
  border: 1px solid var(--news-border);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: var(--news-text);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.page-news .article-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(10, 31, 68, 0.08);
  border-color: var(--news-green);
}
.page-news .article-row__index {
  font-family: var(--news-font-mono);
  font-size: 13px;
  color: var(--news-deep);
  font-weight: 700;
  letter-spacing: 0.04em;
  padding-top: 4px;
}
.page-news .article-row__thumb {
  border-radius: 8px;
  overflow: hidden;
  background: var(--news-surface-alt);
  display: block;
}
.page-news .article-row__thumb img {
  width: 100%;
  height: auto;
  max-height: 100px;
  object-fit: cover;
  display: block;
}
.page-news .article-row__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.page-news .article-row__meta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.page-news .article-row__time {
  font-size: 13px;
  font-family: var(--news-font-mono);
  color: var(--news-text-muted);
}
.page-news .article-row__title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
}
.page-news .article-row__excerpt {
  font-size: 14px;
  color: var(--news-text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-news .article-row__more {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 6px;
}
.page-news .article-row__clock {
  font-size: 13px;
  color: var(--news-text-muted);
  font-family: var(--news-font-mono);
}

.page-news .article-row__clock::before {
  content: "🕒 ";
  display: inline-block;
  margin-right: 2px;
}
.page-news .article-row__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--news-deep);
  transition: color 0.2s ease;
}
.page-news .article-row:hover .article-row__link {
  color: #00c45c;
}
.page-news .article-list__more {
  margin-top: 32px;
  text-align: center;
}

/* ===== 横向主题带 ===== */
.page-news .theme-strip {
  background: var(--news-deep);
  padding: 40px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.page-news .theme-strip::-webkit-scrollbar {
  display: none;
}
.page-news .theme-strip__inner {
  display: flex;
  gap: 20px;
  min-width: min-content;
  padding-left: 24px;
  padding-right: 24px;
}
.page-news .theme-strip__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 220px;
  padding: 24px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.page-news .theme-strip__card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.30);
}
.page-news .theme-strip__code {
  font-family: var(--news-font-mono);
  font-size: 18px;
  color: var(--news-gold);
}
.page-news .theme-strip__card--green .theme-strip__code {
  color: var(--news-green);
}
.page-news .theme-strip__card--gold .theme-strip__code {
  color: var(--news-gold);
}
.page-news .theme-strip__card--dark .theme-strip__code {
  color: #fff;
}
.page-news .theme-strip__title {
  font-family: var(--news-font-display);
  font-size: 22px;
  line-height: 1.25;
}
.page-news .theme-strip__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.70);
}

/* ===== 射手榜观察 ===== */
.page-news .obs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.page-news .obs-card {
  background: var(--news-surface);
  border: 1px solid var(--news-border);
  border-top: 4px solid var(--news-green);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.page-news .obs-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(10, 31, 68, 0.08);
}
.page-news .obs-card--dark {
  background: linear-gradient(140deg, #0A1F44 0%, #071533 100%);
  color: #fff;
  border-top-color: var(--news-gold);
}
.page-news .obs-card__issue {
  font-family: var(--news-font-mono);
  font-size: 13px;
  color: var(--news-text-muted);
  letter-spacing: 0.06em;
}
.page-news .obs-card--dark .obs-card__issue {
  color: rgba(255, 255, 255, 0.55);
}
.page-news .obs-card__title {
  font-size: 18px;
  line-height: 1.4;
  margin: 12px 0 10px;
  font-weight: 700;
}
.page-news .obs-card__desc {
  font-size: 14px;
  color: var(--news-text-muted);
  line-height: 1.6;
  margin: 0 0 16px;
}
.page-news .obs-card--dark .obs-card__desc {
  color: rgba(255, 255, 255, 0.75);
}
.page-news .obs-card__stat {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--news-border);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.page-news .obs-card--dark .obs-card__stat {
  border-top-color: rgba(255, 255, 255, 0.15);
}
.page-news .obs-card__stat-num {
  font-family: var(--news-font-display);
  font-size: 40px;
  color: var(--news-deep);
}
.page-news .obs-card--dark .obs-card__stat-num {
  color: var(--news-green);
}
.page-news .obs-card__stat-unit {
  font-family: var(--news-font-mono);
  font-size: 14px;
  margin-left: 4px;
}
.page-news .obs-card__stat-label {
  font-size: 13px;
  color: var(--news-text-muted);
}
.page-news .obs-card--dark .obs-card__stat-label {
  color: rgba(255, 255, 255, 0.60);
}
.page-news .obs-card__link {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--news-deep);
  text-decoration: none;
  border-bottom: 2px solid var(--news-green);
  align-self: flex-start;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.page-news .obs-card__link:hover {
  color: #00c45c;
}
.page-news .obs-card__link--light {
  color: var(--news-gold);
}

/* ===== 场馆指南 ===== */
.page-news .venue-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
}
.page-news .venue-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-news .venue-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 16px;
  align-items: start;
  background: var(--news-surface);
  border: 1px solid var(--news-border);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: var(--news-text);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.page-news .venue-item:hover {
  border-color: var(--news-gold);
  transform: translateX(3px);
}
.page-news .venue-item__step {
  font-family: var(--news-font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--news-gold);
  background: rgba(255, 193, 7, 0.10);
  border-radius: 8px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-news .venue-item__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.page-news .venue-item__title {
  font-size: 17px;
  font-weight: 700;
}
.page-news .venue-item__desc {
  font-size: 14px;
  color: var(--news-text-muted);
  line-height: 1.5;
}
.page-news .venue-item__time {
  font-family: var(--news-font-mono);
  font-size: 13px;
  color: var(--news-text-muted);
  white-space: nowrap;
  padding-top: 6px;
}
.page-news .venue-aside__card {
  background: linear-gradient(160deg, #0A1F44 0%, #071533 100%);
  border-radius: 16px;
  padding: 28px;
  color: #fff;
  position: sticky;
  top: 24px;
}
.page-news .venue-aside__tag {
  font-family: var(--news-font-mono);
  font-size: 13px;
  color: var(--news-gold);
  letter-spacing: 0.12em;
}
.page-news .venue-aside__title {
  display: block;
  font-size: 20px;
  font-family: var(--news-font-display);
  letter-spacing: 0.02em;
  margin: 10px 0 18px;
}
.page-news .venue-aside__progress {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
}
.page-news .venue-aside__progress-fill {
  display: block;
  height: 100%;
  width: 75%;
  background: var(--news-gold);
  border-radius: 999px;
  font-size: 0;
}
.page-news .venue-aside__desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 14px 0 18px;
}
.page-news .venue-aside__list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: venue;
}
.page-news .venue-aside__list li {
  counter-increment: venue;
  padding: 4px 0 4px 32px;
  position: relative;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.page-news .venue-aside__list li::before {
  content: counter(venue, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 4px;
  font-family: var(--news-font-mono);
  font-size: 13px;
  color: var(--news-green);
}

/* ===== 版本记录 ===== */
.page-news .version-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}
.page-news .version-hero {
  background: linear-gradient(145deg, #0A1F44, #101f3f);
  border-radius: 16px;
  padding: 34px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-news .version-hero::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px dashed rgba(0, 230, 118, 0.32);
}
.page-news .version-hero__ver {
  font-family: var(--news-font-display);
  font-size: 46px;
  color: var(--news-green);
  letter-spacing: 0.02em;
  display: block;
}
.page-news .version-hero__title {
  font-size: 20px;
  font-weight: 700;
  margin: 12px 0 10px;
}
.page-news .version-hero__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 520px;
}
.page-news .version-log {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.page-news .version-log__row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  background: var(--news-surface);
  border: 1px solid var(--news-border);
  border-radius: 12px;
  padding: 18px 20px;
  align-items: start;
  transition: border-color 0.2s ease;
}
.page-news .version-log__row:hover {
  border-color: var(--news-green);
}
.page-news .version-log__tag {
  font-family: var(--news-font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--news-deep);
  background: var(--news-surface-alt);
  border-radius: 6px;
  padding: 4px 0;
  text-align: center;
}
.page-news .version-log__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.page-news .version-log__body strong {
  font-size: 16px;
  font-weight: 700;
}
.page-news .version-log__body span {
  font-size: 14px;
  color: var(--news-text-muted);
  line-height: 1.5;
}

/* ===== 赛事专题 ===== */
.page-news .service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.page-news .service-card {
  background: var(--news-surface);
  border: 1px solid var(--news-border);
  border-left: 4px solid var(--news-green);
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  color: var(--news-text);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.page-news .service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(10, 31, 68, 0.08);
  border-left-color: var(--news-gold);
}
.page-news .service-card__index {
  font-family: var(--news-font-mono);
  font-size: 13px;
  color: var(--news-text-muted);
}
.page-news .service-card__title {
  font-size: 17px;
  font-weight: 700;
  margin: 12px 0 8px;
}
.page-news .service-card__desc {
  font-size: 14px;
  color: var(--news-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ===== 分页 ===== */
.page-news .page-nav {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.page-news .page-nav__link {
  font-family: var(--news-font-mono);
  font-size: 14px;
  padding: 6px 14px;
  border: 1px solid var(--news-border);
  border-radius: 6px;
  text-decoration: none;
  color: var(--news-deep);
  transition: all 0.2s ease;
}
.page-news .page-nav__link:hover {
  background: var(--news-deep);
  color: #fff;
  border-color: var(--news-deep);
}
.page-news .page-nav__link--prev {
  margin-right: 8px;
}
.page-news .page-nav__current {
  font-family: var(--news-font-mono);
  font-size: 14px;
  background: var(--news-green);
  color: var(--news-deep);
  border-radius: 6px;
  padding: 6px 14px;
  font-weight: 700;
}

/* ===== 更新说明深色条 ===== */
.page-news .update-note {
  text-align: center;
  padding: 12px 0;
}
.page-news .update-note__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.page-news .update-note__mark {
  color: var(--news-gold);
  margin-right: 6px;
}

/* ===== 按钮 ===== */
.page-news .btn {
  display: inline-block;
  font-family: var(--news-font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.page-news .btn--primary {
  background: var(--news-green);
  color: var(--news-deep);
}
.page-news .btn--primary:hover {
  background: #00c45c;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 230, 118, 0.25);
}
.page-news .btn--ghost {
  background: transparent;
  color: var(--news-deep);
  border: 2px solid var(--news-deep);
}
.page-news .btn--ghost:hover {
  background: var(--news-deep);
  color: #fff;
}

/* ===== 标签 ===== */
.page-news .tag {
  display: inline-block;
  font-family: var(--news-font-mono);
  font-size: 12px;
  padding: 3px 12px;
  border-radius: 999px;
  line-height: 1.5;
}
.page-news .tag--green {
  background: rgba(0, 230, 118, 0.14);
  color: #008f45;
}
.page-news .tag--gold {
  background: rgba(255, 193, 7, 0.16);
  color: #8f6a00;
}
.page-news .tag--dark {
  background: var(--news-deep);
  color: #fff;
}

/* ===== 响应式 ===== */
@media (max-width: 980px) {
  .page-news .news-hero__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-news .news-hero__visual {
    display: none;
  }
  .page-news .news-index__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-news .obs-grid {
    grid-template-columns: 1fr;
  }
  .page-news .venue-layout {
    grid-template-columns: 1fr;
  }
  .page-news .venue-aside__card {
    position: static;
  }
  .page-news .version-grid {
    grid-template-columns: 1fr;
  }
  .page-news .service-grid {
    grid-template-columns: 1fr;
  }
  .page-news .article-row {
    grid-template-columns: 40px 1fr;
  }
  .page-news .article-row__thumb {
    display: none;
  }
}

@media (max-width: 600px) {
  .page-news .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .page-news .news-index__grid {
    grid-template-columns: 1fr;
  }
  .page-news .section-head {
    flex-wrap: wrap;
  }
  .page-news .section-head__note {
    margin-left: 0;
    width: 100%;
  }
  .page-news .venue-item {
    grid-template-columns: 44px 1fr;
  }
  .page-news .venue-item__time {
    grid-column: 2;
    padding-top: 0;
    padding-left: 0;
  }
  .page-news .version-log__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .page-news .version-log__tag {
    text-align: left;
    width: fit-content;
    padding: 2px 10px;
  }
  .page-news .article-row {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .page-news .article-row__index {
    font-size: 12px;
  }
  .page-news .article-row__title {
    font-size: 17px;
  }
  .page-news .news-filter {
    width: 100%;
  }
  .page-news .news-hero h1 {
    font-size: 30px;
  }
  .page-news .panel {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .page-news .news-index {
    padding-top: 36px;
  }
  .page-news .page-nav__link--prev {
    margin-right: 0;
  }
}
