/* =====================================================
   THE SAVAGE SAINTS
   GIVE PAGE
===================================================== */


/* =====================================================
   PAGE COLOR SYSTEM
===================================================== */

body.give-page{
  --give-forest-950:#10251b;
  --give-forest-900:#17392a;
  --give-forest-800:#24513d;
  --give-forest-700:#39705a;

  --give-cream-50:#fffefb;
  --give-cream-100:#fffaf0;
  --give-cream-200:#f7eddb;
  --give-cream-300:#ebdcc3;

  --give-sage-50:#f4f8f1;
  --give-sage-100:#e7f0e2;
  --give-sage-200:#cfdfc9;

  --give-gold-100:#fff5d8;
  --give-gold-200:#f7e5ad;
  --give-gold-300:#e8ca77;
  --give-gold-400:#d2aa50;
  --give-gold-500:#a87924;

  --give-blush-50:#fff8f5;
  --give-blush-100:#f8e8e1;
  --give-blush-300:#e9b9aa;
  --give-blush-500:#b96f5c;

  --give-blue-50:#f3f8fc;
  --give-blue-100:#e2edf7;
  --give-blue-700:#426c88;

  --give-ink:#1d2a23;
  --give-copy:#526159;
  --give-muted:#718078;

  --give-border:rgba(23,57,42,.13);
  --give-gold-border:rgba(168,121,36,.20);

  --give-shadow:
    0 24px 60px rgba(45,54,44,.10);

  --give-shadow-strong:
    0 34px 82px rgba(45,54,44,.15);

  margin:0;

  background:var(--give-cream-50);
}


/* =====================================================
   GIVE CONTENT RESET
   SCOPED TO MAIN SO HEADER AND FOOTER ARE NOT ALTERED
===================================================== */

.give-page main,
.give-page main *,
.give-page main *::before,
.give-page main *::after{
  box-sizing:border-box;
}

.give-page main{
  overflow-x:clip;

  color:var(--give-ink);

  font-family:Inter,Arial,Helvetica,sans-serif;
  font-size:16px;
  line-height:1.7;
}

.give-page main a,
.give-page main button,
.give-page main input,
.give-page main select,
.give-page main textarea{
  font:inherit;
}

.give-page main h1,
.give-page main h2,
.give-page main h3,
.give-page main p,
.give-page main blockquote{
  overflow-wrap:break-word;
}

.give-page main h1,
.give-page main h2,
.give-page main h3{
  text-wrap:balance;
}


/* =====================================================
   PAGE WIDTHS
===================================================== */

.give-page main .give-hero-inner,
.give-page main .give-section-inner{
  width:min(1240px,calc(100% - 56px));
  margin-inline:auto;
}


/* =====================================================
   SHARED TYPOGRAPHY
===================================================== */

.give-kicker,
.give-section-kicker{
  margin:0 0 14px;

  color:var(--give-gold-500);

  font-size:.72rem;
  font-weight:900;
  line-height:1.4;
  letter-spacing:.19em;
  text-transform:uppercase;
}


/* =====================================================
   SHARED BUTTON
===================================================== */

.give-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-height:54px;
  padding:13px 27px;

  border:1px solid transparent;
  border-radius:4px;

  font-size:.77rem;
  font-weight:900;
  line-height:1.3;
  letter-spacing:.065em;
  text-align:center;
  text-decoration:none;
  text-transform:uppercase;

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.give-button-primary{
  color:#31250e;

  background:
    linear-gradient(
      180deg,
      #fff2bd,
      #e2bc61
    );

  border-color:#dfbd64;

  box-shadow:
    0 14px 30px rgba(168,121,36,.20),
    inset 0 1px 0 rgba(255,255,255,.75);
}

.give-button-primary:hover{
  transform:translateY(-3px);

  box-shadow:
    0 20px 39px rgba(168,121,36,.28),
    inset 0 1px 0 rgba(255,255,255,.80);
}


/* =====================================================
   HERO
===================================================== */

