.hero {
  margin-bottom: var(--space-2xl);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.hero__headline {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  min-height: 250px;
}

.hero__headline-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  transition: transform 300ms ease;
}

.hero__headline:hover .hero__headline-image {
  transform: scale(1.03);
}

.hero__headline-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: var(--text-inverse);
}

.hero__headline-category {
  display: inline-block;
  background: var(--accent);
  color: var(--text-inverse);
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.hero__headline-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.hero__headline-meta {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero__secondary {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.hero__secondary-card {
  display: flex;
  gap: var(--space-md);
  cursor: pointer;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: box-shadow 200ms ease;
}

.hero__secondary-card:hover {
  box-shadow: var(--shadow-card);
}

.hero__secondary-image {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.hero__secondary-content {
  flex: 1;
  min-width: 0;
}

.hero__secondary-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.hero__secondary-meta {
  font-size: 0.75rem;
  color: var(--text-light);
}

@media (min-width: 641px) {
  .hero__grid {
    grid-template-columns: 2fr 1fr;
  }

  .hero__headline-title {
    font-size: 1.5rem;
  }
}

@media (min-width: 1025px) {
  .hero__headline {
    min-height: 400px;
  }

  .hero__headline-title {
    font-size: 2rem;
  }

  .hero__secondary {
    grid-template-columns: 1fr;
  }
}
