/* =========================================
   Phoenix Family – Custom v2
   Clean standard system for inside pages
   ========================================= */

/* ==============================
   BRAND VARIABLES
============================== */
:root{
  --pf-accent: #bb1654;
  --pf-border: #e6e6e6;
  --pf-soft: #f8f8f8;
  --pf-radius: 10px;
  --pf-text: #222;
  --pf-muted: #555;
}

/* ==============================
   BUTTON (Shared)
   Use: class="btn btn-pf-red"
============================== */
.btn-pf-red{
  background: var(--pf-accent);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 600;
}

.btn-pf-red:hover,
.btn-pf-red:focus{
  color: #ffffff;
  opacity: 0.95;
}
/* Secondary button */
.btn-pf-outline{
  background: #ffffff;
  color: var(--pf-accent);
  border: 2px solid var(--pf-accent);
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 600;
}

.btn-pf-outline:hover,
.btn-pf-outline:focus{
  background: var(--pf-accent);
  color: #ffffff;
  text-decoration: none;
}

/* Neutral button */
.btn-pf-neutral{
  background: #f2f2f2;
  color: #000;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 600;
}

.btn-pf-neutral:hover,
.btn-pf-neutral:focus{
  background: #e6e6e6;
  color: #000;
}

/* ==============================
   INSIDE PAGE TEMPLATE
============================== */

.pf-vol-container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

.pf-vol-section{
  padding: 70px 0;
}

.pf-vol-section--tight{
  padding: 45px 0;
}

.pf-vol-section--light{
  background: var(--pf-soft);
}

.pf-vol-hero{
  padding: 70px 0 50px;
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.pf-vol-hero h1{
  margin: 0 0 12px;
  font-weight: 700;
  color: var(--pf-text);
}

.pf-vol-hero .pf-vol-lead{
  font-size: 18px;
  line-height: 1.55;
  margin: 0 0 18px;
  max-width: 820px;
  color: var(--pf-muted);
}

.pf-vol-hero .pf-vol-meta{
  font-size: 14px;
  color: #666;
  margin: 0 0 22px;
}

.pf-vol-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pf-vol-box{
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--pf-radius);
  padding: 24px;
}

.pf-vol-box--wide{
  padding: 0;
  overflow: hidden;
}

.pf-vol-form-wrap{
  max-width: 980px;
  margin: 0 auto;
}

.pf-vol-card-col { margin-bottom: 30px; }

/* Mobile adjustments */
@media (max-width: 768px){
  .pf-vol-hero{
    padding: 50px 0 35px;
  }
  .pf-vol-actions{
    flex-direction: column;
    align-items: stretch;
  }
}

/* ==============================
   HERO (Reusable image + overlay)
============================== */

.hero--image{
  position: relative;
  width: 100%;
}

.hero--image .hero-img{
  width: 100%;
  height: auto;
  display: block;
}

.hero--with-overlay .hero-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 0;
}

.hero--with-overlay .hero-box{
  background: rgba(0, 0, 0, 0.82);
  color: #ffffff;
  padding: 32px 36px;
  max-width: 680px;
  margin-left: 8%;
}

.hero--with-overlay .hero-box h1{
  margin: 0 0 12px;
  font-weight: 700;
  color: #ffffff;
}

.hero--with-overlay .hero-box p{
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
}

.hero--with-overlay .hero-cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 768px){
  .hero--with-overlay .hero-overlay{
    position: static;
    padding: 0;
  }
  .hero--with-overlay .hero-box{
    margin: 0;
    max-width: none;
    border-radius: 0;
  }
}

/* ==============================
   VOLUNTEER CARDS
============================== */

.pf-vol-cards{
  margin-top: 30px;
}

.pf-vol-cards .row > [class*="col-"]{
  display: flex;
}

.pf-vol-card{
  background: var(--pf-soft);
  border: 1px solid var(--pf-border);
  border-radius: var(--pf-radius);
  padding: 28px 24px;
  height: 100%;
  text-align: left;
}

.pf-vol-card .pf-vol-icon{
  font-size: 26px;
  margin-bottom: 12px;
  color: var(--pf-accent);
}

.pf-vol-card h3{
  margin: 0 0 10px;
  font-weight: 700;
}

.pf-vol-card p{
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

/* ==============================
   FULL-WIDTH PHOTO BREAK
============================== */

.pf-vol-photo-break{
  position: relative;
}

.pf-vol-photo-break img{
  width: 100%;
  height: auto;
  display: block;
}

.pf-vol-photo-break::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,1) 100%
  );
}

