/** Shopify CDN: Minification failed

Line 2649:18 Unexpected "{"
Line 2649:27 Expected ":"
Line 2656:18 Unexpected "{"
Line 2656:27 Expected ":"

**/
/* ============================================================
   Header — custom.css
   All styles for the Joe Kaufman-style header section
   ============================================================ */

/* ── CSS Variables (set via Liquid inline style on <header>) ── */
:root {
  --hdr-bg:                 #ffffff;
  --hdr-border:             #e5e5e5;
  --logo-first-color:       #111111;
  --logo-last-color:        #c8102e;
  --logo-font-size:         22px;
  --nav-link-color:          rgb(68 71 77);
  --nav-link-hover:         #c8102e;
  --nav-active-color:       #c8102e;
  --nav-underline:          #c8102e;
  --nav-font-size:          14px;
  --btn-outline-text:       #111111;
  --btn-outline-border:     #111111;
  --btn-outline-hover-bg:   #111111;
  --btn-outline-hover-text: #ffffff;
  --btn-solid-bg:           #c8102e;
  --btn-solid-text:         #ffffff;
  --btn-solid-hover-bg:     #a00d24;
  --btn-font-size:          13px;
  --hdr-height:             64px;
  --hdr-sticky-shadow:      rgba(0, 0, 0, 0.10);
  --hamburger-color:        #111111;
}

body{
    overflow-x:hidden;
}
/* ── Base Reset ─────────────────────────────────────────────── */
.hdr-wrapper *,
.hdr-wrapper *::before,
.hdr-wrapper *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Header Wrapper ─────────────────────────────────────────── */
.hdr-wrapper {
  background-color: var(--hdr-bg);
  border-bottom: 1px solid var(--hdr-border);
  width: 100%;
  z-index: 1000;
  transition: box-shadow 0.6s ease;
}

.hdr-wrapper {
    position: absolute;
    width: 100%;
    z-index: 999;
    transition:1s all;
}

