.collections-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 60px;
  text-align: center;
  padding: 60px 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  margin-top: 20px;
}

.stat-label {
  margin-top: 10px;
  letter-spacing: 2px;
  font-size: 14px;
  text-transform: uppercase;
}

/* simple icon placeholders */

.icon {
  width: 60px;
  height: 60px;
  /* remove circle border/background - keep container to size and center icon */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Make the Font Awesome icon large (visually similar size to previous circle)
   and inherit color from container variant rules below. */
.icon i {
  /* Increased so icon fills the previous circle area more closely */
  font-size: 44px;
  line-height: 1;
  display: inline-block;
}

/* Apply the original colors to the icon (not border) */
.icon.objects i { color: #5B363D; }
.icon.collections i { color: #5B363D; }
.icon.stories i { color: #5B363D; }
.icon.files i { color: #5B363D; }

@media (max-width:900px) {
  .collections-stats {
    grid-template-columns: repeat(2,1fr);
  }
  
  .stat-number {
    font-size: 32px;
    font-weight: 600;
    margin-top: 20px;
  }
}
