.vote-actions-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto;
  max-width: 720px;
}

.vote-actions-row--hero {
  margin-top: 8px;
}

.vote-actions-row--card {
  justify-content: flex-start;
  margin: 14px 0 0;
  max-width: none;
}

.vote-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, #229ed9 35%, transparent);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, #229ed9 12%, transparent),
    color-mix(in srgb, #229ed9 6%, transparent)
  );
  color: #229ed9;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 10px 24px color-mix(in srgb, #229ed9 14%, transparent);
}

.vote-share-btn:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, #229ed9 55%, transparent);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, #229ed9 18%, transparent),
    color-mix(in srgb, #229ed9 10%, transparent)
  );
  box-shadow: 0 14px 30px color-mix(in srgb, #229ed9 20%, transparent);
}

.vote-share-btn:focus-visible {
  outline: 2px solid #229ed9;
  outline-offset: 3px;
}

.vote-share-btn__icon {
  display: inline-flex;
  flex-shrink: 0;
}

.vote-card--disabled .vote-share-btn,
.vote-card--voted .vote-share-btn {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 640px) {
  .vote-actions-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 360px;
  }

  .vote-actions-row .vote-action-btn,
  .vote-actions-row .vote-share-btn {
    width: 100%;
  }

  .vote-actions-row--card {
    align-items: stretch;
  }
}
