.page-news {
  --news-surface: #10233f;
  --news-surface-raised: #142a4a;
  --news-grid-line: rgba(0, 180, 216, 0.07);
  --news-line: 1px solid var(--border-highlight);
  position: relative;
  display: block;
  background:
    linear-gradient(var(--news-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--news-grid-line) 1px, transparent 1px),
    var(--primary-deep);
  background-size: 48px 48px, 48px 48px, auto;
  color: var(--text-body);
  overflow-x: hidden;
}

.page-news .container {
  max-width: var(--content-max);
  margin-inline: auto;
}

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

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

.page-news .breadcrumb a:hover,
.page-news .breadcrumb a:focus {
  color: var(--accent-orange);
}

.page-news .breadcrumb-sep {
  color: var(--border-highlight);
}

.page-news .breadcrumb-current {
  color: var(--primary-electric);
}

.page-news .page-intro {
  position: relative;
  padding: 32px 0 24px;
  border-bottom: 1px solid var(--border-highlight);
}

.page-news .intro-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.page-news .intro-copy {
  flex: 1;
  min-width: 0;
}

.page-news .kicker {
  display: inline-block;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-electric);
  border-left: 3px solid var(--accent-orange);
  padding-left: 10px;
  margin-bottom: 12px;
}

.page-news .page-title {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.02;
  color: var(--neutral-light);
  letter-spacing: 0.01em;
  margin: 0 0 16px;
}

.page-news .lead {
  max-width: 64ch;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.page-news .intro-index {
  display: none;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  border-left: 1px solid var(--border-highlight);
  padding-left: 16px;
  flex-direction: column;
  gap: 6px;
  text-align: right;
  white-space: nowrap;
}

.page-news .index-line--top {
  color: var(--text-muted);
}

.page-news .index-line--center {
  color: var(--primary-electric);
  font-weight: 700;
  font-size: 16px;
}

.page-news .index-line--bottom {
  color: var(--success);
}

.page-news .intro-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--border-highlight);
  border-bottom: 1px solid var(--border-highlight);
}

.page-news .strip-item {
  flex: 1 1 100%;
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-muted);
  border-right: 0;
  border-bottom: 1px solid var(--border-highlight);
  transition: background 0.3s ease;
}

.page-news .strip-item strong {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
  color: var(--primary-electric);
}

.page-news .strip-item:hover {
  background: rgba(0, 180, 216, 0.06);
}

.page-news .section {
  padding: 48px 0 24px;
}

.page-news .section-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-highlight);
}

.page-news .section-heading--split {
  flex-direction: column;
  justify-content: flex-end;
}

.page-news .section-title {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.05;
  color: var(--neutral-light);
  margin: 0;
}

.page-news .section-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 52ch;
  margin: 0;
}

.page-news .insight-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.page-news .category-panel {
  background: var(--surface-mid);
  border: 1px solid var(--border-highlight);
  padding: 20px;
}

.page-news .category-title {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.1;
  color: var(--neutral-light);
  margin: 0 0 6px;
}

.page-news .category-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 16px;
}

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

.page-news .category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  color: var(--text-body);
  text-decoration: none;
  border: 1px solid transparent;
  border-left: 2px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.page-news .category-item:hover,
.page-news .category-item:focus {
  border-color: var(--accent-orange);
  background: rgba(255, 122, 0, 0.08);
  color: var(--neutral-light);
}

.page-news .category-item.is-active {
  border-left: 3px solid var(--accent-orange);
  background: rgba(0, 180, 216, 0.12);
  color: var(--neutral-light);
}

.page-news .category-count {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 2px 8px;
}

.page-news .panel-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  border-top: 1px solid var(--border-highlight);
  margin-top: 20px;
  padding-top: 16px;
}

.page-news .fact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-news .fact-label {
  font-size: 12px;
  color: var(--text-muted);
}