.give-hero{
  position:relative;
  isolation:isolate;
  overflow:hidden;

  background:var(--give-cream-100);
}

.give-hero-background{
  position:absolute;
  z-index:-2;
  inset:0;

  background:
    linear-gradient(
      90deg,
      rgba(255,254,251,.99) 0%,
      rgba(255,251,242,.97) 42%,
      rgba(255,249,237,.87) 68%,
      rgba(255,248,234,.64) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255,255,255,.18),
      rgba(244,229,202,.26)
    ),
    url("/media/hero-image.png")
    center center / cover no-repeat;
}

.give-hero::before{
  content:"";

  position:absolute;
  z-index:-1;
  top:0;
  bottom:0;
  left:0;

  width:54%;

  background:
    radial-gradient(
      circle at 20% 25%,
      rgba(232,202,119,.17),
      transparent 34%
    );

  pointer-events:none;
}

.give-hero::after{
  content:"";

  position:absolute;
  z-index:-1;
  right:-180px;
  bottom:-270px;

  width:560px;
  height:560px;

  border:1px solid rgba(168,121,36,.10);
  border-radius:50%;

  pointer-events:none;
}

.give-hero-inner{
  padding:
    88px
    0
    92px;
}

.give-hero-layout{
  display:grid;
  grid-template-columns:
    minmax(0,1.08fr)
    minmax(340px,.62fr);

  align-items:center;
  gap:clamp(52px,6vw,82px);
}


/* =====================================================
   HERO COPY
===================================================== */

.give-hero-copy{
  width:100%;
  max-width:720px;
}

.give-hero .give-kicker{
  color:#956a20;
}

.give-hero h1{
  max-width:720px;
  margin:0;

  color:var(--give-forest-950);

  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(3.35rem,4.7vw,5.1rem);
  font-weight:700;
  line-height:.93;
  letter-spacing:-.055em;
}

.give-hero h1 span{
  display:block;
  margin-top:11px;

  color:var(--give-forest-700);
}

.give-hero-lead{
  max-width:650px;
  margin:25px 0 0;

  color:var(--give-copy);

  font-size:clamp(.98rem,1.3vw,1.1rem);
  line-height:1.76;
}

.give-hero-actions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:24px;

  margin-top:31px;
}

.give-text-link{
  display:inline-flex;
  align-items:center;

  color:var(--give-forest-800);

  font-size:.75rem;
  font-weight:900;
  letter-spacing:.06em;
  text-decoration:none;
  text-transform:uppercase;
}

.give-text-link span{
  display:inline-block;
  margin-left:8px;

  color:var(--give-gold-500);

  transition:transform .2s ease;
}

.give-text-link:hover span{
  transform:translateY(4px);
}

.give-hero-trust{
  display:flex;
  align-items:center;
  gap:9px;

  margin:19px 0 0;

  color:var(--give-muted);

  font-size:.74rem;
  font-weight:700;
}

.give-hero-trust span{
  color:var(--give-gold-500);
}


/* =====================================================
   HERO WITNESS
===================================================== */

.give-hero-witness{
  position:relative;
  overflow:hidden;

  width:100%;
  max-width:430px;
  justify-self:end;

  padding:
    39px
    34px;

  background:
    linear-gradient(
      145deg,
      rgba(255,254,250,.94),
      rgba(249,232,225,.90)
    );

  border:1px solid rgba(185,111,92,.22);
  border-top:5px solid #c9826f;
  border-radius:4px;

  box-shadow:
    0 27px 66px rgba(71,55,45,.12);

  backdrop-filter:blur(10px);
}

.give-hero-witness::before{
  content:"";

  position:absolute;
  top:16px;
  right:16px;
  bottom:16px;
  left:16px;

  border:1px solid rgba(185,111,92,.10);

  pointer-events:none;
}

.give-hero-witness::after{
  content:"“";

  position:absolute;
  right:20px;
  bottom:-38px;

  color:var(--give-blush-500);

  font-family:Georgia,"Times New Roman",serif;
  font-size:9rem;
  line-height:1;

  opacity:.08;

  pointer-events:none;
}

