.page-news {
  --news-rail-w: 220px;
  --news-top: calc(var(--header-h) + var(--ticker-h));
  --news-line: 1px solid var(--hairline-500);
  padding-bottom: clamp(48px, 8vw, 96px);
}

.page-news .breadcrumb {
  margin-bottom: clamp(18px, 3vw, 30px);
}

/* ---------- Hero ---------- */
.page-news .news-hero {
  position: relative;
}

.page-news .news-hero-inner {
  display: grid;
  gap: 28px;
  padding-bottom: clamp(28px, 5vw, 48px);
}

.page-news .news-hero-copy h1 {
  margin: 10px 0 16px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 5.2vw, 54px);
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--chalk-050);
  max-width: 20em;
}

.page-news .news-hero-copy .lede {
  max-width: 42em;
  margin: 0;
  color: var(--mist-400);
  font-size: 16px;
  line-height: 1.78;
}

.page-news .eyebrow {
  display: inline-block;
  color: var(--pulse-cyan);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.page-news .news-hero-panel {
  position: relative;
  padding: 22px 22px 24px;
  background: var(--abyss-800);
  border: 3px solid var(--hairline-500);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard-sm);
  overflow: hidden;
}

.page-news .news-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pulse-cyan) 0 58%, var(--flare-orange) 58% 100%);
}

.page-news .news-panel-label {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--mist-400);
}

.page-news .news-panel-num {
  margin: 8px 0 0;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(42px, 8vw, 62px);
  font-weight: 700;
  line-height: 1;
  color: var(--chalk-050);
  letter-spacing: -0.02em;
}

.page-news .news-panel-unit {
  margin: 6px 0 18px;
  font-size: 13px;
  color: var(--mist-400);
}

.page-news .news-panel-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  border-top: var(--news-line);
  padding-top: 16px;
}

.page-news .news-panel-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--mist-400);
}

.page-news .news-panel-list .live-dot {
  margin-top: 6px;
  flex: none;
}

/* ---------- Banner ---------- */
.page-news .news-banner {
  margin: 0;
  width: 100%;
  aspect-ratio: 1600 / 620;
  overflow: hidden;
  border-top: 3px solid var(--hairline-500);
  border-bottom: 3px solid var(--hairline-500);
  background: var(--abyss-950);
}

.page-news .news-banner img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

/* ---------- Layout ---------- */
.page-news .news-body {
  display: grid;
  gap: 36px;
  padding-top: clamp(32px, 5vw, 56px);
  min-width: 0;
}

.page-news .news-rail {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.page-news .news-rail-title {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--mist-400);
}

.page-news .news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: flex-start;
}

.page-news .news-filter .pill {
  border: 2px solid var(--hairline-500);
  background: transparent;
  color: var(--mist-400);
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1;
  padding: 11px 16px;
  min-height: 44px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: color 0.16s var(--ease), border-color 0.16s var(--ease), background-color 0.16s var(--ease);
}

.page-news .news-filter .pill:hover {
  color: var(--chalk-050);
  border-color: var(--mist-400);
}

.page-news .news-filter .pill[aria-pressed="true"] {
  color: var(--pulse-cyan);
  border-color: var(--pulse-cyan);
  background: rgba(33, 230, 214, 0.09);
}

.page-news .news-filter .pill:focus-visible {
  outline: 3px solid var(--pulse-cyan);
  outline-offset: 2px;
}

.page-news .filter-status {
  flex: 1 1 100%;
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--mist-400);
  min-height: 1.4em;
}

.page-news .news-anchors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  border-top: var(--news-line);
  padding-top: 18px;
}

.page-news .news-anchors .news-rail-title {
  flex: 1 1 100%;
}

.page-news .news-anchors a {
  position: relative;
  color: var(--mist-400);
  font-size: 14px;
  text-decoration: none;
  padding: 6px 0 6px 14px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  transition: color 0.16s var(--ease);
}

.page-news .news-anchors a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  translate: 0 -50%;
  border-radius: 50%;
  background: var(--hairline-500);
  transition: background-color 0.16s var(--ease), width 0.16s var(--ease);
}

.page-news .news-anchors a:hover,
.page-news .news-anchors a[aria-current="true"] {
  color: var(--pulse-cyan);
}

