.news-hero {
  padding-top: var(--space-12);
  padding-bottom: var(--space-10);
}

.news-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: var(--space-8);
  align-items: center;
}

.news-hero__lead {
  font-size: var(--font-size-lg);
  max-width: 46rem;
}

.news-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
  margin-bottom: var(--space-3);
}

.news-hero__meta {
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
  max-width: 40rem;
}

.news-hero__figure {
  max-width: 520px;
  margin-left: auto;
}

.news-nav {
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}

.news-nav__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: flex-start;
}

.news-filter {
  cursor: pointer;
}

.news-filter[aria-pressed="true"] {
  border-color: rgba(34, 227, 164, 0.8);
  box-shadow: var(--shadow-glow-emerald);
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1.5fr);
  gap: var(--space-8);
}

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

.news-item__media-wrapper {
  margin-bottom: var(--space-3);
}

.news-item__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.news-sidebar {
  position: sticky;
  top: var(--space-10);
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.news-sidebar__section {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.97), rgba(15, 23, 42, 0.94));
  padding: var(--space-4);
  box-shadow: var(--shadow-soft);
}

.news-sidebar__section h2 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-3);
}

.news-sidebar__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
}

.news-sidebar__links a {
  color: var(--color-text-muted);
}

.news-sidebar__links a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.4rem;
  border-radius: 999px;
  background: var(--color-primary);
}

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

.news-subscribe__btn {
  margin-top: var(--space-1);
}

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

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

@media (max-width: 768px) {
  .news-hero {
    padding-top: var(--space-10);
  }

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

  .news-hero__figure {
    max-width: 100%;
    margin-left: 0;
  }

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

  .news-sidebar {
    position: static;
  }

  .news-nav__chips {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .news-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
