/* ===== Artist / Author page ===== */
.artist-page {
  padding: 32px 20px 64px;
  max-width: 1110px;
  margin: 0 auto;
}

.artist-page__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--separador);
}

.artist-page__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--celeste);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gris-claro1);
}

.artist-page__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.artist-page__name {
  font-size: 28px;
  font-weight: 700;
  color: var(--negro2);
  text-transform: capitalize;
}

.artist-page__count {
  font-size: 14px;
  color: var(--gris-claro1);
}

/* ===== Responsive ===== */
@media (max-width: 576px) {
  .artist-page__header {
    flex-direction: column;
    text-align: center;
  }

  .artist-page__name {
    font-size: 22px;
  }
}
