.stats {
  padding: 0 40px 80px;
  display: flex;
  justify-content: center;
}

.stats-box {
  display: flex;
  width: 900px;
  max-width: 100%;
  border: 1px solid var(--border-light);
  border-radius: 17px;
  overflow: hidden;
}

.stat {
  width: 300px;
  height: 170px;
  flex-shrink: 0;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.stat + .stat {
  border-left: 1px solid var(--border-light);
}

.stat-figure {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 36px;
  color: var(--blue);
}

.stat-caption {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--blue-light);
}

@media (max-width: 980px) {
  .stats-box {
    flex-wrap: wrap;
  }

  .stat {
    width: 100%;
  }

  .stat + .stat {
    border-left: none;
    border-top: 1px solid var(--border-light);
  }
}
