/* Page styles */
.page-style-corner-graphics,
.page-style-corner-graphics-glow,
.page-style-bottom-graphics,
.page-style-faded-graphics {
  /* add styles here */
  --page-style: initial;
  position: relative;
}

@media (min-width: 1024px) {
  .page-style-corner-graphics::before,
  .page-style-corner-graphics::after,
  .page-style-corner-graphics-glow::before,
  .page-style-corner-graphics-glow::after,
  .page-style-bottom-graphics::before {
    content: "";
    display: block;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -1;
  }

  .page-style-corner-graphics::before,
  .page-style-corner-graphics-glow::before {
    top: 0;
    right: 0;
    /* width: 20%;
  height: 55%; */
    width: 345px;
    height: 575px;
    background-image: url("../images/corner_graphic_1.png");
    background-position: top right;
  }

  .page-style-corner-graphics::after,
  .page-style-corner-graphics-glow::after {
    bottom: 0;
    left: 0;
    /* width: 35%;
  height: 50%; */
    width: 605px;
    height: 525px;
    background-image: url("../images/corner_graphic_2.png");
    background-position: bottom left;
  }
}

.page-style-corner-graphics-glow .wp-site-blocks::before {
  content: "";
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: radial-gradient(
    ellipse 80% 60% at bottom center,
    #18a85433 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: -1;
}

.page-style-bottom-graphics::before {
  width: 100%;
  height: 25%;
  left: 0;
  bottom: 0;
  background-image: url("../images/bottom_graphic_1.png");
  background-position: bottom center;
}

.page-style-faded-graphics::before {
  content: "";
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/faded_graphic.png");
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  z-index: -1;
}
