.splity {
  max-width: var(--xl-width);
  margin: var(--xl-gap-y) auto;
  padding: 0 var(--xl-gap-x);
}

.splity__title {
  text-align: center;
  margin: 0 0 80px 0;
}

.splity__wrap {
  display: grid;
  gap: 25px;
  min-height: 410px;
  @media (min-width: 850px) and (max-width: 1024px) {
    grid-template-columns: 1fr 1fr;
  }
  @media (min-width: 1025px) {
    grid-template-columns: 1.15fr .75fr;
  }
}

.splity__image {
  background-color: var(--subtle-slate);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.splity__image img {
  border-radius: 8px;
}

.splity__content {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='658' height='195' viewBox='0 0 658 195' fill='none'%3E%3Cpath d='M2.26251 73.0059C44.3215 55.7025 90.4187 47.3499 136.766 52.7764C174.333 57.1791 210.53 70.1391 240.987 89.9643C273.187 110.921 300.382 137.251 334.889 155.67C413.413 197.594 470.308 200.687 545.797 155.67C593.64 145.637 660.05 39.9526 650.767 1.39185' stroke='%23AFD700' stroke-width='11.8933' stroke-miterlimit='10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 90% 125%;
  background-color: var(--teal);
  padding: 50px;
  border-radius: 8px;
  color: white;
  @media (max-width: 1024px) {
    padding: 30px;
  }
  @media (max-width: 850px) {
    min-height: 430px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='196' height='94' viewBox='0 0 196 94' fill='none'%3E%3Cpath d='M-72.6106 33.8005C-36.8021 16.4972 2.44429 8.14463 41.904 13.5711C73.8876 17.9737 104.705 30.9337 130.636 50.759C158.051 71.7159 181.204 98.0455 210.583 116.464C277.437 158.389 325.877 161.482 390.147 116.464C430.88 106.432 487.42 0.747276 479.517 -37.8135' stroke='%23AFD700' stroke-width='11.8933' stroke-miterlimit='10'/%3E%3C/svg%3E");
    background-position: left bottom;
  }
}

.splity__link {
  --subtle-lime: var(--lime);
}