/* header-hero.jpg is mostly sky where the site title sits - the theme has
   no built-in scrim for text-over-photo headers, so add one here. Explicit
   z-index on both layers avoids relying on default stacking-order rules. */
.intro-header {
  position: relative;
}

.intro-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3) 45%, rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 0;
}

.intro-header > .container {
  position: relative;
  z-index: 1;
}