.page-news .news-anchors a[aria-current="true"]::before {
  background: var(--pulse-cyan);
  width: 14px;
  border-radius: 3px;
}

/* ---------- Stream ---------- */
.page-news .news-stream {
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 8vw, 88px);
  min-width: 0;
}

.page-news .news-block {
  scroll-margin-top: calc(var(--news-top) + 24px);
  min-width: 0;
}

.page-news .news-block-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 16px;
  padding-bottom: 18px;
  border-bottom: 3px solid var(--hairline-500);
  margin-bottom: 26px;
}

.page-news .news-block-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 3.4vw, 34px);
  line-height: 1.2;
  color: var(--chalk-050);
}

.page-news .news-block-head .chapter-num {
  color: var(--flare-orange);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.page-news .news-block-lede {
  flex: 1 1 100%;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--mist-400);
  max-width: 46em;
}

.page-news .news-block-media {
  margin: 0 0 30px;
  aspect-ratio: 1200 / 620;
  overflow: hidden;
  border: 3px solid var(--hairline-500);
  border-radius: var(--radius);
  background: var(--abyss-950);
}

.page-news .news-block-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

/* ---------- Spotlight ---------- */
.page-news .spotlight-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .spotlight-item {
  padding: clamp(24px, 4vw, 40px) 0;
  border-bottom: var(--news-line);
}

.page-news .spotlight-item:first-child {
  border-top: 6px solid var(--flare-orange);
}

.page-news .spotlight-meta {
  margin: 0 0 12px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--flare-orange);
  text-transform: uppercase;
}

.page-news .spotlight-title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 3.4vw, 40px);
  line-height: 1.2;
  color: var(--chalk-050);
  overflow-wrap: break-word;
}

.page-news .spotlight-item:first-child .spotlight-title {
  font-size: clamp(26px, 5vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.015em;
}

.page-news .spotlight-desc {
  margin: 0 0 16px;
  max-width: 42em;
  font-size: 16px;
  line-height: 1.8;
  color: var(--mist-400);
}

.page-news .spotlight-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--pulse-cyan);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 0.16s var(--ease), transform 0.16s var(--ease);
}

.page-news .spotlight-link:hover {
  color: var(--flare-orange);
  transform: translateX(4px);
}

/* ---------- Trend list ---------- */
.page-news .trend-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .trend-item {
  border-bottom: var(--news-line);
}

.page-news .trend-item:first-child {
  border-top: var(--news-line);
}

.page-news .trend-entry {
  display: block;
}

.page-news .trend-summary {
  display: grid;
  grid-template-columns: 2.4em minmax(0, 1fr) 22px;
  align-items: center;
  gap: 12px 16px;
  padding: 18px 14px;
  min-height: 60px;
  cursor: pointer;
  list-style: none;
  color: var(--chalk-050);
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease);
}

.page-news .trend-summary::-webkit-details-marker {
  display: none;
}

.page-news .trend-summary::marker {
  content: "";
}

.page-news .trend-index {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--pulse-cyan);
  transition: color 0.18s var(--ease);
}

.page-news .trend-head {
  display: block;
  min-width: 0;
}

.page-news .trend-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(16px, 2.1vw, 21px);
  line-height: 1.42;
  color: inherit;
  overflow-wrap: break-word;
}

.page-news .trend-meta {
  display: block;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: inherit;
  opacity: 0.62;
}

.page-news .trend-arrow {
  position: relative;
  width: 22px;
  height: 22px;
  flex: none;
  color: inherit;
}

.page-news .trend-arrow::before,
.page-news .trend-arrow::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
}

.page-news .trend-arrow::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.22s var(--ease);
}

.page-news .trend-entry[open] .trend-arrow::after {
  transform: translateY(-50%) rotate(0deg);
}

@media (hover: hover) {
  .page-news .trend-summary:hover {
    background: var(--chalk-050);
    color: var(--ink-950);
  }

  .page-news .trend-summary:hover .trend-index {
    color: var(--ink-950);
    opacity: 0.7;
  }
}

.page-news .trend-summary:focus-visible {
  outline: 3px solid var(--pulse-cyan);
  outline-offset: -3px;
  background: var(--chalk-050);
  color: var(--ink-950);
}

