.page-news {
  --news-deep: #071428;
  --news-line: rgba(0, 229, 255, 0.24);
  --news-line-soft: rgba(0, 229, 255, 0.12);
  --news-orange-soft: rgba(255, 107, 0, 0.12);
  --news-gap: 56px;
  background: var(--night-blue);
  color: var(--paper-white);
  overflow-x: clip;
}

.page-news .container {
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 20px;
}

.page-news .news-hero,
.page-news .news-week,
.page-news .news-topic,
.page-news .news-lab,
.page-news .news-archive,
.page-news .news-cta {
  padding: 64px 0;
}

.page-news .news-hero {
  padding-top: 72px;
  position: relative;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(0, 229, 255, 0.05) 0 1px, transparent 1px 120px),
    linear-gradient(140deg, transparent 55%, rgba(14, 77, 58, 0.35) 100%);
  pointer-events: none;
}

.page-news .news-hero .container {
  position: relative;
}

.page-news .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
}

.page-news .breadcrumb-link {
  color: var(--muted-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-news .breadcrumb-link:hover {
  color: var(--cyan-pulse);
}

.page-news .breadcrumb-sep {
  color: var(--muted-gray);
  opacity: 0.6;
}

.page-news .breadcrumb-current {
  color: var(--cyan-pulse);
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-news .news-hero-frame {
  position: relative;
  border: 1px solid var(--news-line);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  background: linear-gradient(145deg, rgba(11, 29, 58, 0.75), rgba(14, 77, 58, 0.22));
}

.page-news .news-hero-frame::before,
.page-news .news-hero-frame::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  pointer-events: none;
}

.page-news .news-hero-frame::before {
  top: 14px;
  left: 14px;
  border-top: 3px solid var(--signal-orange);
  border-left: 3px solid var(--signal-orange);
  border-top-left-radius: 12px;
}

.page-news .news-hero-frame::after {
  right: 14px;
  bottom: 14px;
  border-right: 3px solid var(--signal-orange);
  border-bottom: 3px solid var(--signal-orange);
  border-bottom-right-radius: 12px;
}

.page-news .tag-violet {
  background: var(--violet-zone);
  color: #ffffff;
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.page-news .page-title {
  margin: 16px 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--paper-white);
  text-transform: uppercase;
}

.page-news .page-subtitle {
  max-width: 640px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: rgba(245, 247, 250, 0.78);
  margin: 0;
}

.page-news .news-hero-aside {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--news-line);
}

.page-news .hero-metric-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.page-news .hero-metric {
  display: flex;
  flex-direction: column-reverse;
  gap: 4px;
}

.page-news .hero-metric dd {
  margin: 0;
  font-family: var(--font-data);
  font-size: 36px;
  font-weight: 800;
  color: var(--lime-flash);
  line-height: 1;
}

.page-news .hero-metric dt {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted-gray);
}

.page-news .tick-bar {
  height: 10px;
  border-radius: var(--radius-pill);
  background: repeating-linear-gradient(90deg, var(--cyan-pulse) 0 2px, transparent 2px 12px);
  opacity: 0.5;
}

.page-news .section-heading {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 44px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--news-line);
}

.page-news .section-heading-index {
  font-family: var(--font-data);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: var(--signal-orange);
  opacity: 0.85;
  letter-spacing: -0.03em;
}

.page-news .section-heading-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
  color: var(--paper-white);
  text-transform: uppercase;
}

.page-news .section-heading-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  margin: 8px 0 0;
  color: var(--muted-gray);
  max-width: 620px;
}

.page-news .news-lab .section-heading-desc,
.page-news .news-week .section-heading-desc {
  color: rgba(138, 148, 166, 0.9);
}

.page-news .data-badge {
  align-self: flex-start;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan-pulse);
  border: 1px solid var(--news-line);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  background: rgba(0, 229, 255, 0.06);
}

