.page-news {
  --news-pad: clamp(20px, 4vw, 56px);
  position: relative;
  min-height: 100vh;
  background: var(--bg-dark);
  color: var(--text-body);
  font-family: var(--font-body);
  padding: var(--news-pad) clamp(16px, 4vw, 64px) calc(var(--news-pad) * 1.6);
}
.page-news .breadcrumb {
  margin-bottom: 24px;
}
.page-news .log-head {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line-soft);
  border-left: 4px solid var(--red-core);
  background:
    linear-gradient(135deg, rgba(212, 0, 0, 0.08) 0%, transparent 40%),
    var(--bg-void);
}
.page-news .log-head-copy {
  padding: clamp(24px, 4vw, 48px);
}
.page-news .head-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin: 0 0 12px;
}
.page-news .log-head .display-title {
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.08;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.page-news .log-head .lead-text {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.65;
  max-width: 56ch;
}
.page-news .head-description {
  font-size: 14px;
  color: var(--text-dim);
  margin: 12px 0 0;
}
.page-news .log-head-media {
  margin: 0;
  border-top: 1px solid var(--line-soft);
}
.page-news .log-head-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-news .sec-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 16px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}
.page-news .sec-head h2 {
  margin: 0;
  padding-left: 12px;
  border-left: 4px solid var(--red-core);
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.2;
}
.page-news .sec-index {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin: 0;
}
.page-news .sec-note {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0 0 0 auto;
}
.page-news .log-feed,
.page-news .log-tags,
.page-news .tag-stage,
.page-news .log-help {
  margin-top: clamp(40px, 6vw, 80px);
}
.page-news .feed-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  counter-reset: feedindex;
}
.page-news .feed-card {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  padding: 18px 16px 18px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: border-color .3s ease, background .3s ease;
}
.page-news .feed-card::before {
  counter-increment: feedindex;
  content: counter(feedindex, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold);
  line-height: 1.4;
}
.page-news .feed-card:hover,
.page-news .feed-card:focus-within {
  border-color: var(--red-core);
  background: linear-gradient(90deg, rgba(212, 0, 0, 0.06), transparent);
}
.page-news .feed-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.page-news .feed-round {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
}
.page-news .feed-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.4;
}
.page-news .feed-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-sub);
}
.page-news .feed-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, color .3s ease;
}
.page-news .feed-link:hover {
  border-color: var(--gold);
  color: var(--ivory);
}
.page-news .feed-more {
  margin-top: 16px;
  display: inline-block;
}
.page-news .tag-band {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--red-core) var(--bg-card);
}
.page-news .tag-band::-webkit-scrollbar {
  height: 6px;
}
.page-news .tag-band::-webkit-scrollbar-track {
  background: var(--bg-card);
}
.page-news .tag-band::-webkit-scrollbar-thumb {
  background: var(--red-core);
}
.page-news .tag-band a {
  text-decoration: none;
  transition: border-color .3s ease, color .3s ease;
}
.page-news .tag-band a:hover {
  border-color: var(--red-core);
  color: var(--ivory);
}
.page-news .tag-tip {
  font-size: 13px;
  color: var(--text-dim);
  margin: 12px 0 0;
}
.page-news .tag-reset {
  display: block;
  height: 0;
  width: 100%;
  scroll-margin-top: calc(var(--header-height) + 12px);
}
.page-news .log-special {
  scroll-margin-top: calc(var(--header-height) + 12px);
  margin-bottom: 56px;
}
.page-news .tag-stage:has(.log-special:target) .log-special:not(:target) {
  display: none;
}
.page-news .tag-stage:has(.log-special:target) .log-special:target {
  display: block;
}
.page-news .special-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
.page-news .special-media {
  margin: 0;
  border: 1px solid var(--line-soft);
  background: var(--bg-void);
}
.page-news .special-media img {
  display: block;
  width: 100%;
  height: auto;
}
.page-news .special-entries {
  counter-reset: entryindex;
}
.page-news .entry-card {
  position: relative;
  padding: 16px 0 16px 52px;
  border-bottom: 1px solid var(--line-soft);
  transition: border-color .3s ease;
}
.page-news .entry-card::before {
  counter-increment: entryindex;
  content: counter(entryindex, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold);
  line-height: 1;
}
.page-news .entry-card:hover {
  border-color: var(--red-core);
}
.page-news .entry-card:hover::before {
  color: var(--ivory);
}
.page-news .entry-round {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--red-core);
  letter-spacing: 0.06em;
  margin: 0 0 4px;
  text-transform: uppercase;
}
.page-news .entry-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.4;
}
.page-news .entry-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.6;
}
.page-news .sec-lead {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.65;
  max-width: 72ch;
  margin: 0 0 24px;
}
.page-news .special-btn {
  margin-top: 24px;
  display: inline-block;
}
.page-news .data-special {
  background: rgba(212, 0, 0, 0.03);
  padding: clamp(24px, 4vw, 48px) clamp(16px, 3vw, 40px);
}
.page-news .archive-special {
  background: var(--bg-void);
  padding: clamp(24px, 4vw, 48px) clamp(16px, 3vw, 40px);
}
.page-news .timeline-wrap {
  position: relative;
  padding: 28px 0;
}
.page-news .timeline-axis--top,
.page-news .timeline-axis--bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line-soft);
}
.page-news .timeline-axis--top {
  top: 0;
}
.page-news .timeline-axis--bottom {
  bottom: 0;
}
.page-news .timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.page-news .timeline-season {
  position: relative;
  padding-left: 20px;
}
.page-news .timeline-season::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line-gold);
}
.page-news .timeline-season::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 22px;
  width: 9px;
  height: 9px;
  background: var(--red-core);
}
.page-news .season-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.page-news .timeline-season h3 {
  margin: 0;
  font-size: 22px;
}
.page-news .season-total {
  font-size: 13px;
  color: var(--text-dim);
  margin: 6px 0 0;
}
.page-news .round-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-soft);
}
.page-news .round-node {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 4px;
  border-bottom: 1px solid var(--line-soft);
  cursor: default;
}
.page-news .round-node::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red-core);
  flex-shrink: 0;
  transition: transform .2s ease;
}
.page-news .round-node:hover::before,
.page-news .round-node:focus::before {
  transform: scale(1.6);
}
.page-news .round-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-sub);
}
.page-news .round-tip {
  display: none;
  position: absolute;
  bottom: calc(100% + 6px);
  left: 0;
  z-index: 2;
  background: var(--bg-void);
  border: 1px solid var(--line-gold);
  padding: 6px 10px;
  font-size: 12px;
  white-space: nowrap;
  color: var(--text-body);
}
.page-news .round-node:hover .round-tip,
.page-news .round-node:focus .round-tip {
  display: block;
}
.page-news .archive-media {
  margin: 28px 0 0;
  border: 1px solid var(--line-soft);
}
.page-news .archive-media img {
  display: block;
  width: 100%;
  height: auto;
}
.page-news .archive-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.page-news .help-card {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 48px);
  background: var(--bg-void);
  border: 1px solid var(--line-gold);
  border-left: 4px solid var(--gold);
}
.page-news .help-card h2 {
  margin: 8px 0;
  font-size: 24px;
}
.page-news .help-card p {
  font-size: 15px;
  color: var(--text-sub);
  max-width: 60ch;
}
.page-news .help-icp {
  font-size: 13px;
  color: var(--text-dim);
  margin: 12px 0 0 !important;
}
.page-news .help-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
@media (min-width: 920px) {
  .page-news {
    margin-left: var(--rail-width);
    padding-left: clamp(32px, 5vw, 80px);
    padding-right: clamp(32px, 5vw, 80px);
    max-width: calc(var(--content-max) + var(--rail-width) + 80px);
  }
  .page-news .log-head {
    grid-template-columns: 1fr 1.1fr;
    align-items: stretch;
  }
  .page-news .log-head-media {
    border-top: none;
    border-left: 1px solid var(--line-soft);
  }
  .page-news .log-head-media img {
    height: 100%;
    max-height: 560px;
    object-fit: cover;
  }
  .page-news .feed-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .page-news .feed-card {
    min-height: 180px;
    padding: 24px 20px 24px 0;
  }
  .page-news .special-grid {
    grid-template-columns: 5fr 7fr;
    gap: 32px;
  }
  .page-news .timeline-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
@media (min-width: 1200px) {
  .page-news .feed-card p {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s ease, opacity .35s ease;
  }
  .page-news .feed-card:hover p,
  .page-news .feed-card:focus-within p {
    max-height: 200px;
    opacity: 1;
  }
  .page-news .timeline-axis--top::after,
  .page-news .timeline-axis--bottom::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 3px;
    width: 64px;
    background: var(--red-core);
  }
}
