.vote-info {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: left;
}
.vote-info h3 {
  margin-top: 0;
  font-size: 1.4em;
}
.vote-info ul {
  padding-left: 1.2em;
  margin-top: 8px;
}
.vote-info li {
  margin-bottom: 6px;
}

/* ==== Ajustements Vote Section ==== */
.vote-section {
  padding: 72px 20px;
  text-align: center;
}
h2 {
  font-weight: 600;
  font-size: 1.05rem;
  opacity: 0.92;
  margin: 0 auto 28px;
  max-width: 820px;
  color: var(--muted, rgba(230, 238, 248, 0.9));
}
.vote-section p.lede {
  font-size: 1.1em;
  opacity: 0.85;
  margin-bottom: 40px;
}
.vote-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.vote-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vote-card:hover {
  transform: scale(1.05);
}
.vote-card .card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
}
.vote-card .card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.vote-card h3 {
  margin: 0;
  font-size: 1.2em;
}
.vote-card .btn {
  margin-top: 12px;
}

@media (max-width: 600px) {
  .vote-section h2 {
    font-size: 2em;
  }
}