.hdr-wrapper.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--hdr-bg);
    box-shadow: 0 2px 14px var(--hdr-sticky-shadow);
    transition:1s all;
}
/* ── Inner Container ────────────────────────────────────────── */
.hdr-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
  height: var(--hdr-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ── Logo ───────────────────────────────────────────────────── */
.hdr-logo a {
  display: flex;
  align-items: baseline;
  gap: 6px;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.hdr-logo__img {
    display: block;
    width: 100%;
    max-width: 150px;
    height: auto;
    object-fit: contain;
    image-rendering: auto;
    backface-visibility: hidden;
    transform: translateZ(0);
}
.hdr-logo .logo-first {
  font-size: var(--logo-font-size);
  font-weight: 900;
  color: var(--logo-first-color);
  font-family: inherit;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.hdr-logo .logo-last {
  font-size: var(--logo-font-size);
  font-weight: 900;
  color: var(--logo-last-color);
  font-family: inherit;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.hdr-logo a:hover .logo-first,
.hdr-logo a:hover .logo-last {
  opacity: 0.78;
}

/* ── Desktop Nav ────────────────────────────────────────────── */
.hdr-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.hdr-nav li a {
  font-family: 'Inter';
  font-weight: 700;
  font-size: var(--nav-font-size);
  color: var(--nav-link-color);
  text-decoration: none;
  padding: 4px 0;
  position: relative;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

/* underline slide-in on hover */
.hdr-nav li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--nav-underline);
  border-radius: 1px;
  transition: width 0.25s ease;
}

.hdr-nav li a:hover {
  color: var(--nav-link-hover);
}

.hdr-nav li a:hover::after {
  width: 100%;
}

/* active nav link */
.hdr-nav li a.active {
  color: var(--nav-active-color);
  font-weight: 700;
}

.hdr-nav li a.active::after {
  width: 100%;
}

/* ── Action Buttons ─────────────────────────────────────────── */
.hdr-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hdr-btn {
  font-family: "Oswald", sans-serif;
  font-size: var(--btn-font-size);
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 12px 24px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  line-height: 1;
  transition: background-color 0.2s ease,
              color 0.2s ease,
              border-color 0.2s ease,
              transform 0.15s ease;
}

.hdr-btn:active {
  transform: scale(0.97);
}

/* Outlined — "Volunteer" */
.hdr-btn--outline {
  background: transparent;
  color: var(--btn-outline-text);
  border: 2px solid var(--btn-outline-border);
}

.hdr-btn--outline:hover {
  background-color: var(--btn-outline-hover-bg);
  color: var(--btn-outline-hover-text);
  border-color: var(--btn-outline-hover-bg);
}

/* Solid filled — "Donate" */
.hdr-btn--solid {
  background-color: var(--btn-solid-bg);
  color: var(--btn-solid-text);
  border: 2px solid var(--btn-solid-bg);
}

.hdr-btn--solid:hover {
  background-color: var(--btn-solid-hover-bg);
  border-color: var(--btn-solid-hover-bg);
}

/* ── Hamburger Button ───────────────────────────────────────── */
.hdr-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px 4px;
  z-index: 1100;
  flex-shrink: 0;
}

.hdr-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--hamburger-color);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger → X animation */
.hdr-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hdr-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hdr-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Drawer ──────────────────────────────────────────── */
.hdr-mobile-menu {
  display: none;
  flex-direction: column;
  background-color: var(--hdr-bg);
  border-top: 1px solid var(--hdr-border);
  padding: 8px 20px 24px;
  gap: 0;
  width: 100%;
  /* sits directly below the header bar */
  position: relative;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.hdr-mobile-menu.open {
  display: flex;
  height:100vh;
}

.hdr-mobile-menu a {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--nav-link-color);
  text-decoration: none;
  padding: 13px 0;
  border-bottom: 1px solid var(--hdr-border);
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: block;
}

.hdr-mobile-menu a:hover {
  color: var(--nav-link-hover);
  padding-left: 8px;
}

.hdr-mobile-menu a.active {
  color: var(--nav-active-color);
  font-weight: 700;
}

.hdr-mobile-menu a:last-of-type {
  border-bottom: none;
}

.hdr-mobile-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.hdr-mobile-actions .hdr-btn {
  flex: 1;
  justify-content: center;
  padding: 12px 10px;
  font-size: 13px;
  border-radius: 3px;
}

/* ── Responsive Breakpoints ─────────────────────────────────── */
@media (max-width: 991px) {
  .hdr-nav,
  .hdr-actions {
    display: none;
  }

  .hdr-hamburger {
    display: flex;
  }

  .hdr-inner {
    padding: 0 20px;
    gap: 12px;
  }

  /* Logo image — constrain on tablet */
  .hdr-logo__img {
    width: auto;
    max-width:90px;
  }
  .hdr-mobile-actions .hdr-btn{
    text-align:center;
  }
  body .hdr-btn--outline{
    border-bottom:2px solid #000 !important;
    color:#000;
  }
    body .hdr-btn--outline:hover{
        color:#fff;
    }
   body .hdr-btn.hdr-btn--solid{
    color:#fff;
   }
}

@media (max-width: 640px) {
  .hdr-inner {
    padding: 0 16px;
  }


  .hdr-logo .logo-first,
  .hdr-logo .logo-last {
    font-size: calc(var(--logo-font-size) - 3px);
  }

  .hdr-mobile-menu {
    padding: 6px 16px 20px;
  }

  .hdr-mobile-actions {
    flex-direction: column;
  }

  .hdr-mobile-actions .hdr-btn {
    width: 100%;
    text-align: center;
    padding: 13px;
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .hdr-logo .logo-first,
  .hdr-logo .logo-last {
    font-size: calc(var(--logo-font-size) - 5px);
  }
}


/* ============================================================
   HERO SECTION — custom.css
   New styles added below. Header styles are above.
   ============================================================ */


.hero-wrapper {
  background-color: var(--hero-bg);
    background-image: var(--hero-desktop-bg);
    background-size: cover;
    background-position: top right;
    min-height: var(--hero-min-height);
    width: 100%;
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
}

/* =========================
   MOBILE BACKGROUND
========================= */
@media screen and (max-width: 767px) {
    .hero-wrapper {
        background-image: var(--hero-mobile-bg);
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
    }
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 200px 15px 100px;
  min-height: var(--hero-min-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;

}

section.hero-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #041632, #041632bd 30%, #0416328f 52%, #3cb4e600 72%);
    pointer-events: none;
    z-index: 1;
    height:100%;
    width:100%;

}
/* ── Left: Content ──────────────────────────────────────────── */
.hero-content {
  flex: 1;
  max-width: 55%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index:2;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(14px, 1.25vw, var(--hero-eyebrow-size));
  font-weight: 700;
  color:#ba0013;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: "Inter", sans-serif;
  margin:0;
}

.hero-eyebrow__line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background-color: var(--hero-eyebrow-line);
  flex-shrink: 0;
}

/* Heading */
.hero-heading {
  font-size: clamp(34px, 6.73vw, var(--hero-heading-size));
  font-weight: 700;
  line-height: 1.2em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  font-family: 'Oswald';
}

.hero-heading__primary {
  color: var(--hero-heading-color);
}

.hero-heading__highlight {
  color: #ba0013;
}

/* Body */
.hero-body {
  font-size: clamp(16px, 1.2vw, var(--hero-body-size));
  color: #fff;
  line-height: 1.5em;
  font-family: Inter, sans-serif;
  margin: 0;
  max-width: 544px;
}

/* Buttons row */
.hero-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: clamp(16px, 4vw, 24px);
  font-weight: 400;
  letter-spacing: 0.4px;
  padding: 16px 40px;
  font-family: Oswald, sans-serif;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 0.2s ease,
              color 0.2s ease,
              border-color 0.2s ease,
              transform 0.15s ease;
}
.hero-btn.hero-btn--outline.btn-animate {
    padding: 18px 40px;
}

