.icon-text-section.pink-bg {
    background-color: #fadae4;
}
@media screen and (max-width: 767px) {
  .is-hidden-mobile {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-hidden-touch {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .is-hidden-tablet {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-hidden-desktop {
    display: none !important;
  }
}
.icon-text-section.light-bg {
  background: #f3f2ee;
  padding: 80px;
  margin-top: 0px;
}
.icon-text-section img {
  display: inline-block;
}
.icon-text-section p {
  margin-bottom: 0;
  font-weight: 500;
}

/* NEW: lock icon size + keep aspect ratio cleanly */
.icon-text-section .icon-img{
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block; /* avoids inline weirdness */
  flex: 0 0 auto;
}

@media (max-width: 1024px) {
  .icon-text-section.light-bg {
    padding: 50px 0;
    margin-top: 0;
  }
  .icon-text-section p {
    font-size: 1.3rem;
    line-height: 1.6rem;
  }
}
@media (max-width: 450px) {
  .icon-text-section {
    padding-bottom: 40px;
  }
  .icon-text-section.light-bg {
    padding-bottom: 20px;
  }

  /* override old "max-width: 90%" so icons stay 48x48 */
  .icon-text-section img {
    max-width: none;
    margin-bottom: 30px;
  }

  /* keep 48x48 even on mobile */
  .icon-text-section .icon-img{
    width: 48px;
    height: 48px;
  }

  .icon-text-section p {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
}