.page-news .fact-value {
  font-family: var(--font-data);
  font-size: 15px;
  font-weight: 700;
  color: var(--neutral-light);
  line-height: 1.2;
}

.page-news .category-tip {
  font-size: 12px;
  line-height: 1.6;
  margin: 18px 0 0;
  border-left: 2px solid var(--border-highlight);
  padding-left: 10px;
  color: var(--text-muted);
}

.page-news .article-stream {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  scroll-margin-top: 24px;
}

.page-news .article-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface-mid);
  border: 1px solid var(--border-highlight);
  scroll-margin-top: 24px;
  transition: border-color 1s ease, background 0.6s ease, box-shadow 0.6s ease;
}

.page-news .article-card:hover,
.page-news .article-card:focus-within,
.page-news .article-card:target {
  border-color: var(--accent-orange);
  background: var(--surface-raised);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.15);
}

.page-news .article-thumb {
  overflow: hidden;
  border-bottom: 1px solid var(--border-highlight);
  background: var(--neutral-dark);
  position: relative;
}

.page-news .article-thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.6s ease;
}

.page-news .article-card:hover .article-thumb img {
  transform: scale(1.03);
  filter: saturate(1.1);
}

.page-news .article-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  flex: 1;
}

.page-news .article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
  position: relative;
}

.page-news .article-badge {
  background: var(--accent-orange);
  color: var(--neutral-dark);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  line-height: 1;
}

.page-news .article-date {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--text-muted);
}

.page-news .article-num {
  margin-left: auto;
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
  color: rgba(0, 180, 216, 0.3);
  transition: color 0.3s ease;
}

.page-news .article-card:hover .article-num {
  color: var(--primary-electric);
}

.page-news .article-title {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.1;
  color: var(--neutral-light);
  margin: 0;
}

.page-news .article-card--featured .article-title {
  font-size: 28px;
}

.page-news .article-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

.page-news .article-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-highlight);
}

.page-news .article-link {
  color: var(--primary-electric);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-news .article-link:hover,
.page-news .article-link:focus {
  color: var(--accent-orange);
  border-color: var(--accent-orange);
}

.page-news .article-readtime {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.page-news .article-card:hover .article-readtime,
.page-news .article-card:focus-within .article-readtime {
  opacity: 1;
  transform: translateY(0);
}

.page-news .stream-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--border-highlight);
  border-bottom: 1px solid var(--border-highlight);
}

.page-news .stream-footer-text {
  font-size: 13px;
  margin: 0;
}

.page-news .stream-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-electric);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-news .stream-more:hover,
.page-news .stream-more:focus {
  color: var(--accent-orange);
  border-color: var(--accent-orange);
}

.page-news .featured-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background: var(--surface-mid);
  border: 1px solid var(--border-highlight);
  padding: 20px;
}

.page-news .featured-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-highlight);
  aspect-ratio: 2 / 3;
  min-height: 320px;
  background: var(--neutral-dark);
}

.page-news .featured-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-news .featured-media-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent-orange);
  color: var(--neutral-dark);
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 4px 8px;
}

.page-news .featured-list {
  display: grid;
  gap: 0;
}

.page-news .featured-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 14px;
  row-gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-highlight);
  align-items: start;
}

.page-news .featured-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.page-news .featured-index {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  color: var(--primary-electric);
  opacity: 0.5;
}

.page-news .featured-title {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.15;
  color: var(--neutral-light);
  margin: 0;
}

.page-news .featured-desc {
  grid-column: 2;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.page-news .featured-link {
  grid-column: 2;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-electric);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-news .featured-link:hover,
.page-news .featured-link:focus {
  color: var(--accent-orange);
  border-color: var(--accent-orange);
}

.page-news .subscribe-block {
  margin: 40px 0 0;
  padding: 40px 0;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.16), rgba(11, 30, 58, 0.72));
  border-top: 1px solid var(--border-highlight);
  border-bottom: 1px solid var(--border-highlight);
}

