.mobile-product-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 178, 255, .14), transparent 30rem),
    linear-gradient(180deg, #f8fbff 0%, #edf6ff 100%);
}

.mobile-product-heading {
  max-width: 50rem;
  margin-bottom: 2rem;
}

.mobile-product-heading h2 {
  max-width: 22ch;
}

.mobile-product-wide,
.mobile-product-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid #cfe2f7;
  border-radius: 1.35rem;
  background: #fff;
  box-shadow: 0 1.25rem 3.2rem rgba(19, 73, 137, .13);
}

.mobile-product-wide img,
.mobile-product-card img {
  display: block;
  width: 100%;
  height: auto;
  background: #006aed;
}

.mobile-product-wide figcaption,
.mobile-product-card figcaption {
  padding: 1rem 1.15rem 1.1rem;
  color: #53647d;
  font-size: .93rem;
  line-height: 1.55;
}

.mobile-product-wide figcaption strong,
.mobile-product-card figcaption strong {
  display: block;
  margin-bottom: .25rem;
  color: #07152e;
  font-size: 1.02rem;
}

.mobile-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.mobile-product-grid .mobile-product-card {
  display: flex;
  flex-direction: column;
}

.mobile-product-grid .mobile-product-card figcaption {
  flex: 1;
}

.mobile-product-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 25rem);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.mobile-product-split .mobile-product-card {
  max-width: 25rem;
  justify-self: end;
}

.mobile-product-points {
  display: grid;
  gap: .8rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.mobile-product-points li {
  position: relative;
  padding-left: 1.65rem;
  color: #34445f;
  line-height: 1.55;
}

.mobile-product-points li::before {
  position: absolute;
  top: .48rem;
  left: .1rem;
  width: .66rem;
  height: .66rem;
  border-radius: 50%;
  background: #11b987;
  box-shadow: 0 0 0 .3rem rgba(17, 185, 135, .12);
  content: "";
}

@media (max-width: 900px) {
  .mobile-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-product-split {
    grid-template-columns: 1fr;
  }

  .mobile-product-split .mobile-product-card {
    width: min(100%, 25rem);
    justify-self: center;
  }
}

@media (max-width: 620px) {
  .mobile-product-grid {
    grid-template-columns: 1fr;
  }

  .mobile-product-grid .mobile-product-card {
    width: min(100%, 28rem);
    justify-self: center;
  }

  .mobile-product-wide,
  .mobile-product-card {
    border-radius: 1rem;
  }
}
