/* ============================================================
   ARTISTS — Sección roster de artistas
   ============================================================ */

#artists {
  background: var(--bg-dark);
  color: var(--text-inv);
  border-top: 1px solid var(--border-dark);
}

.artists-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.artists-header p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  max-width: 280px;
  text-align: right;
  line-height: 1.6;
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
}

/* ── Fondos por artista ── */
.artist-img--a { background: #111111; }
.artist-img--b { background: #161616; }
.artist-img--c { background: #141414; }
.artist-img--d { background: #0f0f0f; }
.artist-img--soon { background: #0a0a0a; }

/* ── Foto dentro de tarjeta ── */
.artist-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.85;
}

/* ── Tarjeta placeholder ── */
.artist-card--soon {
  opacity: 0.35;
  pointer-events: none;
}
.artist-soon-text {
  font-size: 1.5rem;
  letter-spacing: 0;
  color: #1a1a1a;
}

/* ── Tarjeta ── */
.artist-card {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.artist-img {
  aspect-ratio: 3/4;
  background: #181818;
  overflow: hidden;
  position: relative;
}
.artist-img-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.artist-img-inner span {
  font-size: 5rem;
  font-weight: 900;
  color: #222;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  transition: transform 0.5s ease, color 0.5s ease;
}
.artist-card:hover .artist-img-inner span { transform: scale(1.1); color: #333; }

/* ── Overlay hover ── */
.artist-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.75) 60%, rgba(0,0,0,0.3) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.artist-card:hover .artist-overlay { opacity: 1; }

.artist-overlay-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.75rem;
  transform: translateY(12px);
  transition: transform 0.4s ease;
}
.artist-card:hover .artist-overlay-content { transform: translateY(0); }

.artist-overlay-tag {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.6rem;
}

.artist-bio {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.artist-overlay-action {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.4rem 0.9rem;
  transition: background 0.2s, border-color 0.2s;
}
.artist-card:hover .artist-overlay-action:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

/* ── Info pie de tarjeta ── */
.artist-info {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.artist-name {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.artist-genre {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}
.artist-arrow {
  font-size: 1rem;
  color: rgba(255,255,255,0.2);
  transition: color 0.2s, transform 0.2s;
}
.artist-card:hover .artist-arrow { color: white; transform: translate(2px,-2px); }
