.stats-bar {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.75rem;
  border-right: 1px solid #e0e0e0;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat-label-group {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-top: 0.35rem;
}

.stat-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #333;
}

.stat-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  color: #888;
}

/* Dark theme */
.dark-theme .stat-number {
  color: #f0f0f0;
}

.dark-theme .stat-title {
  color: #ddd;
}

.dark-theme .stat-sub {
  color: #aaa;
}

.dark-theme .stat-item {
  border-right-color: #444;
}

/* Mobile: 2x2 grid */
@media (max-width: 600px) {
  .stats-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 0;
  }

  .stat-item {
    border-right: none;
    padding: 0;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(3) {
    border-right: 1px solid #e0e0e0;
  }

  .dark-theme .stat-item:nth-child(1),
  .dark-theme .stat-item:nth-child(3) {
    border-right-color: #444;
  }

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