.page-news {
  background: var(--bg-deep);
  color: var(--text-main);
}

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

.page-news .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.page-news .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-main);
  background: var(--bg-panel);
  border: 1px solid var(--grid-line);
  text-decoration: none;
  letter-spacing: .04em;
  line-height: 1.4;
  transition: border-color .3s ease, color .3s ease;
}

.page-news .tag-neon {
  color: var(--bg-deep);
  background: var(--neon-green);
  border-color: var(--neon-green);
  font-weight: 700;
}

.page-news .tag-alert {
  color: var(--bg-deep);
  background: var(--electric-orange);
  border-color: var(--electric-orange);
  font-weight: 700;
}

.page-news .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  background: var(--bg-panel);
  border: 1px solid var(--grid-line);
  text-decoration: none;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}

.page-news .btn-primary {
  color: var(--bg-deep);
  background: var(--neon-green);
  border-color: var(--neon-green);
}

.page-news .btn-primary:hover,
.page-news .btn-primary:focus-visible {
  color: var(--neon-green);
  background: transparent;
  border-color: var(--neon-green);
}

.page-news .news-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-sub);
}

.page-news .news-crumb-link {
  color: var(--text-sub);
  text-decoration: none;
  transition: color .3s ease;
}

.page-news .news-crumb-link:hover {
  color: var(--neon-green);
}

.page-news .news-crumb-current {
  color: var(--text-main);
}

.page-news .news-hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 60px;
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42, 59, 92, .28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 59, 92, .28) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .7), transparent 88%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .7), transparent 88%);
  pointer-events: none;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  top: -10%;
  right: -12%;
  width: 42%;
  height: 130%;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 107, 0, .14) 50%, transparent 58%);
  transform: rotate(8deg);
  pointer-events: none;
}

.page-news .news-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-news .news-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--neon-green);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.page-news .news-eyebrow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 26px;
  padding-inline: 8px;
  background: var(--neon-green);
  color: var(--bg-deep);
  font-weight: 700;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.page-news .news-hero-title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4.6vw, 46px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.01em;
}

.page-news .news-hero-desc {
  margin: 0;
  max-width: 56ch;
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-sub);
}

.page-news .news-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.page-news .news-hero-search {
  position: relative;
  padding: 24px;
  background-color: var(--bg-panel);
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 22px 22px;
  border: 1px solid var(--grid-line);
  border-top: 3px solid var(--neon-green);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}

.page-news .news-search-label {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--neon-green);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.page-news .news-search-input {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-deep);
  border: 1px solid var(--grid-line);
  color: var(--text-main);
  font-family: var(--font-mono);
  font-size: 14px;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.page-news .news-search-input:focus {
  outline: none;
  border-color: var(--neon-green);
  box-shadow: 0 0 0 3px rgba(0, 255, 135, .16);
}

.page-news .news-search-note {
  margin: 14px 0 0;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-sub);
}

.page-news .news-section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 18px;
  align-items: end;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--grid-line);
}

.page-news .news-section-head .section-index {
  grid-row: 1 / span 2;
  padding-right: 16px;
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: var(--neon-green);
  border-right: 2px solid var(--grid-line);
}

.page-news .news-section-title {
  align-self: end;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.2;
}

.page-news .news-section-desc {
  grid-column: 2;
  margin: 6px 0 0;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.65;
  color: var(--text-sub);
  max-width: 70ch;
}

.page-news .news-feed-section {
  padding: 20px 0 76px;
}

.page-news .news-feature {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 36px;
  background: var(--bg-panel);
  border: 1px solid var(--grid-line);
  border-left: 4px solid var(--neon-green);
  box-shadow: 0 0 40px rgba(0, 255, 135, .05);
}

.page-news .news-feature-media {
  position: relative;
  overflow: hidden;
}

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

.page-news .news-feature-pin {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  background: var(--electric-orange);
  color: var(--bg-deep);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.page-news .news-feature-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

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

.page-news .news-feature-date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-sub);
  letter-spacing: .06em;
}

.page-news .news-feature-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.28;
}

.page-news .news-feature-title a {
  color: var(--text-main);
  text-decoration: none;
  transition: color .3s ease;
}

.page-news .news-feature-title a:hover {
  color: var(--neon-green);
}

