.themes-hero {
  padding-top: var(--space-40);
  padding-bottom: var(--space-40);
}

.themes-hero-inner {
  display: grid;
  gap: var(--space-24);
}

@media (min-width: 992px) {
  .themes-hero-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: center;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-12);
}

.breadcrumbs li+li::before {
  content: "/";
  margin: 0 var(--space-4);
  color: var(--color-text-muted);
}

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

.themes-hero-lead {
  font-size: var(--font-size-md);
  max-width: 40rem;
}

.themes-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
  margin-top: var(--space-16);
  margin-bottom: var(--space-8);
}

.themes-hero-meta {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.themes-hero-media {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.themes-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
}

.themes-hero-badge-text {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

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

.themes-grid {
  display: grid;
  gap: var(--space-20);
}

@media (min-width: 768px) {
  .themes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .themes-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.themes-card-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.themes-card-media {
  border-radius: var(--radius-lg);
}

.themes-features-list {
  margin-top: var(--space-8);
  padding-left: 1.1rem;
}

.themes-features-list li {
  position: relative;
  margin-bottom: var(--space-4);
  padding-left: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.themes-features-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-primary);
}

.themes-card-footer-left {
  max-width: 16rem;
}

.themes-cta {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at top left, rgba(233, 184, 115, 0.16), transparent 55%);
}

.themes-cta-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

@media (min-width: 768px) {
  .themes-cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.themes-cta-copy {
  max-width: 36rem;
}

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

@media (max-width: 480px) {
  .themes-hero-ctas .btn,
  .themes-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
