:root {
  --citro-navy: #172f7a;
  --citro-navy-dark: #0b1c50;
  --citro-red: #ef2b24;
  --citro-yellow: #f6bd22;
  --citro-cream: #f3f0e8;
  --citro-ink: #101b35;
  --citro-white: #fff;
  --default-font: "Inter", sans-serif;
  --heading-font: "Figtree", sans-serif;
  --nav-font: "Inter", sans-serif;
  --background-color: #fff;
  --default-color: #2b3448;
  --heading-color: var(--citro-ink);
  --accent-color: var(--citro-red);
}

html { scroll-padding-top: 112px; }
body { font-family: var(--default-font); color: var(--default-color); overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 800;
  text-transform: none;
  letter-spacing: -.035em;
}
.section { padding: 110px 0; }
.container-xxl { max-width: 1440px; padding-left: 40px; padding-right: 40px; }

.alert-strip { background: var(--citro-navy-dark); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.alert-strip .container-xxl { height: 34px; display: flex; align-items: center; justify-content: space-between; }
.alert-strip a { color: #fff; }
.alert-strip__emergency { display: inline-flex; align-items: center; gap: 9px; }
.alert-strip__pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--citro-red); box-shadow: 0 0 0 4px rgba(239,43,36,.22); }
.alert-strip__links { display: flex; align-items: center; gap: 24px; }
.language-selector { position: relative; align-self: stretch; display: flex; align-items: center; }
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  padding: 0;
}
.language-switch i { font-size: 9px; transition: transform .2s ease; }
.language-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 1100;
  width: 220px;
  padding: 9px;
  background: var(--citro-navy-dark);
  border-top: 3px solid var(--citro-red);
  box-shadow: 0 20px 45px rgba(4,15,45,.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}
.language-dropdown::before {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 100%;
  border-right: 7px solid transparent;
  border-bottom: 7px solid var(--citro-red);
  border-left: 7px solid transparent;
}
.language-dropdown button {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  width: 100%;
  align-items: center;
  padding: 12px 11px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  transition: background .2s ease, color .2s ease;
}
.language-dropdown button small {
  color: rgba(255,255,255,.42);
  font-size: 9px;
  font-weight: 800;
}
.language-dropdown button i { color: var(--citro-yellow); }
.language-dropdown button:hover,
.language-dropdown button:focus-visible,
.language-dropdown button.active {
  background: rgba(255,255,255,.09);
  color: #fff;
  outline: 0;
}
.language-selector:hover .language-dropdown,
.language-selector:focus-within .language-dropdown,
.language-selector.is-open .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.language-selector:hover .language-switch i,
.language-selector:focus-within .language-switch i,
.language-selector.is-open .language-switch i { transform: rotate(180deg); }

