/* ─────────────────────────────────────────
   BLOCK: STATS
───────────────────────────────────────── */
.stats {
  background: none;
  padding: 0 0px 0 60px;
}
.stats__title {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 40px;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

/* ─────────────────────────────────────────
   BLOCK: STAT-ITEM
───────────────────────────────────────── */
.stat-item { 
  border-left: 1px solid #EAEAEA;
  padding-left: 68px;
  padding-right: 0;}

.stat-item__number {
  font-size: 72px;
  font-weight: 600;
  line-height: 1;
  color: var(--black);
}
.stat-item__label {
  font-weight: 500;
  font-size: 16px;
  color: var(--gray-text);
  margin-top: 10px;
}
