.market-stats-container {
  display: flex;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto 10px auto;
  padding: 0 20px;
}

.stat-card {
  flex: 1;
  background: #f7f7f7;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  border-color: #1b1b1b;
}

.stat-header {
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.stat-row {
  display: flex;
  gap: 30px;
}

.stat-group {
  display: flex;
  flex-direction: column;
}

.stat-count {
  font-size: 1.7rem;
  font-weight: 800;
  color: #1b1b1b;
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #888;
  font-weight: 700;
}

@media (max-width: 992px) {
  .hide-on-mobile { display: none !important; }
}