/* Keep each statistic label directly below its number. */
.stat {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  justify-content: center;
  align-items: center;
}
.stat span {
  grid-column: 1;
  grid-row: 1 / span 2;
}
.stat b {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  line-height: 1;
}
.stat small {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  margin: 3px 0 0;
  text-align: left;
  line-height: 1.1;
}
@media (max-width: 575px) {
  .stat {
    column-gap: 7px;
  }
  .stat b {
    font-size: 20px;
  }
  .stat small {
    font-size: 10px;
  }
}
