.page-news {
  --tag-event: #4DD0E1;
  --tag-announce: #FFD54F;
  --bg-card: #111C2C;
  position: relative;
  background: var(--bg-deep);
  color: var(--text-main);
  padding-bottom: 96px;
  overflow: hidden;
}

.page-news .breadcrumb {
  padding: 26px 6vw 0;
  margin-bottom: 0;
}

.page-news .news-hero {
  position: relative;
  margin-top: 0;
  padding: 34px 6vw 150px;
  background: linear-gradient(135deg, var(--bg-navy) 0%, var(--bg-deep) 68%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 36px), 0 100%);
  overflow: hidden;
}

.page-news .news-hero-slash {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 34%;
  height: 130%;
  background: linear-gradient(135deg, rgba(138,43,226,0.35), rgba(0,255,135,0.08));
  transform: skewX(-14deg);
  clip-path: polygon(100% 0, 100% 100%, 18% 100%);
  pointer-events: none;
  z-index: 1;
}

.page-news .news-hero-text {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.page-news .news-hero h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(34px, 6.4vw, 74px);
  line-height: 1.1;
  margin: 12px 0 18px;
  letter-spacing: -0.02em;
}

.page-news .hero-divider {
  color: var(--accent-green);
  margin: 0 4px;
}

.page-news .hero-sub {
  display: block;
  font-size: clamp(18px, 2.4vw, 28px);
  color: var(--text-sub);
  font-weight: 700;
  margin-top: 6px;
  letter-spacing: 0.04em;
}

.page-news .news-hero-desc {
  color: var(--text-sub);
  font-size: 15px;
  line-height: 1.8;
  max-width: 640px;
  margin: 0;
}

.page-news .news-hero-deco {
  position: absolute;
  right: 6vw;
  bottom: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  pointer-events: none;
  z-index: 1;
}

.page-news .hero-index {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(96px, 18vw, 190px);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 2px var(--accent-purple);
}

.page-news .news-hero-deco .vertical-note {
  color: var(--text-sub);
}

.page-news .feature-section,
.page-news .listing-section,
.page-news .next-station {
  position: relative;
  z-index: 3;
}

.page-news .section-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 44px 6vw 10px;
}

.page-news .section-title-copy .eyebrow {
  margin: 0 0 4px;
}

.page-news .section-title-copy h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(24px, 4vw, 40px);
  margin: 0;
}

.page-news .section-title-row .section-index {
  color: var(--accent-green);
  font-size: 42px;
  line-height: 1;
}

.page-news .section-title-row .vertical-note {
  margin-left: auto;
}

.page-news .feature-grid {
  display: grid;
  gap: 22px;
  padding: 22px 6vw 0;
  max-width: var(--content-max);
  margin: 0 auto;
}

.page-news .feature-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.page-news .feature-card:hover {
  border-color: rgba(138,43,226,0.65);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.36);
}

.page-news .feature-media {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--bg-navy);
}

.page-news .feature-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 26px;
}

.page-news .feature-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.page-news .feature-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
  margin: 0 0 10px;
}

.page-news .feature-excerpt {
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 18px;
}

.page-news .feature-body .btn-outline {
  align-self: flex-start;
  margin-top: auto;
}

.page-news .news-tabs {
  position: relative;
  padding: 18px 6vw 0;
  max-width: var(--content-max);
  margin: 0 auto;
}

.page-news .tab-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.page-news .tab-label {
  display: inline-block;
  padding: 8px 2px 10px;
  margin-right: 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  color: var(--text-sub);
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), text-shadow var(--transition);
}

.page-news .tab-radio:checked + .tab-label {
  color: var(--accent-green);
  border-bottom-color: var(--accent-green);
  text-shadow: 0 0 14px rgba(0, 255, 135, 0.35);
}

.page-news .tab-radio:focus-visible + .tab-label {
  outline: 2px solid var(--accent-green);
  outline-offset: 4px;
}

.page-news .tab-panel {
  padding: 26px 0 20px;
}

.page-news .news-list {
  display: grid;
  gap: 16px;
}

.page-news .news-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.page-news .news-card[data-cat="ver"] {
  border-left-color: var(--accent-purple);
}