.page-news .section-heading-light .section-heading-title {
  color: var(--ink-black);
}

.page-news .section-heading-light .section-heading-index {
  color: var(--violet-zone);
}

.page-news .section-heading-light .data-badge {
  color: var(--ink-black);
  border-color: rgba(17, 19, 24, 0.18);
  background: rgba(17, 19, 24, 0.04);
}

.page-news .featured-article {
  position: relative;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--news-line-soft);
}

.page-news .featured-article-index {
  font-family: var(--font-data);
  font-weight: 800;
  font-size: 88px;
  line-height: 0.85;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, var(--signal-orange) 0%, rgba(255, 107, 0, 0.15) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}

.page-news .featured-article-index small {
  display: block;
  font-size: 12px;
  font-family: var(--font-body);
  color: var(--muted-gray);
  background: none;
  -webkit-text-fill-color: var(--muted-gray);
  margin-top: 8px;
  font-weight: 400;
}

.page-news .featured-article-media {
  margin-bottom: 24px;
}

.page-news .featured-article-media img,
.page-news .lab-chart img,
.page-news .topic-visual img,
.page-news .archive-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.page-news .featured-article-media img {
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0, 229, 255, 0.18);
}

.page-news .post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.page-news .post-meta .tag {
  background: var(--cyan-pulse);
  color: var(--night-blue);
  border-radius: var(--radius-pill);
  padding: 3px 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
}

.page-news .post-meta-text {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted-gray);
}

.page-news .featured-article-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 14px;
  color: var(--paper-white);
}

.page-news .featured-article-excerpt,
.page-news .secondary-article-excerpt {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
  color: rgba(245, 247, 250, 0.76);
  margin: 0 0 20px;
  max-width: 60ch;
}

.page-news .panel {
  border: 1px solid var(--news-line);
  border-radius: var(--radius-md);
  background: rgba(0, 229, 255, 0.04);
}

.page-news .panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 16px 18px;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
  color: var(--paper-white);
}

.page-news .panel-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cyan-pulse);
}

.page-news .panel-icon {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border: 1px solid var(--news-line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-data);
  font-size: 16px;
  color: var(--lime-flash);
  transition: transform 0.2s ease, background 0.2s ease;
}

.page-news .panel-header:hover .panel-icon {
  transform: rotate(90deg);
  background: rgba(198, 255, 0, 0.08);
}

.page-news .panel-content {
  padding: 0 18px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245, 247, 250, 0.82);
}

.page-news .panel-content p {
  margin: 0 0 12px;
}

.page-news .panel-content p:last-child {
  margin-bottom: 0;
}

.page-news .secondary-article {
  position: relative;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--news-line-soft);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
}

.page-news .secondary-article-index {
  font-family: var(--font-data);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--signal-orange);
  opacity: 0.9;
}

.page-news .secondary-article-title {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--paper-white);
}

.page-news .news-topic,
.page-news .news-archive {
  background: var(--paper-white);
  color: var(--ink-black);
}

.page-news .news-topic .post-meta-text,
.page-news .news-archive .post-meta-text {
  color: var(--muted-gray);
}

.page-news .topic-layout {
  display: grid;
  gap: 40px;
}

.page-news .topic-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 520px;
}

.page-news .topic-visual img {
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9);
}

.page-news .topic-visual-caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--paper-white);
  background: rgba(11, 29, 58, 0.72);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--signal-orange);
  backdrop-filter: blur(6px);
}

.page-news .topic-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.page-news .topic-item {
  border: 0;
  border-bottom: 1px solid rgba(17, 19, 24, 0.12);
  border-radius: 0;
  background: transparent;
}

.page-news .topic-item:first-child {
  border-top: 1px solid rgba(17, 19, 24, 0.12);
}

.page-news .topic-item-toggle {
  padding: 24px 4px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  width: 100%;
  color: var(--ink-black);
  transition: background 0.2s ease;
}

