
.artist-badge-wrap { margin: 6px 0 14px; }

.artist-badge {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 5px 15px 5px 5px;
  border: 1px solid rgba(210,35,35,.16);
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  transition: box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.artist-badge:hover,
.artist-badge:focus {
  border-color: rgba(210,35,35,.32);
  background: rgba(255,255,255,.94);
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(0,0,0,.08);
}

.artist-badge__inner {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.artist-badge__photo {
  display: inline-block;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  overflow: hidden;
  border: 2px solid rgba(210,35,35,.72);
  border-radius: 50%;
  background: #fff;
  box-sizing: border-box;
}

.artist-badge__image {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  border-radius: 50%;
}

.artist-badge__text {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.artist-badge__name {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.15;
  color: #d22323;
}

.artist-badge__meta {
  margin-top: 4px;
  font-size: .76rem;
  font-weight: 600;
  line-height: 1.1;
  color: #d22323;
  opacity: .72;
}

@media (max-width: 600px) {
  .artist-badge {
    padding: 4px 12px 4px 4px;
    border-radius: 12px;
  }

  .artist-badge__inner { gap: 9px; }

  .artist-badge__photo {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .artist-badge__name { font-size: 1rem; }
}