.page-news .trend-summary:focus-visible .trend-index {
  color: var(--ink-950);
  opacity: 0.7;
}

.page-news .trend-detail {
  padding: 4px 14px 24px 3.4em;
  border-left: 3px solid var(--abyss-800);
  margin-left: 14px;
  color: var(--mist-400);
  font-size: 15px;
  line-height: 1.8;
}

.page-news .trend-detail p {
  margin: 0 0 10px;
  max-width: 42em;
}

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

.page-news .trend-detail-link a {
  color: var(--pulse-cyan);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.page-news .trend-detail-link a:hover {
  color: var(--flare-orange);
}

/* ---------- Weekly ---------- */
.page-news .news-block--weekly {
  position: relative;
  padding: clamp(26px, 4vw, 40px) clamp(20px, 3.4vw, 36px) clamp(28px, 4vw, 40px);
  background: var(--abyss-800);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.page-news .news-block--weekly::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(46%, 320px);
  height: 6px;
  background: var(--flare-orange);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.page-news .weekly-grid {
  display: grid;
  gap: 20px;
}

.page-news .weekly-card {
  padding: 22px 20px 24px;
  border: 2px solid var(--hairline-500);
  border-radius: var(--radius);
  background: rgba(4, 7, 15, 0.42);
}

.page-news .weekly-card--accent {
  border-color: var(--pulse-cyan);
}

.page-news .weekly-num {
  margin: 0;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(30px, 5.4vw, 44px);
  font-weight: 700;
  line-height: 1;
  color: var(--chalk-050);
}

.page-news .weekly-card--accent .weekly-num {
  color: var(--pulse-cyan);
}

.page-news .weekly-label {
  margin: 8px 0 14px;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--mist-400);
}

.page-news .weekly-desc {
  margin: 0 0 16px;
  max-width: 42em;
  font-size: 15px;
  line-height: 1.8;
  color: var(--mist-400);
}

.page-news .weekly-card--accent .weekly-desc {
  margin-bottom: 20px;
}

.page-news .weekly-card .btn {
  min-height: 44px;
}

.page-news .weekly-foot {
  margin: 24px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--mist-400);
}

.page-news .weekly-foot a {
  color: var(--pulse-cyan);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.page-news .weekly-foot a:hover {
  color: var(--flare-orange);
}

/* ---------- Responsive ---------- */
@media (max-width: 599px) {
  .page-news .news-panel-num {
    font-size: 46px;
  }

  .page-news .spotlight-item:first-child .spotlight-title {
    font-size: 27px;
  }

  .page-news .trend-summary {
    grid-template-columns: 1.9em minmax(0, 1fr) 18px;
    gap: 10px 12px;
    padding: 16px 10px;
  }

  .page-news .trend-detail {
    margin-left: 10px;
    padding: 4px 10px 20px 20px;
    font-size: 14.5px;
  }

  .page-news .news-banner {
    aspect-ratio: 16 / 9;
  }

  .page-news .news-block-media {
    aspect-ratio: 4 / 3;
  }
}

@media (min-width: 760px) {
  .page-news .weekly-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .page-news .news-hero-inner {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 48px;
    align-items: end;
  }

  .page-news .news-body {
    grid-template-columns: var(--news-rail-w) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
  }

  .page-news .news-rail {
    position: sticky;
    top: calc(var(--news-top) + 28px);
    align-self: start;
  }

  .page-news .news-filter {
    flex-direction: column;
    align-items: stretch;
  }

  .page-news .news-filter .pill {
    text-align: left;
    width: 100%;
  }

  .page-news .filter-status {
    flex: none;
  }

  .page-news .news-anchors {
    flex-direction: column;
    gap: 2px;
  }

  .page-news .news-anchors a {
    padding-left: 16px;
  }
}

@media (min-width: 1280px) {
  .page-news {
    --news-rail-w: 240px;
  }

  .page-news .news-block-media {
    aspect-ratio: 1200 / 560;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .trend-summary,
  .page-news .trend-arrow::after,
  .page-news .spotlight-link,
  .page-news .news-filter .pill,
  .page-news .news-anchors a {
    transition: none;
  }

  .page-news .spotlight-link:hover {
    transform: none;
  }
}
</main>

.page-news {
  --news-rail-w: 220px;
  --news-top: calc(var(--header-h) + var(--ticker-h));
  --news-line: 1px solid var(--hairline-500);
  padding-bottom: clamp(48px, 8vw, 96px);
}

.page-news .breadcrumb {
  margin-bottom: clamp(18px, 3vw, 30px);
}

/* ---------- Hero ---------- */
.page-news .news-hero {
  position: relative;
}

.page-news .news-hero-inner {
  display: grid;
  gap: 28px;
  padding-bottom: clamp(28px, 5vw, 48px);
}

.page-news .news-hero-copy h1 {
  margin: 10px 0 16px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 5.2vw, 54px);
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--chalk-050);
  max-width: 20em;
}