/* ==============================
   MAILCHIMP FOOTER FIXES
============================== */

#footer .newsletter{
  padding: 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

#footer #mc_embed_signup,
#footer #mc_embed_signup form,
#footer #mc_embed_signup_scroll{
  max-width: 100% !important;
  width: 100% !important;
}

#footer #mc_embed_signup_footer button[type="submit"]{
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  border-radius: 10px;
  margin-top: 6px;
  background-color: #E37A33; /* PF orange */
  border: none;
  color: #ffffff;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

#footer #mc_embed_signup_footer button[type="submit"]:hover{
  background-color: #c86424; /* slightly darker orange */
}


/* ==============================
   Volunteer page helpers (added)
   ============================== */

/* Section typography */
.pf-vol-section__title{
  text-align: center;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--pf-text);
}

.pf-vol-section__content{
  max-width: 850px;
  margin: 0 auto;
}

.pf-vol-body{
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 18px;
  color: var(--pf-text);
}

/* Centered action row */
.pf-vol-actions--center{
  justify-content: center;
}

/* Button link + focus styles */
.btn-pf-red,
.btn-pf-outline,
.btn-pf-neutral{
  display: inline-block;
  text-decoration: none;
}

.btn-pf-red:focus-visible,
.btn-pf-outline:focus-visible,
.btn-pf-neutral:focus-visible{
  outline: 3px solid rgba(187, 22, 84, 0.35);
  outline-offset: 2px;
}

/* Signup component (was pf-home-signup) */
.pf-vol-signup{
  padding: 70px 0;
  background: var(--pf-soft);
}

.pf-vol-signup__inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

@media (max-width: 991px){
  .pf-vol-signup__inner{
    grid-template-columns: 1fr;
  }
}

.pf-vol-signup__icon{
  font-size: 28px;
  line-height: 1;
  margin: 0 0 10px;
}

.pf-vol-signup__title{
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--pf-text);
}

.pf-vol-signup__text{
  margin: 0 0 10px;
  color: var(--pf-muted);
  line-height: 1.55;
}

.pf-vol-signup__text--spaced{
  margin-top: 10px;
}

.pf-vol-signup__form-wrap{
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}

.pf-vol-signup__form{
  display: grid;
  gap: 10px;
}

.pf-vol-signup__form input[type="text"],
.pf-vol-signup__form input[type="email"]{
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.18);
  font-size: 16px;
  box-sizing: border-box;
}

.pf-vol-signup__form input:focus{
  outline: none;
  border-color: rgba(187, 22, 84, 0.65);
  box-shadow: 0 0 0 3px rgba(187, 22, 84, 0.15);
}

.pf-mc-honeypot{
  position: absolute;
  left: -5000px;
}

/* Footer Mailchimp (updated selectors for current footer markup) */
#footer #mc_embed_signup_footer,
#footer #mc_embed_signup_footer form,
#footer #mc_embed_signup_footer .mc-inline{
  max-width: 100% !important;
  width: 100% !important;
}

#footer #mc_embed_signup_footer input[type="email"]{
  width: 100% !important;
  box-sizing: border-box;
  padding: 10px 12px;
  font-size: 16px;
  border-radius: 10px;
  background: rgba(255,255,255,0.95);
  color: #111 !important;
}

#footer #mc_embed_signup_footer button[type="submit"]{
  width: 100% !important;
  padding: 12px 14px;
  font-size: 16px;
  border-radius: 10px;
  margin-top: 6px;
}
/* =========================
   VOLUNTEER PAGE (BOLD LAYOUT)
   Paste at bottom of customv2.css
   ========================= */

.pf-vol-center{ text-align: center; }

.pf-vol-h2{
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 14px;
  color: #222222;
}

.pf-vol-h3{
  font-size: 20px;
  margin: 0 0 10px;
  color: #222222;
}

.pf-vol-lead{
  font-size: 18px;
  line-height: 1.55;
  margin: 0 auto 26px;
  max-width: 760px;
  color: #444444;
}

.pf-vol-p{
  font-size: 16.5px;
  line-height: 1.7;
  margin: 0 0 14px;
  color: #333;
}

/* HERO */
.pf-vol-hero{
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
}

.pf-vol-hero__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pf-vol-hero__overlay{
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 84px 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.36) 55%, rgba(0,0,0,0.10) 100%);
}

