.snd-sidebar-profile-widget {
  padding: 1rem 0.75rem;
  max-width: 340px;
  margin: 0 auto;
  font-family: 'Georgia', 'Times New Roman', serif;
}
.snd-avatar {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.snd-avatar img {
  width: 70%;
  height: 70%;
  object-fit: cover;
  padding: 8px;
  border: 1px solid #a45e5e5e;
}
.snd-profile-bandname {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
  color: #d77b11;
}
.snd-profile-tagline {
  text-align: center;
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 0.3rem;
  font-style: italic;
}
.snd-profile-location {
  text-align: center;
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.6rem;
}
.snd-profile-bio {
  text-align: center;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
  margin-bottom: 0.8rem;
  font-style: italic;
}
.snd-profile-credits {
  text-align: center;
  font-size: 0.8rem;
  color: #777;
  line-height: 1.3;
  margin-bottom: 1rem;
  font-style: italic;
}
.snd-profile-links {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: center;
  margin-bottom: 1rem;
}
.snd-profile-link {
  color: #0073aa;
  text-decoration: none !important;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  filter: brightness(1);
}
.snd-profile-link:hover {
  text-decoration: none;
  filter: brightness(1.3);
  transform: translateY(-1px);
}
.snd-discography-heading {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666;
  margin-bottom: 0.8rem;
  border-top: 1px solid #eee;
  padding-top: 1rem;
}
.snd-profile-products {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.snd-profile-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
      border: 1px solid transparent;
    transition: all 0.3s ease;
}
.snd-profile-product:hover {
  border: 1px solid rgba(238, 238, 238, 0.1);
  filter: brightness(1.08) saturate(1.15);
}
.snd-product-cover {
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.snd-product-info {
  text-align: center;
  width: 100%;
}
.snd-product-title {
    text-decoration: none !important;
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
  line-height: 1.3;
}
.snd-product-date {
    text-decoration: none !important;
  font-size: 0.75rem;
  color: #888;
}
@media (max-width: 500px) {
  .snd-sidebar-profile-widget {
    padding: 1rem 0.5rem;
    max-width: 100%;
  }
  .snd-profile-products {
    grid-template-columns: 1fr;
  }
} 