.hero {
  position: relative;
  overflow: hidden;
  background: #fffaf2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 250, 242, 0.94), rgba(255, 250, 242, 0.55));
  z-index: 1;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero > div {
  position: relative;
  z-index: 2;
}
