.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38vh;
  padding: 4rem 1rem;
  background-color: var(--color-bg-section);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: color-mix(in srgb, var(--color-primary) 55%, transparent);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 1200px);
  margin: 0 auto;
}

.page-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: min(100%, 48rem);
  margin: 0 auto;
  text-align: center;
}

.page-hero__title,
.page-hero__subtitle {
  margin: 0;
  color: var(--color-surface);
}

.page-hero__title {
  font-size: clamp(2rem, 5vw, 4rem);
}

.page-hero__subtitle {
  max-width: 42rem;
  font-size: var(--font-size-md);
  line-height: var(--line-height-relaxed);
}

@media (max-width: 767px) {
  .page-hero {
    min-height: 25vh;
    padding: 3rem 1rem;
  }

  .page-hero__subtitle {
    font-size: var(--font-size-sm);
  }
}
