.full-width-image {
  overflow: hidden;
  isolation: isolate;
  position: relative;
  width: 100vw;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.full-width-image picture, .full-width-image img, .full-width-image svg {
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.full-width-image.overlay::before {
  content: "";
  inset: 0;
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--overlay-background);
}