.give-hero-witness__label{
  position:relative;
  z-index:2;

  margin:0 0 21px;

  color:#9b5f50;

  font-size:.62rem;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.give-hero-witness blockquote{
  position:relative;
  z-index:2;

  margin:0;
  padding:0;

  border:0;
}

.give-hero-witness blockquote p{
  margin:0;

  color:var(--give-forest-900);

  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(1.16rem,1.7vw,1.45rem);
  font-weight:700;
  line-height:1.38;
}

.give-hero-witness blockquote p + p{
  margin-top:17px;
  padding-top:17px;

  border-top:1px solid rgba(185,111,92,.16);
}

.give-hero-witness__closing{
  position:relative;
  z-index:2;

  display:block;

  margin-top:23px;
  padding-top:17px;

  color:#8e594b;

  border-top:1px solid rgba(185,111,92,.20);

  font-size:.67rem;
  font-weight:900;
  letter-spacing:.07em;
  text-transform:uppercase;
}


/* =====================================================
   GIVE NOW SECTION
===================================================== */

.give-now{
  position:relative;
  isolation:isolate;

  padding:
    clamp(82px,9vw,125px)
    0;

  background:
    radial-gradient(
      circle at 8% 14%,
      rgba(207,223,201,.38),
      transparent 26%
    ),
    radial-gradient(
      circle at 92% 86%,
      rgba(239,205,194,.28),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #fffdf8,
      #f8f0e2
    );

  border-top:1px solid rgba(168,121,36,.14);
}


/* =====================================================
   GIVE NOW HEADING
===================================================== */

.give-now-heading{
  max-width:920px;
  margin:
    0
    auto
    58px;

  text-align:center;
}

.give-now-heading h2{
  margin:0;

  color:var(--give-forest-950);

  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(2.8rem,4.6vw,4.65rem);
  font-weight:700;
  line-height:.97;
  letter-spacing:-.048em;
}

.give-now-heading > p:last-child{
  max-width:735px;
  margin:
    21px
    auto
    0;

  color:var(--give-copy);

  font-size:.98rem;
  line-height:1.78;
}


/* =====================================================
   GIVE NOW LAYOUT
===================================================== */

.give-now-layout{
  display:grid;
  grid-template-columns:
    minmax(0,.88fr)
    minmax(500px,1.12fr);

  align-items:start;
  gap:clamp(42px,5vw,68px);
}


/* =====================================================
   IMPACT GUIDE
===================================================== */

.give-impact-guide{
  position:sticky;
  top:110px;
}

.give-impact-guide__heading{
  margin-bottom:23px;
}

.give-impact-guide__heading > p{
  margin:0 0 8px;

  color:var(--give-gold-500);

  font-size:.62rem;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.give-impact-guide__heading h3{
  max-width:530px;
  margin:0;

  color:var(--give-forest-900);

  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(2.15rem,3.3vw,3.25rem);
  font-weight:700;
  line-height:1;
  letter-spacing:-.035em;
}


/* =====================================================
   IMPACT ACCORDION
===================================================== */

.give-impact-item{
  overflow:hidden;

  margin:0;

  background:rgba(255,254,250,.82);

  border:1px solid var(--give-border);
  border-bottom:0;

  transition:
    background-color .24s ease,
    border-color .24s ease,
    box-shadow .24s ease;
}

.give-impact-item:last-child{
  border-bottom:1px solid var(--give-border);
}

.give-impact-item[open]{
  background:var(--give-cream-50);

  border-color:rgba(168,121,36,.25);

  box-shadow:
    0 16px 36px rgba(71,61,43,.08);
}

.give-impact-item summary{
  display:grid;
  grid-template-columns:40px minmax(0,1fr) 30px;
  align-items:center;
  gap:13px;

  min-height:72px;
  padding:14px 17px;

  color:var(--give-forest-900);

  cursor:pointer;
  list-style:none;

  transition:background-color .2s ease;
}

.give-impact-item summary::-webkit-details-marker{
  display:none;
}

.give-impact-item summary:hover{
  background:rgba(231,240,226,.55);
}

.give-impact-item__number{
  display:grid;
  place-items:center;

  width:38px;
  height:38px;

  color:var(--give-forest-700);
  background:var(--give-sage-100);

  border:1px solid rgba(57,112,90,.18);
  border-radius:50%;

  font-size:.57rem;
  font-weight:900;
  letter-spacing:.07em;
}

.give-impact-item:nth-of-type(2)
.give-impact-item__number{
  color:#9a5e4e;
  background:var(--give-blush-100);
  border-color:rgba(185,111,92,.18);
}

.give-impact-item:nth-of-type(3)
.give-impact-item__number{
  color:var(--give-blue-700);
  background:var(--give-blue-100);
  border-color:rgba(66,108,136,.17);
}

.give-impact-item:nth-of-type(4)
.give-impact-item__number{
  color:#92671e;
  background:var(--give-gold-100);
  border-color:rgba(168,121,36,.18);
}

.give-impact-item__title{
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.05rem;
  font-weight:700;
  line-height:1.25;
}

.give-impact-item__toggle{
  display:grid;
  place-items:center;

  width:29px;
  height:29px;

  color:var(--give-forest-700);
  background:var(--give-sage-100);

  border:1px solid rgba(57,112,90,.16);
  border-radius:50%;

  font-size:.95rem;
  font-weight:700;

  transition:
    color .2s ease,
    background-color .2s ease,
    transform .25s ease;
}

.give-impact-item[open]
.give-impact-item__toggle{
  color:#ffffff;
  background:var(--give-forest-700);

  transform:rotate(45deg);
}

.give-impact-item__content{
  padding:
    0
    22px
    22px
    70px;
}

.give-impact-item__content p{
  margin:0;

  color:var(--give-copy);

  font-size:.81rem;
  line-height:1.68;
}

.give-impact-item__content strong{
  display:block;

  margin-top:12px;
  padding-left:13px;

  color:var(--give-forest-800);

  border-left:3px solid var(--give-gold-300);

  font-family:Georgia,"Times New Roman",serif;
  font-size:.96rem;
  line-height:1.48;
}


/* =====================================================
   GIVING CHOICE PANEL
===================================================== */

.give-choice-panel{
  overflow:hidden;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.95),
      rgba(255,250,240,.97)
    );

  border:1px solid rgba(168,121,36,.16);
  border-top:5px solid var(--give-gold-300);
  border-radius:5px;

  box-shadow:var(--give-shadow-strong);
}

