.has-background-image-left-background-color {
  position: relative;
  isolation: isolate;
}

.has-background-image-left-background-color::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background-image: var(--wgtl-group-background-image);
  background-repeat: no-repeat;
  opacity: 0.18;
}

.has-background-image-left-background-color--adaptive::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: -170px;
  background-position: left center;
  background-size: contain;
}

.has-background-image-left-background-color--cropped::before {
  top: 0;
  bottom: 0;
  left: -170px;
  width: 800px;
  background-position: right top;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .has-background-image-left-background-color--adaptive::before {
    left: -80px;
    opacity: 0.1;
  }

  .has-background-image-left-background-color--cropped::before {
    left: -80px;
    width: 300px;
    background-size: contain;
    opacity: 0.1;
  }
}

.has-background-image-left-background-color > * {
  position: relative;
  z-index: 1;
}
