/* Inner page hero: background image, dark overlay, centered title */
.page-banner--hero {
  position: relative;
  --page-banner-min-h: min(37vh, 420px);
  min-height: var(--page-banner-min-h);
  padding: 0;
  overflow: hidden;
}

.page-banner--hero .page-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.page-banner--hero .page-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.page-banner--hero .page-banner__content {
  position: relative;
  z-index: 2;
  min-height: var(--page-banner-min-h);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  text-align: center;
}

.page-banner--hero .page-banner__title {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}
