.tag-vote {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  margin: 0 6px 6px 0;
  vertical-align: middle;
}

.tag-vote__pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 22px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.tag-vote--votable .tag-vote__pill {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
}

.tag-vote__pill::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--tag-vote-fill, 0%);
  opacity: 0.32;
  transition: width 160ms ease;
}

.tag-vote__pill--up::before {
  background: #38c48f;
}

.tag-vote__pill--down::before {
  background: #db6d6d;
}

.tag-vote__pill--neutral::before {
  background: #98a2ad;
}

.tag-vote__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
}

.tag-vote__controls {
  display: inline-flex;
  align-items: stretch;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.tag-vote--votable .tag-vote__controls {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.tag-vote__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  user-select: none;
}

.tag-vote__btn + .tag-vote__btn {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.tag-vote__btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.tag-vote__btn.is-active {
  background: rgba(56, 196, 143, 0.24);
}

.tag-vote__btn--down.is-active {
  background: rgba(219, 109, 109, 0.24);
}

.tag-vote.is-busy {
  opacity: 0.72;
  pointer-events: none;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  margin: 0 6px 6px 0;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.category-pill__link {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
}

.artist-pill {
  display: inline-flex;
  align-items: center;
  margin: 0 6px 6px 0;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.artist-pill__link {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
}