.hero-btn:active {
  transform: scale(0.97);
}

/* Solid button */
.hero-btn--solid {
  background-color: var(--hero-btn1-bg);
  color: var(--hero-btn1-text);
  border: 2px solid var(--hero-btn1-bg);
}

.hero-btn--solid:hover {
  background-color: var(--hero-btn1-hover-bg);
  border-color: var(--hero-btn1-hover-bg);
}

/* Outline button */
.hero-btn--outline {
  background: transparent;
  color: var(--hero-btn2-text);
  border: 2px solid var(--hero-btn2-border);
}


.hero-btn__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  object-fit:contain;
}

/* ── Right: Image Card ──────────────────────────────────────── */
.hero-image-wrap {
  flex-shrink: 0;
  width: 44%;
  max-width: 500px;
  align-self: stretch;
  display: none;
  align-items: flex-end;

}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 15px;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column-reverse;
    padding: 140px 24px 60px;
    gap: 32px;
    min-height: unset;
  }

  .hero-image-wrap {
    width: 100%;
    align-self: center;
    border-radius:30px;
  }

  .hero-content {
    max-width: 100%;
    align-items: center;
    text-align:center;
  }
  /* Buttons row */
    .hero-buttons {
    justify-content:center;
    }
  section.hero-wrapper:before{
      background:none;
    }
  body section.hero-wrapper{
    background-position: center right 30% !important;
  }
  section.hero-wrapper{
    background-image:none;
  }
}

@media (max-width: 480px) {
 

  .hero-btn {
    justify-content: center;
  }

  .hero-inner {
    padding: 130px 16px 48px;
  }
}



/* ============================================================
   BUTTON HOVER ANIMATION — one reusable class
   Add class="btn-animate" to any button/link
   Only animation, no font/color/size styles here
   ============================================================ */

.btn-animate {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Ripple shine sweep on hover */
.btn-animate::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.45s ease;
  pointer-events: none;
}

.btn-animate:hover::before {
  left: 130%;
}

/* Subtle lift + shadow on hover */
.btn-animate:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Press down on click */
.btn-animate:active {
  transform: translateY(0px) scale(0.97);
  box-shadow: none;
}


/* ============================================================
   STATS BAR SECTION — custom.css
   ============================================================ */

.sbar-wrapper {
  background-color: var(--sbar-bg);
  border-top: 1px solid var(--sbar-border);
  border-bottom: 1px solid var(--sbar-border);
  width: 100%;
}

.sbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--sbar-padding) 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
}

/* Each stat item */
.sbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: start;
  padding: 0px;
  position: relative;
  border-right:1.5px solid #c5c1c1;
}
.sbar-item:last-child {
    border-right:0px !important;
}

/* Icon */
.sbar-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--sbar-icon-color);
}

.sbar-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

/* Label */
.sbar-text {
  font-size: var(--sbar-text-size);
    font-weight: 400;
    color: var(--sbar-text-color);
    text-transform: uppercase;
    white-space: nowrap;
    font-family: Oswald, sans-serif;
    letter-spacing: normal;
}
/* Stats Bar — custom icon image */
.sbar-icon__img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}


/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 992px) {
  .sbar-inner {
    flex-direction: column;
    gap: 14px;
    padding: 20px 24px;
  }

  .sbar-item {
    padding: 0;
    justify-content: center;
    width: 100%;
    border-right:0px
  }

  /* Hide side dividers on mobile, show top border instead */
  .sbar-item + .sbar-item::before {
    display: none;
  }

  .sbar-item + .sbar-item {
    border-top: 1px solid var(--sbar-divider);
    padding-top: 14px;
  }
}


/* ============================================================
   ABOUT BIO SECTION — custom.css
   Fonts: Oswald (heading) | Inter (body)
   Scroll reveal via IntersectionObserver (custom.js)
   ============================================================ */

.bio-wrapper {
  background-color: var(--bio-bg);
  width: 100%;
  overflow: hidden;
}

.bio-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 15px;
  display: flex;
  align-items: center;
  gap: 64px;
}

/* ── Left: Image ────────────────────────────────────────────── */
.bio-image-wrap {
  flex-shrink: 0;
  width: 46%;
  border-radius: var(--bio-img-radius);
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.13);
}

.bio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ── Right: Content ─────────────────────────────────────────── */
.bio-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bio-heading {
  font-family: "Oswald", sans-serif;
  font-size: clamp(24px, 4vw, var(--bio-heading-size));
  font-weight: 700;
  color: var(--bio-heading-color);
  text-transform: uppercase;
  line-height: 1.3em;
  margin: 0;
  letter-spacing:normal;
}

.bio-para {
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 1.2vw, var(--hero-body-size));
  color: var(--bio-body-color);
  line-height: 1.5em;
  margin: 0;
  letter-spacing: normal;
}

/* ── Read Bio Link ──────────────────────────────────────────── */
.bio-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald';
  font-size: 20px;
  font-weight: 400;
  color: var(--bio-link-color);
  text-decoration: underline;
  text-underline-offset: 3px;
   letter-spacing: normal;
  transition: color 0.2s ease, gap 0.2s ease;
}

