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

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

.overview-hero__content {
  max-width: 720px;
}

.overview-hero__lead {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
}

.overview-hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.overview-hero__meta {
  margin-top: var(--space-4);
  max-width: 640px;
}

.overview-hero__media {
  justify-self: center;
}

.overview-hero__image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-strong);
  box-shadow: var(--shadow-elevated), var(--shadow-glow-primary);
}

.overview-hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview-section-header {
  max-width: 760px;
}

.overview-section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.overview-grid-cards {
  margin-top: var(--space-6);
}

.overview-section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

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

.overview-two-column--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
}

.overview-two-column__content {
  max-width: 720px;
}

.overview-two-column__media {
  justify-self: center;
}

.overview-two-column__side-panel {
  max-width: 420px;
  justify-self: center;
}

.overview-image-panel {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-soft);
}

.overview-image-panel--glow {
  box-shadow: var(--shadow-elevated), var(--shadow-glow-gold);
}

.overview-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview-progression-panel {
  height: 100%;
}

.overview-progression-steps {
  display: grid;
  gap: var(--space-4);
}

.overview-progression-steps__label {
  font-family: var(--font-heading);
  font-size: var(--font-size-md);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
}

.overview-progression-steps__text {
  margin-top: var(--space-1);
}

.overview-dragon-highlights,
.overview-visual-highlights,
.overview-quest-list {
  margin-top: var(--space-4);
}

@media (max-width: 1024px) {
  .section--hero-overview {
    padding-top: var(--space-12);
  }

  .overview-hero__layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  }

  .overview-two-column,
  .overview-two-column--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

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

  .overview-hero__media {
    order: -1;
    width: 100%;
    max-width: 520px;
  }

  .overview-two-column,
  .overview-two-column--reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .overview-two-column--reverse .overview-two-column__media {
    order: -1;
  }

  .overview-two-column--stack-mobile .overview-two-column__side-panel {
    margin-top: var(--space-6);
  }

  .overview-section-cta {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .section--hero-overview {
    padding-top: var(--space-10);
    padding-bottom: var(--space-10);
  }

  .overview-hero__cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .overview-section-cta {
    flex-direction: column;
    align-items: stretch;
  }
}