.header { background: #fff; border-bottom: 1px solid #e0e3eb; padding: 0; z-index: 997; }
.header__inner { min-height: 82px; display: flex; align-items: stretch !important; }
.brand { width: 194px; display: flex; align-items: center; margin-right: 44px; overflow: hidden; }
.brand img { width: 168px; height: 73px; object-fit: cover; object-position: center; }
.header__actions { margin-left: auto; display: flex; align-items: stretch; }
.emergency-button, .donate-button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 24px; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; }
.emergency-button { color: var(--citro-red); border-left: 1px solid #e0e3eb; }
.emergency-button:hover { color: #fff; background: var(--citro-red); }
.donate-button { background: var(--citro-red); color: #fff; min-width: 130px; }
.donate-button:hover { background: #cf211b; color: #fff; }

@media (min-width: 1200px) {
  .navmenu { margin-right: 10px; }
  .navmenu > ul { display: flex; height: 100%; align-items: stretch; gap: 2px; }
  .navmenu > ul > li { display: flex; align-items: stretch; }
  .navmenu > ul > li > a { color: var(--citro-ink); display: flex; align-items: center; gap: 7px; padding: 0 17px; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .02em; position: relative; }
  .navmenu > ul > li > a::after { content: ""; position: absolute; left: 17px; right: 17px; bottom: 0; height: 4px; background: var(--citro-red); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
  .navmenu > ul > li:hover > a, .navmenu > ul > li > a.active { color: var(--citro-red); }
  .navmenu > ul > li:hover > a::after, .navmenu > ul > li > a.active::after { transform: scaleX(1); }
  .navmenu .megamenu-2 > .megamenu-list { width: min(1120px, calc(100vw - 80px)); left: 50%; right: auto; transform: translate(-50%, 18px); top: 82px; padding: 0; border: 0; border-radius: 0; box-shadow: 0 24px 55px rgba(10,28,74,.22); background: #fff; display: grid; grid-template-columns: 260px 1fr; min-height: 360px; opacity: 0; visibility: hidden; }
  .navmenu .megamenu-2:hover > .megamenu-list { transform: translate(-50%, 0); opacity: 1; visibility: visible; }
  .navmenu .megamenu-2 > .megamenu-list > li { position: static; display: block; background: var(--citro-navy-dark); border-bottom: 1px solid rgba(255,255,255,.12); }
  .navmenu .megamenu-2 > .megamenu-list > li > a { color: #fff; padding: 24px 28px; font-size: 15px; font-weight: 700; display: flex; justify-content: space-between; }
  .navmenu .megamenu-2 > .megamenu-list > li > a::after { content: "\F135"; font-family: bootstrap-icons; opacity: .65; }
  .navmenu .megamenu-2 > .megamenu-list > li.active-panel > a { background: var(--citro-red); color: #fff; }
  .navmenu .megamenu-2 > .megamenu-list > li > ul { position: absolute; display: none; left: 260px; right: 0; top: 0; height: 100%; padding: 42px; background: #fff; grid-template-columns: 1.2fr 1fr; gap: 50px; }
  .navmenu .megamenu-2 > .megamenu-list > li.active-panel > ul { display: grid; }
  .navmenu .megamenu-2 > .megamenu-list > li > ul > li > a { display: block; color: var(--citro-red); text-transform: uppercase; font-size: 12px; font-weight: 800; letter-spacing: .08em; padding-bottom: 15px; border-bottom: 1px solid #d9dde7; }
  .navmenu .megamenu-2 > .megamenu-list > li > ul > li > ul { position: static; opacity: 1; visibility: visible; display: block; box-shadow: none; padding: 14px 0 0; min-width: 0; }
  .navmenu .megamenu-2 > .megamenu-list > li > ul > li > ul a { color: var(--citro-ink); font-size: 15px; font-weight: 700; padding: 9px 0; display: flex; justify-content: space-between; }
  .navmenu .megamenu-2 > .megamenu-list > li > ul > li > ul a::after { content: "\F135"; font-family: bootstrap-icons; color: var(--citro-red); }
  .mega-intro { height: 100%; padding: 30px; background: var(--citro-navy); color: #fff; display: flex; flex-direction: column; justify-content: flex-end; }
  .mega-intro--red { background: var(--citro-red); }
  .mega-intro--yellow { background: var(--citro-yellow); color: var(--citro-ink); }
  .mega-intro .eyebrow { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; opacity: .75; }
  .mega-intro h3 { color: inherit; font-size: 36px; line-height: .95; margin: 10px 0 15px; }
  .mega-intro p { color: inherit; opacity: .82; font-size: 14px; }
  .mega-intro .text-link { color: inherit; margin-top: auto; }
}

.citro-hero { min-height: calc(100vh - 116px); position: relative; display: flex; align-items: center; overflow: hidden; background: var(--citro-navy-dark); }
.citro-hero__media, .citro-hero__shade { position: absolute; inset: 0; }
.citro-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; transform: scale(1.02); }
.citro-hero__shade { background: linear-gradient(90deg, rgba(7,21,61,.96) 0%, rgba(7,21,61,.76) 45%, rgba(7,21,61,.12) 82%), linear-gradient(0deg, rgba(7,21,61,.6) 0%, transparent 40%); }
.citro-hero__content { position: relative; z-index: 2; padding-top: 80px; padding-bottom: 110px; }
.hero-kicker, .section-kicker { display: inline-flex; align-items: center; gap: 12px; color: var(--citro-red); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-kicker::before, .section-kicker::before { content: ""; width: 32px; height: 3px; background: currentColor; }
.hero-kicker { color: var(--citro-yellow); margin-bottom: 22px; }
.citro-hero h1 { color: #fff; font-size: clamp(68px, 8vw, 116px); line-height: .88; margin: 0 0 38px; letter-spacing: -.055em; font-weight: 800; }
.citro-hero h1 em { color: var(--citro-red); font-style: italic; }
.citro-hero__content p { color: #fff; max-width: 690px; font-size: clamp(17px, 1.5vw, 22px); line-height: 1.55; margin-bottom: 36px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.button { border: 0; display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 54px; padding: 14px 25px; font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .045em; transition: .25s ease; }
.button:hover { transform: translateY(-2px); }
.button--emergency { background: var(--citro-red); color: #fff; }
.button--emergency:hover { background: #fff; color: var(--citro-red); }
.button--light { border: 1px solid rgba(255,255,255,.55); color: #fff; }
.button--light:hover { background: #fff; color: var(--citro-ink); }
.button--navy { background: var(--citro-navy); color: #fff; }
.button--navy:hover { background: var(--citro-red); color: #fff; }
.button--yellow { background: var(--citro-yellow); color: var(--citro-ink); }
.button--yellow:hover { background: #fff; color: var(--citro-ink); }
.button--white { background: #fff; color: var(--citro-red); }
.button--white:hover { background: var(--citro-yellow); color: var(--citro-ink); }
.hero-status { position: absolute; right: 0; bottom: 0; z-index: 3; background: #fff; min-width: 400px; padding: 20px 36px; display: grid; grid-template-columns: auto 1fr; column-gap: 12px; align-items: center; font-size: 12px; }
.hero-status .status-dot { grid-row: span 2; width: 12px; height: 12px; border-radius: 50%; background: #28a65a; box-shadow: 0 0 0 5px rgba(40,166,90,.15); }
.hero-status strong { color: var(--citro-ink); text-transform: uppercase; letter-spacing: .04em; }
.hero-status span:last-child { color: #71798a; }
.hero-scroll { position: absolute; z-index: 3; bottom: 30px; left: 40px; color: #fff; display: flex; gap: 12px; align-items: center; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; writing-mode: vertical-rl; }

.intro-section { background: #fff; }
.display-heading { font-size: clamp(48px, 5.4vw, 76px); line-height: .98; font-weight: 800; margin: 0 0 45px; }
.intro-copy p { font-size: 17px; line-height: 1.75; }
.intro-copy .col-md-7 p { font-size: 21px; line-height: 1.6; color: var(--citro-ink); }
.arrow-link { display: inline-flex; align-items: center; gap: 15px; color: var(--citro-ink); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; margin-top: 15px; }
.arrow-link span { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--citro-red); color: #fff; }
.arrow-link:hover { color: var(--citro-red); }

.mission-section { background: var(--citro-navy-dark); color: #fff; }
.section-kicker--light { color: var(--citro-yellow); }
.section-heading-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 55px; }
.section-heading-row h2 { color: #fff; font-size: clamp(54px, 6vw, 84px); line-height: .9; margin: 14px 0 0; }
.section-heading-row > p { max-width: 440px; color: rgba(255,255,255,.68); font-size: 17px; line-height: 1.7; margin: 0; }
.mission-grid { display: grid; grid-template-columns: 1.12fr 1fr 1fr; }
.mission-card { min-height: 500px; padding: 38px; color: #fff; background: var(--citro-navy); border-right: 1px solid rgba(255,255,255,.13); display: flex; flex-direction: column; position: relative; overflow: hidden; }
.mission-card--feature { background: var(--citro-red); }
.mission-card--yellow { background: var(--citro-yellow); color: var(--citro-ink); }
.mission-card__number { position: absolute; right: 25px; top: 12px; font: 900 100px/.9 var(--heading-font); opacity: .09; }
.mission-card__icon { font-size: 40px; margin-bottom: auto; }
.mission-card span { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; opacity: .7; }
.mission-card h3 { color: inherit; font-size: 45px; line-height: .94; margin: 12px 0 20px; }
.mission-card p { color: inherit; opacity: .78; line-height: 1.65; max-width: 370px; }
.mission-card > a { position: absolute; right: 30px; bottom: 30px; width: 48px; height: 48px; border: 1px solid currentColor; color: inherit; display: flex; justify-content: center; align-items: center; border-radius: 50%; }
.mission-card > a:hover { background: #fff; color: var(--citro-red); }

.impact-section { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 740px; background: var(--citro-cream); }
.impact-section__image { overflow: hidden; }
.impact-section__image img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.35); object-position: 48% center; }
.impact-section__content { padding: 90px clamp(45px, 6vw, 100px); display: flex; flex-direction: column; justify-content: center; }
.impact-section__content h2 { font-size: clamp(52px, 5.5vw, 80px); line-height: .9; margin: 18px 0 28px; }
.impact-section__content > p { font-size: 17px; line-height: 1.75; max-width: 600px; }
.impact-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin: 38px 0; border-top: 1px solid #cdd0d7; border-bottom: 1px solid #cdd0d7; }
.impact-facts div { padding: 25px 20px 25px 0; border-right: 1px solid #cdd0d7; }
.impact-facts div:not(:first-child) { padding-left: 20px; }
.impact-facts div:last-child { border: 0; }
.impact-facts strong { display: block; color: var(--citro-red); font: 800 45px/1 var(--heading-font); }
.impact-facts span { display: block; margin-top: 8px; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.impact-section__content .button { align-self: flex-start; }

.values-section { background: #fff; }
.values-section .col-lg-5 > p { font-size: 17px; line-height: 1.7; max-width: 470px; }
.values-list { border-top: 2px solid var(--citro-ink); }
.values-list article { display: grid; grid-template-columns: 50px 230px 1fr; align-items: center; gap: 25px; padding: 26px 0; border-bottom: 1px solid #cfd3dc; }
.values-list article > span { color: var(--citro-red); font-weight: 800; font-size: 12px; }
.values-list h3 { font-size: 32px; margin: 0; }
.values-list p { margin: 0; font-size: 14px; }

.join-section { padding: 0 0 110px; background: #fff; }
.join-panel { background: var(--citro-red); color: #fff; display: grid; grid-template-columns: .9fr 1.1fr; padding: 75px; position: relative; overflow: hidden; }
.join-panel::after { content: ""; width: 420px; height: 420px; border: 80px solid rgba(255,255,255,.08); border-radius: 50%; position: absolute; right: -150px; top: -190px; }
.join-panel__copy { padding-right: 70px; border-right: 1px solid rgba(255,255,255,.3); }
.join-panel h2 { color: #fff; font-size: clamp(62px, 7vw, 98px); line-height: .8; margin: 18px 0 28px; }
.join-panel__copy p { font-size: 17px; line-height: 1.7; margin-bottom: 32px; }
.join-panel__steps { padding-left: 70px; position: relative; z-index: 1; }
.join-panel__steps > div { display: grid; grid-template-columns: 55px 180px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.3); align-items: center; }
.join-panel__steps span { font-size: 12px; font-weight: 800; color: var(--citro-yellow); }
.join-panel__steps h3 { color: #fff; font-size: 28px; margin: 0; }
.join-panel__steps p { margin: 0; color: rgba(255,255,255,.78); font-size: 14px; }

.news-section { background: var(--citro-cream); }
.section-heading-row--dark h2 { color: var(--citro-ink); }
.news-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 20px; align-items: stretch; }
.news-card { background: #fff; min-height: 480px; display: flex; flex-direction: column; }
.news-card__image { height: 245px; overflow: hidden; }
.news-card__image img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.2); }
.news-card__body { padding: 32px; display: flex; flex-direction: column; flex: 1; position: relative; }
.news-meta { color: var(--citro-red); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.news-card h3 { font-size: 38px; line-height: .98; margin: 17px 0; }
.news-card p { font-size: 14px; line-height: 1.65; }
.news-card__body > a { margin-top: auto; align-self: flex-end; width: 46px; height: 46px; border-radius: 50%; border: 1px solid #c9ced9; color: var(--citro-red); display: flex; align-items: center; justify-content: center; }
.news-card--navy { background: var(--citro-navy); color: #fff; }
.news-card--navy h3 { color: #fff; }
.news-card--navy p { color: rgba(255,255,255,.72); }
.news-card--navy .news-meta { color: var(--citro-yellow); }
.news-card--navy .news-card__body > a { border-color: rgba(255,255,255,.4); color: #fff; }

.donate-section { background: var(--citro-cream); padding-bottom: 110px; }
.donate-panel { background: var(--citro-red); color: #fff; padding: 75px; display: grid; grid-template-columns: 1.1fr .7fr 160px; align-items: center; position: relative; overflow: hidden; }
.donate-panel h2 { color: #fff; font-size: clamp(60px, 7vw, 96px); line-height: .82; margin: 15px 0 0; }
.donate-panel__copy { max-width: 430px; }
.donate-panel__copy p { font-size: 17px; line-height: 1.7; margin-bottom: 25px; }
.donate-panel__mark { font-size: 135px; color: rgba(255,255,255,.12); text-align: right; }

.partners-section {
  overflow: hidden;
  border-bottom: 1px solid #dce0e8;
  background: #fff;
}
.partners-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 38px;
}
.partners-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(52px, 6vw, 82px);
  line-height: .9;
}
.partner-controls { display: flex; gap: 8px; }
.partner-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid #c8cdd6;
  border-radius: 50%;
  background: #fff;
  color: var(--citro-ink);
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.partner-controls button:hover,
.partner-controls button:focus-visible {
  border-color: var(--citro-red);
  background: var(--citro-red);
  color: #fff;
  transform: translateY(-2px);
}
.partner-slider {
  overflow: visible;
}
.partner-slider .swiper-slide { height: auto; }
.partner-logo {
  position: relative;
  display: flex;
  min-height: 175px;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 28px 30px;
  background: #fff;
  transition: background .25s ease;
}
.partner-logo::after {
  content: "";
  position: absolute;
  inset: auto 28px 0;
  height: 4px;
  background: var(--citro-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.partner-logo:hover { background: var(--citro-cream); }
.partner-logo:hover::after { transform: scaleX(1); }
.partner-logo img {
  display: block;
  width: 100%;
  max-width: 190px;
  max-height: 92px;
  object-fit: contain;
  filter: saturate(.88);
  transition: filter .25s ease, transform .25s ease;
}
.partner-logo:hover img {
  filter: saturate(1);
  transform: scale(1.05);
}
.partner-logo--square img { max-width: 112px; max-height: 112px; }
.partner-logo--compact img { max-width: 100px; max-height: 82px; }
.partner-logo--business img { max-width: 220px; }

.contact-section { background: #fff; }
.contact-section .col-lg-5 > p { max-width: 480px; font-size: 17px; line-height: 1.7; }
.contact-details { margin-top: 40px; border-top: 1px solid #d5d9e2; }
.contact-details > a, .contact-details > div { display: flex; align-items: center; gap: 18px; padding: 20px 0; border-bottom: 1px solid #d5d9e2; color: var(--citro-ink); font-weight: 700; }
.contact-details i { color: var(--citro-red); font-size: 20px; }
.contact-details small { display: block; color: #7a8190; text-transform: uppercase; font-size: 9px; letter-spacing: .08em; margin-bottom: 3px; }
.citro-form { background: var(--citro-cream); padding: 45px; }
.citro-form label { display: block; color: var(--citro-ink); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.citro-form input, .citro-form select, .citro-form textarea { width: 100%; background: transparent; border: 0; border-bottom: 1px solid #aeb4c0; padding: 12px 0; color: var(--citro-ink); outline: none; border-radius: 0; }
.citro-form input:focus, .citro-form select:focus, .citro-form textarea:focus { border-color: var(--citro-red); }
.citro-form textarea { resize: vertical; }

.citro-footer { background: var(--citro-navy-dark); color: #fff; padding: 75px 0 25px; }
.footer-main { display: grid; grid-template-columns: 1.8fr .7fr .7fr 1fr; gap: 60px; padding-bottom: 65px; }
.footer-brand img { width: 200px; height: 90px; object-fit: cover; object-position: center; }
.footer-brand p { max-width: 320px; color: rgba(255,255,255,.6); margin: 20px 0 0; }
.footer-main h3 { color: var(--citro-yellow); font: 800 11px/1 var(--default-font); letter-spacing: .1em; margin: 10px 0 22px; }
.footer-main > div:not(:first-child) > a { display: block; color: #fff; font-weight: 700; font-size: 13px; margin-bottom: 13px; }
.footer-emergency { border-left: 1px solid rgba(255,255,255,.2); padding-left: 50px; }
.footer-emergency > span { font-size: 11px; color: var(--citro-yellow); text-transform: uppercase; font-weight: 800; letter-spacing: .08em; }
.footer-emergency > a { font: 900 90px/.85 var(--heading-font) !important; color: #fff !important; margin: 12px 0 !important; }
.footer-emergency p { color: rgba(255,255,255,.6); font-size: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.18); padding-top: 24px; display: flex; justify-content: space-between; color: rgba(255,255,255,.5); font-size: 11px; }
.footer-bottom div { display: flex; gap: 25px; }
.footer-bottom a { color: rgba(255,255,255,.7); }

@media (max-width: 1199px) {
  .container-xxl { padding-left: 24px; padding-right: 24px; }
  .header__inner { min-height: 74px; align-items: center; }
  .brand { width: 155px; margin-right: auto; order: 1; }
  .brand img { width: 145px; height: 62px; }
  .header__actions { margin-left: 8px; order: 3; }
  .header .navmenu { order: 2; flex: 0 0 auto; }
  .emergency-button { display: none; }
  .donate-button { height: 74px; min-width: 110px; }
  .navmenu .mobile-nav-toggle { color: var(--citro-ink); font-size: 30px; margin: 0 8px; }
  .navmenu ul { background: #fff; }
  .navmenu > ul > li > a { color: var(--citro-ink); font-weight: 800; text-transform: uppercase; }
  .navmenu .megamenu-list { padding-left: 0; }
  .navmenu .megamenu-item > ul { display: none; padding: 10px 20px; background: var(--citro-cream); }
  .navmenu .megamenu-item.active > ul { display: block; }
  .mega-intro { padding: 22px; background: var(--citro-navy); color: #fff; }
  .mega-intro h3 { color: #fff; font-size: 30px; }
  .mega-intro .eyebrow { font-size: 10px; color: var(--citro-yellow); }
  .mega-intro--red { background: var(--citro-red); }
  .mega-intro--yellow { background: var(--citro-yellow); color: var(--citro-ink); }
  .mega-intro--yellow h3 { color: var(--citro-ink); }
  .citro-hero { min-height: 760px; }
  .hero-scroll { left: 24px; }
  .mission-grid { grid-template-columns: 1fr 1fr; }
  .mission-card:last-child { grid-column: span 2; min-height: 380px; }
  .impact-section { grid-template-columns: 1fr; }
  .impact-section__image { height: 560px; }
  .join-panel { padding: 55px; }
  .join-panel__copy { padding-right: 40px; }
  .join-panel__steps { padding-left: 40px; }
  .join-panel__steps > div { grid-template-columns: 40px 1fr; }
  .join-panel__steps p { grid-column: 2; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card--lead { grid-row: span 2; }
  .donate-panel { grid-template-columns: 1fr 1fr; }
  .donate-panel__mark { display: none; }
  .footer-main { grid-template-columns: 1.3fr .7fr .7fr; }
  .footer-emergency { grid-column: span 3; padding: 35px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.2); }
}

@media (max-width: 767px) {
  html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
  .section { padding: 78px 0; }
  .container-xxl { padding-left: 18px; padding-right: 18px; }
  .alert-strip__links { display: none; }
  .alert-strip .container-xxl { justify-content: center; }
  .alert-strip__emergency { max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 10px; }
  .donate-button { padding: 0 16px; min-width: 92px; font-size: 11px; }
  .header__inner { padding-right: 0; }
  .brand { width: 135px; }
  .brand img { width: 130px; }
  .header__actions { margin-left: 0; }
  .header .navmenu .mobile-nav-toggle { margin: 0 10px 0 4px; }
  .citro-hero { min-height: calc(100svh - 108px); }
  .citro-hero__shade { background: linear-gradient(90deg, rgba(7,21,61,.92), rgba(7,21,61,.45)), linear-gradient(0deg, rgba(7,21,61,.75), transparent); }
  .citro-hero h1 { font-size: 72px; line-height: .78; }
  .citro-hero__content { padding-top: 60px; }
  .hero-buttons { display: grid; grid-template-columns: 1fr; width: 100%; }
  .hero-buttons .button { width: 100%; }
  .hero-status { min-width: 0; left: 18px; right: 18px; padding: 16px 20px; }
  .hero-scroll { display: none; }
  .display-heading { font-size: 54px; }
  .section-heading-row { display: block; }
  .section-heading-row h2 { font-size: 55px; }
  .section-heading-row > p, .section-heading-row > .arrow-link { margin-top: 25px; }
  .mission-grid { display: block; }
  .mission-card, .mission-card:last-child { min-height: 430px; margin-bottom: 1px; }
  .mission-card h3 { font-size: 40px; }
  .impact-section__image { height: 390px; }
  .impact-section__content { padding: 70px 24px; }
  .impact-section__content h2 { font-size: 53px; }
  .impact-facts { grid-template-columns: 1fr; }
  .impact-facts div, .impact-facts div:not(:first-child) { border-right: 0; border-bottom: 1px solid #cdd0d7; padding: 20px 0; }
  .impact-facts div:last-child { border-bottom: 0; }
  .values-list article { grid-template-columns: 35px 1fr; gap: 10px; }
  .values-list article p { grid-column: 2; }
  .join-section { padding-bottom: 78px; }
  .join-panel { grid-template-columns: 1fr; padding: 45px 25px; }
  .join-panel__copy { padding: 0 0 45px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.3); }
  .join-panel__steps { padding: 25px 0 0; }
  .join-panel__steps > div { grid-template-columns: 35px 1fr; }
  .news-grid { display: block; }
  .news-card { min-height: 410px; margin-bottom: 18px; }
  .news-card--lead { min-height: 580px; }
  .donate-section { padding-bottom: 78px; }
  .donate-panel { grid-template-columns: 1fr; padding: 45px 25px; gap: 35px; }
  .donate-panel h2 { font-size: 58px; }
  .partners-heading { align-items: flex-end; }
  .partners-heading h2 { font-size: 50px; }
  .partner-controls button { width: 44px; height: 44px; }
  .partner-logo { min-height: 140px; padding: 22px; }
  .citro-form { padding: 30px 22px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-brand { grid-column: span 2; }
  .footer-emergency { grid-column: span 2; }
  .footer-bottom { display: block; line-height: 1.8; }
  .footer-bottom div { margin-top: 15px; flex-wrap: wrap; gap: 10px 20px; }
}

/* Stable mega menu overrides: isolates the CITRO menu from the builder template. */
@media (min-width: 1200px) {
  .header__inner { position: relative; }
  .header .navmenu .megamenu-2 { position: static; }
  .header .navmenu .megamenu-2 > .megamenu-list {
    position: absolute;
    display: block;
    top: 100%;
    left: 50%;
    right: auto;
    width: min(1120px, calc(100vw - 80px));
    min-height: 380px;
    max-height: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: var(--citro-navy-dark);
    box-shadow: 0 26px 60px rgba(6, 20, 58, .25);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 16px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    z-index: 1000;
  }
  .header .navmenu .megamenu-2 > .megamenu-list::before { content: none; }
  .header .navmenu .megamenu-2:hover > .megamenu-list {
    top: 100%;
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
  .header .navmenu .megamenu-2 > .megamenu-list > li {
    position: static;
    display: block;
    width: 260px;
    min-height: 0;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .header .navmenu .megamenu-2 > .megamenu-list > li > a {
    position: relative;
    z-index: 2;
    width: 260px;
    min-height: 64px;
    padding: 20px 26px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
  }
  .header .navmenu .megamenu-2 > .megamenu-list > li > a::before { content: none; }
  .header .navmenu .megamenu-2 > .megamenu-list > li > a::after {
    content: "\F135";
    position: static;
    display: inline-block;
    width: auto;
    height: auto;
    background: none;
    color: currentColor;
    font-family: bootstrap-icons;
    opacity: .65;
    transform: none;
  }
  .header .navmenu .megamenu-2 > .megamenu-list > li:hover > a,
  .header .navmenu .megamenu-2 > .megamenu-list > li.active-panel > a {
    padding-left: 26px;
    border: 0;
    background: var(--citro-red);
    color: #fff;
  }
  .header .navmenu .megamenu-2 > .megamenu-list > li > ul {
    position: absolute;
    display: none !important;
    top: 0;
    left: 260px;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    min-width: 0;
    margin: 0;
    padding: 42px;
    overflow: hidden;
    grid-template-columns: minmax(0, 1.15fr) minmax(250px, .85fr);
    gap: 42px;
    align-items: stretch;
    background: #fff;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .header .navmenu .megamenu-2 > .megamenu-list > li.active-panel > ul {
    display: grid !important;
  }
  .header .navmenu .megamenu-2 > .megamenu-list > li > ul > li {
    position: static;
    display: block;
    min-width: 0;
    width: auto;
    background: transparent;
  }
  .header .navmenu .megamenu-2 > .megamenu-list > li > ul > li > a {
    position: static;
    display: block;
    margin: 0;
    padding: 0 0 14px;
    border: 0;
    border-bottom: 2px solid var(--citro-red);
    border-radius: 0;
    background: transparent;
    color: var(--citro-ink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    pointer-events: auto;
  }
  .header .navmenu .megamenu-2 > .megamenu-list > li > ul > li:first-child > a { display: none; }
  .header .navmenu .megamenu-2 > .megamenu-list > li > ul > li > ul {
    position: static;
    display: block;
    width: auto;
    min-width: 0;
    margin: 0;
    padding: 14px 0 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .header .navmenu .megamenu-2 > .megamenu-list > li > ul > li > ul > li {
    width: auto;
    border: 0;
  }
  .header .navmenu .megamenu-2 > .megamenu-list > li > ul > li > ul > li > a {
    display: flex;
    width: 100%;
    min-height: 0;
    justify-content: space-between;
    padding: 11px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--citro-ink);
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
  }
  .header .navmenu .megamenu-2 > .megamenu-list > li > ul > li > ul > li > a::after {
    content: "\F135";
    position: static;
    width: auto;
    height: auto;
    background: none;
    color: var(--citro-red);
    font-family: bootstrap-icons;
    opacity: 1;
    transform: none;
  }
  .header .navmenu .mega-intro {
    min-height: 296px;
    height: 100%;
    padding: 30px;
  }
  .header .navmenu .mega-intro a::after { content: none; }
}

@media (max-width: 1199px) {
  .navmenu .megamenu-2.active > .megamenu-list {
    display: block;
  }
  .navmenu .megamenu-2 > .megamenu-list > .megamenu-item > ul {
    display: none;
  }
  .navmenu .megamenu-2 > .megamenu-list > .megamenu-item.active > ul {
    display: block;
  }
  .navmenu .megamenu-2 > .megamenu-list > .megamenu-item > a::after {
    content: "\F282";
    font-family: bootstrap-icons;
    color: var(--citro-red);
  }
}

/* Inner page foundations */
.breadcrumbs { display: flex; align-items: center; gap: 10px; margin-bottom: 58px; color: #70798c; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.breadcrumbs a { color: inherit; }
.breadcrumbs i { font-size: 9px; }
.breadcrumbs--light { color: rgba(255,255,255,.72); }
.page-hero { background: var(--citro-navy-dark); color: #fff; padding: 58px 0 90px; overflow: hidden; }
.page-hero--compact { position: relative; }
.page-hero--compact::after, .page-hero--news::after { content: ""; position: absolute; width: 520px; height: 520px; right: -130px; top: -250px; border: 95px solid rgba(255,255,255,.04); border-radius: 50%; }
.page-hero--news { position: relative; background: var(--citro-navy); }
.page-hero__grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); gap: 80px; align-items: end; position: relative; z-index: 1; }
.page-hero h1, .about-hero h1, .article-hero h1 { color: #fff; font-size: clamp(70px, 9vw, 126px); font-weight: 900; line-height: .77; margin: 22px 0 0; }
.page-hero h1 em, .about-hero h1 em, .article-hero h1 em { color: var(--citro-red); font-style: italic; }
.page-hero__grid > p { color: rgba(255,255,255,.78); font-size: 19px; line-height: 1.65; margin: 0; }

.simple-content-layout { display: grid; grid-template-columns: 260px minmax(0, 760px); gap: clamp(60px, 10vw, 150px); justify-content: center; align-items: start; }
.content-aside, .reader-toc { position: sticky; top: 155px; border-top: 3px solid var(--citro-red); }
.content-aside > span, .reader-toc > span { display: block; padding: 18px 0 13px; color: var(--citro-red); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.content-aside a, .reader-toc a { display: block; padding: 12px 0; border-bottom: 1px solid #d8dce4; color: #6c7484; font-size: 13px; font-weight: 600; }
.content-aside a.active, .content-aside a:hover, .reader-toc a.active, .reader-toc a:hover { color: var(--citro-ink); }
.prose { color: #3f485a; font-size: 17px; line-height: 1.82; }
.prose > *:first-child { margin-top: 0; }
.prose-lead { color: var(--citro-ink); font-size: 24px; line-height: 1.6; }
.prose h2 { margin: 68px 0 20px; color: var(--citro-ink); font-size: 48px; line-height: .98; }
.prose h3 { color: var(--citro-ink); font-size: 25px; margin: 0 0 5px; }
.prose p { margin-bottom: 22px; }
.content-callout { display: flex; align-items: center; gap: 24px; margin: 48px 0; padding: 28px 32px; background: var(--citro-red); color: #fff; }
.content-callout > i { font-size: 30px; }
.content-callout span { display: block; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; opacity: .8; }
.content-callout strong { font: 700 25px/1.15 var(--heading-font); text-transform: uppercase; }
.number-list { list-style: none; padding: 0; margin: 30px 0; border-top: 1px solid #ccd1da; }
.number-list li { display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid #ccd1da; }
.number-list li > span { color: var(--citro-red); font-size: 11px; font-weight: 800; }
.number-list p { margin: 0; font-size: 15px; }
.prose blockquote { margin: 48px 0; padding: 15px 0 15px 32px; border-left: 5px solid var(--citro-yellow); color: var(--citro-navy); font: 700 32px/1.25 var(--heading-font); text-transform: uppercase; }
.prose-actions { display: flex; align-items: center; gap: 25px; margin-top: 55px; }

.contact-person-block { margin: 48px 0 56px; }
.contact-person-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.contact-person-card { min-width: 0; padding: 10px 10px 16px; background: #fff; border-top: 5px solid var(--citro-red); text-align: center; box-shadow: 0 10px 28px rgba(9, 27, 74, .08); }
.contact-person-card__image { width: 100%; aspect-ratio: 1 / 1; max-width: 150px; margin: 0 auto 16px; background: #e5e9f0; overflow: hidden; }
.contact-person-card__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: 0px !important; padding-bottom: 0px !important;}
.contact-person-card__body { padding: 0; }
.contact-person-card__role { display: block; margin-top: 5px; color: var(--citro-red); font-size: 11px; font-weight: 800; letter-spacing: .02em; line-height: 1.35; }
.contact-person-card h3 { margin: 0 0 6px; color: var(--citro-ink); font-size: 20px; line-height: 1.12; }
.contact-person-card__links { display: grid; gap: 5px; margin-top: 12px; }
.contact-person-card__links a { display: inline-flex; align-items: center; justify-content: center; gap: 6px; min-width: 0; color: #596273; font-size: 11px; font-weight: 700; line-height: 1.35; overflow-wrap: anywhere; }
.contact-person-card__links a:hover { color: var(--citro-red); }
.contact-person-card__links i { color: var(--citro-red); font-size: 12px; }

/* About page */
.about-hero { position: relative; min-height: 690px; display: flex; align-items: flex-end; overflow: hidden; background: var(--citro-navy-dark); }
.about-hero__image, .about-hero__overlay { position: absolute; inset: 0; }
.about-hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: center 43%; }
.about-hero__overlay { background: linear-gradient(90deg, rgba(7,21,61,.96) 0%, rgba(7,21,61,.68) 48%, rgba(7,21,61,.16) 85%), linear-gradient(0deg, rgba(7,21,61,.7), transparent 50%); }
.about-hero__content { position: relative; z-index: 1; padding-top: 50px; padding-bottom: 75px; }
.about-hero__content .breadcrumbs { margin-bottom: 70px; }
.about-hero__content > p { max-width: 600px; margin: 30px 0 0; color: #fff; font-size: 20px; line-height: 1.6; }
.two-column-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; color: var(--citro-ink); font-size: 19px; line-height: 1.7; }
.story-band { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 700px; background: var(--citro-navy-dark); }
.story-band__visual { position: relative; overflow: hidden; }
.story-band__visual img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.25); filter: saturate(.85); }
.story-band__visual span { position: absolute; left: 35px; bottom: 30px; color: #fff; font: 800 13px/1 var(--heading-font); letter-spacing: .15em; text-transform: uppercase; writing-mode: vertical-rl; }
.story-band__copy { padding: 90px clamp(45px, 7vw, 110px); display: flex; flex-direction: column; justify-content: center; color: #fff; }
.story-band__copy h2, .organization-section h2 { color: #fff; font-size: clamp(62px, 7vw, 100px); line-height: .78; margin: 20px 0 32px; }
.story-band__copy p { max-width: 580px; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.75; }
.story-band__copy .button { align-self: flex-start; margin-top: 20px; }
.about-value-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #ccd1da; border-left: 1px solid #ccd1da; }
.about-value-grid article { position: relative; min-height: 330px; padding: 32px; border-right: 1px solid #ccd1da; border-bottom: 1px solid #ccd1da; }
.about-value-grid article > span { position: absolute; right: 25px; top: 20px; color: #9da4b2; font-size: 10px; font-weight: 800; }
.about-value-grid i { display: block; color: var(--citro-red); font-size: 38px; margin: 50px 0 50px; }
.about-value-grid h3 { font-size: 32px; margin-bottom: 10px; }
.about-value-grid p { color: #697183; font-size: 14px; line-height: 1.6; }
.organization-section { background: var(--citro-navy); color: #fff; }
.organization-section .col-lg-5 > p { max-width: 500px; color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.75; }
.organization-list { border-top: 1px solid rgba(255,255,255,.3); }
.organization-list > div { display: grid; grid-template-columns: 50px 220px 1fr; align-items: center; gap: 20px; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.3); }
.organization-list span { color: var(--citro-yellow); font-size: 10px; font-weight: 800; }
.organization-list h3 { color: #fff; font-size: 28px; margin: 0; }
.organization-list p { color: rgba(255,255,255,.65); font-size: 14px; margin: 0; }
.page-cta { background: var(--citro-red); color: #fff; padding: 70px 0; }
.page-cta .container-xxl { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.page-cta h2 { color: #fff; font-size: clamp(50px, 6vw, 82px); line-height: .9; margin: 15px 0 0; }

/* Article listing */
.listing-section { background: var(--citro-cream); }
.listing-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 45px; padding-bottom: 24px; border-bottom: 1px solid #cfd3dc; }
.filter-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-buttons button { border: 1px solid #c5cad4; background: transparent; color: #626b7d; padding: 11px 17px; font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.filter-buttons button.active, .filter-buttons button:hover { border-color: var(--citro-red); background: var(--citro-red); color: #fff; }
.article-search { min-width: 280px; display: flex; gap: 10px; align-items: center; border-bottom: 1px solid #9fa6b3; }
.article-search i { color: var(--citro-red); }
.article-search input { width: 100%; border: 0; outline: 0; background: transparent; padding: 11px 0; }
.featured-article { display: grid; grid-template-columns: 1.2fr .8fr; min-height: 510px; margin-bottom: 22px; background: #fff; }
.featured-article__image { overflow: hidden; }
.featured-article__image img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.13); }
.featured-article__copy { padding: 50px; display: flex; flex-direction: column; }
.featured-article h2 { margin: 20px 0; font-size: clamp(46px, 5vw, 68px); line-height: .9; }
.featured-article h2 a, .article-card h3 a { color: var(--citro-ink); }
.featured-article p { color: #626b7c; line-height: 1.7; }
.article-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.article-grid--three { grid-template-columns: repeat(3, 1fr); }
.article-card { display: grid; grid-template-columns: .83fr 1.17fr; min-height: 330px; background: #fff; }
.article-grid--three .article-card { display: flex; min-height: 480px; flex-direction: column; }
.article-card[hidden], .featured-article[hidden] { display: none; }
.article-card__image { min-height: 240px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; align-items: center; background: #dfe3ea; color: #fff; }
.article-card__image img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.25); }
.article-card__image > i { font-size: 68px; opacity: .8; }
.article-card__image > span { margin-top: 12px; font: 800 24px/1 var(--heading-font); letter-spacing: .08em; text-transform: uppercase; }
.article-card__image--navy { background: var(--citro-navy); }
.article-card__image--red { background: var(--citro-red); }
.article-card__image--yellow { background: var(--citro-yellow); color: var(--citro-ink); }
.article-card__body { padding: 30px; display: flex; flex-direction: column; }
.article-card h3 { margin: 15px 0; font-size: 31px; line-height: 1; }
.article-card p { color: #687082; font-size: 14px; line-height: 1.65; }
.article-card__footer { display: flex; justify-content: space-between; align-items: center; gap: 15px; margin-top: auto; padding-top: 20px; color: #8a91a0; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.article-card__footer a { width: 42px; height: 42px; border: 1px solid #ccd1da; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--citro-red); }

/* Distinct article categories without requiring extra CMS fields. */
.listing-section .featured-article,
.listing-section .article-card {
  position: relative;
  overflow: hidden;
  border-top: 7px solid transparent;
}
.listing-section [data-category="nieuws"] { border-top-color: var(--citro-red); }
.listing-section [data-category="tips"] {
  border-top-color: var(--citro-yellow);
  background: #fffdf3;
}
.listing-section [data-category="verhalen"] {
  grid-column: 1 / -1;
  grid-template-columns: 1.15fr .85fr;
  border-top-color: #5d78c8;
  background: var(--citro-navy);
}
.listing-section [data-category="verhalen"] .article-card__body {
  justify-content: center;
  padding: 42px;
}
.listing-section [data-category="verhalen"] .article-card__image { min-height: 390px; }
.listing-section [data-category="verhalen"] h3,
.listing-section [data-category="verhalen"] p { color: #fff; }
.listing-section [data-category="verhalen"] .news-meta { color: var(--citro-yellow); }
.listing-section [data-category="verhalen"] .article-card__footer { color: rgba(255,255,255,.6); }
.listing-section [data-category="tips"]::after {
  content: "TIP";
  position: absolute;
  top: 18px;
  right: -31px;
  width: 120px;
  padding: 7px 0;
  transform: rotate(45deg);
  background: var(--citro-yellow);
  color: var(--citro-ink);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-align: center;
}
.listing-section [data-category="nieuws"] .news-meta { color: var(--citro-red); }
.listing-section [data-category="tips"] .news-meta { color: #8a6900; }
.listing-section [data-category][hidden] { display: none !important; }

.filter-buttons button[data-filter="nieuws"].active,
.filter-buttons button[data-filter="nieuws"]:hover {
  border-color: var(--citro-red);
  background: var(--citro-red);
}
.filter-buttons button[data-filter="tips"].active,
.filter-buttons button[data-filter="tips"]:hover {
  border-color: var(--citro-yellow);
  background: var(--citro-yellow);
  color: var(--citro-ink);
}
.filter-buttons button[data-filter="verhalen"].active,
.filter-buttons button[data-filter="verhalen"]:hover {
  border-color: var(--citro-navy);
  background: var(--citro-navy);
}

.pagination { display: flex; justify-content: center; gap: 7px; margin-top: 55px; }
.pagination a { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border: 1px solid #c7ccd6; color: var(--citro-ink); font-size: 12px; font-weight: 800; }
.pagination a.active, .pagination a:hover { background: var(--citro-red); border-color: var(--citro-red); color: #fff; }
.newsletter-panel { background: var(--citro-red); color: #fff; padding: 70px 0; }
.newsletter-panel .container-xxl { display: grid; grid-template-columns: 1fr .8fr; align-items: end; gap: 80px; }
.newsletter-panel h2 { color: #fff; max-width: 650px; margin: 15px 0 0; font-size: clamp(48px, 5vw, 72px); line-height: .9; }
.newsletter-panel form { display: flex; border-bottom: 2px solid #fff; }
.newsletter-panel input { flex: 1; min-width: 0; padding: 17px 0; border: 0; outline: 0; background: transparent; color: #fff; }
.newsletter-panel input::placeholder { color: rgba(255,255,255,.75); }
.newsletter-panel button { border: 0; background: transparent; color: #fff; font-size: 12px; font-weight: 800; text-transform: uppercase; }

/* Article reader */
.article-hero { background: var(--citro-navy-dark); color: #fff; padding: 58px 0 150px; }
.article-hero__inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.article-hero__inner .section-kicker { justify-content: center; }
.article-hero__inner > p { max-width: 760px; margin: 35px auto 0; color: rgba(255,255,255,.76); font-size: 19px; line-height: 1.7; }
.article-meta { display: flex; justify-content: center; flex-wrap: wrap; gap: 28px; margin-top: 32px; color: rgba(255,255,255,.65); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.article-meta i { margin-right: 7px; color: var(--citro-yellow); }
.article-cover { max-width: 1280px; height: 650px; margin: -90px auto 0; position: relative; z-index: 2; overflow: hidden; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); }
.reader-layout { display: grid; grid-template-columns: 210px minmax(0, 760px); gap: clamp(65px, 10vw, 150px); justify-content: center; align-items: start; }
.reader-sidebar { position: sticky; top: 135px; }
.reader-toc { position: static; }
.share-links { margin-top: 35px; }
.share-links > span { display: block; margin-bottom: 12px; color: #858c9a; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.share-links a { display: inline-flex; width: 38px; height: 38px; margin-right: 5px; align-items: center; justify-content: center; border: 1px solid #ced2da; border-radius: 50%; color: var(--citro-navy); }
.article-quote { margin: 55px 0; padding: 40px; background: var(--citro-navy); color: #fff; }
.article-quote blockquote { margin: 0; padding: 0; border: 0; color: #fff; font-size: 38px; line-height: 1.1; }
.article-quote figcaption { margin-top: 20px; color: var(--citro-yellow); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.check-list { list-style: none; margin: 30px 0; padding: 0; }
.check-list li { display: flex; gap: 15px; padding: 14px 0; border-bottom: 1px solid #d5d9e1; color: var(--citro-ink); font-weight: 600; }
.check-list i { color: var(--citro-red); font-size: 20px; }
.reader-tip { display: flex; gap: 22px; margin: 45px 0; padding: 28px; background: var(--citro-yellow); color: var(--citro-ink); }
.reader-tip > i { font-size: 30px; }
.reader-tip strong { display: block; font: 800 23px/1 var(--heading-font); text-transform: uppercase; }
.reader-tip p { margin: 8px 0 0; font-size: 14px; line-height: 1.6; }
.article-author { display: grid; grid-template-columns: 80px 1fr; gap: 25px; margin-top: 60px; padding-top: 35px; border-top: 1px solid #ccd1da; }
.article-author__mark { width: 75px; height: 75px; border-radius: 50%; background: var(--citro-red); color: #fff; display: flex; align-items: center; justify-content: center; font: 900 40px/1 var(--heading-font); }
.article-author span { color: var(--citro-red); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.article-author h3 { margin: 5px 0; }
.article-author p { margin: 0; font-size: 14px; line-height: 1.6; }
.related-section { background: var(--citro-cream); }

@media (max-width: 991px) {
  .page-hero__grid, .simple-content-layout, .story-band, .featured-article, .reader-layout { grid-template-columns: 1fr; }
  .content-aside, .reader-sidebar { position: static; }
  .content-aside { display: none; }
  .story-band__visual { min-height: 500px; }
  .about-value-grid { grid-template-columns: 1fr 1fr; }
  .organization-list > div { grid-template-columns: 45px 180px 1fr; }
  .article-grid, .article-grid--three { grid-template-columns: 1fr 1fr; }
  .article-card { display: flex; flex-direction: column; }
  .listing-section [data-category="verhalen"] {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .reader-sidebar { display: flex; justify-content: space-between; gap: 30px; }
  .reader-toc { flex: 1; }
}

@media (max-width: 767px) {
  .breadcrumbs { margin-bottom: 40px; }
  .page-hero, .article-hero { padding: 42px 0 70px; }
  .page-hero h1, .about-hero h1, .article-hero h1 { font-size: 66px; }
  .page-hero__grid { gap: 35px; }
  .page-hero__grid, .page-hero__grid > *, .article-hero__inner { min-width: 0; max-width: 100%; }
  .page-hero__grid > p, .article-hero__inner > p { width: 100%; max-width: 100%; overflow-wrap: anywhere; font-size: 16px; }
  .prose, .prose-lead { font-size: 16px; }
  .prose h2 { margin-top: 48px; font-size: 40px; }
  .content-callout { align-items: flex-start; padding: 23px; }
  .content-callout strong { font-size: 20px; }
  .prose-actions { align-items: stretch; flex-direction: column; }
  .contact-person-block { margin: 36px 0 44px; }
  .contact-person-grid { grid-template-columns: 1fr 1fr; gap: 26px 18px; }
  .contact-person-card { padding: 9px 9px 15px; }
  .contact-person-card__image { max-width: 138px; }
  .contact-person-card h3 { font-size: 18px; }
  .contact-person-card__links a { font-size: 10px; }
  .about-hero { min-height: 650px; }
  .two-column-copy { grid-template-columns: 1fr; gap: 10px; }
  .story-band__visual { min-height: 360px; }
  .story-band__copy { padding: 65px 24px; }
  .about-value-grid { grid-template-columns: 1fr; }
  .organization-list > div { grid-template-columns: 35px 1fr; }
  .organization-list p { grid-column: 2; }
  .page-cta .container-xxl, .listing-toolbar { align-items: stretch; flex-direction: column; }
  .listing-toolbar { display: flex; }
  .article-search { min-width: 0; width: 100%; }
  .featured-article__copy { padding: 30px 24px; }
  .featured-article h2 { font-size: 44px; }
  .article-grid, .article-grid--three { grid-template-columns: 1fr; }
  .article-card { min-height: 0; }
  .listing-section [data-category="verhalen"] {
    grid-column: auto;
    display: flex;
  }
  .listing-section [data-category="verhalen"] .article-card__image { min-height: 280px; }
  .listing-section [data-category="verhalen"] .article-card__body { padding: 30px 24px; }
  .newsletter-panel .container-xxl { grid-template-columns: 1fr; gap: 35px; }
  .article-cover { height: 350px; margin-top: -35px; }
  .article-hero { padding-bottom: 75px; }
  .reader-sidebar { display: none; }
  .article-quote { padding: 28px 24px; }
  .article-quote blockquote { font-size: 30px; }
}

/* Navigation emblem, controlled mega-menu and fully clickable cards */
.brand {
  position: relative;
  width: 150px;
  height: 82px;
  align-self: stretch;
  margin-right: 52px;
  overflow: visible;
  justify-content: center;
  z-index: 3;
}
.brand::before {
  display: none;
}
.brand img {
  position: absolute;
  top: -18px;
  width: 124px;
  height: 124px;
  object-fit: contain;
  filter: none;
  z-index: 1;
  transition: top .3s ease, width .3s ease, height .3s ease, transform .25s ease, filter .3s ease;
}
.brand:hover img { transform: none; }
.scrolled .brand::before {
  top: 7px;
  width: 68px;
  height: 68px;
  opacity: 0;
  box-shadow: none;
  transition: top .3s ease, width .3s ease, height .3s ease;
}
.scrolled .brand img {
  top: 10px;
  width: 62px;
  height: 62px;
  filter: none;
  transform: none;
  transition: top .3s ease, width .3s ease, height .3s ease, transform .25s ease;
}
.footer-brand img {
  width: 245px;
  height: auto;
  max-height: 112px;
  object-fit: contain;
  object-position: left center;
}
.clickable-card { cursor: pointer; }

@media (min-width: 1200px) {
  .brand::before {
    content: "";
    position: absolute;
    top: -22px;
    display: block;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 12px 26px rgba(8,25,68,.2);
    opacity: 1;
    transition: top .3s ease, width .3s ease, height .3s ease;
  }
  .brand img { filter: drop-shadow(0 12px 15px rgba(8,25,68,.2)); }
  .scrolled .brand::before {
    display: none;
    opacity: 0;
    box-shadow: none;
  }
  .scrolled .brand img { filter: none; }
  .alert-strip .container-xxl { padding-left: 190px; }
  body.mega-menu-active .header .navmenu .megamenu-2:not(.is-open) > a {
    pointer-events: none;
  }
  .header .navmenu .megamenu-2 > .megamenu-list {
    pointer-events: none;
  }
  .header .navmenu .megamenu-2:hover > .megamenu-list {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 16px);
    pointer-events: none;
  }
  .header .navmenu .megamenu-2.is-open > .megamenu-list {
    top: 100%;
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
  }
}

.mission-card {
  transition: transform .3s ease, filter .3s ease, box-shadow .3s ease;
}
.mission-card > a { display: none; }
.mission-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.mission-card:hover,
.mission-card:focus-visible {
  z-index: 2;
  transform: translateY(-10px);
  filter: brightness(1.05);
  box-shadow: 0 24px 45px rgba(0,0,0,.16);
  outline: 0;
}
.mission-card:hover::after,
.mission-card:focus-visible::after { transform: scaleX(1); }

.news-card,
.featured-article,
.article-card {
  transition: transform .28s ease, box-shadow .28s ease;
}
.news-card__body > a,
.article-card__footer a { display: none; }
.news-card__image img,
.featured-article__image img,
.article-card__image img { transition: transform .45s ease; }
.news-card:hover,
.news-card:focus-visible,
.featured-article:hover,
.featured-article:focus-visible,
.article-card:hover,
.article-card:focus-visible {
  transform: translateY(-7px);
  box-shadow: 0 24px 45px rgba(10,28,74,.15);
  outline: 0;
}
.news-card:hover .news-card__image img { transform: scale(1.26); }
.featured-article:hover .featured-article__image img { transform: scale(1.18); }
.article-card__image img { transform: scale(1.08); }
.article-card:hover .article-card__image img { transform: scale(1.15); }
.featured-article h2,
.article-card h3 { color: var(--citro-ink); }
.listing-section [data-category="verhalen"] h3 { color: #fff; }

@media (max-width: 1199px) {
  .brand { width: 118px; margin-right: auto; }
  .brand::before { top: 5px; width: 72px; height: 72px; }
  .brand img { top: 8px; width: 66px; height: 66px; filter: none; }
  .scrolled .brand::before { top: 7px; width: 68px; height: 68px; opacity: 0; box-shadow: none; }
  .scrolled .brand img { top: 10px; width: 62px; height: 62px; filter: none; }
}

@media (max-width: 767px) {
  .header {
    position: fixed !important;
    top: 34px;
    right: 0;
    left: 0;
    width: 100%;
    transition: top .2s ease, transform .3s ease, box-shadow .3s ease;
    will-change: transform;
  }
  .header + main { margin-top: 74px; }
  body.past-alert-strip .header { top: 0; }
  body.scrolling-down:not(.mobile-nav-active) .header { transform: translate3d(0, -105%, 0); }
  body.scrolling-up .header,
  body.mobile-nav-active .header { transform: translate3d(0, 0, 0); }
  body.mobile-nav-active .header {
    position: fixed !important;
    top: 0 !important;
    transform: none !important;
    transition: none;
    will-change: auto;
  }

  .header__inner {
    display: grid;
    grid-template-columns: 82px minmax(52px, 1fr) 104px;
    min-height: 74px;
    height: 74px;
    align-items: stretch !important;
    padding-left: 12px;
    padding-right: 0;
  }
  .brand {
    grid-column: 1;
    grid-row: 1;
    order: initial;
    width: 82px;
    height: 74px;
    margin: 0;
    align-self: stretch;
    justify-self: start;
  }
  .brand img,
  .scrolled .brand img {
    top: 6px;
    left: 6px;
    width: 62px;
    height: 62px;
    filter: none;
  }
  .header .navmenu {
    grid-column: 2;
    grid-row: 1;
    order: initial;
    display: flex;
    min-width: 52px;
    height: 74px;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
  }
  .header .navmenu .mobile-nav-toggle {
    position: static;
    display: flex;
    width: 52px;
    height: 74px;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: var(--citro-ink);
    font-size: 30px;
    line-height: 1;
  }
  .header__actions {
    grid-column: 3;
    grid-row: 1;
    order: initial;
    width: 104px;
    height: 74px;
    margin: 0;
    align-self: stretch;
  }
  .donate-button {
    width: 104px;
    min-width: 104px;
    height: 74px;
    padding: 0 14px;
    gap: 8px;
  }
  .mobile-nav-active .header .navmenu .mobile-nav-toggle {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    color: #fff;
    z-index: 10000;
  }
  .mobile-nav-active .header .navmenu {
    position: fixed !important;
    inset: 0 !important;
    display: block;
    width: 100vw;
    max-width: none;
    height: 100dvh;
    min-height: 100vh;
    overflow: hidden;
    background: rgba(8, 19, 49, .88);
    transition: none;
    box-shadow: none;
    z-index: 9998;
  }
  .mobile-nav-active .header .navmenu > ul {
    position: fixed;
    inset: 74px 16px 16px;
    display: block;
    width: auto;
    height: auto;
    max-height: none;
    margin: 0;
    padding: 14px 0 30px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    transition: none;
  }

  /* One mobile accordion model: all submenu panels stay in document flow. */
  .mobile-nav-active .navmenu .megamenu-2 > .megamenu-list {
    position: static !important;
    inset: auto !important;
    display: none !important;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transition: none;
  }
  .mobile-nav-active .navmenu .megamenu-2.active > .megamenu-list {
    display: block !important;
  }
  .mobile-nav-active .navmenu .megamenu-item > ul {
    position: static !important;
    inset: auto !important;
    display: none !important;
    width: 100%;
    height: auto !important;
    min-height: 0;
    margin: 0;
    overflow: visible;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
    transition: none;
  }
  .mobile-nav-active .navmenu .megamenu-item.active > ul {
    display: block !important;
  }
  .mobile-nav-active .navmenu .megamenu-item.active > ul > li > ul {
    position: static !important;
    inset: auto !important;
    display: block !important;
    width: 100%;
    height: auto !important;
    margin: 0;
    overflow: visible;
    visibility: visible;
    opacity: 1;
    box-shadow: none;
    transition: none;
  }

  /* Desktop information cards add noise in the compact mobile accordion. */
  .mobile-nav-active .navmenu .mega-intro,
  .mobile-nav-active .navmenu .megamenu-item > ul > li:has(> .mega-intro) {
    display: none !important;
  }

  .mobile-nav-active .navmenu ul,
  .mobile-nav-active .navmenu li,
  .mobile-nav-active .navmenu a {
    box-shadow: none !important;
    transition-duration: 0s !important;
  }
}

/* Volunteer and donation pages */
.action-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--citro-navy-dark);
}
.action-hero__image,
.action-hero__overlay { position: absolute; inset: 0; }
.action-hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.action-hero__overlay { background: linear-gradient(90deg, rgba(7,21,61,.97) 0%, rgba(7,21,61,.72) 48%, rgba(7,21,61,.15) 88%), linear-gradient(0deg, rgba(7,21,61,.68), transparent 50%); }
.action-hero__content { position: relative; z-index: 1; padding-top: 55px; padding-bottom: 75px; }
.action-hero__content .breadcrumbs { margin-bottom: 70px; }
.action-hero h1 {
  max-width: 950px;
  margin: 22px 0 32px;
  color: #fff;
  font-size: clamp(78px, 10vw, 140px);
  font-weight: 900;
  line-height: .76;
}
.action-hero h1 em { color: var(--citro-red); font-style: italic; }
.action-hero__content > p { max-width: 650px; color: #fff; font-size: 20px; line-height: 1.65; }
.action-hero__content > .button { margin-top: 22px; }
.volunteer-intro { background: #fff; }
.role-section { background: var(--citro-navy-dark); color: #fff; }
.role-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.role-grid article {
  position: relative;
  min-height: 390px;
  padding: 35px;
  background: var(--citro-navy);
  border-right: 1px solid rgba(255,255,255,.15);
}
.role-grid article:nth-child(2) { background: var(--citro-red); }
.role-grid article:nth-child(4) { background: var(--citro-yellow); color: var(--citro-ink); }
.role-grid article > span { position: absolute; top: 25px; right: 25px; font-size: 10px; font-weight: 800; opacity: .6; }
.role-grid i { display: block; margin: 40px 0 80px; font-size: 42px; }
.role-grid h3 { color: inherit; font-size: 35px; line-height: 1; }
.role-grid p { color: inherit; opacity: .75; font-size: 14px; line-height: 1.65; }
.training-section { background: var(--citro-cream); }
.training-section .col-lg-5 > p { max-width: 470px; font-size: 17px; line-height: 1.7; }
.volunteer-steps { list-style: none; margin: 0; padding: 0; border-top: 2px solid var(--citro-ink); }
.volunteer-steps li { display: grid; grid-template-columns: 55px 210px 1fr; gap: 22px; align-items: center; padding: 27px 0; border-bottom: 1px solid #c9ced7; }
.volunteer-steps li > span { color: var(--citro-red); font-size: 11px; font-weight: 800; }
.volunteer-steps h3 { margin: 0; font-size: 29px; }
.volunteer-steps p { margin: 0; color: #667082; font-size: 14px; line-height: 1.6; }
.volunteer-quote { padding: 90px 0; background: var(--citro-red); color: #fff; text-align: center; }
.volunteer-quote i { display: block; color: var(--citro-yellow); font-size: 42px; }
.volunteer-quote blockquote { max-width: 1000px; margin: 20px auto; color: #fff; font: 800 clamp(42px, 5vw, 72px)/1 var(--heading-font); text-transform: uppercase; }
.volunteer-quote span { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.signup-section { background: #fff; }
.signup-section .col-lg-5 > p { max-width: 480px; font-size: 17px; line-height: 1.7; }
.signup-note { display: flex; gap: 15px; max-width: 480px; margin-top: 35px; padding: 22px; background: var(--citro-yellow); color: var(--citro-ink); }
.signup-note i { font-size: 22px; }
.signup-note p { margin: 0; font-size: 13px; line-height: 1.6; }

.donation-hero { position: relative; overflow: hidden; padding: 58px 0 100px; background: var(--citro-navy-dark); color: #fff; }
.donation-hero::after { content: ""; position: absolute; width: 620px; height: 620px; left: -240px; bottom: -360px; border: 100px solid rgba(255,255,255,.035); border-radius: 50%; }
.donation-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 520px; gap: 85px; align-items: center; }
.donation-hero h1 { margin: 20px 0 30px; color: #fff; font-size: clamp(80px, 9vw, 132px); font-weight: 900; line-height: .76; }
.donation-hero h1 em { color: var(--citro-red); font-style: italic; }
.donation-hero__grid > div > p { max-width: 640px; color: rgba(255,255,255,.76); font-size: 19px; line-height: 1.7; }
.donation-form { padding: 42px; background: #fff; color: var(--citro-ink); box-shadow: 0 28px 60px rgba(0,0,0,.25); }
.donation-form__eyebrow { display: block; margin-bottom: 22px; color: var(--citro-red); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.frequency-options, .amount-options { display: grid; gap: 8px; }
.frequency-options { grid-template-columns: 1fr 1fr; margin-bottom: 25px; }
.amount-options { grid-template-columns: repeat(4, 1fr); margin-bottom: 22px; }
.frequency-options input, .amount-options input { position: absolute; opacity: 0; pointer-events: none; }
.frequency-options span, .amount-options span { display: flex; min-height: 50px; align-items: center; justify-content: center; border: 1px solid #c9ced8; font-size: 12px; font-weight: 800; cursor: pointer; }
.amount-options span { min-height: 70px; font: 800 27px/1 var(--heading-font); }
.frequency-options input:checked + span, .amount-options input:checked + span { border-color: var(--citro-red); background: var(--citro-red); color: #fff; }
.custom-amount { margin-bottom: 22px; }
.custom-amount > span { display: block; margin-bottom: 8px; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.custom-amount > div { display: flex; align-items: center; border-bottom: 1px solid #aeb5c1; }
.custom-amount strong { color: var(--citro-red); font-size: 22px; }
.custom-amount input { width: 100%; border: 0; outline: 0; padding: 12px; }
.donation-form .button { width: 100%; }
.donation-form small { display: block; margin-top: 15px; color: #7e8695; font-size: 10px; text-align: center; }
.donation-impact { background: var(--citro-cream); }
.impact-donation-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 55px; border-top: 1px solid #c9ced7; border-left: 1px solid #c9ced7; }
.impact-donation-grid article { min-height: 300px; padding: 32px; border-right: 1px solid #c9ced7; border-bottom: 1px solid #c9ced7; background: #fff; }
.impact-donation-grid strong { display: block; color: var(--citro-red); font: 900 58px/1 var(--heading-font); }
.impact-donation-grid h3 { margin: 70px 0 10px; font-size: 29px; }
.impact-donation-grid p { color: #667082; font-size: 13px; line-height: 1.65; }
.donation-story { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 700px; background: var(--citro-navy); }
.donation-story__image { overflow: hidden; }
.donation-story__image img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.22); }
.donation-story__copy { display: flex; flex-direction: column; justify-content: center; padding: 80px clamp(45px, 7vw, 105px); color: #fff; }
.donation-story h2 { margin: 20px 0 28px; color: #fff; font-size: clamp(58px, 6vw, 86px); line-height: .85; }
.donation-story p { color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.7; }
.donation-story ul { list-style: none; margin: 25px 0 0; padding: 0; }
.donation-story li { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.2); font-weight: 700; }
.donation-story li i { color: var(--citro-yellow); }
.business-support { background: #fff; }
.business-support__panel { display: grid; grid-template-columns: 1fr .75fr; gap: 80px; align-items: end; padding: 65px; background: var(--citro-red); color: #fff; }
.business-support h2 { margin: 15px 0 0; color: #fff; font-size: clamp(55px, 6vw, 82px); line-height: .86; }
.business-support__panel p { color: rgba(255,255,255,.8); font-size: 16px; line-height: 1.7; }
.business-support__panel .button { margin-top: 15px; }
.donation-faq { background: var(--citro-cream); }
.donation-faq .faq-item {
  position: relative;
  padding: 26px 58px 26px 0;
  border-top: 1px solid #c4cad4;
}
.donation-faq .faq-item:last-child { border-bottom: 1px solid #c4cad4; }
.donation-faq .faq-item h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.25;
  cursor: pointer;
}
.donation-faq .faq-item h3:focus-visible {
  color: var(--citro-red);
  outline: 2px solid var(--citro-red);
  outline-offset: 5px;
}
.donation-faq .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  opacity: 0;
  transition: grid-template-rows .3s ease, opacity .3s ease, padding .3s ease;
}
.donation-faq .faq-content p {
  overflow: hidden;
  margin: 0;
  color: #667082;
  line-height: 1.7;
}
.donation-faq .faq-toggle {
  position: absolute;
  top: 34px;
  right: 8px;
  color: var(--citro-red);
  cursor: pointer;
  transition: transform .3s ease;
}
.donation-faq .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 16px;
}
.donation-faq .faq-active .faq-toggle { transform: rotate(90deg); }

.monthly-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 4px 0 24px;
  padding-top: 22px;
  border-top: 1px solid #d9dde4;
}
.monthly-fields[hidden] { display: none; }
.monthly-fields label {
  display: grid;
  gap: 7px;
  color: var(--citro-ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.monthly-fields label:last-child { grid-column: 1 / -1; }
.monthly-fields input,
.monthly-fields textarea {
  width: 100%;
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid #aeb5c1;
  border-radius: 0;
  outline: 0;
  color: var(--citro-ink);
  font: 400 14px/1.5 var(--default-font);
  text-transform: none;
  resize: vertical;
}
.monthly-fields input:focus,
.monthly-fields textarea:focus { border-color: var(--citro-red); }
.donation-form .loading,
.donation-form .error-message,
.donation-form .sent-message {
  display: none;
  margin: 0 0 16px;
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.5;
}
.donation-form .loading { background: #eef1f6; }
.donation-form .error-message { background: #ffe9e7; color: #a52219; }
.donation-form .sent-message { background: #e3f5e9; color: #175d2f; }
.donation-form .d-block { display: block; }

/* More breathing room for the condensed display type. */
.citro-hero h1,
.page-hero h1,
.about-hero h1,
.article-hero h1,
.action-hero h1,
.donation-hero h1 {
  line-height: .92;
  letter-spacing: -.035em;
}
.join-panel h2,
.donate-panel h2,
.donation-story h2,
.business-support h2 {
  line-height: .94;
  letter-spacing: -.02em;
}

/* Friendlier Figtree display scale. */
.page-hero h1,
.about-hero h1,
.article-hero h1 {
  font-size: clamp(58px, 7vw, 100px);
  line-height: .92;
}
.action-hero h1 {
  font-size: clamp(64px, 8vw, 108px);
  line-height: .92;
}
.donation-hero h1 {
  font-size: clamp(64px, 7.5vw, 104px);
  line-height: .92;
}
.join-panel h2,
.donate-panel h2,
.donation-story h2,
.business-support h2,
.newsletter-panel h2,
.section-heading-row h2 {
  font-weight: 800;
  line-height: 1;
}
.mission-card h3,
.news-card h3,
.article-card h3,
.featured-article h2 {
  line-height: 1.08;
}

@media (max-width: 991px) {
  .role-grid, .impact-donation-grid { grid-template-columns: 1fr 1fr; }
  .donation-hero__grid, .donation-story, .business-support__panel { grid-template-columns: 1fr; }
  .donation-form { max-width: 600px; }
  .donation-story__image { min-height: 520px; }
}

@media (max-width: 767px) {
  .action-hero { min-height: 690px; }
  .action-hero h1, .donation-hero h1 { font-size: 68px; }
  .action-hero__content .breadcrumbs { margin-bottom: 50px; }
  .role-grid, .impact-donation-grid { grid-template-columns: 1fr; }
  .role-grid article { min-height: 310px; }
  .role-grid i { margin-bottom: 45px; }
  .volunteer-steps li { grid-template-columns: 35px 1fr; }
  .volunteer-steps p { grid-column: 2; }
  .donation-hero { padding-bottom: 70px; }
  .donation-hero__grid { gap: 45px; }
  .donation-form { padding: 28px 22px; }
  .amount-options { grid-template-columns: 1fr 1fr; }
  .monthly-fields { grid-template-columns: 1fr; }
  .monthly-fields label:last-child { grid-column: auto; }
  .donation-story__image { min-height: 360px; }
  .donation-story__copy { padding: 65px 24px; }
  .business-support__panel { gap: 35px; padding: 42px 24px; }
}