.page-news .news-hero-copy .lede {
  max-width: 42em;
  margin: 0;
  color: var(--mist-400);
  font-size: 16px;
  line-height: 1.78;
}

.page-news .eyebrow {
  display: inline-block;
  color: var(--pulse-cyan);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.page-news .news-hero-panel {
  position: relative;
  padding: 22px 22px 24px;
  background: var(--abyss-800);
  border: 3px solid var(--hairline-500);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard-sm);
  overflow: hidden;
}

.page-news .news-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pulse-cyan) 0 58%, var(--flare-orange) 58% 100%);
}

.page-news .news-panel-label {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--mist-400);
}

.page-news .news-panel-num {
  margin: 8px 0 0;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(42px, 8vw, 62px);
  font-weight: 700;
  line-height: 1;
  color: var(--chalk-050);
  letter-spacing: -0.02em;
}

.page-news .news-panel-unit {
  margin: 6px 0 18px;
  font-size: 13px;
  color: var(--mist-400);
}

.page-news .news-panel-list {
  margin: 0;
  padding: 16px 0 0;
  list-style: none;
  display: grid;
  gap: 10px;
  border-top: var(--news-line);
}

.page-news .news-panel-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--mist-400);
}

.page-news .news-panel-list .live-dot {
  margin-top: 6px;
  flex: none;
}

/* ---------- Banner ---------- */
.page-news .news-banner {
  margin: 0;
  width: 100%;
  aspect-ratio: 1600 / 620;
  overflow: hidden;
  border-top: 3px solid var(--hairline-500);
  border-bottom: 3px solid var(--hairline-500);
  background: var(--abyss-950);
}

.page-news .news-banner img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

/* ---------- Layout ---------- */
.page-news .news-body {
  display: grid;
  gap: 36px;
  padding-top: clamp(32px, 5vw, 56px);
  min-width: 0;
}

.page-news .news-rail {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.page-news .news-rail-title {
  margin: 0 0 10px;
  flex: 1 1 100%;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--mist-400);
}

.page-news .news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-news .news-filter .pill {
  border: 2px solid var(--hairline-500);
  background: transparent;
  color: var(--mist-400);
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1;
  padding: 11px 16px;
  min-height: 44px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: color 0.16s var(--ease), border-color 0.16s var(--ease), background-color 0.16s var(--ease);
}

.page-news .news-filter .pill:hover {
  color: var(--chalk-050);
  border-color: var(--mist-400);
}

.page-news .news-filter .pill[aria-pressed="true"] {
  color: var(--pulse-cyan);
  border-color: var(--pulse-cyan);
  background: rgba(33, 230, 214, 0.09);
}

.page-news .news-filter .pill:focus-visible {
  outline: 3px solid var(--pulse-cyan);
  outline-offset: 2px;
}

.page-news .filter-status {
  flex: 1 1 100%;
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--mist-400);
  min-height: 1.4em;
}

.page-news .news-anchors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  border-top: var(--news-line);
  padding-top: 18px;
}

.page-news .news-anchors a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 6px 0 6px 14px;
  color: var(--mist-400);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.16s var(--ease);
}

.page-news .news-anchors a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  translate: 0 -50%;
  border-radius: 50%;
  background: var(--hairline-500);
  transition: background-color 0.16s var(--ease), width 0.16s var(--ease);
}

.page-news .news-anchors a:hover,
.page-news .news-anchors a[aria-current="true"] {
  color: var(--pulse-cyan);
}