.page-news .news-feature-excerpt {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-sub);
  max-width: 60ch;
}

.page-news .news-feature-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 4px;
}

.page-news .news-feature-link {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-sub);
  text-decoration: none;
  transition: color .3s ease;
}

.page-news .news-feature-link:hover {
  color: var(--neon-green);
}

.page-news .news-list {
  border-top: 1px solid var(--grid-line);
}

.page-news .news-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid var(--grid-line);
  transition: background .3s ease;
}

.page-news .news-item:hover {
  background: rgba(18, 26, 58, .55);
}

.page-news .news-item-index {
  padding-top: 4px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-sub);
}

.page-news .news-item-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-news .news-item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.page-news .news-item-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-sub);
  letter-spacing: .08em;
}

.page-news .news-item-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.page-news .news-item-title a {
  color: var(--text-main);
  text-decoration: none;
  transition: color .3s ease;
}

.page-news .news-item-title a:hover {
  color: var(--neon-green);
}

.page-news .news-item-excerpt {
  margin: 4px 0 0;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.65;
  color: var(--text-sub);
}

@media (hover: hover) {
  .page-news .news-item-excerpt {
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    opacity: 0;
    transition: max-height .35s var(--ease-out), opacity .35s var(--ease-out), margin-top .35s var(--ease-out);
  }

  .page-news .news-item:hover .news-item-excerpt,
  .page-news .news-item:focus-within .news-item-excerpt {
    max-height: 96px;
    opacity: 1;
    margin-top: 4px;
  }
}

.page-news .news-version-section {
  position: relative;
  padding: 64px 0 72px;
  background: var(--jade);
}

.page-news .news-version-section::before,
.page-news .news-version-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 22px;
  background: inherit;
  z-index: 1;
}

.page-news .news-version-section::before {
  top: -12px;
  transform: skewY(-1.4deg);
}

.page-news .news-version-section::after {
  bottom: -12px;
  transform: skewY(1.4deg);
}

.page-news .news-version-section .section-index {
  color: var(--neon-green);
}

.page-news .news-version-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}

.page-news .news-version-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border: 1px solid rgba(230, 240, 255, .25);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}

.page-news .news-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid rgba(230, 240, 255, .3);
}

.page-news .timeline-item {
  position: relative;
  padding: 0 0 30px 26px;
}

.page-news .timeline-item::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--jade);
  border: 3px solid var(--text-main);
  transform: rotate(45deg);
}

.page-news .timeline-item.is-current::before {
  border-color: var(--neon-green);
}

.page-news .timeline-marker {
  display: inline-block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--neon-green);
  letter-spacing: .08em;
}

.page-news .timeline-item.is-current .timeline-marker {
  padding: 3px 10px;
  background: var(--neon-green);
  color: var(--bg-deep);
  clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.page-news .timeline-body h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-main);
}

.page-news .timeline-body p {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.7;
  color: rgba(230, 240, 255, .86);
}

.page-news .news-analysis-section {
  position: relative;
  padding: 64px 0 80px;
  background: var(--garnet);
}

.page-news .news-analysis-section .section-index {
  color: var(--electric-orange);
}

.page-news .analysis-tabs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 30px;
  padding: 0;
}

.page-news .analysis-tab {
  padding: 7px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-main);
  background: rgba(11, 16, 38, .35);
  border: 1px solid rgba(230, 240, 255, .32);
  border-radius: 0;
}

.page-news .analysis-tab.is-active {
  color: var(--bg-deep);
  background: var(--electric-orange);
  border-color: var(--electric-orange);
  font-weight: 700;
}

.page-news .analysis-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.page-news .analysis-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(11, 16, 38, .4);
  border-top: 2px solid rgba(230, 240, 255, .25);
  border-left: 1px solid rgba(230, 240, 255, .08);
  border-right: 1px solid rgba(230, 240, 255, .08);
  border-bottom: 1px solid rgba(230, 240, 255, .08);
  transition: transform .35s var(--ease-out), border-color .35s ease, background .35s ease;
}

.page-news .analysis-card:hover {
  transform: translateY(-5px);
  border-top-color: var(--electric-orange);
  background: rgba(11, 16, 38, .6);
}

