.page--artist .artistProfile {
  padding: 28px 0 60px;
}

.artistCard {
  margin-top: 14px;
  padding: 22px;
  border: 1px solid rgba(227, 82, 198, 0.25);
  border-radius: 18px;
  background: rgba(20, 20, 30, 0.72);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  color: rgba(242, 240, 255, 0.9);
}

.artistHeader {
  display: flex;
  align-items: center;
  gap: 16px;
}

.artistAvatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  overflow: hidden;
  border: 1px solid rgba(227, 82, 198, 0.35);
  border-radius: 16px;
  background: rgba(227, 82, 198, 0.18);
}

.artistAvatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatarPlaceholder {
  color: #f2f0ff;
  font-size: 28px;
  font-weight: 900;
}

.artistInfo {
  min-width: 0;
}

.artistName {
  margin: 0;
  color: #fff;
  font-size: 28px;
  letter-spacing: 0.2px;
}

.artistCity {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 6px 0 0;
  color: rgba(242, 240, 255, 0.82);
}

.artistDept {
  color: rgba(242, 240, 255, 0.65);
}

.artistStyles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.styleTag {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(227, 82, 198, 0.35);
  border-radius: 999px;
  background: rgba(227, 82, 198, 0.14);
  color: #fff;
  font-size: 12.5px;
  line-height: 1;
}

.artistLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.btnInstagram,
.btnLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid rgba(227, 82, 198, 0.35);
  border-radius: 999px;
  background: rgba(227, 82, 198, 0.16);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}

.btnInstagram:hover,
.btnLink:hover {
  transform: translateY(-1px);
  border-color: rgba(227, 82, 198, 0.55);
  background: rgba(227, 82, 198, 0.24);
}

.btnInstagram:focus-visible,
.btnLink:focus-visible,
.detailItem a:focus-visible {
  outline: 2px solid rgba(227, 82, 198, 0.7);
  outline-offset: 3px;
  border-radius: 12px;
}

.artistBio,
.artistDetails,
.artistMeta {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(227, 82, 198, 0.18);
}

.artistBio h2,
.artistDetails h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.2px;
}

.artistBio p {
  margin: 0;
  color: rgba(242, 240, 255, 0.88);
  line-height: 1.75;
  white-space: pre-wrap;
}

.detailGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 10px;
}

.detailItem {
  padding: 14px;
  border: 1px solid rgba(227, 82, 198, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.detailItem:hover {
  transform: translateY(-1px);
  border-color: rgba(227, 82, 198, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.detailItem h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.detailItem p {
  margin: 0;
  color: rgba(242, 240, 255, 0.9);
  line-height: 1.65;
}

.detailItem a {
  border-bottom: 1px dashed rgba(227, 82, 198, 0.65);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.detailItem a:hover {
  border-bottom-color: #e352c6;
  color: #e352c6;
}

.muted {
  color: rgba(242, 240, 255, 0.62);
  font-size: 13px;
}

.artistMeta {
  color: rgba(242, 240, 255, 0.7);
  font-size: 13px;
}

@media (max-width: 780px) {
  .artistCard {
    padding: 18px;
  }

  .artistHeader {
    align-items: flex-start;
  }

  .artistName {
    font-size: 24px;
  }

  .artistLinks {
    gap: 8px;
  }

  .detailGrid {
    grid-template-columns: 1fr;
  }
}