.give-choice-panel__heading{
  padding:
    34px
    35px
    28px;

  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(232,202,119,.20),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #fffdf8,
      #fff7e8
    );

  border-bottom:1px solid rgba(168,121,36,.15);
}

.give-choice-panel__heading h2{
  margin:0;

  color:var(--give-forest-950);

  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(2.15rem,3.2vw,3.05rem);
  font-weight:700;
  line-height:.99;
  letter-spacing:-.04em;
}

.give-choice-panel__heading > p:last-child{
  max-width:600px;
  margin:15px 0 0;

  color:var(--give-copy);

  font-size:.85rem;
  line-height:1.67;
}


/* =====================================================
   GIVING CHOICE GRID
===================================================== */

.give-choice-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;

  padding:16px;
}


/* =====================================================
   SHARED GIVING CHOICE
===================================================== */

.give-choice{
  position:relative;
  isolation:isolate;
  overflow:hidden;

  display:flex;
  flex-direction:column;

  min-width:0;
  min-height:410px;
  padding:
    24px
    22px
    22px;

  border:1px solid var(--give-border);
  border-top:4px solid var(--give-forest-700);
  border-radius:3px;

  transition:
    transform .24s ease,
    border-color .24s ease,
    box-shadow .24s ease;
}

.give-choice::before{
  content:"";

  position:absolute;
  z-index:-1;
  right:-90px;
  bottom:-120px;

  width:250px;
  height:250px;

  border-radius:50%;

  pointer-events:none;
}

