.stats_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
}

.stats_item {
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 1400px) {
  .stats_grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats_item .display {
    font-size: clamp(32px, 10vw, 70px);
    line-height: clamp(36px, 10vw, 70px);
  }

  .stats_item .body_25_45 {
    font-size: clamp(16px, 4vw, 22px);
    line-height: clamp(22px, 5.5vw, 32px);
  }
}

@media (max-width: 1200px) {
  .stats_grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .stats_grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-inline: 1rem;
  }

  .stats_item {
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
  }
}