.hero-content {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px 50px;
  border-radius: 16px;
  max-width: 600px;
}

.hero h1 {
  color: #ffffff;
}

.hero p {
  color: rgba(255,255,255,0.95);
}

.pf-vol-hero__title{
  font-size: 48px;
  line-height: 1.05;
  margin: 0 0 14px;
  color: #ffffff;
}

.pf-vol-hero__subhead{
  font-size: 18px;
  line-height: 1.55;
  margin: 0 0 22px;
  color: rgba(255,255,255,0.92);
  max-width: 640px;
}

.pf-vol-hero__cta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.pf-vol-hero__micro{
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.86);
}

.pf-vol-hero__micro a{
  color: #fff;
  text-decoration: underline;
}

/* FULL WIDTH BANDS */
.pf-vol-band{
  padding: 78px 0;
}

.pf-vol-band--anchor{
  background: rgba(187,22,84,0.07);
}

.pf-vol-anchor{
  font-size: 40px;
  line-height: 1.15;
  margin: 0;
  color: #1f1f1f;
  max-width: 980px;
}

.pf-vol-band--quote{
  background: #111;
  color: #fff;
}

.pf-vol-quote{
  color: #fff;
  font-size: 40px;
  line-height: 1.12;
  margin: 0 0 18px;
  max-width: 900px;
}

.pf-vol-band__cta{ margin-top: 10px; }

.pf-vol-band--soft{
  background: #ffffff;
}

/* SPLIT SECTIONS */
.pf-vol-split{
  padding: 88px 0;
}

.pf-vol-split__grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.pf-vol-split__media img{
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}

.pf-vol-split__content{
  max-width: 620px;
}

.pf-vol-split--reverse .pf-vol-split__grid{
  grid-template-columns: 0.95fr 1.05fr;
}

.pf-vol-split--reverse .pf-vol-split__media{
  order: 2;
}

.pf-vol-split--reverse .pf-vol-split__content{
  order: 1;
}

/* STEPS */
.pf-vol-steps{
  padding: 88px 0;
}

.pf-vol-steps__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}



.pf-vol-step{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
}
.pf-vol-steps .pf-vol-step {
  background: #ffffff;
}

.pf-vol-steps .pf-vol-step h3,
.pf-vol-steps .pf-vol-step p {
  color: #333333 !important;
}

.pf-vol-steps .pf-vol-step__icon {
  background: rgba(187, 22, 84, 0.12);
  color: #bb1654;
}

.pf-vol-step__icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(187,22,84,0.10);
  color: #bb1654;
  font-size: 18px;
  margin-bottom: 12px;
}

.pf-vol-steps,
.pf-vol-steps .pf-vol-h2,
.pf-vol-steps .pf-vol-lead {
  color: #ffffff;
}

/* BEFORE YOU APPLY CARD */
.pf-vol-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
  max-width: 980px;
}

/* COMPARE */
.pf-vol-compare{
  padding: 88px 0;
}

.pf-vol-compare__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 12px;
}

.pf-vol-compare__item{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
}

.pf-vol-compare__label{
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(227,122,51,0.14);
  color: #6a3a10;
  margin-bottom: 10px;
}

/* CTA BAND */
.pf-vol-cta{
  padding: 70px 0;
  background: #bb1654;
  color: #fff;
}

.pf-vol-cta__inner{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.pf-vol-cta__title{
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.15;
  color: #fff;
}

.pf-vol-cta__text{
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-size: 16.5px;
  line-height: 1.6;
  max-width: 640px;
}

.pf-vol-cta__buttons{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

/* CONTACT */
.pf-vol-contact{
  padding: 88px 0;
}

.pf-vol-contact__grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
}

.pf-vol-contact__name{
  margin-top: 14px;
}

.pf-vol-contact__card{
  background: #111;
  color: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.18);
}

.pf-vol-contact__cardTitle{
  font-size: 14px;
  letter-spacing: 0.02em;
  opacity: 0.9;
  margin-bottom: 10px;
}

.pf-vol-contact__card .pf-vol-p{
  color: rgba(255,255,255,0.90);
}

.pf-vol-contact__cardBtn{
  margin-top: 6px;
}

/* BUTTON SIZES (in case theme overrides) */
.btn-lg{
  padding: 14px 20px;
  font-size: 16px;
  border-radius: 12px;
}

