/* Reddit-style item vote pill — only loaded for A/B variant */
.item-vote {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  vertical-align: middle;
  margin-right: 12px;
  padding: 2px 10px;
  background: #e8e8e8;
  border-radius: 999px;
  line-height: 1;
  user-select: none;
  -webkit-user-select: none;
}
.item-vote button {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  padding: 4px 2px;
  margin: 0;
  cursor: pointer;
  color: #1a1a1b;
  line-height: 0;
  border-radius: 4px;
}
.item-vote button:hover {
  background: rgba(0, 0, 0, 0.06);
}
.item-vote button:focus-visible {
  outline: 2px solid #ff4500;
  outline-offset: 1px;
}
.item-vote svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.item-vote-score {
  min-width: 1.5em;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1b;
  font-variant-numeric: tabular-nums;
}
.item-vote.is-up .item-vote-up {
  color: #ff4500;
}
.item-vote.is-up .item-vote-score {
  color: #ff4500;
}
.item-vote.is-down .item-vote-down {
  color: #7193ff;
}
.item-vote.is-down .item-vote-score {
  color: #7193ff;
}
.item-vote.is-busy {
  pointer-events: none;
  opacity: 0.7;
}
@media (max-width: 480px) {
  .item-vote {
    margin-left: 8px;
    padding: 2px 8px;
    gap: 4px;
  }
  .item-vote-score {
    font-size: 13px;
  }
}