.bio-link:hover {
  color: var(--bio-link-hover);
  gap: 10px;
}

.bio-link__arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.bio-link:hover .bio-link__arrow {
  transform: translateX(4px);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 860px) {
  .bio-inner {
    flex-direction: column;
    gap: 36px;
    padding: 48px 15px;
  }

  .bio-image-wrap {
    width: 100%;
    align-self: center;
  }

  .bio-content {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .bio-heading {
    font-size: calc(var(--bio-heading-size) * 0.72);
  }

  .bio-inner {
    padding: 36px 16px;
  }


}



/* ============================================================
   QUOTE BANNER SECTION — custom.css
   ============================================================ */

.qbanner-wrapper {
  background-color: var(--qbanner-bg);
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: var(--qbanner-padding) 24px;
  text-align: center;
}

/* ── Decorative large watermark quote mark ──────────────────── */
.qbanner-watermark {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(160px, 22vw, 280px);
  line-height: 1;
  color: var(--qbanner-mark-color);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  pointer-events: none;
  user-select: none;
  opacity: 1;
}

/* ── Inner container ────────────────────────────────────────── */
.qbanner-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* ── Quote text ─────────────────────────────────────────────── */
.qbanner-quote {
  font-family: "Oswald", sans-serif;
  font-size: clamp(24px, 4vw, var(--qbanner-quote-size));
  font-weight: 600;
  color: var(--qbanner-quote-color);
  line-height: 1.35;
  text-align: center;
  margin: 0;
  padding: 0;
  border: none;
  quotes: none;
font-style: normal;
}

/* ── Author row ─────────────────────────────────────────────── */
.qbanner-author {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

/* Avatar circle with ring */
.qbanner-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid var(--qbanner-ring-color);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.25);
}

.qbanner-avatar__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Author name + title */
.qbanner-author__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

.qbanner-author__name {
  font-family: "Oswald", sans-serif;
  font-size: var(--qbanner-name-size);
  font-weight: 400;
  color: var(--qbanner-name-color);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0;
}

.qbanner-author__title {
  font-family: "Inter", sans-serif;
  font-size: var(--qbanner-title-size);
  font-weight: 600;
  color: var(--qbanner-title-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 640px) {
 

  .qbanner-watermark {
    opacity: 0.5;
    right: -2%;
  }

  .qbanner-author__text {
    text-align: left;
  }
}


/* ============================================================
   QUOTE BANNER SLIDER — custom.css
   ============================================================ */

.qbanner-wrapper {
  background-color: var(--qbanner-bg);
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: var(--qbanner-padding) 24px;
}

/* Decorative watermark */
.qbanner-watermark {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(140px, 20vw, 260px);
  line-height: 1;
  color: var(--qbanner-mark-color);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  pointer-events: none;
  user-select: none;
}

/* ── Slider track ───────────────────────────────────────────── */
.qbanner-slider {
  overflow: hidden;
  width: 100%;
}

.qbanner-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.qbanner-slide {
  min-width: 100%;
  flex-shrink: 0;
}

/* ── Slide inner content ────────────────────────────────────── */
.qbanner-inner {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Quote */
.qbanner-quote {
  font-family: "Oswald", sans-serif;
  font-size: clamp(24px, 4vw, var(--qbanner-quote-size));
  font-weight: 600;
  color: var(--qbanner-quote-color);
  line-height: 1.35;
  text-align: center;
  margin: 0;
  padding: 0;
  border: none;
  quotes: none;
  animation: qbanner-fade-in 0.5s ease forwards;
}



/* Author row */
.qbanner-author {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.qbanner-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid var(--qbanner-ring-color);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.25);
}

.qbanner-avatar__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.qbanner-author__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

.qbanner-author__name {
  font-family: "Oswald", sans-serif;
  font-size: var(--qbanner-name-size);
  font-weight: 400;
  color: var(--qbanner-name-color);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0;
}

.qbanner-author__title {
  font-family: "Inter", sans-serif;
  font-size: var(--qbanner-title-size);
  font-weight: 600;
  color: var(--qbanner-title-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* ── Arrows ─────────────────────────────────────────────────── */
.qbanner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--qbanner-arrow-color);
  transition: background 0.2s ease, border-color 0.2s ease;
  z-index: 10;
}

.qbanner-arrow:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5);
}

.qbanner-arrow svg {
  width: 18px;
  height: 18px;
}

.qbanner-arrow--prev { left: 20px; }
.qbanner-arrow--next { right: 20px; }

/* ── Dots ───────────────────────────────────────────────────── */
.qbanner-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.qbanner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.qbanner-dot.active {
  background: var(--qbanner-dot-color);
  transform: scale(1.3);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 640px) {

  .qbanner-arrow {
    width: 32px;
    height: 32px;
  }

  .qbanner-arrow--prev { left: 8px; }
  .qbanner-arrow--next { right: 8px; }

  .qbanner-watermark {
    right: -4%;
    opacity: 0.6;
  }
}