.page-news .topic-item-toggle:hover {
  background: rgba(0, 229, 255, 0.06);
}

.page-news .topic-num {
  font-family: var(--font-data);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  color: var(--violet-zone);
  flex: 0 0 auto;
}

.page-news .topic-item-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
}

.page-news .topic-item-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--signal-orange);
  transition: color 0.2s ease;
}

.page-news .topic-item-toggle:hover .topic-item-label {
  color: var(--signal-orange);
}

.page-news .topic-item-title {
  font-family: var(--font-heading);
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink-black);
}

.page-news .topic-item .panel-icon {
  border-color: rgba(17, 19, 24, 0.22);
  color: var(--violet-zone);
}

.page-news .topic-item .panel-content {
  color: var(--ink-black);
  opacity: 0.8;
  padding-top: 2px;
  padding-bottom: 20px;
  line-height: 1.85;
}

.page-news .news-lab {
  background:
    linear-gradient(180deg, rgba(14, 77, 58, 0.28) 0%, transparent 45%),
    var(--night-blue);
}

.page-news .lab-layout {
  display: grid;
  gap: 40px;
}

.page-news .lab-chart img {
  border: 1px solid rgba(0, 229, 255, 0.22);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.page-news .lab-findings {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-news .lab-finding {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--news-line-soft);
  border-radius: var(--radius-md);
  background: rgba(0, 229, 255, 0.03);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.page-news .lab-finding:hover {
  border-color: rgba(0, 229, 255, 0.45);
  background: rgba(0, 229, 255, 0.07);
}

.page-news .lab-finding-num {
  font-family: var(--font-data);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  color: var(--lime-flash);
  flex: 0 0 auto;
  min-width: 100px;
}

.page-news .lab-finding p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245, 247, 250, 0.82);
  margin: 0;
}

.page-news .lab-disclaimer {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted-gray);
  margin: 8px 0 0;
  padding-left: 4px;
  border-left: 2px solid var(--news-line);
}

.page-news .archive-layout {
  display: grid;
  gap: 40px;
}

.page-news .archive-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 560px;
}

.page-news .archive-visual img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.02);
}

.page-news .archive-series-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.page-news .archive-series-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(17, 19, 24, 0.1);
}

.page-news .archive-series-head h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--ink-black);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.page-news .archive-series-head .data-badge {
  color: var(--ink-black);
  border-color: rgba(17, 19, 24, 0.18);
  background: transparent;
  font-size: 11px;
  padding: 4px 12px;
}

.page-news .archive-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-news .archive-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 10px 4px;
  border-bottom: 1px dashed rgba(17, 19, 24, 0.1);
}

.page-news .archive-list li:last-child {
  border-bottom: 0;
}

.page-news .archive-list a {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-black);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.page-news .archive-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--signal-orange);
  transition: width 0.24s ease;
}

.page-news .archive-list a:hover {
  color: var(--signal-orange);
}

.page-news .archive-list a:hover::after {
  width: 100%;
}

.page-news .archive-arrow {
  font-family: var(--font-data);
  font-size: 18px;
  color: var(--signal-orange);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.page-news .archive-list li:hover .archive-arrow {
  opacity: 1;
  transform: translateX(0);
}

.page-news .news-cta {
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 107, 0, 0.15) 0%, transparent 30%),
    linear-gradient(180deg, var(--news-deep) 0%, var(--night-blue) 100%);
}

.page-news .cta-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px 28px;
  border: 2px solid var(--signal-orange);
  border-radius: var(--radius-lg);
  background: rgba(255, 107, 0, 0.06);
  position: relative;
}

.page-news .cta-box::before {
  content: "";
  position: absolute;
  top: -2px;
  right: 44px;
  width: 72px;
  height: 4px;
  background: var(--lime-flash);
  border-radius: var(--radius-pill);
}

.page-news .cta-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--paper-white);
}

