body.has-custom-background::before,
body.has-custom-background::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

body.has-custom-background::before {
  background-image: var(--custom-background-image);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

body.has-custom-background::after {
  background: rgba(8, 12, 20, 0.48);
}

body.embed-mode.has-custom-background::before,
body.embed-mode.has-custom-background::after {
  display: none;
}