.page-news .news-anchors a[aria-current="true"]::before {
  background: var(--pulse-cyan);
  width: 14px;
  border-radius: 3px;
}

/* ---------- Stream ---------- */
.page-news .news-stream {
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 8vw, 88px);
  min-width: 0;
}

.page-news .news-block {
  scroll-margin-top: calc(var(--news-top) + 24px);
  min-width: 0;
}

.page-news .news-block-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 16px;
  padding-bottom: 18px;
  border-bottom: 3px solid var(--hairline-500);
  margin-bottom: 26px;
}

.page-news .news-block-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 3.4vw, 34px);
  line-height: 1.2;
  color: var(--chalk-050);
}

.page-news .news-block-head .chapter-num {
  font-family: var(--font-mono);
  color: var(--flare-orange);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.page-news .news-block-lede {
  flex: 1 1 100%;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--mist-400);
  max-width: 46em;
}

.page-news .news-block-media {
  margin: 0 0 30px;
  aspect-ratio: 1200 / 620;
  overflow: hidden;
  border: 3px solid var(--hairline-500);
  border-radius: var(--radius);
  background: var(--abyss-950);
}

.page-news .news-block-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

/* ---------- Spotlight ---------- */
.page-news .spotlight-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .spotlight-item {
  padding: clamp(24px, 4vw, 40px) 0;
  border-bottom: var(--news-line);
}

.page-news .spotlight-item:first-child {
  border-top: 6px solid var(--flare-orange);
}

.page-news .spotlight-meta {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--flare-orange);
}

.page-news .spotlight-title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 3.4vw, 40px);
  line-height: 1.2;
  color: var(--chalk-050);
  overflow-wrap: break-word;
}

.page-news .spotlight-item:first-child .spotlight-title {
  font-size: clamp(26px, 5vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.015em;
}

.page-news .spotlight-desc {
  margin: 0 0 16px;
  max-width: 42em;
  font-size: 16px;
  line-height: 1.8;
  color: var(--mist-400);
}

.page-news .spotlight-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--pulse-cyan);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 0.16s var(--ease), transform 0.16s var(--ease);
}

.page-news .spotlight-link:hover {
  color: var(--flare-orange);
  transform: translateX(4px);
}

/* ---------- Trend list ---------- */
.page-news .trend-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .trend-item {
  border-bottom: var(--news-line);
}

.page-news .trend-item:first-child {
  border-top: var(--news-line);
}

.page-news .trend-entry {
  display: block;
}

.page-news .trend-summary {
  display: grid;
  grid-template-columns: 2.4em minmax(0, 1fr) 22px;
  align-items: center;
  gap: 12px 16px;
  padding: 18px 14px;
  min-height: 60px;
  cursor: pointer;
  list-style: none;
  color: var(--chalk-050);
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease);
}

.page-news .trend-summary::-webkit-details-marker {
  display: none;
}

.page-news .trend-summary::marker {
  content: "";
}

.page-news .trend-index {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--pulse-cyan);
  transition: color 0.18s var(--ease);
}

.page-news .trend-head {
  display: block;
  min-width: 0;
}

.page-news .trend-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(16px, 2.1vw, 21px);
  line-height: 1.42;
  color: inherit;
  overflow-wrap: break-word;
}

.page-news .trend-meta {
  display: block;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: inherit;
  opacity: 0.62;
}

.page-news .trend-arrow {
  position: relative;
  width: 22px;
  height: 22px;
  flex: none;
  color: inherit;
}

.page-news .trend-arrow::before,
.page-news .trend-arrow::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
}

.page-news .trend-arrow::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.22s var(--ease);
}

.page-news .trend-entry[open] .trend-arrow::after {
  transform: translateY(-50%) rotate(0deg);
}

@media (hover: hover) {
  .page-news .trend-summary:hover {
    background: var(--chalk-050);
    color: var(--ink-950);
  }

  .page-news .trend-summary:hover .trend-index {
    color: var(--ink-950);
    opacity: 0.7;
  }
}

.page-news .trend-summary:focus-visible {
  outline: 3px solid var(--pulse-cyan);
  outline-offset: -3px;
  background: var(--chalk-050);
  color: var(--ink-950);
}

