.bghu-hero-stack {
  position: relative;
}

.bghu-hero {
  --hero-height: 320px;
  /* hoogte hero */
  --overlay: rgba(0, 0, 0, 0.28);
  /* donkere overlay */
  position: relative;
  min-height: var(--hero-height);
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  border-radius: 0;
  /* desgewenst afronden */
  opacity: 0;
  /* voor fade-in */
  transition: opacity .25s ease-in-out;
}

.bghu-hero.is-visible {
  opacity: 1;
  display: block !important;
}

.bghu-hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.bghu-hero__content {
  position: relative;
  z-index: 1;
  min-height: var(--hero-height);
  display: grid;
  align-content: center;
  padding: 2rem 1rem;
  color: #fff;
  text-align: left;
}

.bghu-hero__pre {
  margin: 0 0 .25rem;
  opacity: .9;
}

.bghu-hero__title {
  margin: 0 0 .25rem;
  font-weight: 700;
}

.bghu-hero__sub {
  margin: 0;
  max-width: 60ch;
}
