.snf-vote-widget,
.snf-vote-mount {
  margin-top: 1rem;
}

.snf-vote-mount.is-hidden {
  display: none;
}

.snf-vote-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.snf-vote-button {
  appearance: none;
  border: 1px solid #111827;
  background: #fff;
  color: #111827;
  border-radius: 999px;
  padding: 0.8rem 1.1rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.snf-vote-button.is-selected {
  background: #111827;
  color: #fff;
}

.snf-vote-count {
  opacity: 0.8;
}

.snf-vote-summary {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: #374151;
}

@media (max-width: 640px) {
  .snf-vote-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .snf-vote-button {
    justify-content: space-between;
    width: 100%;
  }

  .snf-vote-summary {
    flex-direction: column;
    gap: 0.35rem;
  }
}
