.split-content__image img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  display: block;
}
.split-content__image {
  position: relative;
}
.split-content__image::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/img-shape.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
}
.split-content__text {
  padding-left: 50px;
}
.split-content__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.split-content__list li {
  position: relative;
  padding-left: 42px;
  font-size: 16px;
  line-height: 1.6;
}
.split-content__list li:not(:last-child) {
  margin-bottom: 16px;
}
.split-content__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-image: url("../../../assets/icons/check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* Image on right: reverse column order */
.split-content--image-right .split-content__row {
  flex-direction: row-reverse;
}
.split-content--image-right .split-content__text {
  padding-left: 0;
  padding-right: 50px;
}

/* Mobile heading — hidden on desktop */
.split-content__mobile-heading {
  display: none;
}

/* ── TABLET (≤ 991px) ── */
@media only screen and (max-width: 991px) {
  /* Show mobile heading (subtitle + title before image) */
  .split-content__mobile-heading {
    display: block;
    margin-bottom: 24px;
  }
  .split-content__mobile-heading .h2__size {
    margin-bottom: 0;
  }

  /* Hide desktop heading (subtitle + title inside text col) */
  .split-content__desktop-heading {
    display: none;
  }

  .split-content__text {
    padding-left: 0;
    padding-top: 24px;
  }
  .split-content--image-right .split-content__text {
    padding-right: 0;
    padding-top: 24px;
  }
  .split-content--image-right .split-content__row {
    flex-direction: row;
  }
  .split-content--image-right .split-content__image-col {
    order: -1;
  }
}

/* ── MOBILE (≤ 575px) ── */
@media only screen and (max-width: 575px) {
  .split-content {
    padding-top: 0px;
    padding-bottom: 50px;
  }
  .split-content__image img {
    border-radius: 16px;
  }
}
.split-content-wrapper {
  border-radius: 30px;
  background: linear-gradient(180deg, #f5ede2 0%, rgba(245, 237, 226, 0) 100%);
}
.split-content-wrapper section:not(:last-child) .split-content__row {
  margin-bottom: 50px;
}
.split-content__text .paragraph__16 p {
  margin-bottom: 20px;
}
.split-content__text ul li {
  padding-left: 20px;
  position: relative;
}
.split-content__text ul {
  margin-bottom: 24px;
}
.split-content__text ul li:not(:last-child) {
  margin-bottom: 10px;
}
.split-content__text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  background-image: url("../../../assets/icons/star.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
