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

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

.hero-world__lead {
  color: var(--color-text-muted);
  max-width: 46rem;
}

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

.hero-world__figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.world-intro__card {
  height: 100%;
}

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

.section-header {
  max-width: 48rem;
}

.world-figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.region-grid,
.world-weather,
.world-cycle,
.world-fauna-flora,
.world-cities,
.world-factions,
.world-secrets,
.world-interactions,
.world-events,
.world-resources,
.world-mounts {
  gap: var(--space-8);
}

.world-cities__card,
.world-weather__card {
  height: 100%;
}

.world-summary {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}

.world-summary__actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-3);
}

.breadcrumbs {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--space-2);
}

.breadcrumbs li::after {
  content: "/";
  margin-left: var(--space-2);
  color: var(--color-text-muted);
}

.breadcrumbs li:last-child::after {
  content: "";
}

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

  .hero-world {
    padding-top: var(--space-12);
  }
}

@media (max-width: 640px) {
  .hero-world__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .world-summary__actions {
    align-items: stretch;
  }
}