.page-news .news-card[data-cat="guide"] {
  border-left-color: var(--accent-green);
}

.page-news .news-card[data-cat="announce"] {
  border-left-color: var(--tag-announce);
}

.page-news .news-card[data-cat="events"] {
  border-left-color: var(--tag-event);
}

.page-news .news-thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  background: var(--bg-navy);
}

.page-news .news-card-content {
  padding: 18px 20px 22px;
}

.page-news .news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.page-news .news-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.4;
  margin: 0 0 8px;
}

.page-news .news-summary {
  color: var(--text-sub);
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 10px;
}

.page-news .news-link {
  color: var(--accent-green);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 255, 135, 0.35);
  transition: border-color var(--transition), color var(--transition);
}

.page-news .news-link:hover {
  border-bottom-color: var(--accent-green);
  color: #baffd9;
}

.page-news .news-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-purple);
  border-left-color: var(--accent-purple);
}

.page-news .tag {
  display: inline-block;
  padding: 3px 10px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 3px;
}

.page-news .tag-ver {
  color: #B37CFF;
  background: rgba(138, 43, 226, 0.22);
  border: 1px solid rgba(138, 43, 226, 0.5);
}

.page-news .tag-guide {
  color: var(--accent-green);
  background: rgba(0, 255, 135, 0.12);
  border: 1px solid rgba(0, 255, 135, 0.4);
}

.page-news .tag-announce {
  color: var(--tag-announce);
  background: rgba(255, 213, 79, 0.12);
  border: 1px solid rgba(255, 213, 79, 0.4);
}

.page-news .tag-event {
  color: var(--tag-event);
  background: rgba(77, 208, 225, 0.12);
  border: 1px solid rgba(77, 208, 225, 0.4);
}

.page-news .news-time {
  color: var(--text-sub);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.page-news #tab-ver:checked ~ .tab-panel .news-card:not([data-cat="ver"]),
.page-news #tab-guide:checked ~ .tab-panel .news-card:not([data-cat="guide"]),
.page-news #tab-announce:checked ~ .tab-panel .news-card:not([data-cat="announce"]),
.page-news #tab-events:checked ~ .tab-panel .news-card:not([data-cat="events"]) {
  display: none;
}

.page-news .news-more {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin: 24px 0 0;
  padding: 22px;
  background: var(--bg-panel);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

.page-news .news-more-text {
  margin: 0;
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.7;
}

.page-news .station-grid {
  display: grid;
  gap: 14px;
  padding: 22px 6vw 0;
  max-width: var(--content-max);
  margin: 0 auto;
}

.page-news .station-cell {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  row-gap: 4px;
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text-main);
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}

.page-news .station-cell:hover {
  border-color: var(--accent-green);
  background: var(--bg-panel);
  transform: translateY(-3px);
}

.page-news .station-num {
  grid-row: 1 / span 2;
  align-self: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 28px;
  color: var(--accent-purple);
}

.page-news .station-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
}

.page-news .station-desc {
  color: var(--text-sub);
  font-size: 13px;
  line-height: 1.5;
}

@media (min-width: 880px) {
  .page-news .news-tabs {
    padding-left: calc(6vw + 28px);
  }

  .page-news .feature-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: stretch;
  }

  .page-news .news-list {
    gap: 22px;
  }

  .page-news .news-card {
    grid-template-columns: 200px 1fr;
    align-items: center;
  }

  .page-news .news-card:nth-child(even) {
    grid-template-columns: 1fr 200px;
    margin-left: 28px;
  }

  .page-news .news-card:nth-child(odd) {
    margin-right: 28px;
  }

  .page-news .news-card:nth-child(even) .news-thumb {
    order: 2;
  }

  .page-news .news-card:nth-child(even) .news-card-content {
    order: 1;
  }

  .page-news .news-more {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .page-news .news-more-text {
    max-width: 640px;
  }

  .page-news .station-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}

@media (min-width: 1200px) {
  .page-news .feature-grid {
    gap: 26px;
  }

  .page-news .news-list {
    grid-template-columns: 1fr;
  }

  .page-news .station-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
