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

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

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

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

.themed-hero__actions {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.themed-hero__meta {
  margin-top: var(--space-4);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

@media (max-width: 640px) {
  .themed-hero__meta {
    grid-template-columns: 1fr;
  }
}

.themed-hero__label {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
}

.themed-hero__value {
  font-size: var(--font-size-sm);
}

.themed-hero__figure {
  padding: var(--space-3);
}

.themed-hero__caption {
  margin-top: var(--space-2);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.themed-motifs__grid {
  align-items: flex-start;
}

.themed-list {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.themed-list--alt {
  margin-top: 0;
}

.themed-list li p {
  margin-bottom: 0;
}

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

.themed-bullets {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: var(--space-2);
}

.themed-bullets--compact {
  gap: var(--space-1);
}

.themed-bullets li::before {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.5rem;
  border-radius: 999px;
  background: radial-gradient(circle, var(--color-primary) 0, var(--color-gold) 70%);
}

.themed-bullets li {
  display: flex;
  align-items: flex-start;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.themed-bullets li span,
.themed-bullets li p {
  margin: 0;
}

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

.themed-attractions__caption {
  margin-top: var(--space-2);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.themed-timeline {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.themed-timeline__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--space-3);
  align-items: flex-start;
}

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

.themed-timeline__step {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  font-weight: 600;
  background: radial-gradient(circle at 30% 0, var(--color-gold) 0, var(--color-primary) 70%);
  box-shadow: var(--shadow-glow-emerald);
}

.themed-timeline__title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-1);
}

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

.themed-use-cases__grid {
  gap: var(--space-4);
  margin-top: var(--space-3);
}

.themed-use-cases__group h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-2);
}

.themed-use-cases__cta {
  margin-top: var(--space-3);
}

.themed-gallery__figure {
  padding: var(--space-3);
}

.themed-gallery__caption {
  margin-top: var(--space-2);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

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

.themed-cta {
  padding-bottom: var(--space-16);
}

.themed-cta__panel {
  align-items: center;
}

.themed-cta__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-width: min(320px, 100%);
}

@media (max-width: 640px) {
  .themed-cta__actions {
    width: 100%;
  }
}

.themed-cta__btn {
  width: 100%;
}
