.hero--tematyczne {
  position: relative;
}

.hero--tematyczne .hero__title {
  max-width: 34rem;
}

.hero__badges {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.hero__media {
  display: flex;
  justify-content: flex-end;
}

.hero-image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.18), transparent 60%),
              radial-gradient(circle at bottom right, rgba(250, 204, 107, 0.22), transparent 60%),
              var(--color-background-elevated);
  padding: var(--space-3);
  box-shadow: var(--shadow-elevated);
}

.hero-image-card img {
  border-radius: calc(var(--radius-xl) - 0.35rem);
}

.hero-image-card figcaption {
  margin-top: var(--space-3);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.section--alt {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(5, 8, 20, 1));
}

.tematyczne-grid {
  align-items: stretch;
}

.motywy-grid {
  align-items: start;
}

.motyw-card {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
}

.motyw-card__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.motyw-card--cta {
  grid-column: 1 / -1;
}

.motyw-card--cta .motyw-card__content {
  max-width: 40rem;
}

.tematyczne-list {
  list-style: none;
  padding-left: 0;
}

.tematyczne-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.tematyczne-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: radial-gradient(circle, var(--color-accent-gold) 0, transparent 70%);
}

.tematyczne-scenariusz ol {
  margin: 0;
  padding-left: 1.25rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.tematyczne-scenariusz li + li {
  margin-top: var(--space-2);
}

.tematyczne-cta-wrapper {
  margin-top: var(--space-8);
}

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

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

.tematyczne-links {
  display: grid;
  gap: var(--space-2);
}

.tematyczne-link {
  font-size: var(--font-size-sm);
  color: var(--color-primary);
}

.tematyczne-link:hover {
  color: var(--color-accent-gold);
}

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

  .hero__layout {
    display: block;
  }

  .hero__media {
    margin-top: var(--space-8);
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .tematyczne-cta-card {
    align-items: flex-start;
  }

  .hero-image-card {
    padding: var(--space-2);
  }
}
