/* ==================================================
   ARTIST STATS
================================================== */
.cs-artist-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .cs-artist-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .cs-artist-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cs-stat-card {
  background: var(--bg-soft);
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
  transition: all 0.3s ease;
}

.cs-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(157, 77, 255, 0.6);
}

.cs-stat-card p {
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 0.5rem;
}