/* =============================================
   STATS — KPI grid
   ============================================= */

#stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--bdr);
}

.scl {
  background: var(--white);
  padding: 48px 40px;
  transition: background .3s;
}

.scl:hover {
  background: var(--pale);
}

.sn {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -3px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.sn em {
  color: var(--blue);
  font-style: normal;
}

.slb {
  font-size: 13px;
  color: var(--mut);
  line-height: 1.55;
}
