/* Styles spécifiques à la page Voter */

header img.logo-md { width: 90px; height: auto; border-radius: 14px; box-shadow: var(--shadow); margin-bottom: 14px; }
header p.lead { max-width: 520px; }

.section { max-width: 680px; }
.section > p.intro {
  text-align: center; font-size: 0.88rem; color: rgba(0,50,80,0.65);
  font-weight: 600; margin-bottom: 22px; line-height: 1.5;
}

.vote-list { display: flex; flex-direction: column; gap: 12px; }

.vote-card {
  display: flex; align-items: center; gap: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(200,235,255,0.45));
  border: 1.5px solid rgba(255,255,255,0.8);
  border-radius: 14px; padding: 16px 20px;
  text-decoration: none; color: var(--text);
  box-shadow: 0 4px 14px rgba(0,80,150,0.1);
  transition: all 0.25s;
}
.vote-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 28px rgba(0,100,200,0.2);
  border-color: rgba(0,150,255,0.35);
}
.vote-card::after { display: none; }

.vote-num {
  font-size: 1.6rem; font-weight: 900;
  color: rgba(0,100,180,0.25); min-width: 32px; text-align: center;
  font-variant-numeric: tabular-nums;
}
.vote-info { flex: 1; }
.vote-info .vote-name {
  font-size: 1rem; font-weight: 800; color: var(--blue-dark); display: block;
}
.vote-info .vote-desc {
  font-size: 0.78rem; font-weight: 600; color: rgba(0,60,100,0.55); margin-top: 2px;
}
.vote-arrow {
  font-size: 1.2rem; color: rgba(0,120,200,0.4);
  transition: transform 0.25s, color 0.25s;
}
.vote-card:hover .vote-arrow { transform: translateX(4px); color: var(--blue); }

.thanks {
  text-align: center; margin-top: 22px;
  font-size: 0.85rem; font-weight: 600;
  color: rgba(0,50,80,0.55); line-height: 1.6;
}

.seo-text {
  font-size: 0.85rem;
  color: rgba(0,50,80,0.7);
  font-weight: 600;
  line-height: 1.6;
  text-align: left;
  margin-top: 18px;
}
