.stats {
  margin: 2rem 0;
}

.stats__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.stats__item {
  flex: 1 1 150px;
  text-align: center;
}

.stats__value {
  font-size: 2.25rem;
  font-weight: 700;
  color: #005caa;
  transition: color .3s;
}

.stats__label {
  margin-top: .25rem;
  font-size: 1rem;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .stats__inner {
    gap: 1.25rem;
  }

  .stats__value {
    font-size: 1.75rem;
  }
}
