.themed-hero {
  padding-top: var(--space-16);
  padding-bottom: var(--space-12);
}

.themed-hero__grid {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  align-items: center;
}

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

.themed-hero__lead {
  font-size: var(--font-size-lg);
  color: var(--color-text-soft);
}

.themed-hero__actions {
  margin-top: var(--space-4);
}

.themed-hero__chips {
  margin-top: var(--space-5);
}

.themed-hero__media {
  display: grid;
  gap: var(--space-4);
}

.themed-hero__media-main {
  aspect-ratio: 4 / 3;
}

.themed-hero__media-secondary {
  max-width: 80%;
  margin-left: auto;
}

@media (max-width: 900px) {
  .themed-hero__media-secondary {
    max-width: 100%;
    margin-left: 0;
  }
}

.themed-section-header {
  margin-bottom: var(--space-8);
}

.themed-section-subtitle {
  margin-left: auto;
  margin-right: auto;
  color: var(--color-text-soft);
}

.themed-intro {
  align-items: flex-start;
  gap: var(--space-8);
}

.themed-intro__card {
  padding: var(--space-6);
}

.themed-intro__list {
  margin-top: var(--space-4);
}

.themed-intro__cta {
  margin-top: var(--space-4);
}

.themed-steps {
  list-style: none;
  padding: 0;
  margin: var(--space-3) 0 0;
  counter-reset: themed-step;
}

.themed-steps li {
  counter-increment: themed-step;
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: var(--space-2);
  color: var(--color-text-soft);
  font-size: var(--font-size-sm);
}

.themed-steps li::before {
  content: counter(themed-step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xs);
  color: #05050a;
  box-shadow: var(--shadow-glow-primary);
}

.themed-theme-grid {
  margin-top: var(--space-6);
}

.themed-theme-grid--secondary {
  margin-top: var(--space-8);
}

.themed-theme-card .card-body {
  font-size: var(--font-size-sm);
}

.themed-theme-image {
  margin-top: var(--space-3);
}

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

.themed-theme-cta {
  margin-top: var(--space-4);
}

.themed-list {
  list-style: none;
  padding: 0;
  margin: var(--space-2) 0 var(--space-1);
}

.themed-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.45rem;
  color: var(--color-text-soft);
  font-size: var(--font-size-sm);
}

.themed-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-gold));
  box-shadow: 0 0 10px rgba(184, 115, 255, 0.7);
}

.themed-hosts-grid {
  align-items: center;
  gap: var(--space-8);
}

.themed-hosts-media-wrapper {
  max-width: 480px;
  margin-left: auto;
}

.themed-hosts-media {
  aspect-ratio: 4 / 3;
}

@media (max-width: 900px) {
  .themed-hosts-media-wrapper {
    max-width: 100%;
    margin: 0;
  }
}

.themed-decor-grid {
  gap: var(--space-6);
}

.themed-decor-block {
  padding: var(--space-6);
}

.themed-packages-grid {
  margin-top: var(--space-6);
}

.themed-package-card .card-body {
  font-size: var(--font-size-sm);
}

.themed-package-note {
  margin-top: var(--space-3);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.themed-custom-grid {
  align-items: flex-start;
  gap: var(--space-8);
}

.themed-custom-cta {
  padding: var(--space-6);
}

.themed-custom-cta-actions {
  margin-top: var(--space-4);
}

.themed-custom-note {
  margin-top: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.themed-cta-bar {
  gap: var(--space-4);
  align-items: center;
}

.themed-cta-bar__text p {
  margin-bottom: 0.25rem;
}

.themed-cta-bar__actions {
  justify-content: flex-end;
}

.small-text {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

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

  .themed-cta-bar__actions {
    width: 100%;
    justify-content: flex-start;
  }
}
