.hero--news {
  padding-bottom: var(--space-16);
}

.hero-news-figure {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hero-news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-main {
  padding-bottom: var(--space-12);
}

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

.news-aside-item {
  height: 100%;
}

.news-side-visual-column,
.news-tech-visual-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.news-side-figure,
.news-tech-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.news-side-image,
.news-tech-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-caption {
  margin-top: var(--space-3);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.news-player-focus {
  background: linear-gradient(135deg, #f9fafb 0, #eff6ff 40%, #ecfdf3 100%);
}

.news-tech-grid {
  align-items: flex-start;
}

.news-tech-links {
  background-color: var(--color-surface-alt);
}

.news-tech-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-3);
}

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

  .news-tech-links-grid {
    grid-template-columns: 1fr;
  }
}
