
/* Grid of stat cards */
.block--stats .stats-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: clamp(16px, 3vw, 24px);
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

/* Individual card (liquid glass vibe) */
.block--stats .stat-card {
  position: relative;
  border-radius: 18px;
  padding: clamp(16px, 2.5vw, 24px);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.5), transparent 60%),
    rgba(255,255,255,0.2);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  display: grid;
  gap: 6px;
  align-content: center;
  min-height: 120px;
  transition: transform .18s ease, box-shadow .25s ease;
}

@media (hover:hover){
  .block--stats .stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 56px rgba(0,0,0,0.12);
  }
}

/* Big number */
.block--stats .stat-value {
  font-size: clamp(1.8rem, 4.6vw, 3rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111217;
  /* optional gradient ink look */
  background: linear-gradient(180deg, #111217, #444);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

/* Label */
.block--stats .stat-label {
  font-size: 0.95rem;
  color: rgba(17,18,23,0.72);
}

/* Compact on small screens */
@media (max-width: 520px){
  .block--stats .stat-card { min-height: 100px; }
}
