.breadcrumb {
  background: transparent;
  padding: 0;
  font-size: 14px;
}

.breadcrumb-item a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: var(--primary-color);
}

.discography-layout {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.discography-sidebar {
  position: sticky;
  top: 24px;
}

.discography-artist-card,
.discography-heading {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.discography-artist-card {
  padding: 24px;
  text-align: center;
}

.discography-artist-photo,
.discography-photo-placeholder {
  width: 150px;
  height: 150px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.discography-artist-photo {
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.16);
}

.discography-artist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discography-photo-placeholder {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
  color: #ffffff;
  font-size: 3rem;
}

.discography-artist-card h1 {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 10px 0 4px;
  line-height: 1.2;
}

.discography-genre {
  color: var(--text-muted);
  margin-bottom: 18px;
}

.discography-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 14px 0;
  margin: 16px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.discography-stats strong,
.discography-stats span {
  display: block;
}

.discography-stats strong {
  color: var(--secondary-color);
  font-size: 1.05rem;
}

.discography-stats span {
  color: var(--text-muted);
  font-size: 12px;
}

.discography-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 13px;
}

.discography-rating .stars .star {
  color: #d8dce2;
  cursor: default;
}

.discography-rating .stars .star.active {
  color: #ffc107;
}

.discography-bio {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  text-align: left;
  margin-bottom: 18px;
}

.discography-sidebar-actions {
  margin-bottom: 16px;
}

.discography-sidebar-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.discography-social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.discography-social-links a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
  border-radius: 50%;
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.2s;
}

.discography-social-links a:hover {
  background: var(--primary-color);
  color: #ffffff;
}

.discography-heading {
  padding: 22px 24px;
  margin-bottom: 20px;
}

.discography-heading span {
  display: inline-block;
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.discography-heading h2 {
  color: var(--secondary-color);
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.discography-heading p {
  color: var(--text-muted);
  margin: 0;
}

.album-card {
  border-radius: 12px;
}

.album-cover-link {
  display: block;
  text-decoration: none;
}

.album-cover {
  position: relative;
}

.cover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.42);
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.2s;
}

.album-cover-link:hover .cover-overlay {
  opacity: 1;
}

@media (max-width: 991.98px) {
  .discography-layout {
    grid-template-columns: 1fr;
  }

  .discography-sidebar {
    position: static;
  }

  .discography-artist-card {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 18px 22px;
    text-align: left;
    align-items: center;
  }

  .discography-artist-photo {
    grid-row: span 4;
    margin-bottom: 0;
    width: 140px;
    height: 140px;
  }

  .discography-photo-placeholder {
    width: 140px;
    height: 140px;
  }

  .discography-stats,
  .discography-rating,
  .discography-bio,
  .discography-sidebar-actions,
  .discography-social-links {
    grid-column: 1 / -1;
  }

  .discography-rating,
  .discography-social-links {
    justify-content: flex-start;
  }
}

@media (max-width: 575.98px) {
  .discography-page {
    padding-top: 24px !important;
  }

  .discography-artist-card {
    display: block;
    text-align: center;
    padding: 20px;
  }

  .discography-artist-photo {
    width: 130px;
    height: 130px;
    margin-bottom: 16px;
  }

  .discography-photo-placeholder {
    width: 130px;
    height: 130px;
  }

  .discography-rating,
  .discography-social-links {
    justify-content: center;
  }

  .discography-bio {
    text-align: center;
  }

  .discography-heading {
    padding: 18px;
  }

  .discography-heading h2 {
    font-size: 1.35rem;
  }

  .tracks-list li {
    gap: 10px;
    padding: 10px 4px;
  }

  .track-views {
    display: none;
  }
}