/* ============================================================
   ISSUES SECTION — custom.css
   Alternating left/right image+content blocks
   Fonts: Oswald (titles) | Inter (body)
   ============================================================ */

.issues-wrapper {
  background-color: var(--issues-bg);
  width: 100%;
}

.issues-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 15px;
}

/* ── Section Header ─────────────────────────────────────────── */
.issues-header {
  text-align: center;
  margin-bottom: 56px;
}

.issues-section-heading {
  font-family: "Oswald", sans-serif;
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 600;
  color: var(--issues-heading-color);
  text-transform: uppercase;
  letter-spacing: normal;
  margin: 0 0 10px;
}

.issues-section-sub {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--issues-sub-color);
  margin: 0;
  line-height: 1.6;
}

/* ── Issue Block ────────────────────────────────────────────── */
.issues-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.issues-block {
  display: flex;
  align-items: center;
  gap: 56px;
}

/* Reversed layout — image on right, content on left */
.issues-block--reverse {
  flex-direction: row-reverse;
}

/* ── Image side ─────────────────────────────────────────────── */
.issues-block__image {
  flex-shrink: 0;
  width: 46%;
  border-radius: var(--issues-img-radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.issues-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.issues-block:hover .issues-img {
  transform: scale(1.03);
}

/* ── Content side ───────────────────────────────────────────── */
.issues-block__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}


.issues-block__title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 600;
  color: var(--issues-title-color);
  text-transform: uppercase;
  letter-spacing: normal;
  margin: 0;

  /* keyframe */
  animation: issues-fade-up 0.6s ease both;
}

.issues-block__subtitle {
  font-family: "Oswald", sans-serif;
  font-size: clamp(18px, 3vw, 20px);
  font-weight: 400;
  color: var(--issues-bold-color);
  line-height: 1.5;
  margin: 0;

  animation: issues-fade-up 0.6s ease 0.1s both;
}
.qbanner-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    display: none;
}
/* Bullet list */
.issues-block__bullets {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.issues-block__bullets li {
  font-family: Inter, sans-serif;
  font-size: 16px;
  color: var(--issues-body-color);
  line-height: 1.55;
  padding-left: 16px;
  position: relative;

  animation: issues-fade-up 0.6s ease 0.2s both;
}

/* Red bullet dot */
.issues-block__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--issues-dot-color);
}


/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 767px) {
  .issues-block,
  .issues-block--reverse {
    flex-direction: column;
    gap: 28px;
    align-items:flex-start;
  }

  .issues-block__image {
    width: 100%;
  }


  .issues-container {
    padding: 48px 15px;
  }
}

@media (max-width: 480px) {
  .issues-wrapper {
    padding: 40px 0 15px;
  }


  .issues-container {
    padding: 0 16px;
  }
}


/* ============================================================
   DONATE SECTION — custom.css
   Two-panel card: left white content + right dark navy form
   ============================================================ */

.donate-wrapper {
  background-color: var(--donate-outer-bg);
  padding: 80px 15px;
  width: 100%;
}

/* ── Card ───────────────────────────────────────────────────── */
.donate-card {
  max-width: 1280px;
  margin: 0 auto;
  border-radius: var(--donate-radius);
  overflow: hidden;
  display: flex;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

/* ── Left Panel ─────────────────────────────────────────────── */
.donate-left {
  background-color: var(--donate-left-bg);
  flex: 1;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.donate-heading {
  font-family: "Oswald", sans-serif;
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 600;
  color: var(--donate-heading-color);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1.1;
  margin: 0;

  animation: donate-fade-up 0.6s ease both;
}

.donate-body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--donate-body-color);
  letter-spacing:normal;
  margin: 0;
  line-height:1.5em;

  animation: donate-fade-up 0.6s ease 0.15s both;
}

/* Social proof row */
.donate-social {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: donate-fade-up 0.6s ease 0.3s both;
}

.donate-avatars {
  display: flex;
  align-items: center;
}

.donate-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid #ffffff;
  object-fit: cover;
  display: block;
  margin-left: -10px;
  flex-shrink: 0;
}

.donate-avatar:first-child { margin-left: 0; }

.donate-avatar--placeholder {
  display: inline-block;
}

.donate-donor-label {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--donate-donor-color);
  margin: 0;
}

