.donate-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }

/* Amount + frequency are chosen on PayPal's page (the hosted Donate button
   ignores values passed in the URL). Action-first: the gold PayPal CTA sits
   at the top; the amount tiles below are flat, dashed-border "price tags" —
   deliberately shadowless so they never read as buttons. */
.donate-lead { font-size: 15px; color: rgba(26,20,16,0.8); margin: 0 0 24px; }

/* Gold PayPal CTA — PayPal's button gold (#ffc439) is a near-match for
   --yellow, so .btn-yellow doubles as PayPal branding. Ink on gold also
   contrasts far better than the old white-on-red. */
.donate-cta {
  width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 17px;
}
.donate-cta .paypal-mark { width: 86px; height: auto; display: block; }

.idea-label {
  display: inline-block; font-family: 'Caveat', cursive; font-weight: 700;
  font-size: 24px; color: var(--blue); transform: rotate(-2deg);
  margin: 30px 0 12px;
}
.idea-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.idea-tile {
  background: var(--paper-2);
  border: 2px dashed rgba(26,20,16,0.4); border-radius: 16px;
  padding: 16px 12px; text-align: center;
  font-family: 'Nunito', sans-serif; font-weight: 700;
}
.idea-tile .num { font-family: 'Caprasimo', serif; font-size: 26px; line-height: 1; display: block; }
.idea-tile .lbl { font-size: 12px; color: rgba(26,20,16,0.65); margin-top: 4px; display: block; text-transform: uppercase; letter-spacing: 0.04em; }
/* tiny hand-placed tilts keep the scrapbook feel */
.idea-tile:nth-child(1) { transform: rotate(-0.8deg); }
.idea-tile:nth-child(3) { transform: rotate(0.7deg); }
@media (max-width: 540px) {
  .idea-tile { padding: 12px 8px; }
  .idea-tile .num { font-size: 22px; }
}

.monthly-nudge {
  position: relative;
  background: var(--soft-yellow); border: 3px solid var(--ink); border-radius: 16px;
  padding: 22px 20px 16px;
  margin: 32px 0 0;
  box-shadow: 4px 4px 0 var(--ink);
}
.monthly-nudge .mn-sticker {
  position: absolute; top: -16px; left: 16px;
  transform: rotate(-4deg); display: inline-block;
  background: var(--yellow); color: var(--ink);
  border: 2.5px solid var(--ink); border-radius: 6px;
  padding: 3px 10px 2px;
  font-family: 'Caveat', cursive; font-size: 19px; font-weight: 700;
  line-height: 1; white-space: nowrap;
  box-shadow: 2px 2px 0 var(--ink);
}
.monthly-nudge p { font-size: 14px; line-height: 1.55; margin: 0; }

.donate-smallprint {
  font-size: 12px; color: rgba(26,20,16,0.6);
  margin: 18px 0 0; text-align: center;
}

/* "Your money at work" film: a short storybook video in a crayon frame
   (replaced the old cost-breakdown card, July 2026 — it duplicated the
   price-tag tiles in the left card). The sticker and caption bar echo the
   monthly-nudge styling so the block stays in the page's visual family. */
.film-side { position: sticky; top: 24px; }
/* No heading above the frame: its top edge lines up with the donation card's.
   The sticker pokes 16px above the line, same trick as the monthly nudge. */
.film-frame { position: relative; }
.film-sticker {
  position: absolute; top: -16px; left: 18px; z-index: 2;
  transform: rotate(-4deg); display: inline-block;
  background: var(--yellow); color: var(--ink);
  border: 2.5px solid var(--ink); border-radius: 6px;
  padding: 3px 10px 2px;
  font-family: 'Caveat', cursive; font-size: 19px; font-weight: 700;
  line-height: 1; white-space: nowrap;
  box-shadow: 2px 2px 0 var(--ink);
}
.film-clip {
  position: relative; overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 3px solid var(--ink); border-radius: 22px;
  box-shadow: 6px 6px 0 var(--ink);
  background: var(--paper-2);
}
.film-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.film-bar {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  background: var(--paper); border-top: 3px solid var(--ink);
  padding: 10px 14px 12px; text-align: center;
  font-family: 'Caveat', cursive; font-weight: 700; font-size: 22px;
  color: var(--ink); line-height: 1.2;
}
.film-toggle {
  position: absolute; right: 12px; top: 12px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--paper); color: var(--ink);
  border: 2.5px solid var(--ink); box-shadow: 2px 2px 0 var(--ink);
  font-size: 13px; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
}
.film-toggle:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 var(--ink); }

.other-ways { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.way {
  background: var(--paper); border: 3px solid var(--ink); border-radius: 22px;
  padding: 28px; box-shadow: 6px 6px 0 var(--ink);
}
.way:nth-child(1) { background: var(--soft-red); }
.way:nth-child(2) { background: var(--soft-yellow); }
.way:nth-child(3) { background: var(--soft-blue); }
.way h4 { font-size: 22px; margin-bottom: 8px; }
.way p { font-size: 14px; color: rgba(26,20,16,0.7); margin-bottom: 16px; }

@media (max-width: 980px) {
  .donate-grid { grid-template-columns: 1fr; }
  .film-side { position: static; }
  .other-ways { grid-template-columns: 1fr; }
}
