.artist-profile {
  display: flex;
  align-items: flex-end;
  gap: 30px;
  margin-top: -80px;
  position: relative;
  z-index: 5;
  padding: 0 30px 30px;
}

.artist-avatar img {
  width: 180px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #0e273c;
  background: #17344d;
}

.artist-information {
  flex: 1;
}

.artist-name {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #fff;
}

.artist-meta {
  color: #9fb9c6;
  margin-bottom: 15px;
}

.artist-description {
  max-width: 900px;
  line-height: 1.7;
  color: #acdde7;
}

.artist-cover {
  height: 320px;
  overflow: hidden;
  border-radius: 12px;
}

.artist-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================
   Artist Banner
========================================== */

.artist-banner {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 35px;
  background: #17344d;
}

.artist-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.artist-banner-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #17344d, #1f4e79, #17344d);
}

.artist-banner-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(14, 39, 60, 0.95) 5%,
    rgba(14, 39, 60, 0.45) 45%,
    rgba(14, 39, 60, 0) 100%
  );
}

.artist-banner:hover img {
  transform: scale(1.04);
}

/* ==========================================
   Page Header
========================================== */

.page-header {
  margin-bottom: 30px;
}

.page-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 8px;
}

.page-description {
  color: #9fb9c6;
  margin-bottom: 12px;
}

.page-meta {
  color: #acdde7;
  font-size: 0.95rem;
  font-weight: 600;
}

.artist-card {
  background: #17344d;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.25s;
}

.artist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.artist-card a {
  color: inherit;
  text-decoration: none;
}

.artist-card-banner {
  height: 120px;
  overflow: hidden;
}

.artist-card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-card-body {
  padding: 20px;
  text-align: center;
}

.artist-card-avatar {
  margin-top: -60px;
  margin-bottom: 15px;
}

.artist-card-avatar img {
  width: 110px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #17344d;
  background: #0e273c;
}

.artist-card-name {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
}

.artist-card-count {
  color: #9fb9c6;
}

.artist-card-banner-placeholder {
  height: 120px;
  background: linear-gradient(135deg, #17344d, #1f4e79, #17344d);
}
