/* Donate page */

html.page-donate-root {
  background: var(--nav-solid);
}

body.page-donate {
  background: var(--nav-solid);
}

body.page-donate .site-main {
  padding-top: 0;
}

.donate-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.donate-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.donate-hero__video,
.donate-hero__fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.donate-hero__video {
  pointer-events: none;
}

.donate-hero__fallback {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .donate-hero__video {
    display: none;
  }

  .donate-hero__fallback {
    display: block;
  }
}

.donate-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(8, 18, 14, 0.82) 0%,
    rgba(8, 18, 14, 0.55) 42%,
    rgba(8, 18, 14, 0.35) 68%,
    rgba(8, 18, 14, 0.2) 100%
  );
}

.donate-hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 32rem);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  width: 100%;
  max-width: 78rem;
  margin: 0 auto;
  padding: clamp(5rem, 8vh, 6rem) clamp(1.5rem, 4vw, 2.5rem) clamp(3rem, 6vh, 4rem);
}

.donate-hero__copy {
  max-width: 34rem;
}

.donate-hero__kicker {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.donate-hero__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.donate-hero__deck {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.donate-hero__panel {
  padding: clamp(1.35rem, 2.5vw, 1.75rem);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 28px 64px rgba(8, 18, 14, 0.38);
}

.donate-hero__panel-title {
  margin: 0 0 1.15rem;
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--nav-solid);
}

.donate-hero__widget {
  width: 100%;
  min-height: 28rem;
}

.donate-hero__widget iframe {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  border: 0;
}

@media (max-width: 960px) {
  .donate-hero__layout {
    grid-template-columns: 1fr;
    align-items: start;
    max-width: 32rem;
  }

  .donate-hero__copy {
    max-width: none;
  }

  .donate-hero__shade {
    background: linear-gradient(
      180deg,
      rgba(8, 18, 14, 0.78) 0%,
      rgba(8, 18, 14, 0.62) 55%,
      rgba(8, 18, 14, 0.5) 100%
    );
  }
}