.give-choice:hover{
  transform:translateY(-5px);

  box-shadow:
    0 21px 42px rgba(50,62,51,.12);
}

.give-choice--cashapp{
  background:
    linear-gradient(
      150deg,
      #fbfff9,
      #e7f1e3
    );

  border-color:rgba(57,112,90,.20);
  border-top-color:#4d8a6e;
}

.give-choice--cashapp::before{
  background:
    radial-gradient(
      circle,
      rgba(77,138,110,.16),
      transparent 68%
    );
}

.give-choice--zeffy{
  background:
    linear-gradient(
      150deg,
      #fbfdff,
      #e7f0f8
    );

  border-color:rgba(66,108,136,.18);
  border-top-color:#729bb9;
}

.give-choice--zeffy::before{
  background:
    radial-gradient(
      circle,
      rgba(114,155,185,.17),
      transparent 68%
    );
}


/* =====================================================
   CHOICE TOPLINE
===================================================== */

.give-choice__topline{
  display:flex;
  align-items:center;
  gap:10px;

  margin-bottom:25px;
}

.give-choice__mark{
  display:grid;
  place-items:center;

  width:41px;
  height:41px;
  flex:0 0 41px;

  color:#ffffff;
  background:var(--give-forest-700);

  border-radius:50%;

  font-family:Georgia,"Times New Roman",serif;
  font-size:1rem;
  font-weight:700;

  box-shadow:
    0 10px 22px rgba(39,80,61,.18);
}

.give-choice--zeffy
.give-choice__mark{
  background:var(--give-blue-700);
}

.give-choice__topline p{
  margin:0;

  color:var(--give-muted);

  font-size:.59rem;
  font-weight:900;
  letter-spacing:.15em;
  text-transform:uppercase;
}


/* =====================================================
   CHOICE COPY
===================================================== */

.give-choice h3{
  margin:0 0 12px;

  color:var(--give-forest-900);

  font-family:Georgia,"Times New Roman",serif;
  font-size:2.15rem;
  font-weight:700;
  line-height:1;
}

.give-choice--zeffy h3{
  color:#315a74;
}

.give-choice > p{
  margin:0;

  color:var(--give-copy);

  font-size:.79rem;
  line-height:1.63;
}


/* =====================================================
   CASH APP ACCOUNT
===================================================== */

.give-choice__account{
  margin-top:24px;
  padding:17px;

  background:rgba(255,255,255,.68);

  border:1px solid rgba(57,112,90,.15);
}

