/* Christian Music area (/music, /music/genre/:id, /music/artist/:id).
   Reuses home.css's .home-section__*/.media-grid/.creator-grid/.creator-card
   and creator.css's .creator-header/.creator-not-found -- only the genre
   chip grid and a couple of small entity-detail lines are new here, same
   "one design system" approach as creator.css itself. */

.music-hero {
  padding-block: var(--space-2) var(--space-2);
}

.music-hero__title {
  margin: 0;
  font-size: clamp(var(--font-size-2xl), 4vw, var(--font-size-3xl));
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-text);
}

.music-hero__subtitle {
  margin: var(--space-2) 0 0;
  max-width: 42rem;
  color: var(--color-text-muted);
}

.genre-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  list-style: none;
  margin: 0;
  padding: 0;
}

.genre-chip {
  display: inline-flex;
  align-items: baseline;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-weight: var(--font-weight-semibold);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.genre-chip__count {
  color: var(--color-text-muted);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-sm);
}

@media (hover: hover) {
  .genre-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: var(--gv-glow);
  }
}

.genre-chip:focus-visible {
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: var(--gv-glow);
}

.music-entity__description {
  margin: var(--space-3) 0 0;
  color: var(--color-text-muted);
  max-width: 48rem;
}

.music-entity__genres,
.music-entity__sources {
  margin: var(--space-2) 0 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.music-entity__genres a,
.music-entity__sources a {
  color: var(--color-accent);
}
