/* ============================================
   STATS COMPONENT - STANDARD PATTERN
   ============================================

   Componente reutilizable para mostrar estadísticas.
   Diseño 4 columnas en desktop, 2 en tablet, 1 en móvil.

   Uso:
   <div class="stats-grid">
     <div class="stat-item">
       <span class="stat-number">30+</span>
       <span class="stat-label">Years Experience</span>
     </div>
     ...
   </div>
*/

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-6);
  text-align: center;
}

.stat-item {
  /* Stats item container */
}

.stat-number {
  display: block;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-label {
  display: block;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Modifiers */
.stats-grid--large .stat-number {
  font-size: 3rem;
}

.stats-grid--compact .stat-number {
  font-size: 2rem;
}

/* Responsive */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-5);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }
}