/* ── Right Panel ────────────────────────────────────────────── */
.donate-right {
  background-color: var(--donate-right-bg);
  width: 48%;
  flex-shrink: 0;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

/* Amount buttons 2-column grid */
.donate-amounts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.donate-amount-btn {
  background-color: var(--donate-btn-bg);
  color: var(--donate-btn-text);
  border: 1.5px solid var(--donate-btn-border);
  border-radius: 6px;
  padding: 12px 8px;
  font-family: "Oswald", sans-serif;
 font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
  letter-spacing: normal;
}

.donate-amount-btn:hover {
  background-color: var(--donate-btn-active-bg);
  color: var(--donate-btn-active-text);
  transform: translateY(-1px);
}

.donate-amount-btn.active {
  background-color: var(--donate-btn-active-bg);
  color: var(--donate-btn-active-text);
  border-color: var(--donate-btn-active-bg);
}

/* Custom input */
.donate-custom-wrap {
  width: 100%;
}

.donate-custom-input {
  width: 100%;
  background-color: var(--donate-input-bg);
  color: var(--donate-input-text);
  border: 1.5px solid var(--donate-input-border);
  border-radius: 6px;
  padding: 16px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.donate-custom-input::placeholder {
  color: rgba(255,255,255,0.45);
}

.donate-custom-input:focus {
  border-color: var(--donate-btn-active-bg);
}

/* CTA button */
.donate-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--donate-cta-bg);
  color: var(--donate-cta-text);
  border: none;
  border-radius: 6px;
  padding: 16px;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.donate-cta:hover {
  background-color: var(--donate-cta-hover-bg);
}

/* Disclaimer */
.donate-disclaimer {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  color: var(--donate-disclaimer);
  text-align: center;
  line-height: 1.5;
  margin: 0;
}


/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 860px) {
  .donate-card {
    flex-direction: column;
  }

  .donate-right {
    width: 100%;
  }

  .donate-wrapper {
    padding: 48px 15px;
  }
}

@media (max-width: 480px) {
  .donate-left {
    padding: 32px 15px;
  }

  .donate-right {
    padding: 32px 24px;
  }

  .donate-amounts {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .donate-wrapper {
    padding: 32px 16px;
  }
}


/* ============================================================
   VOLUNTEER FORM SECTION — custom.css
   Fonts: Oswald (heading) | Inter (body/labels)
   ============================================================ */

.vform-wrapper {
  background-color: var(--vform-bg);
  padding: 80px 15px;
  width: 100%;
}

.vform-container {
  max-width: 760px;
  margin: 0 auto;
}

/* ── Header ─────────────────────────────────────────────────── */
.vform-header {
  text-align: center;
  margin-bottom: 40px;
}

.vform-heading {
  font-family: "Oswald", sans-serif;
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 600;
  color: var(--vform-heading-color);
  text-transform: uppercase;
  letter-spacing: normal;
  margin: 0 0 10px;

  animation: vform-fade-up 0.6s ease both;
}

.vform-sub {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--vform-sub-color);
  margin: 0;
  line-height: 1.6;

  animation: vform-fade-up 0.6s ease 0.15s both;
}

/* ── Form ───────────────────────────────────────────────────── */
.vform-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Two-column row */
.vform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.vform-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  animation: vform-fade-up 0.55s ease both;
}

/* Stagger rows */
.vform-row:nth-child(1) .vform-field { animation-delay: 0.2s; }
.vform-row:nth-child(2) .vform-field { animation-delay: 0.35s; }
.vform-field--full                   { animation-delay: 0.5s; }

.vform-field--full {
  width: 100%;
}

/* Label */
.vform-label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--vform-label-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Input + Textarea */
.vform-input {
  background-color: var(--vform-input-bg);
  color: var(--vform-input-text);
  border: 1.5px solid var(--vform-input-border);
  border-radius: 4px;
  padding: 12px 14px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}

.vform-input::placeholder {
  color: var(--vform-placeholder);
}

.vform-input:focus {
  border-color: var(--vform-input-focus);
  box-shadow: 0 0 0 3px rgba(13, 31, 60, 0.08);
}

/* Textarea specific */
.vform-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* Submit button */
.vform-btn {
  width: 100%;
  background-color: var(--vform-btn-bg);
  color: var(--vform-btn-text);
  border: none;
  padding: 18px;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 4px;

  animation: vform-fade-up 0.55s ease 0.6s both;
}

.vform-btn:hover {
  background-color: var(--vform-btn-hover);
}

/* Success message */
.vform-success {
  text-align: center;
  padding: 24px;
  background: #f0faf4;
  border: 1.5px solid #4caf82;
  border-radius: 6px;
  margin-top: 20px;
}

.vform-success p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #1a6640;
  margin: 0;
  font-weight: 600;
}



/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 640px) {
  .vform-row {
    grid-template-columns: 1fr;
  }

  .vform-wrapper {
    padding: 48px 15px;
  }
}

@media (max-width: 480px) {
  .vform-wrapper {
    padding: 36px 15px;
  }
}


/* ============================================================
   FOOTER SECTION — custom.css
   Fonts: Oswald (logo/headings) | Inter (body/links)
   ============================================================ */

.footer-wrapper {
  background-color: var(--footer-bg);
  border-top: 3px solid #c8102e;
  width: 100%;
}

/* ── Main grid ──────────────────────────────────────────────── */
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 18px 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
}

/* ── Col 1: Brand ───────────────────────────────────────────── */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  text-decoration: none;
}

