.stats-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #1A2B4A;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-family: 'Outfit', sans-serif;
}

.stats-block .stat {
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.stats-block .stat:last-child {
  border-right: none;
}

.stats-block .stat-n {
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
}

.stats-block .stat-l {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
  display: block;
}

@media (max-width: 1100px) {
  .stats-block { grid-template-columns: repeat(2, 1fr); }
  .stats-block .stat:nth-child(2) { border-right: none; }
  .stats-block .stat:nth-child(1),
  .stats-block .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.07); }
}

@media (max-width: 480px) {
  .stats-block .stat-n { font-size: 32px; }
  .stats-block .stat-l { font-size: 8px; letter-spacing: 0.12em; }
  .stats-block .stat { padding: 24px 12px; }
}