/* RESPONSIVE */
@media (max-width: 991px){
  .pf-vol-hero__title{ font-size: 40px; }
  .pf-vol-anchor, .pf-vol-quote{ font-size: 34px; }

  .pf-vol-split__grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .pf-vol-split--reverse .pf-vol-split__media{ order: 1; }
  .pf-vol-split--reverse .pf-vol-split__content{ order: 2; }

  .pf-vol-steps__grid{
    grid-template-columns: 1fr;
  }

  .pf-vol-compare__grid{
    grid-template-columns: 1fr;
  }

  .pf-vol-cta__inner{
    grid-template-columns: 1fr;
  }

  .pf-vol-cta__buttons{
    justify-content: flex-start;
  }

  .pf-vol-contact__grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px){
  .pf-vol-hero__overlay{ padding: 72px 0; }
  .pf-vol-hero{ min-height: 520px; }
  .pf-vol-hero__title{ font-size: 34px; }
  .pf-vol-anchor, .pf-vol-quote{ font-size: 28px; }
	
}/* Force hero title to be white */
.pf-vol-hero__title,
.pf-vol-hero h1,
.hero .hero-content h1 {
  color: #ffffff !important;
  opacity: 1 !important;
}

/* BEFORE YOU APPLY */

.before-apply {
  max-width: 880px;              
  margin: 100px auto;           
  padding: 60px 70px;           
  background-color: #f2f2f2;    
  border-radius: 18px;
}

.before-apply h2 {
  font-size: 34px;
  margin-bottom: 24px;
  color: #222222;
}

.before-apply p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 18px;
  color: #333333;
}
.before-apply p + p {
  margin-top: 14px;
}

.before-apply::before {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #bb1654; /* PF red */
  margin-bottom: 20px;
  border-radius: 2px;
}

.before-apply { max-width: 980px; margin: 90px auto; padding: 60px; border-radius: 18px; background: rgba(0,0,0,0.035); }
.before-apply h2 { margin: 0 0 22px; font-size: 34px; }

.before-apply-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}

.before-item{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.05);
}

.before-item h3{
  margin: 0 0 8px;
  font-size: 18px;
  color: #222;
}

.before-item p{
  margin: 0;
  line-height: 1.65;
  color: #333;
}

@media (max-width: 900px){
  .before-apply-grid{ grid-template-columns: 1fr; }
}