.footer-logo__img {
    max-width: 150px;
    object-fit: contain;
    display: block;
    height: auto;
}

.footer-logo__first {
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--footer-logo-first);
  text-transform: uppercase;
}

.footer-logo__last {
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--footer-logo-last);
  text-transform: uppercase;
}

.footer-tagline {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--footer-tagline);
  line-height: 1.65;
  margin: 0;
  font-weight:400;
}

/* Social icons */
.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 36px;
  color: var(--footer-icon-color);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-social__link:hover {
  color: var(--footer-icon-hover);
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.07);
}

.footer-social__link svg {
  width: 16px;
  height: 16px;
  display: block;
}

.footer-social__img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

/* ── Nav columns ────────────────────────────────────────────── */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col__heading {
     font-family: 'Oswald';
    font-size: 20px;
    font-weight: 400;
    color: var(--footer-col-heading);
    text-transform: none;
    letter-spacing: .2px;
    margin: 0;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-nav li a {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--footer-link-color);
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.4;
}

.footer-nav li a:hover {
  color: var(--footer-link-hover);
}

/* ── Contact col ────────────────────────────────────────────── */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact li,
.footer-contact a {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--footer-contact);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--footer-link-hover);
}

.footer-address {
  font-style: normal;
}

/* ── Bottom bar ─────────────────────────────────────────────── */
.footer-bar {
  background-color: var(--footer-bar-bg);
  border-top: 1px solid var(--footer-bar-border);
  padding: 16px 40px;
  text-align: center;
}

.footer-bar__text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--footer-bar-text);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0;
  line-height: 1.5;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 40px 24px 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 32px 16px 24px;
  }

  .footer-bar {
    padding: 14px 16px;
  }
}

@media(max-width:768px){
    .issues-img{
        height: auto;
        object-position: center;
    }
}




/* ============================================================
   CTA BANNER SECTION — custom.css
   No keyframes — hover transitions only
   Fonts: Oswald (heading/eyebrow) | Inter (body)
   ============================================================ */

.cta-wrapper {
  background-color: var(--cta-bg);
  width: 100%;
  padding: var(--cta-padding) 40px;
}

.cta-inner {
  max-width: var(--cta-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

/* ── Eyebrow ────────────────────────────────────────────────── */
.cta-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--cta-eyebrow-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.cta-eyebrow__line {
  display: inline-block;
  width: 32px;
  height: 2px;
  background-color: var(--cta-eyebrow-line);
  flex-shrink: 0;
}

/* ── Heading ────────────────────────────────────────────────── */
.cta-heading {
  font-family: "Oswald", sans-serif;
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 700;
  color: var(--cta-heading-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin: 0;
}

/* ── Body ───────────────────────────────────────────────────── */
.cta-body {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--cta-body-color);
  line-height: 1.75;
  margin: 0;
}

.cta-body p {
  margin: 0 0 10px;
}

.cta-body p:last-child {
  margin-bottom: 0;
}

/* ── Buttons ────────────────────────────────────────────────── */
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 3px;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.22s ease,
              color 0.22s ease,
              border-color 0.22s ease,
              transform 0.15s ease,
              box-shadow 0.22s ease;
}

.cta-btn:active {
  transform: scale(0.97);
}

/* Solid */
.cta-btn--solid {
  background-color: var(--cta-btn1-bg);
  color: var(--cta-btn1-text);
  border: 2px solid var(--cta-btn1-bg);
}

.cta-btn--solid:hover {
  background-color: var(--cta-btn1-hover);
  border-color: var(--cta-btn1-hover);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

/* Outline */
.cta-btn--outline {
  background-color: var(--cta-btn2-bg);
  color: var(--cta-btn2-text);
  border: 2px solid var(--cta-btn2-border);
}

.cta-btn--outline:hover {
  background-color: var(--cta-btn2-hover);
  color: var(--cta-btn2-hover-text);
  border-color: var(--cta-btn2-hover);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 640px) {
  .cta-wrapper {
    padding: var(--cta-padding) 24px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cta-wrapper {
    padding: 48px 16px;
  }
}

.issues-block__bullets li {
    position: relative;
    padding-left: 32px;
}

.issues-block__bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    background: url("/cdn/shop/files/right-arrow.png?v=1783690733") no-repeat center;
    background-size: contain;

    /* Approx. #B01006 */
    filter: brightness(0) saturate(100%) invert(13%) sepia(97%) saturate(5755%) hue-rotate(4deg) brightness(88%) contrast(109%);
}
.subheading , .bio-subheading {
    font-size: clamp(16px, 4vw, 28px);
    font-weight: 500;
    color: #fff;
    font-family: 'Oswald';
    margin: 0;
}
.bio-subheading {
    color: #000;
}


/* ============================================================
   PHOTO GALLERY SECTION — custom.css
   Grid layout + Load More reveal
   ============================================================ */

.gallery-wrapper {
  background-color: var(--gallery-bg);
  width: 100%;
}

.gallery-container {
  max-width: 1280px;
  margin: 0 auto;
   padding: 80px 15px;
}

/* ── Header ─────────────────────────────────────────────────── */
.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-heading {
  font-family: "Oswald", sans-serif;
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 600;
  color: var(--gallery-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 10px;
}

.gallery-sub {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--gallery-sub);
  margin: 0;
  line-height: 1.6;
}

/* ── Grid ───────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(var(--gallery-cols), 1fr);
  gap: var(--gallery-gap);
}

/* ── Item ───────────────────────────────────────────────────── */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--gallery-radius);
  background: #e0e6ef;
  aspect-ratio: 4 / 3;
}

