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

.overview-hero-image {
  overflow: hidden;
}

.overview-hero-image img {
  width: 100%;
  height: auto;
}

.overview-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.overview-hero-stats dt {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: var(--space-2);
}

.overview-hero-stats dd {
  margin: 0;
  color: var(--color-text);
}

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

.overview-world-card {
  align-self: stretch;
}

.overview-world-image img {
  border-radius: var(--radius-xl);
}

.overview-section-header {
  max-width: 640px;
  margin: 0 auto var(--space-16);
  text-align: center;
}

.overview-list {
  display: grid;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  padding-left: 0;
}

.overview-list--bullets li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background-color: var(--color-primary);
  margin-right: var(--space-3);
  transform: translateY(-1px);
}

.overview-list--bullets li {
  display: flex;
  align-items: flex-start;
}

.overview-list--bullets li span {
  flex: 1;
}

.overview-heroes-card {
  align-self: stretch;
}

.overview-heroes-image img {
  border-radius: var(--radius-xl);
}

.overview-ready-text {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.overview-ready-actions {
  margin-top: var(--space-10);
  gap: var(--space-4);
}

@media (max-width: 640px) {
  .overview-ready-actions {
    flex-direction: column;
  }
}
