/* Header público do artista: avatar, dados e redes sociais. */
.artist-header-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
}

.artist-header-avatar {
  grid-column: 1;
  grid-row: 1;
}

.artist-header-stack {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.75rem;
}

.artist-header-copy {
  min-width: 0;
  margin-top: 0.5rem;
}

.artist-header-name {
  min-width: 0;
}

.artist-header-actions {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.artist-header-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.25rem;
}

.artist-header-socials a {
  display: grid;
  place-items: center;
  opacity: 0.75;
}

.artist-header-socials a:hover {
  opacity: 1;
}

.profile-icon {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}

@media (min-width: 640px) {
  .artist-header-main {
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 1.5rem;
  }

  .artist-header-stack {
    display: contents;
  }

  .artist-header-copy {
    grid-column: 2;
    grid-row: 1;
  }

  .artist-header-actions {
    grid-column: 3;
    grid-row: 1;
    align-items: flex-end;
    align-self: start;
    justify-self: end;
    margin-top: 0.75rem;
  }

  .artist-header-socials {
    justify-content: flex-end;
  }
}
