/* ==========================================================================
   SMCF — Donate page stylesheet.
   Additive stylesheet for /donate.php only, linked after /style.css.
   Does not modify style.css or any file owned by other in-progress
   conversion work.
   ========================================================================== */

.smcf-donate-intro {
  max-width: 760px;
}

/* Static placeholder standing in for the GiveWP donation-form embed
   (see the HTML comment in donate.php — the original scrape does not
   include the live GiveWP widget markup, only a data-driven mount point
   that pulled from a live payment gateway; not something this migration
   fabricates a backend for). */
.smcf-donate-widget-placeholder {
  border: 2px dashed var(--smcf-gray-light);
  border-radius: 6px;
  padding: 40px;
  margin-top: 32px;
  text-align: center;
  background: var(--smcf-white);
}

.smcf-donate-widget-placeholder p {
  margin: 0 0 20px;
  color: var(--smcf-charcoal);
}

.smcf-donate-widget-placeholder .smcf-button {
  opacity: 0.6;
  cursor: not-allowed;
}

.smcf-donate-media img {
  border-radius: 6px;
}

/* ---- Donor FAQ accordion (native <details>/<summary>, no JS needed) ---- */
.smcf-accordion {
  margin-top: 8px;
}

.smcf-accordion details {
  border-bottom: 1px solid var(--smcf-gray-light);
}

.smcf-accordion summary {
  padding: 18px 4px;
  font-family: var(--smcf-font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--smcf-charcoal);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 28px;
}

.smcf-accordion summary::-webkit-details-marker {
  display: none;
}

.smcf-accordion summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 18px;
  font-family: var(--smcf-font-body);
  font-size: 1.1rem;
  color: var(--smcf-gold);
}

.smcf-accordion details[open] summary::after {
  content: '\2212';
}

.smcf-accordion .smcf-accordion-body {
  padding: 0 4px 20px;
  font-size: 0.92rem;
}

.smcf-accordion .smcf-accordion-body ul {
  list-style: disc;
  padding-left: 22px;
  margin: 0 0 16px;
}

.smcf-accordion .smcf-accordion-body li {
  margin-bottom: 6px;
}

.smcf-accordion .smcf-accordion-body hr {
  border: 0;
  border-top: 1px solid var(--smcf-gray-light);
  margin: 16px 0;
}
