/* /assets/css/supporters.css */
/* Supporter / thank-you page, Victorian library styling — matches authors.css */

.supporters-hero {
  padding: var(--space-6) 0 var(--space-5);
  border-bottom: 1px solid var(--rule);
}

.supporters-kicker {
  font-family: var(--serif);
  letter-spacing: 0.6px;
  opacity: 0.85;
  margin: 0 0 var(--space-2);
}

.supporters-title {
  font-size: var(--h1);
  margin: 0 0 var(--space-3);
  color: var(--ink);
}

.supporters-intro {
  font-size: 16px;
  margin: 0;
  opacity: 0.95;
}

/* Body spacing */
.supporters-body {
  padding: var(--space-6) 0 var(--space-7);
}

/* The list sits in its own gentle "card", same as .letter on the authors page */
.supporters-card {
  margin: 0 0 var(--space-6);
  padding: var(--space-5);
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Single column, name-per-row, dotted divider between each */
.supporters-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.supporters-list li {
  padding: 12px 4px;
  font-family: var(--serif);
  font-size: var(--text-lg);
  letter-spacing: 0.2px;
  color: var(--ink);

  /* dotted divider, same texture as .rule-dotted on the authors page */
  background-image: radial-gradient(circle, rgba(75, 54, 33, 0.34) 1px, transparent 1.8px);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  background-position: bottom;
}

.supporters-list li:last-child {
  background-image: none;
}

/* Two-column variant — add class="two-col" to .supporters-list if the
   list grows long and you'd rather it not run too tall */
.supporters-list.two-col {
  column-count: 2;
  column-gap: var(--space-6);
}

.supporters-list.two-col li {
  break-inside: avoid;
}

/* Closing note under the list, e.g. "Want to be added? Donate here." */
.supporters-footnote {
  margin: var(--space-5) 0 0;
  font-family: var(--serif);
  letter-spacing: 0.3px;
  opacity: 0.9;
}

.supporters-footnote a {
  color: var(--oak);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Responsive */
@media (max-width: 700px) {
  .supporters-hero { padding-top: var(--space-5); }
  .supporters-intro { font-size: 16px; }
  .supporters-card { padding: var(--space-4); }
  .supporters-list.two-col { column-count: 1; }
}