/* Donate page. Uses the public site's form styles (style.css); this file adds the choice buttons and the Gift Aid box. */
.donate-wrap { display: grid; gap: 2rem; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); align-items: start; }
@media (max-width: 860px) { .donate-wrap { grid-template-columns: 1fr; } }
.donate-wrap .form-card h2 { margin-bottom: 0.6em; }
.donate-aside h3 { margin-top: 1.4rem; }
.hp-field { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
fieldset.field { border: 0; padding: 0; margin: 0 0 1.6rem; min-width: 0; }
fieldset.field > legend { padding: 0; }
.choice-row { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.choice { position: relative; flex: 1 1 130px; margin: 0; cursor: pointer; }
.choice input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.choice span { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.1rem; min-height: 60px; padding: 0.6rem 1rem; text-align: center; border: 3px solid #b9d3df; border-radius: var(--radius-sm); background: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--navy); transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease; }
.choice span small { font-family: var(--font-body); font-weight: 400; font-size: 0.85rem; color: var(--muted); }
.choice:hover span { border-color: var(--sky-deep); }
.choice input:checked + span { background: var(--navy); border-color: var(--navy); color: #fff; }
.choice input:checked + span small { color: #cfe8f4; }
.choice input:focus-visible + span { outline: 4px solid var(--sun); outline-offset: 2px; }
.choice-row--amounts .choice { flex: 1 1 90px; }
.other-amount { margin-top: 1rem; }
.other-amount label { display: block; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
.money { display: flex; align-items: stretch; max-width: 240px; }
.money > span { display: grid; place-items: center; padding: 0 0.9rem; background: var(--sky-soft); border: 3px solid #b9d3df; border-right: 0; border-radius: var(--radius-sm) 0 0 var(--radius-sm); font-weight: 800; color: var(--navy); }
.money .input { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.giftaid { background: var(--sky-soft); border-radius: var(--radius-sm); padding: 1.2rem 1.3rem !important; }
.giftaid > legend { font-family: var(--font-head); font-weight: 800; color: var(--navy); padding: 0 0.4rem; margin-left: -0.4rem; }
.giftaid-fields { margin-top: 1rem; }
.giftaid-wording { font-size: 0.97rem; background: #fff; border-left: 5px solid var(--sun); padding: 0.8rem 1rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.giftaid-fields[hidden] { display: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.donate-submit { margin-top: 0.4rem; }
.donate-safe { margin: 1rem 0 0; font-size: 0.97rem; color: var(--muted); text-align: center; }
