.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px clamp(18px, 3vw, 45px);
}

.hero-proof div {
  align-content: start;
}

.hero-proof strong {
  white-space: nowrap;
}

.hero-proof .wide-stat strong {
  font-size: clamp(18px, 1.55vw, 24px);
}

.hero-proof span {
  line-height: 1.45;
}

@media (max-width: 560px) {
  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 15px;
  }

  .hero-proof .wide-stat strong {
    font-size: 18px;
  }
}
