.theme-hero {
  position: relative;
}

.theme-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-12);
  align-items: center;
}

@media (max-width: 900px) {
  .theme-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

.theme-hero-text h1 {
  margin-bottom: var(--space-4);
}

.theme-kicker {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.theme-hero-lead {
  font-size: var(--font-size-lg);
  max-width: 38rem;
}

.theme-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.theme-hero-meta {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  max-width: 30rem;
}

.theme-hero-media {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.theme-hero-image {
  border-radius: var(--radius-md);
}

.theme-hero-overlay-card h2 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.theme-hero-overlay-card p {
  font-size: var(--font-size-sm);
}

.theme-section-header {
  max-width: 44rem;
  margin: 0 auto var(--space-12);
}

.theme-section-header p {
  margin-top: var(--space-3);
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-8);
}

@media (max-width: 992px) {
  .theme-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.theme-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.theme-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: var(--space-6);
  align-items: flex-start;
}

@media (max-width: 768px) {
  .theme-card-body {
    grid-template-columns: minmax(0, 1fr);
  }
}

.theme-card-media {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.theme-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.theme-list {
  margin-top: var(--space-4);
  display: grid;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
}

.theme-list li::before {
  content: "•";
  margin-right: 0.5rem;
  color: var(--color-primary);
}

.theme-list li {
  display: flex;
  align-items: flex-start;
}

.theme-card-footer {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

.theme-link {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.theme-link:hover {
  color: var(--color-primary);
}

.theme-cta-section {
  background: radial-gradient(circle at top, rgba(255, 51, 102, 0.16), transparent 55%);
}

.theme-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

@media (max-width: 768px) {
  .theme-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

.theme-cta-content h2 {
  margin-bottom: var(--space-3);
}

.theme-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}
