/* ============================================================
   DAWNFALL — Vote page
   Requires: shared.css, auth.css
   ============================================================ */

.vote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  width: 100%;
}

.vote-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: fadeUp 0.6s ease both;
  transition: border-color var(--dur-normal);
}

.vote-card:hover { border-color: var(--border-brand); }

.vote-card-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.vote-card-sites {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.vote-card-sites .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 600px) {
  .vote-grid { grid-template-columns: 1fr; }
}