.gallery-item--hidden {
  display: none;
}

.gallery-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

/* Caption overlay */
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 28px 12px 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

/* ── Load More button ───────────────────────────────────────── */
.gallery-load-wrap {
  text-align: center;
  margin-top: 36px;
}

.gallery-load-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gallery-btn-text);
  background-color: var(--gallery-btn-bg);
  border: none;
  border-radius: 4px;
  padding: 13px 32px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.gallery-load-btn:hover {
  background-color: var(--gallery-btn-hover);
}

.gallery-load-btn__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

 
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

}


/* ============================================================
   GALLERY — Masonry layout + Lightbox
   ============================================================ */

/* ── Masonry grid (CSS columns) ─────────────────────────────── */
.gallery-grid {
  columns: var(--gallery-cols);
  column-gap: var(--gallery-gap);
  display: block; /* override grid for masonry */
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--gallery-gap);
  border-radius: var(--gallery-radius);
  overflow: hidden;
  position: relative;
  background: #e0e6ef;
  aspect-ratio: unset; /* masonry — natural height */
}

.gallery-img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.04);
}

/* Zoom icon on hover */
.gallery-zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.gallery-zoom-icon svg {
  width: 18px;
  height: 18px;
}

.gallery-item:hover .gallery-zoom-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Caption overlay */
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 32px 12px 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

/* ── Lightbox overlay ───────────────────────────────────────── */
.glightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 10, 20, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 80px;
  box-sizing: border-box;
}

.glightbox-overlay[hidden] {
  display: none;
}

/* Stage */
.glightbox-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 100%;
  max-height: 100%;
  position: relative;
  z-index: 2;
}

.glightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 6px;
  display: block;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  opacity: 0;
}

.glightbox-caption {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  text-align: center;
  margin: 0;
  max-width: 600px;
  line-height: 1.5;
}

/* Counter */
.glightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}

/* Close button */
.glightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s ease;
}

.glightbox-close:hover { background: rgba(255,255,255,0.22); }

.glightbox-close svg {
  width: 18px;
  height: 18px;
}

/* Prev / Next arrows */
.glightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s ease;
}

.glightbox-arrow:hover { background: rgba(255,255,255,0.22); }

.glightbox-arrow svg {
  width: 22px;
  height: 22px;
}

.glightbox-arrow--prev { left: 16px; }
.glightbox-arrow--next { right: 16px; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .gallery-grid { columns: 2; }
}

@media (max-width: 480px) {
  .gallery-grid { columns: 2; column-gap: 8px; }
  .gallery-item { margin-bottom: 8px; }
  .glightbox-overlay { padding: 56px 16px 40px; }
  .glightbox-arrow--prev { left: 6px; }
  .glightbox-arrow--next { right: 6px; }
  .glightbox-arrow { width: 36px; height: 36px; }
}

@media(min-width:1921px){
  .hero-wrapper{
      background-size: contain;
  }
}
@media (min-width: 768px) and (max-width: 1920px) {
    .hero-wrapper {
        background-position: left 50% top !important;
    }
}
@media(max-width:900px){
  .hero-image-wrap{
    display:flex;
    max-width:100%;
  }
}
#DonationSection-{{ section.id }} .maoz-donation-image {
  width: 100%;
  margin-top: 60px;
      display: flex;
    justify-content: center;
}

#DonationSection-{{ section.id }} .maoz-donation-image__img {
  display: block;
  width: 80%;
  height: auto;
  border-radius: 12px;
  max-width:400px;
}
.disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px 20px;
    background:#e4f0ff;
    width: fit-content;
    border-radius: 16px;
    color: #0d1f3c;
    font-weight: 700;
    font-family: 'Inter';
    font-size: 16px;
}
.disclaimer img{
    width:40px;
    height:auto;
}
.disclaimer-section {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #e4f0ff;
    max-width: fit-content;
    border-radius: 16px;
    color: #0d1f3c;
    font-weight: 700;
    font-family: 'Inter';
    font-size: 18px;
    margin:  20px  auto;
}

.disclaimer-section img {
    width: 50px;
    height: auto;
    padding: 5px;
    background-color: #bddaff;
    border-radius: 46px;
}

.donation-iframe-wrapper p {
    font-size: 14px;
    color: #fff;
    text-align: center;
    font-family: 'Inter';
}
@media (max-width:660px){
   .disclaimer-section{
    align-items:flex-start;
   }
}