.page-news .analysis-card-image img {
  display: block;
  width: 100%;
  aspect-ratio: 500 / 320;
  object-fit: cover;
  max-width: 100%;
}

.page-news .analysis-card-image.is-pattern {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 18px;
  height: 180px;
  background-color: rgba(11, 16, 38, .3);
  background-image:
    linear-gradient(135deg, rgba(230, 240, 255, .08) 0 48%, transparent 48%),
    repeating-linear-gradient(90deg, rgba(230, 240, 255, .14) 0 1px, transparent 1px 20px);
}

.page-news .analysis-card-image.is-pattern.is-warm {
  background-color: rgba(11, 16, 38, .2);
  background-image:
    linear-gradient(45deg, rgba(255, 107, 0, .18) 0 45%, transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 0, .25), transparent 42%);
}

.page-news .analysis-glyph {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: var(--electric-orange);
}

.page-news .analysis-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: 20px;
}

.page-news .analysis-card-cat {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--electric-orange);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.page-news .analysis-card-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.38;
}

.page-news .analysis-card-desc {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.7;
  color: rgba(230, 240, 255, .82);
}

.page-news .analysis-card-link {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--neon-green);
  text-decoration: none;
  transition: color .3s ease;
}

.page-news .analysis-card-link:hover {
  color: var(--electric-orange);
}

.page-news .news-subscribe-section {
  position: relative;
  padding: 64px 0 72px;
  background: var(--indigo);
}

.page-news .news-subscribe-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 18px;
  background: linear-gradient(90deg, var(--electric-orange) 0 34%, rgba(255, 107, 0, .35) 34% 52%, transparent 52%);
  clip-path: polygon(0 0, 100% 0, 100% 7px, 0 18px);
}

.page-news .news-subscribe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.page-news .news-subscribe-copy h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
}

.page-news .news-subscribe-copy > p {
  margin: 0;
  max-width: 56ch;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.75;
  color: rgba(230, 240, 255, .82);
}

.page-news .news-subscribe-mail {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.page-news .news-subscribe-mail input {
  width: 100%;
  padding: 13px 16px;
  background: rgba(11, 16, 38, .5);
  border: 1px solid rgba(230, 240, 255, .3);
  color: var(--text-main);
  font-family: var(--font-mono);
  font-size: 14px;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.page-news .news-subscribe-mail input:focus {
  outline: none;
  border-color: var(--neon-green);
  box-shadow: 0 0 0 3px rgba(0, 255, 135, .16);
}

.page-news .news-subscribe-mail .btn {
  border: 0;
  white-space: nowrap;
}

.page-news .news-subscribe-note {
  margin: 12px 0 0;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(230, 240, 255, .62);
}

.page-news .news-subscribe-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
}

.page-news .news-subscribe-link {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--neon-green);
  text-decoration: none;
  transition: color .3s ease;
}

.page-news .news-subscribe-link:hover {
  color: var(--electric-orange);
}

.page-news .news-subscribe-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.page-news .news-subscribe-visual img {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
}

.page-news .news-subscribe-contact {
  margin: 0;
  max-width: 320px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.8;
  color: rgba(230, 240, 255, .74);
  text-align: center;
}

@media (min-width: 600px) {
  .page-news .news-subscribe-mail {
    flex-direction: row;
    align-items: center;
  }

  .page-news .news-subscribe-mail input {
    width: auto;
    flex: 1;
  }
}

@media (min-width: 760px) {
  .page-news .news-feature {
    grid-template-columns: 6fr 6fr;
  }

  .page-news .news-feature-media {
    min-height: 320px;
  }

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

  .page-news .news-version-wrap {
    grid-template-columns: 5fr 7fr;
  }

  .page-news .news-subscribe-grid {
    grid-template-columns: 7fr 5fr;
  }

  .page-news .news-subscribe-visual {
    justify-content: center;
  }
}

@media (min-width: 960px) {
  .page-news .news-hero-grid {
    grid-template-columns: 7fr 5fr;
    align-items: start;
  }

  .page-news .news-hero {
    padding: 64px 0 76px;
  }
}

@media (min-width: 1024px) {
  .page-news .analysis-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-news .news-feed-section {
    padding-top: 36px;
  }
}
