/* Singing Coach AI — artist vocal-range pages + hub (loaded after site.css, guide.css, tools.css) */

.artist-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(220px, 320px); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.artist-hero .kicker a { color: inherit; text-decoration: none; }
.artist-hero .kicker a:hover { text-decoration: underline; }
.artist-photo { overflow: hidden; margin: 0; border: 2px solid var(--ink); border-radius: 28px; background: #fff; box-shadow: 0 8px 0 var(--ink); }
.artist-photo img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; background: var(--line); }
.artist-photo figcaption { display: flex; flex-direction: column; gap: 0.15rem; padding: 0.9rem 1.15rem 1.05rem; color: var(--ink); }
.artist-photo figcaption strong { font-size: 1.15rem; line-height: 1.2; }
.artist-photo figcaption span { color: var(--muted); font-weight: 700; font-size: 0.95rem; }

.artist-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(118px, 1fr)); gap: 0.7rem; }
.artist-fact { display: flex; flex-direction: column; justify-content: center; gap: 0.2rem; min-height: 84px; padding: 0.9rem 1rem; border: 2px solid var(--line); border-radius: 18px; background: var(--tint); }
.artist-fact__value { color: var(--ink-strong); font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 900; line-height: 1.2; }
.artist-fact__label { color: var(--muted); font-size: 0.74rem; font-weight: 900; letter-spacing: 0.05em; text-transform: uppercase; }

.artist-songs { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 0.8rem; }
.artist-song { display: flex; flex-direction: column; gap: 0.2rem; padding: 0.9rem 1.05rem; background: #fff; border: 2px solid var(--line); border-radius: var(--r); text-decoration: none; color: var(--ink-strong); transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease; }
.artist-song strong { font-size: 0.98rem; font-weight: 800; }
.artist-song span { color: var(--muted); font-weight: 700; font-size: 0.82rem; }
.artist-song:hover { transform: translateY(-3px); box-shadow: 0 5px 0 var(--line); border-color: var(--sky); }

.artist-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.9rem; }
.artist-grid--compact { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
.artist-card { display: flex; flex-direction: column; background: #fff; border: 2px solid var(--line); border-radius: 20px; overflow: hidden; text-decoration: none; color: var(--ink-strong); transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease; }
.artist-card:hover { transform: translateY(-3px); box-shadow: 0 5px 0 var(--line); border-color: var(--sky); }
.artist-card__photo { display: block; aspect-ratio: 4 / 5; background: var(--sky-tint); position: relative; }
.artist-card__photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.artist-card__initial { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 3rem; font-weight: 900; color: var(--sky-deep); }
.artist-card__body { display: flex; flex-direction: column; gap: 0.15rem; padding: 0.75rem 0.9rem 0.9rem; }
.artist-card__body strong { font-size: 0.98rem; line-height: 1.2; }
.artist-card__body span { color: var(--muted); font-weight: 700; font-size: 0.8rem; }
.artist-grid--compact .artist-card__body { padding: 0.6rem 0.75rem 0.75rem; }
.artist-grid--compact .artist-card__body strong { font-size: 0.9rem; }

.artist-toc { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.4rem; }
.artist-toc a { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.5rem 0.9rem; background: #fff; border: 2px solid var(--line); border-radius: 999px; font-weight: 800; font-size: 0.9rem; color: var(--ink-strong); text-decoration: none; }
.artist-toc a span { color: var(--muted); font-weight: 800; }
.artist-toc a:hover { border-color: var(--sky); }
.artist-family h2 { display: flex; align-items: baseline; gap: 0.6rem; }
.artist-family__count { color: var(--muted); font-size: 1rem; font-weight: 800; }

.artist-credit { margin-top: 2.2rem; color: var(--muted); font-size: 0.82rem; font-weight: 600; }
.artist-credit a { color: var(--muted); }

@media (max-width: 760px) {
  .artist-hero__grid { grid-template-columns: 1fr; }
  .artist-photo { width: min(100%, 320px); justify-self: center; }
}
