/* STATS SECTION */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

/* Vertical dividers between items */
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xl) var(--space-md);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 2.75rem;
  font-weight: var(--font-bold);
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.65);
  font-weight: var(--font-medium);
  max-width: 160px;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stat-item:nth-child(2n) {
    border-right: none;
  }

  .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-item {
    padding: var(--space-lg) var(--space-sm);
  }
}