.give-choice__account > span{
  display:block;

  color:var(--give-muted);

  font-size:.56rem;
  font-weight:900;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.give-choice__account strong{
  display:block;

  margin-top:4px;

  color:var(--give-forest-800);

  font-family:Georgia,"Times New Roman",serif;
  font-size:1.28rem;
  line-height:1.2;
}

.give-choice__copy{
  min-height:34px;
  margin-top:12px;
  padding:7px 10px;

  color:var(--give-forest-700);
  background:var(--give-sage-50);

  border:1px solid rgba(57,112,90,.20);
  border-radius:3px;

  font-size:.61rem;
  font-weight:900;

  cursor:pointer;

  transition:
    color .2s ease,
    background-color .2s ease,
    border-color .2s ease;
}

.give-choice__copy:hover,
.give-choice__copy.is-copied{
  color:#ffffff;
  background:var(--give-forest-700);
  border-color:var(--give-forest-700);
}


/* =====================================================
   ZEFFY FEATURES
===================================================== */

.give-choice__features{
  display:grid;
  gap:7px;

  margin-top:24px;
}

.give-choice__features span{
  position:relative;

  padding:
    9px
    11px
    9px
    30px;

  color:#476476;
  background:rgba(255,255,255,.63);

  border:1px solid rgba(66,108,136,.12);

  font-size:.69rem;
  font-weight:800;
}

.give-choice__features span::before{
  content:"✓";

  position:absolute;
  top:8px;
  left:12px;

  color:var(--give-blue-700);

  font-weight:900;
}


/* =====================================================
   CHOICE BUTTON
===================================================== */

.give-choice__button{
  display:flex;
  align-items:center;
  justify-content:center;

  min-height:47px;
  margin-top:auto;
  padding:10px 14px;

  color:#ffffff;
  background:var(--give-forest-700);

  border:1px solid var(--give-forest-700);
  border-radius:3px;

  font-size:.67rem;
  font-weight:900;
  line-height:1.3;
  letter-spacing:.04em;
  text-align:center;
  text-decoration:none;
  text-transform:uppercase;

  box-shadow:
    0 11px 23px rgba(39,80,61,.17);

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.give-choice--zeffy
.give-choice__button{
  background:var(--give-blue-700);
  border-color:var(--give-blue-700);
}

.give-choice__button:hover{
  transform:translateY(-2px);

  box-shadow:
    0 16px 30px rgba(39,80,61,.23);
}


/* =====================================================
   TRUST NOTE
===================================================== */

.give-choice-panel__trust{
  display:flex;
  align-items:flex-start;
  justify-content:center;
  gap:9px;

  padding:
    16px
    24px;

  color:var(--give-muted);
  background:var(--give-cream-100);

  border-top:1px solid rgba(168,121,36,.14);

  font-size:.69rem;
  line-height:1.52;
  text-align:center;
}

.give-choice-panel__trust span{
  color:var(--give-forest-700);
  font-weight:900;
}

.give-choice-panel__trust p{
  margin:0;
}


/* =====================================================
   GIVING PRINCIPLE
===================================================== */

.give-principle{
  position:relative;
  overflow:hidden;

  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:center;
  gap:42px;

  margin-top:65px;
  padding:
    35px
    39px;

  background:
    radial-gradient(
      circle at 94% 15%,
      rgba(239,205,194,.38),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      var(--give-blush-50),
      var(--give-cream-100)
    );

  border:1px solid rgba(185,111,92,.18);
  border-left:5px solid #c9826f;
}

.give-principle::after{
  content:"“";

  position:absolute;
  right:18px;
  bottom:-47px;

  color:var(--give-blush-500);

  font-family:Georgia,"Times New Roman",serif;
  font-size:9rem;
  line-height:1;

  opacity:.07;

  pointer-events:none;
}

.give-principle blockquote{
  position:relative;
  z-index:2;

  max-width:820px;
  margin:0;
  padding:0;

  border:0;
}

.give-principle blockquote p{
  margin:0;

  color:var(--give-forest-900);

  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(1.15rem,1.8vw,1.5rem);
  font-style:italic;
  line-height:1.45;
}

.give-principle blockquote cite{
  display:block;

  margin-top:9px;

  color:#9a5f50;

  font-size:.61rem;
  font-style:normal;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.give-principle > p{
  position:relative;
  z-index:2;

  max-width:240px;
  margin:0;
  padding-left:21px;

  color:#855e53;

  border-left:1px solid rgba(185,111,92,.28);

  font-size:.72rem;
  font-weight:900;
  line-height:1.55;
  text-align:right;
  text-transform:uppercase;
}


/* =====================================================
   ACCESSIBILITY
===================================================== */

.give-page main a:focus-visible,
.give-page main button:focus-visible,
.give-page main summary:focus-visible{
  outline:3px solid var(--give-gold-300);
  outline-offset:4px;
}


/* =====================================================
   LARGE TABLET
===================================================== */

@media(max-width:1080px){

  .give-hero-layout{
    grid-template-columns:
      minmax(0,1fr)
      minmax(310px,.55fr);

    gap:42px;
  }

  .give-now-layout{
    grid-template-columns:1fr;
  }

  .give-impact-guide{
    position:static;

    width:min(100%,820px);
    margin-inline:auto;
  }

  .give-choice-panel{
    width:min(100%,850px);
    margin-inline:auto;
  }

}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:820px){

  .give-page main .give-hero-inner,
  .give-page main .give-section-inner{
    width:min(100% - 36px,1240px);
  }

  .give-hero-background{
    background:
      linear-gradient(
        180deg,
        rgba(255,253,247,.94),
        rgba(255,249,237,.97)
      ),
      url("/media/hero-image.png")
      64% center / cover no-repeat;
  }

  .give-hero-inner{
    padding:
      75px
      0;
  }

  .give-hero-layout{
    grid-template-columns:1fr;
  }

  .give-hero-copy{
    max-width:700px;
  }

  .give-hero-witness{
    max-width:620px;
    justify-self:start;
  }

  .give-now-heading{
    margin-bottom:49px;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:640px){

  .give-page main .give-hero-inner,
  .give-page main .give-section-inner{
    width:min(100% - 28px,1240px);
  }

  .give-hero-inner{
    padding:
      66px
      0;
  }

  .give-hero h1{
    font-size:
      clamp(
        3rem,
        13vw,
        4.15rem
      );
  }

  .give-hero-lead{
    font-size:.94rem;
  }

  .give-hero-actions{
    align-items:stretch;
    flex-direction:column;
    gap:17px;
  }

  .give-button{
    width:100%;
  }

  .give-text-link{
    justify-content:center;
  }

  .give-hero-trust{
    align-items:flex-start;
  }

  .give-hero-witness{
    padding:
      32px
      24px;
  }

  .give-now{
    padding:
      72px
      0;
  }

  .give-now-heading{
    margin-bottom:40px;

    text-align:left;
  }

  .give-now-heading h2{
    font-size:
      clamp(
        2.7rem,
        12vw,
        3.8rem
      );
  }

  .give-now-heading > p:last-child{
    margin-left:0;
  }

  .give-impact-guide__heading h3{
    font-size:2.35rem;
  }

  .give-impact-item summary{
    grid-template-columns:36px minmax(0,1fr) 28px;
    gap:10px;

    min-height:69px;
    padding:
      12px
      13px;
  }

  .give-impact-item__number{
    width:35px;
    height:35px;
  }

  .give-impact-item__title{
    font-size:.96rem;
  }

  .give-impact-item__toggle{
    width:27px;
    height:27px;
  }

  .give-impact-item__content{
    padding:
      0
      17px
      20px;
  }

  .give-choice-panel__heading{
    padding:
      29px
      22px
      24px;
  }

  .give-choice-panel__heading h2{
    font-size:2.45rem;
  }

  .give-choice-grid{
    grid-template-columns:1fr;

    padding:12px;
  }

  .give-choice{
    min-height:390px;
    padding:
      23px
      20px;
  }

  .give-choice-panel__trust{
    padding:
      16px
      19px;

    text-align:left;
  }

  .give-principle{
    grid-template-columns:1fr;
    gap:22px;

    margin-top:48px;
    padding:
      29px
      23px;
  }

  .give-principle > p{
    max-width:none;
    padding:
      18px
      0
      0;

    border-top:1px solid rgba(185,111,92,.24);
    border-left:0;

    text-align:left;
  }

}


/* =====================================================
   NARROW MOBILE
===================================================== */

@media(max-width:390px){

  .give-hero h1{
    font-size:2.85rem;
  }

  .give-hero-witness blockquote p{
    font-size:1.12rem;
  }

  .give-choice-panel__heading h2{
    font-size:2.2rem;
  }

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media(prefers-reduced-motion:reduce){

  html{
    scroll-behavior:auto;
  }

  .give-button,
  .give-text-link span,
  .give-impact-item,
  .give-impact-item summary,
  .give-impact-item__toggle,
  .give-choice,
  .give-choice__copy,
  .give-choice__button{
    transition:none;
  }

  .give-button:hover,
  .give-text-link:hover span,
  .give-choice:hover,
  .give-choice__button:hover{
    transform:none;
  }

}