.page-news {
  --news-green-dim: rgba(57,255,20,0.14);
  --news-orange-dim: rgba(255,106,0,0.16);
  --news-card-bg: rgba(10,31,68,0.55);
  --news-card-border: rgba(255,255,255,0.12);
  --news-slice: 12px;
  background: linear-gradient(180deg, #0A1F44 0%, #061230 100%);
  color: var(--text);
  overflow-x: hidden;
}

/* Hero */
.page-news .news-hero {
  position: relative;
  padding: 64px 20px 48px;
  background:
    radial-gradient(circle at 80% 25%, rgba(57,255,20,0.14), transparent 44%),
    radial-gradient(circle at 12% 80%, rgba(255,106,0,0.12), transparent 42%),
    linear-gradient(135deg, #0A1F44, #061230 68%);
  border-bottom: 1px solid rgba(57,255,20,0.28);
  overflow: hidden;
}
.page-news .hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.7;
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.7), transparent 85%);
  mask-image: linear-gradient(to right, rgba(0,0,0,0.7), transparent 85%);
}
.page-news .news-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.page-news .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-dim);
}
.page-news .breadcrumb a {
  color: var(--text-dim);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.page-news .breadcrumb a:hover {
  color: var(--accent-green);
}
.page-news .hero-index {
  margin: 16px 0 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--accent-green);
  text-transform: uppercase;
}
.page-news .news-hero h1 {
  display: block;
  margin: 10px 0 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: #fff;
}
.page-news .news-hero h1 em {
  display: block;
  font-style: italic;
  color: var(--accent-green);
}
.page-news .news-hero .page-sub {
  max-width: 640px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dim);
}
.page-news .hero-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.page-news .hero-indicator {
  flex: 1 1 130px;
  max-width: 190px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid var(--accent-green);
  padding: 12px 16px;
  transform: skewX(-4deg);
}
.page-news .hero-indicator .indicator-num {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.1;
}
.page-news .hero-indicator .indicator-label {
  display: block;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

/* Timeline section */
.page-news .news-timeline-section {
  padding: 64px 0 40px;
  position: relative;
}
.page-news .section-head {
  margin-bottom: 40px;
}
.page-news .section-kicker {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  color: var(--accent-orange);
  text-transform: uppercase;
}
.page-news .section-title {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.15;
  color: #fff;
}
.page-news .section-sub {
  max-width: 520px;
  margin: 10px 0 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dim);
}

/* Timeline rail */
.page-news .news-timeline {
  position: relative;
  display: grid;
  gap: 20px;
  padding-bottom: 8px;
}
.page-news .news-timeline::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(57,255,20,0.5), rgba(57,255,20,0.12) 65%, rgba(255,106,0,0.22));
  z-index: 0;
}
.page-news .news-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
}
.page-news .timeline-meta {
  position: relative;
  z-index: 1;
  padding-top: 28px;
}
.page-news .timeline-dot {
  display: block;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 0 4px rgba(57,255,20,0.16), 0 0 18px rgba(57,255,20,0.5);
}

/* Timeline card */
.page-news .timeline-card {
  background: var(--news-card-bg);
  border: 1px solid var(--news-card-border);
  border-left: 2px solid rgba(57,255,20,0.5);
  padding: 20px 20px 18px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.page-news .timeline-card:hover {
  transform: translateY(-3px);
  border-color: rgba(57,255,20,0.4);
  background: rgba(10,31,68,0.8);
}
.page-news .timeline-card-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}
.page-news .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--accent-green);
  background: var(--news-green-dim);
  border: 1px solid rgba(57,255,20,0.25);
  text-transform: uppercase;
}
.page-news .tag-orange {
  color: var(--accent-orange);
  background: var(--news-orange-dim);
  border-color: rgba(255,106,0,0.3);
}
.page-news .timeline-time {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
}
.page-news .timeline-rel {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 6px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-green);
  background: rgba(57,255,20,0.1);
  border: 1px solid rgba(57,255,20,0.3);
  vertical-align: 2px;
}
.page-news .timeline-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 1.12rem;
  line-height: 1.35;
  color: #fff;
}
.page-news .timeline-card p {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-dim);
}
.page-news .timeline-link {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-green);
  text-decoration: none;
  border-bottom: 1px solid rgba(57,255,20,0.4);
  transition: border-color 0.2s, color 0.2s;
}
.page-news .timeline-link:hover {
  color: #fff;
  border-color: #fff;
}

/* Feature section */
.page-news .news-feature-section {
  padding: 56px 0 80px;
}
.page-news .feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.page-news .feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--news-card-border);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.page-news .feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,106,0,0.35);
}
.page-news .feature-main {
  position: relative;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}