.page-news .trend-summary:focus-visible .trend-index {
  color: var(--ink-950);
  opacity: 0.7;
}

.page-news .trend-detail {
  margin-left: 14px;
  padding: 4px 14px 24px 3.4em;
  border-left: 3px solid var(--abyss-800);
  color: var(--mist-400);
  font-size: 15px;
  line-height: 1.8;
}

.page-news .trend-detail p {
  margin: 0 0 10px;
  max-width: 42em;
}

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

.page-news .trend-detail-link a {
  color: var(--pulse-cyan);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.page-news .trend-detail-link a:hover {
  color: var(--flare-orange);
}

/* ---------- Weekly ---------- */
.page-news .news-block--weekly {
  position: relative;
  padding: clamp(26px, 4vw, 40px) clamp(20px, 3.4vw, 36px) clamp(28px, 4vw, 40px);
  background: var(--abyss-800);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.page-news .news-block--weekly::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(46%, 320px);
  height: 6px;
  background: var(--flare-orange);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.page-news .weekly-grid {
  display: grid;
  gap: 20px;
}

.page-news .weekly-card {
  padding: 22px 20px 24px;
  border: 2px solid var(--hairline-500);
  border-radius: var(--radius);
  background: rgba(4, 7, 15, 0.42);
}

.page-news .weekly-card--accent {
  border-color: var(--pulse-cyan);
}

.page-news .weekly-num {
  margin: 0;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(30px, 5.4vw, 44px);
  font-weight: 700;
  line-height: 1;
  color: var(--chalk-050);
}

.page-news .weekly-card--accent .weekly-num {
  color: var(--pulse-cyan);
}

.page-news .weekly-label {
  margin: 8px 0 14px;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--mist-400);
}

.page-news .weekly-desc {
  margin: 0 0 16px;
  max-width: 42em;
  font-size: 15px;
  line-height: 1.8;
  color: var(--mist-400);
}

.page-news .weekly-card--accent .weekly-desc {
  margin-bottom: 20px;
}

.page-news .weekly-card .btn {
  min-height: 44px;
}

.page-news .weekly-foot {
  margin: 24px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--mist-400);
}

.page-news .weekly-foot a {
  color: var(--pulse-cyan);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.page-news .weekly-foot a:hover {
  color: var(--flare-orange);
}

/* ---------- Responsive ---------- */
@media (max-width: 599px) {
  .page-news .news-panel-num {
    font-size: 46px;
  }

  .page-news .spotlight-item:first-child .spotlight-title {
    font-size: 27px;
  }

  .page-news .trend-summary {
    grid-template-columns: 1.9em minmax(0, 1fr) 18px;
    gap: 10px 12px;
    padding: 16px 10px;
  }

  .page-news .trend-detail {
    margin-left: 10px;
    padding: 4px 10px 20px 20px;
    font-size: 14.5px;
  }

  .page-news .news-banner {
    aspect-ratio: 16 / 9;
  }

  .page-news .news-block-media {
    aspect-ratio: 4 / 3;
  }
}

@media (min-width: 760px) {
  .page-news .weekly-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .page-news .news-hero-inner {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 48px;
    align-items: end;
  }

  .page-news .news-body {
    grid-template-columns: var(--news-rail-w) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
  }

  .page-news .news-rail {
    position: sticky;
    top: calc(var(--news-top) + 28px);
    align-self: start;
  }

  .page-news .news-filter {
    flex-direction: column;
    align-items: stretch;
  }

  .page-news .news-filter .pill {
    text-align: left;
    width: 100%;
  }

  .page-news .filter-status {
    flex: none;
  }

  .page-news .news-anchors {
    flex-direction: column;
    gap: 2px;
  }

  .page-news .news-anchors a {
    padding-left: 16px;
  }
}

@media (min-width: 1280px) {
  .page-news {
    --news-rail-w: 240px;
  }

  .page-news .news-block-media {
    aspect-ratio: 1200 / 560;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .trend-summary,
  .page-news .trend-arrow::after,
  .page-news .spotlight-link,
  .page-news .news-filter .pill,
  .page-news .news-anchors a {
    transition: none;
  }

  .page-news .spotlight-link:hover {
    transform: none;
  }
}