.page-news .subscribe-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-news .subscribe-copy {
  max-width: 58ch;
}

.page-news .subscribe-title {
  font-family: var(--font-headline);
  font-weight: 900;
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.05;
  color: var(--neutral-light);
  margin: 8px 0 12px;
}

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

.page-news .subscribe-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.page-news .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  padding: 14px 22px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.page-news .btn-primary {
  background: var(--accent-orange);
  color: var(--neutral-dark);
  border-color: var(--accent-orange);
}

.page-news .btn-primary:hover,
.page-news .btn-primary:focus {
  background: transparent;
  color: var(--accent-orange);
}

.page-news .btn-ghost {
  border-color: var(--primary-electric);
  color: var(--primary-electric);
  background: transparent;
}

.page-news .btn-ghost:hover,
.page-news .btn-ghost:focus {
  background: rgba(0, 180, 216, 0.1);
  color: var(--neutral-light);
}

.page-news .subscribe-note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-news .subscribe-note:hover,
.page-news .subscribe-note:focus {
  color: var(--accent-orange);
  border-color: var(--accent-orange);
}

@media (min-width: 480px) {
  .page-news .intro-strip {
    border-right: 1px solid var(--border-highlight);
  }

  .page-news .strip-item {
    flex: 1 1 50%;
    border-right: 1px solid var(--border-highlight);
    border-bottom: 0;
  }

  .page-news .subscribe-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

@media (min-width: 720px) {
  .page-news .page-intro {
    padding: 44px 0 24px;
  }

  .page-news .intro-index {
    display: flex;
  }

  .page-news .section-heading {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .page-news .section-heading--split {
    align-items: flex-end;
  }

  .page-news .article-stream {
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    grid-auto-flow: dense;
  }

  .page-news .article-card {
    grid-column: span 6;
  }

  .page-news .article-card--featured {
    grid-column: span 12;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
  }

  .page-news .article-card--featured .article-thumb {
    height: 100%;
    border-bottom: 0;
    border-right: 1px solid var(--border-highlight);
  }

  .page-news .article-card--stack {
    grid-column: span 6;
  }

  .page-news .article-card--wide {
    grid-column: span 6;
  }

  .page-news .article-card--medium {
    grid-column: span 6;
  }

  .page-news .article-card--half {
    grid-column: span 6;
  }

  .page-news .stream-footer {
    grid-column: 1 / -1;
  }

  .page-news .featured-block {
    grid-template-columns: minmax(220px, 1fr) 2fr;
    gap: 28px;
    padding: 24px;
  }

  .page-news .subscribe-block {
    padding: 48px 0;
  }
}

@media (min-width: 1024px) {
  .page-news .section {
    padding: 64px 0 32px;
  }

  .page-news .insight-layout {
    grid-template-columns: 240px 1fr;
    gap: 40px;
  }

  .page-news .category-panel {
    position: sticky;
    top: 24px;
  }

  .page-news .article-card {
    grid-column: span 3;
  }

  .page-news .article-card--featured {
    grid-column: span 8;
    grid-template-columns: 1.1fr 1fr;
  }

  .page-news .article-card--stack {
    grid-column: span 4;
  }

  .page-news .article-card--wide {
    grid-column: span 5;
  }

  .page-news .article-card--medium {
    grid-column: span 4;
  }

  .page-news .article-card--half {
    grid-column: span 6;
  }

  .page-news .featured-block {
    grid-template-columns: 300px 1fr;
    gap: 40px;
    padding: 32px;
  }

  .page-news .subscribe-block {
    padding: 56px 0;
  }

  .page-news .subscribe-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
  }

  .page-news .subscribe-actions {
    flex-direction: column;
    align-items: stretch;
    min-width: 260px;
    max-width: 300px;
  }

  .page-news .subscribe-note {
    text-align: left;
  }
}