.page-news .feature-img-wrap {
  position: relative;
  overflow: hidden;
}
.page-news .feature-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}
.page-news .feature-img-index {
  position: absolute;
  right: 18px;
  bottom: 12px;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-green);
  background: rgba(6,18,48,0.75);
  border: 1px solid rgba(57,255,20,0.35);
}
.page-news .feature-body {
  padding: 26px 28px 28px;
}
.page-news .feature-body h3 {
  margin: 14px 0 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 1.35rem;
  line-height: 1.3;
  color: #fff;
}
.page-news .feature-body p {
  margin: 0 0 18px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-dim);
}
.page-news .feature-side-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.page-news .feature-side {
  display: grid;
  grid-template-columns: 1fr;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.page-news .feature-side-top img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}
.page-news .feature-side-body {
  padding: 20px 22px 22px;
}
.page-news .feature-side-body h3 {
  margin: 12px 0 8px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 1.06rem;
  line-height: 1.35;
  color: #fff;
}
.page-news .feature-side-body p {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-dim);
}

/* Buttons */
.page-news .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.page-news .btn-ghost {
  background: transparent;
  color: var(--accent-orange);
  border: 1px solid rgba(255,106,0,0.45);
}
.page-news .btn-ghost:hover {
  background: rgba(255,106,0,0.14);
  color: #fff;
}
.page-news .btn-primary {
  background: var(--accent-green);
  color: #061230;
  border: 1px solid var(--accent-green);
}
.page-news .btn-primary:hover {
  background: transparent;
  color: var(--accent-green);
}
.page-news .btn-sm {
  padding: 8px 16px;
}

/* Subscribe */
.page-news .news-subscribe-section {
  padding: 0 0 80px;
}
.page-news .subscribe-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 32px 24px;
  background:
    radial-gradient(circle at 90% 20%, rgba(57,255,20,0.1), transparent 40%),
    rgba(10,31,68,0.7);
  border: 1px solid rgba(255,106,0,0.3);
  border-left: 4px solid var(--accent-orange);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  overflow: hidden;
}
.page-news .subscribe-copy {
  position: relative;
  z-index: 2;
}
.page-news .subscribe-card .section-kicker {
  color: var(--accent-green);
}
.page-news .subscribe-lead {
  max-width: 560px;
  margin: 14px 0 20px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dim);
}
.page-news .subscribe-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.page-news .subscribe-list li {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-left: 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-dim);
}
.page-news .sub-list-index {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--accent-orange);
  border: 1px solid rgba(255,106,0,0.35);
  padding: 1px 5px;
  flex: 0 0 auto;
}
.page-news .subscribe-contact {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  padding: 16px 18px;
  background: rgba(0,0,0,0.2);
  border: 1px dashed rgba(57,255,20,0.3);
}
.page-news .contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: baseline;
}
.page-news .contact-label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.page-news .contact-value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
}
.page-news .subscribe-note {
  margin: 0 0 20px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-dim);
}
.page-news .subscribe-decor {
  position: relative;
  z-index: 1;
  min-height: 180px;
  pointer-events: none;
}
.page-news .decor-ring {
  position: absolute;
  right: 10%;
  top: 10%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(57,255,20,0.2);
}
.page-news .decor-ring-a {
  right: 26%;
  top: 34%;
  width: 100px;
  height: 100px;
  border-color: rgba(255,106,0,0.25);
}
.page-news .decor-ring-b {
  right: 40%;
  top: 4%;
  width: 70px;
  height: 70px;
  border-color: rgba(255,255,255,0.14);
}
.page-news .decor-ring::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 14px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 14px rgba(57,255,20,0.8);
}

/* Bottom decor */
.page-news .news-bottom-decor {
  position: relative;
  overflow: hidden;
  max-height: 420px;
}
.page-news .news-bottom-decor img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}
.page-news .bottom-decor-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #061230 0%, rgba(6,18,48,0.35) 55%, rgba(6,18,48,0.75) 100%);
}

/* Desktop enhancements */
@media (min-width: 680px) {
  .page-news .news-hero {
    padding: 88px 32px 64px;
  }
  .page-news .hero-indicators {
    gap: 16px;
  }
  .page-news .timeline-card {
    padding: 24px 26px 22px;
  }
  .page-news .subscribe-card {
    padding: 40px 36px;
    grid-template-columns: 1fr 220px;
  }
  .page-news .subscribe-decor {
    min-height: 260px;
  }
  .page-news .feature-side {
    grid-template-columns: 120px 1fr;
  }
  .page-news .feature-side-top img {
    height: 100%;
    min-height: 120px;
    object-fit: cover;
  }
}

@media (min-width: 960px) {
  .page-news .feature-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
  }
  .page-news .feature-side-stack {
    grid-template-columns: 1fr;
  }
  .page-news .feature-main {
    display: grid;
    grid-template-rows: auto 1fr;
  }
  .page-news .feature-side {
    grid-template-columns: 1fr;
  }
  .page-news .feature-side-top img {
    height: auto;
    min-height: 0;
  }
  .page-news .news-timeline {
    gap: 28px;
  }
  .page-news .timeline-card h3 {
    font-size: 1.2rem;
  }
  .page-news .subscribe-card {
    grid-template-columns: 1fr 280px;
  }
}
