/* دکمه ثبت رأی درشت، طلایی — پایین کارت */
.vote-campaign__panel {
  display: flex !important;
  flex-direction: column !important;
}

a.vote-box.vote-box--hero {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.2rem !important;
  width: 100% !important;
  margin: auto 0 0 !important;
  padding: 1.05rem 1.2rem !important;
  text-decoration: none !important;
  color: #2a1c04 !important;
  background: linear-gradient(180deg, #ffe7b0 0%, #f0b45a 58%, #e39214 100%) !important;
  border-radius: 18px !important;
  box-shadow:
    0 0 0 3px rgba(255, 220, 150, 0.55),
    0 14px 32px rgba(227, 146, 20, 0.48) !important;
  animation: kpVoteGlow 1.7s ease-in-out infinite;
}

a.vote-box.vote-box--hero .vote-box__btn {
  display: inline-flex !important;
  align-items: center;
  gap: 0.45rem;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 1.45rem !important;
  font-weight: 900 !important;
  color: #2a1c04 !important;
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

a.vote-box.vote-box--hero .vote-box__btn::after {
  content: "←";
  font-size: 0.9em;
}

a.vote-box.vote-box--hero .vote-box__line {
  white-space: nowrap !important;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  color: #6a4308 !important;
}

a.vote-box.vote-box--hero:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

@keyframes kpVoteGlow {
  0%, 100% {
    box-shadow:
      0 0 0 3px rgba(255, 220, 150, 0.45),
      0 12px 28px rgba(227, 146, 20, 0.4);
  }
  50% {
    box-shadow:
      0 0 0 6px rgba(255, 220, 150, 0.7),
      0 16px 36px rgba(227, 146, 20, 0.58);
  }
}

@media (prefers-reduced-motion: reduce), (max-width: 900px) {
  a.vote-box.vote-box--hero {
    animation: none;
  }
}

@media (max-width: 900px) {
  a.vote-box.vote-box--hero {
    animation: none;
    padding: 1.15rem 1rem !important;
  }
}

@media (max-width: 640px) {
  a.vote-box.vote-box--hero {
    padding: 1.15rem 1rem !important;
  }

  a.vote-box.vote-box--hero .vote-box__btn {
    font-size: 1.35rem !important;
  }

  a.vote-box.vote-box--hero .vote-box__line {
    white-space: normal !important;
    text-align: center;
  }
}
