/* Stats — band of headline figures on the dark surface */

.stats {
  background: var(--green-deep);
}

.stats__list {
  list-style: none;
  display: grid;
}

.stat + .stat {
  margin-top: 2.25rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.stat__figure {
  font-family: var(--font-display);
  font-size: clamp(3rem, 2.5vw + 2rem, 4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--orange);
}
.stat__unit {
  font-size: 0.4em;
  vertical-align: super;
  letter-spacing: 0;
}

.stat__label {
  margin-top: 0.9rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.stat__note {
  margin-top: 0.85rem;
  max-width: 34ch;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

@media (min-width: 1024px) {
  .stats__list {
    grid-template-columns: repeat(4, 1fr);
  }
  .stat {
    padding-right: 1.75rem;
  }
  .stat + .stat {
    margin-top: 0;
    padding-top: 0;
    padding-left: 1.75rem;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }
  .stat:last-child {
    padding-right: 0;
  }
}
