/* ==========================================================================
   SPONSOR BOARD — community fundraiser page. Same design language as the
   rest of the site, but this is explicitly NOT a store: no checkout here,
   every "Claim This Spot" button goes straight to the beneficiary's own
   Stripe Payment Link. This site never touches the money.
   ========================================================================== */

.sb-hero {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--line);
}
.sb-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  margin-top: 10px;
}
.sb-hero .lede { margin-top: 16px; }
.sb-hero .front-note {
  margin-top: 20px;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
}

.sb-money-note {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 24px;
  max-width: 44em;
}

.sb-tiers {
  padding: 56px 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.sb-tier {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(20,22,26,0.06);
}

.sb-tier-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  color: #fff;
}
.sb-tier[data-tier="platinum"] .sb-tier-head { background: var(--ink); }
.sb-tier[data-tier="gold"] .sb-tier-head { background: var(--spot-orange); }
.sb-tier[data-tier="silver"] .sb-tier-head { background: var(--accent-purple); }
.sb-tier[data-tier="bronze"] .sb-tier-head { background: var(--ink-soft); }

.sb-tier-head h3 { font-size: 24px; color: #fff; }
.sb-tier-head .price { font-weight: 800; font-size: 15px; }
.sb-tier-head .spots-left { font-size: 12px; text-transform: uppercase; opacity: 0.85; }

.sb-spot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1px;
  background: var(--line);
}

.sb-spot {
  background: var(--paper);
  padding: 16px;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.sb-spot.filled {
  font-weight: 700;
  color: var(--ink);
}
.sb-spot.open {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
}
.sb-spot.claim {
  padding: 0;
}
.sb-spot.claim a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 66px;
  text-decoration: none;
  color: #fff;
  background: var(--spot-orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background .15s;
}
.sb-spot.claim a:hover { background: var(--ink); }

.sb-loading, .sb-error {
  font-size: 13px;
  color: var(--ink-soft);
  padding: 40px 0;
}

.sb-general-sale {
  background: var(--ink);
  color: #fff;
  padding: 56px 0;
  margin-top: 20px;
}
.sb-general-sale .wrap { max-width: 620px; }
.sb-general-sale p { color: rgba(255,255,255,0.75); }