.pf-photo-band{ padding: 90px 0; background: #fff; }
.pf-photo-band-inner{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: center;
  padding: 0 15px;
}
.pf-photo-band-inner img{
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}
.pf-photo-band-copy{
  background: rgba(187,22,84,0.06);
  border: 1px solid rgba(187,22,84,0.12);
  border-radius: 18px;
  padding: 26px 24px;
}
.pf-photo-band-copy h2{ margin: 0 0 10px; font-size: 30px; color: #222; }
.pf-photo-band-copy p{ margin: 0 0 16px; line-height: 1.65; color: #333; }

@media (max-width: 900px){
  .pf-photo-band-inner{ grid-template-columns: 1fr; }
}

.pf-vol-compare{ background: #faf9f7; }
.pf-vol-contact{ background: #ffffff; }
.pf-vol-steps{ 
  background: #bb1654; 
  color: #ffffff; }
.pf-vol-steps h2,
.pf-vol-steps h3,
.pf-vol-steps p {
  color: #ffffff;
}

/* Secondary page header */
.pf-secondary-hero{
  padding: 120px 20px 70px;
  background: #fff; 
}

.pf-secondary-hero h1{
  text-align: center;
  margin: 0 0 22px;
}


.pf-hero-intro{
  max-width: 760px;
  margin: 0 auto 26px;
  font-size: 18px;
  line-height: 1.75;
  color: #333;
  text-align: left;
}

.pf-hero-intro p{
  margin: 0 0 16px;
}

/* Buttons: center the row */
.pf-cal-actions{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

/* Policy area separation */
.pf-vol-section--light{
  background: #f7f7f7;
  padding: 70px 20px;
}

.pf-vol-policy{
  max-width: 980px;
  margin: 0 auto 26px;
  background: #fff;
  border-radius: 10px;
  padding: 26px 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.pf-vol-policy p{
  margin: 0 0 14px;
  line-height: 1.65;
}

.pf-divider {
  max-width: 980px;
  margin: 0 auto 20px;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}
/* Remove boxed feel */
.pf-vol-calendar-full {
  padding: 30px 0 0 0;
}

/* Switcher centered but not boxed */
.vol-cal-switcher {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

/* full-width responsive calendar */
.pf-cal-embed-full {
  width: 100%;
  height: 80vh;
  min-height: 600px; 
  border: 0;
  display: block;
}

.pf-fullbleed{
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.pf-cal-embed-full{
  width: 100% !important;
  max-width: 100% !important;
  display: block;
  border: 0;
  height: 80vh;
  min-height: 650px;
}

/* ========================= FULL-BLEED BANNER HERO Use when the image already has text/design baked in. ========================= */
.pf-banner-hero{
  position: relative;
  width: 100%;
  overflow: hidden;
}

.pf-banner-hero img{
  width: 100%;
  height: auto;
  display: block;
}
/* ========================= HIGHLIGHT BAND A clean callout row under a hero/banner. ========================= */
.pf-highlight-band{
  padding: 44px 0;
  background: rgba(187,22,84,0.08);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.pf-highlight-band__meta{
  margin: 0 0 14px;
  font-size: 16px;
  color: #222;
}

/* Make outline button work anywhere inside highlight band */
.pf-highlight-band .btn-pf-outline{
  background: #fff;
  color: var(--pf-accent);
  border-color: var(--pf-accent);
}


/* =======CAMPAIGN DEADLINE BADGE ====================== */
.pf-deadline-badge{
  display: inline-block;
  margin-top: 18px;
  padding: 10px 18px;
  background: var(--pf-accent); 
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
}

.pf-campaign-top{
  background: rgba(187,22,84,0.06);
  padding: 44px 0 0;
}

.pf-campaign-top h2{
  margin: 0 0 10px;
  font-weight: 800;
}

.pf-campaign-top p{
  max-width: 900px;
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.6;
  color: #333;
}

.pf-campaign-actions{
  margin-bottom: 22px;
}

.btn-pf-dark{
  background: #333333;
  color: #fff;
  border: none;
}

.btn-pf-dark:hover,
.btn-pf-dark:focus{
  background: #222;
  color: #fff;
}

.pf-deadline-bar{
  background: #bb1654;
  color: #fff;
  text-align: center;
  padding: 14px 12px;
  font-size: 17px;
  font-weight: 700;
}

/* ========== CAMPAIGN BRIDGE  Sits directly under a full-width banner hero.============== */
.pf-campaign-bridge{
  background:#fff;
  padding: 46px 0 0;
}

.pf-campaign-bridge__headline{
  margin: 0 0 14px;
  font-weight: 800;
  color: #333333;
}

.pf-campaign-bridge__copy{
  max-width: 920px;
}

.pf-campaign-bridge__copy p{
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.6;
  color: #333333;
}

.pf-campaign-bridge__actions{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Dark button utility (reusable) */
.btn-pf-dark{
  background: #333333;
  color: #ffffff;
  border: none;
}

.btn-pf-dark:hover,
.btn-pf-dark:focus{
  background: #222222;
  color: #ffffff;
}

/* Full-width deadline bar (reusable) */
.pf-deadline-bar{
  margin-top: 26px;
  background: #bb1654; /* PF red */
  color: #ffffff;
  text-align: center;
  padding: 14px 12px;
  font-size: 17px;
  font-weight: 700;
}

.pf-deadline-bar strong{
  font-weight: 800;
}

/* Mobile tightening */
@media (max-width: 767px){
  .pf-campaign-bridge{ padding-top: 34px; }
  .pf-campaign-bridge__copy p{ font-size: 16px; }
  .pf-deadline-bar{ font-size: 16px; }
}

/* Group button + helper text */
.pf-campaign-action-block{
  display: inline-block;
  text-align: center;
}

.pf-campaign-action-note{
  margin-top: 8px;
  font-size: 14px;
  color: #555;
}
/* Action row under the bridge copy */
.pf-campaign-bridge__actions{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;   /* prevents vertical stretching */
  gap: 16px;
}

/* A stacked button + note unit */
.pf-action-stack{
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;  /* note aligns with left edge of its button */
}

.pf-action-stack__note{
  margin-top: 8px;
  font-size: 14px;
  color: #555;
  max-width: 320px;         /* keeps it from running too wide */
  line-height: 1.4;
}

/* Safety: make sure buttons don't get weird heights */
.pf-campaign-bridge__actions .btn{
  height: auto !important;
  line-height: normal !important;
  padding-top: 12px;
  padding-bottom: 12px;
  white-space: nowrap;
}