html {
  scroll-behavior: smooth;
}

.news-hero {
  background:
    radial-gradient(circle at top left, rgba(62, 243, 255, 0.24), transparent 55%),
    radial-gradient(circle at bottom right, rgba(168, 85, 255, 0.28), transparent 55%),
    linear-gradient(145deg, #020308 0%, #05060a 40%, #020308 100%);
}

.news-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-28);
  align-items: center;
}

.news-hero-content {
  max-width: 40rem;
}

.news-kicker {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.news-hero-lead {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
}

.news-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-top: var(--space-14);
  margin-bottom: var(--space-14);
}

.news-hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-10);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gray-400);
}

.news-hero-meta dt {
  margin-bottom: var(--space-3);
}

.news-hero-meta dd {
  color: var(--gray-200);
}

.news-hero-media {
  max-width: 480px;
  justify-self: flex-end;
}

.news-hero-image {
  border-radius: var(--radius-xl);
}

.news-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-16);
  margin-bottom: var(--space-20);
}

.news-section-header p {
  max-width: 46ch;
}

.news-featured-card {
  margin-top: var(--space-6);
}

.news-featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.4fr);
  gap: var(--space-20);
  align-items: stretch;
}

.news-featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.news-quote {
  border-left: 2px solid rgba(62, 243, 255, 0.6);
  padding-left: var(--space-10);
  font-style: italic;
  color: var(--gray-100);
}

.news-featured-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-10);
  margin-top: var(--space-12);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gray-500);
}

.news-featured-meta dt {
  margin-bottom: var(--space-3);
}

.news-featured-meta dd {
  color: var(--gray-200);
}

.news-grid-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.1fr);
  gap: var(--space-24);
  align-items: flex-start;
}

.news-main {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
}

.news-block-header {
  margin-bottom: var(--space-12);
}

.news-article + .news-article {
  margin-top: var(--space-14);
}

.news-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: var(--space-16);
  align-items: stretch;
}

.news-opinion-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-16);
}

.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
}

.news-sidebar-block {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-16);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border-subtle);
}

.news-sidebar-header {
  margin-bottom: var(--space-10);
}

.news-update-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-12);
}

.news-update-list li + li {
  border-top: 1px solid rgba(37, 41, 58, 0.9);
  padding-top: var(--space-10);
  margin-top: var(--space-10);
}

.news-update-list h3 {
  font-size: var(--font-size-md);
  font-family: var(--font-sans);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: var(--space-4);
}

.news-update-meta {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gray-500);
}

.news-sidebar-cta {
  width: 100%;
  justify-content: center;
}

.news-infographic {
  border-radius: var(--radius-md);
  margin-bottom: var(--space-8);
}

.news-infographic-caption {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-10);
}

.news-video-header {
  align-items: center;
}

.news-video-card {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: var(--space-16);
}

.news-video-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #020308;
}

.news-video-wrapper::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

.news-video-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.news-video-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-8);
}

.news-video-title {
  font-weight: 600;
  color: var(--gray-50);
}

.news-video-description {
  color: var(--color-text-muted);
}

.news-bottom-cta {
  border-top: 1px solid rgba(37, 41, 58, 0.9);
  background: linear-gradient(90deg, rgba(62, 243, 255, 0.05), rgba(168, 85, 255, 0.08));
}

.news-bottom-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
  align-items: center;
  justify-content: space-between;
}

.news-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
}

@media (max-width: 1024px) {
  .news-hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .news-hero-media {
    justify-self: stretch;
    max-width: none;
  }

  .news-featured-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .news-split {
    grid-template-columns: minmax(0, 1fr);
  }

  .news-grid-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .news-video-card {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .news-section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .news-bottom-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-bottom-actions {
    width: 100%;
  }

  .news-bottom-actions .button,
  .news-sidebar-cta {
    width: 100%;
  }
}
