/* Split Hero Dots */
.split-hero::after,
.split-hero .hero-right::before,
.split-hero .hero-right::after,
.split-hero .et_pb_row::after {
  content: "";
  position: absolute;

  background-image: url('/wp-content/uploads/2026/06/Cherry-2.svg');
  background-repeat: no-repeat;
  background-position: center;

  pointer-events: none;
}

/* Top-right / divider dot */
.split-hero::after {
  background-size: 240px 240px;
  width: 240px;
  height: 240px;

  top: -10px;
  right: 5px;

  z-index: 1;
}

/* Large left dot inside right side */
.split-hero .hero-right::before {
  background-size: 260px 260px;
  width: 260px;
  height: 260px;

  top: 18%;
  left: -45px;

  transform: rotate(135deg);
  z-index: 0;
}

/* Lower-right dot inside right side */
.split-hero .hero-right::after {
	content: none;
}
.split-hero .et_pb_row::after {
  background-size: 220px 220px;
  width: 220px;
  height: 220px;

  right: -8vw;
  bottom: -13%;

  transform: rotate(180deg);
  z-index: 0;
}

@media (min-width: 1400px) {
	.split-hero .et_pb_row::after {
		right: -10vw;
	}
}

/* Keep actual hero-right content above decorative dots */
.split-hero .hero-right > * {
  position: relative;
  z-index: 10 !important;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 980px) {
  .split-hero::after {
    background-size: 180px 180px;
    width: 180px;
    height: 180px;

    top: -10px;
    right: -20px;

    z-index: 1;
  }

  .split-hero .hero-right::before {
    background-size: 210px 210px;
    width: 210px;
    height: 210px;

    top: 17%;
    left: -65px;
  }

  .split-hero .et_pb_row::after {
    background-size: 180px 180px;
    width: 180px;
    height: 180px;

    right: -9%;
    bottom: 10%;
  }
}

/* Phone */
@media (max-width: 767px) {
  /* Divider dot */
  .split-hero::after {
    background-size: 120px 120px;
    width: 120px;
    height: 120px;

    top: auto;
    bottom: -40px;
    right: -40px;

    transform: rotate(180deg);
    z-index: 1;
  }

  /* Purple section top-left */
  .split-hero .hero-right::before {
    background-size: 190px 190px;
    width: 190px;
    height: 190px;

    top: 15px;
    left: -60px;

    transform: rotate(75deg);
    z-index: 0;
  }

  /* Purple section top-right */
  .split-hero .et_pb_row::after {
	content: none;
  }
  .split-hero .hero-right::after {
	content: "";
    background-size: 150px 150px;
    width: 150px;
    height: 150px;

    bottom: 5px !important;
    right: -40px;
	top: auto;

    transform: rotate(25deg);
    z-index: 0;
  }
}