/* =============================================================
   PETITION PAGE — citizen signature wall + supplements
   loaded after styles.css; only adds/overrides what's specific.
   ============================================================= */

.hero__title--text {
  font-family: var(--font-display, "Anton", "Archivo Black", sans-serif);
  font-size: clamp(48px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin: 12px 0 18px;
  text-transform: none;
}
.hero__title--text em {
  font-style: normal;
  color: var(--red, #E2241B);
}

.section__title--light {
  color: var(--paper, #faf7f1);
}
.section__lede--light {
  color: rgba(255,255,255,0.78);
}
.kicker--light {
  color: rgba(255,255,255,0.6);
}

/* ── PETITION WALL ── */
.petition-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px 14px;
  margin: 18px 0 8px;
  padding: 18px;
  background: rgba(0,0,0,0.025);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 6px;
  font-family: var(--font-mono, "JetBrains Mono", ui-monospace, monospace);
  font-size: 12.5px;
}
.petition-wall .sig {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px dotted rgba(0,0,0,0.12);
}
.petition-wall .sig:last-child { border-bottom: 0; }
.petition-wall .sig__name {
  font-weight: 600;
  color: var(--ink, #111);
}
.petition-wall .sig__country {
  color: rgba(0,0,0,0.55);
  font-feature-settings: "tnum";
  letter-spacing: 0.04em;
}
.petition-wall .loading {
  grid-column: 1 / -1;
  margin: 0;
  text-align: center;
  color: rgba(0,0,0,0.45);
  font-style: italic;
}
.petition-wall .empty {
  grid-column: 1 / -1;
  margin: 0;
  text-align: center;
  color: rgba(0,0,0,0.45);
}

#petitionCount {
  color: var(--red, #E2241B);
  font-variant-numeric: tabular-nums;
}

/* small responsive tweak */
@media (max-width: 560px) {
  .hero__title--text { font-size: clamp(40px, 12vw, 64px); }
  .petition-wall { padding: 12px; grid-template-columns: 1fr; }
}