.page-news .cta-copy p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245, 247, 250, 0.78);
  margin: 0;
  max-width: 62ch;
}

.page-news .cta-box .btn-accent {
  align-self: center;
  flex: 0 0 auto;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  background: var(--signal-orange);
  border: 2px solid var(--signal-orange);
  transition: background 0.2s ease, transform 0.1s ease;
}

.page-news .cta-box .btn-accent:hover {
  background: #ff7d1f;
  transform: translateY(-1px);
}

.page-news .cta-box .btn-accent:active {
  transform: translateY(1px);
}

.page-news .cta-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 13px;
}

.page-news .cta-links span {
  color: var(--muted-gray);
}

.page-news .cta-links a {
  color: var(--cyan-pulse);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 255, 0.3);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-news .cta-links a:hover {
  color: var(--lime-flash);
  border-color: var(--lime-flash);
}

@media (min-width: 900px) {
  .page-news .news-hero,
  .page-news .news-week,
  .page-news .news-topic,
  .page-news .news-lab,
  .page-news .news-archive,
  .page-news .news-cta {
    padding: 96px 0;
  }

  .page-news .news-hero-frame {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    padding: 56px 64px;
    align-items: center;
  }

  .page-news .news-hero-aside {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
    width: 260px;
  }

  .page-news .hero-metric-list {
    flex-direction: column;
    gap: 20px;
  }

  .page-news .section-heading {
    flex-direction: row;
    align-items: flex-end;
    gap: 28px;
  }

  .page-news .section-heading-copy {
    flex: 1 1 auto;
  }

  .page-news .section-heading-desc {
    margin-top: 6px;
  }

  .page-news .section-heading .data-badge {
    align-self: flex-end;
  }

  .page-news .featured-article {
    display: grid;
    grid-template-columns: 140px 430px 1fr;
    gap: 44px;
    align-items: start;
    padding-top: 40px;
  }

  .page-news .featured-article-index {
    margin-bottom: 0;
    font-size: 128px;
    padding-top: 40px;
  }

  .page-news .featured-article-media {
    margin-bottom: 0;
  }

  .page-news .featured-article-media img {
    height: 300px;
    object-fit: cover;
  }

  .page-news .secondary-article {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 44px;
    padding-left: 0;
    padding-top: 40px;
    margin-top: 64px;
  }

  .page-news .secondary-article-index {
    font-size: 96px;
    align-self: start;
    padding-top: 10px;
  }

  .page-news .secondary-article-body {
    max-width: 720px;
  }

  .page-news .topic-layout {
    grid-template-columns: 300px 1fr;
    gap: 56px;
    align-items: start;
  }

  .page-news .topic-visual {
    position: sticky;
    top: 120px;
    min-height: 560px;
  }

  .page-news .topic-visual img {
    height: 100%;
    min-height: 560px;
  }

  .page-news .topic-item-toggle {
    padding: 28px 12px;
  }

  .page-news .topic-num {
    font-size: 52px;
    width: 64px;
  }

  .page-news .topic-item-title {
    font-size: 22px;
  }

  .page-news .lab-layout {
    grid-template-columns: 5fr 7fr;
    gap: 48px;
    align-items: stretch;
  }

  .page-news .lab-chart img {
    height: 100%;
    min-height: 420px;
    object-fit: cover;
  }

  .page-news .lab-finding {
    padding: 24px 28px;
  }

  .page-news .lab-finding-num {
    font-size: 56px;
    min-width: 130px;
  }

  .page-news .archive-layout {
    grid-template-columns: 340px 1fr;
    gap: 56px;
    align-items: start;
  }

  .page-news .archive-visual {
    position: sticky;
    top: 120px;
  }

  .page-news .archive-visual img {
    height: 520px;
  }

  .page-news .cta-box {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    padding: 48px 56px;
  }

  .page-news .cta-copy h2 {
    font-size: 36px;
  }
}
