/* ============================================================
   VOLUNTEER PAGE
   Inherits about.css for hero + section structure.
   Adds the Notion form embed frame.
   ============================================================ */

.volunteer-hero-grid {
  grid-template-columns: 1fr;
  max-width: 62ch;
}

.volunteer-form-section {
  padding-top: 3rem;
  padding-bottom: 3.5rem;
}

.volunteer-form-frame {
  max-width: 820px;
  margin: 0 auto;
}

.volunteer-form-kicker {
  color: #a8c5e8;
  margin-bottom: 1.25rem;
  text-align: center;
}

/* The embed sits on a bone card so the white Notion form
   reads as intentional, not like a broken dark page. */
.volunteer-form-embed {
  background: var(--bone);
  border: 1px solid rgba(168, 197, 232, 0.25);
  border-radius: 3px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.volunteer-form-embed iframe {
  display: block;
  width: 100%;
  height: 1400px;
  border: 0;
  background: var(--bone);
}

.volunteer-form-fallback {
  margin-top: 1.25rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: var(--text-body-sm);
  color: var(--faded-steel);
}

.volunteer-form-fallback a {
  color: var(--plum-bright);
  border-bottom: 1px solid rgba(169, 107, 151, 0.4);
}

.volunteer-form-fallback a:hover {
  color: var(--plum-glow);
  border-bottom-color: var(--plum-glow);
}

@media (max-width: 640px) {
  .volunteer-form-embed iframe {
    height: 1650px;
  }
}
