.statbox-grid {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
  width: 100%;        
  justify-content: space-between; 
}


.statbox {
  background-color: #f0f0f0;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  margin: 10px; 
  width: calc(25% - 20px);
   flex: 1 1 calc(25% - 20px); /* 4 per row, minus margins */
  box-sizing: border-box;
}

.statbox .number {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 10px;
}

.statbox .text {
  font-size: 1em;
  color: #555;
}



/* Make them stack on small screens */
@media (max-width: 768px) {
  .statbox {
    flex: 1 1 calc(50% - 20px); /* 2 per row */
  }
}

@media (max-width: 480px) {
  .statbox {
    flex: 1 1 100%; /* 1 per row */
  }
}
