/* ============================================================
   MWU Recovery Theme — Main stylesheet
   Mirrors the visual design of the live site
   ============================================================ */

:root {
    --brand-red: #991B1E;
    --brand-red-hover: #7a1518;
    --brand-blue: #1c8cac;
    --brand-blue-hover: #166f8a;
    --text-dark: #222222;
    --text-body: #555555;
    --text-muted: #7A7A7A;
    --bg-light: #F9F9F9;
    --bg-band: #F4EFEC;
    --container: 1240px;
    --container-pad: 24px;
    --font-body: "Roboto", "Helvetica Neue", Arial, sans-serif;
    --font-heading: "Libre Franklin", "Roboto", Arial, sans-serif;
    --font-display: "Libre Franklin", "Roboto", Arial, sans-serif;
    --radius-sm: 4px;
    --radius-md: 6px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { margin: 0; font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--text-body); background: #fff; -webkit-font-smoothing: antialiased; overflow-x: hidden; max-width: 100%; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-red); text-decoration: none; }
a:hover { color: var(--brand-red-hover); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--text-dark); margin: 0 0 .5em; font-weight: 700; line-height: 1.25; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.25rem; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding-left: var(--container-pad); padding-right: var(--container-pad); }
.section { padding: 64px 0; }
@media (max-width: 768px) { .section { padding: 40px 0; } }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; box-shadow: 0 1px 0 rgba(0,0,0,.05); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; gap: 24px; }
.site-header__logo img, .site-header__logo .custom-logo { max-height: 64px; width: auto; }
.site-title { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--brand-red); text-transform: uppercase; letter-spacing: 1px; }

/* ---------- Top utility bar ---------- */
.site-topbar {
    background: linear-gradient(90deg, var(--brand-red), #b53232);
    color: #fff;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,.08);
}
.site-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
}
.site-topbar__left,
.site-topbar__right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.site-topbar__item,
.site-topbar__icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    transition: opacity .15s, transform .15s;
    white-space: nowrap;
    line-height: 1.4;
}
.site-topbar__item:hover,
.site-topbar__icon:hover {
    color: #fff;
    opacity: .82;
}
.site-topbar__item svg,
.site-topbar__icon svg {
    flex-shrink: 0;
    opacity: .9;
}
.site-topbar__icon {
    padding-left: 18px;
    border-left: 1px solid rgba(255,255,255,.22);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-size: 12px;
}
.site-topbar__icon:first-child {
    border-left: 0;
    padding-left: 0;
}

@media (max-width: 900px) {
    .site-topbar__inner { gap: 12px; padding-top: 10px; padding-bottom: 10px; }
    .site-topbar__left,
    .site-topbar__right { gap: 14px; }
    .site-topbar__item--addr { display: none; }
    .site-topbar__icon span { display: none; }
    .site-topbar__icon { padding-left: 14px; }
}
@media (max-width: 600px) {
    .site-topbar { font-size: 12px; }
    .site-topbar__inner { flex-direction: column; align-items: flex-start; gap: 8px; }
    .site-topbar__right { width: 100%; justify-content: flex-end; }
    .site-topbar__item span,
    .site-topbar__item--addr { display: none; }
}
.site-nav__menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 28px; align-items: center; font-family: var(--font-heading); }
.site-nav__menu li { position: relative; }
.site-nav__menu > li > a { font-family: var(--font-heading); color: var(--brand-red); font-weight: 600; font-size: 14px; letter-spacing: .5px; text-transform: uppercase; padding: 8px 2px; display: inline-flex; align-items: center; gap: 4px; transition: color .15s; }
.site-nav__menu a { font-family: var(--font-heading); color: var(--brand-red); text-decoration: none; }
.site-nav__menu a:hover { color: var(--brand-blue); }
.site-nav__menu .current-menu-item > a, .site-nav__menu .current_page_item > a, .site-nav__menu .current-menu-ancestor > a { color: var(--brand-blue); }

/* Submenu chevron on parent items */
.site-nav__menu .menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 7px; height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    margin-left: 6px;
    transition: transform .2s;
    flex: 0 0 auto;
}
/* Nested parents (inside a sub-menu): chevron points right since panels open sideways on desktop */
.site-nav__menu .sub-menu .menu-item-has-children > a::after {
    transform: rotate(-45deg);
    margin-left: auto;
}

/* Sub-menu panel — desktop dropdown */
.site-nav__menu .sub-menu {
    position: absolute; top: 100%; left: 0;
    background: #fff;
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
    padding: 8px 0;
    min-width: 240px;
    list-style: none;
    margin: 0;
    border-top: 3px solid var(--brand-red);
    border-radius: 0 0 4px 4px;
    z-index: 50;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity .15s, transform .15s, visibility .15s;
}
.site-nav__menu > li:hover > .sub-menu,
.site-nav__menu > li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }

/* 3rd-level (nested) sub-sub-menus — open to the right */
.site-nav__menu .sub-menu .sub-menu {
    top: -8px; left: 100%;
    border-top: 0; border-left: 3px solid var(--brand-red);
    border-radius: 0 4px 4px 0;
}
.site-nav__menu .sub-menu li:hover > .sub-menu,
.site-nav__menu .sub-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.site-nav__menu .sub-menu a {
    display: flex; align-items: center;
    padding: 10px 18px;
    text-transform: none; font-weight: 500; font-size: 14px; letter-spacing: 0;
    color: var(--text-body);
    width: 100%;
}
.site-nav__menu .sub-menu a:hover { background: #fafafa; color: var(--brand-red); }

.site-nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.site-nav__toggle span { display: block; width: 24px; height: 2px; background: var(--text-dark); margin: 5px 0; transition: .2s; }

@media (max-width: 1024px) {
    .site-nav__toggle { display: inline-block; }
    .site-nav__menu {
        position: absolute; top: 100%; right: 0; left: 0;
        flex-direction: column; align-items: stretch;
        background: #fff; padding: 8px 0;
        box-shadow: 0 8px 24px rgba(0,0,0,.08);
        display: none; gap: 0;
        max-height: calc(100vh - 80px); overflow-y: auto;
    }
    .site-nav__menu.is-open { display: flex; }
    .site-nav__menu li { border-bottom: 1px solid #f0f0f0; }
    .site-nav__menu a, .site-nav__menu > li > a { padding: 14px 24px; display: flex; justify-content: space-between; align-items: center; width: 100%; }

    /* Accordion sub-menus on mobile */
    .site-nav__menu .sub-menu {
        position: static; box-shadow: none; border: 0; border-radius: 0;
        background: #fafafa; padding: 0;
        opacity: 1; visibility: visible; transform: none;
        display: none; min-width: 0;
    }
    .site-nav__menu .sub-menu .sub-menu { background: #f0f0f0; }
    .site-nav__menu .sub-menu .sub-menu .sub-menu { background: #e6e6e6; }
    .site-nav__menu li.is-open > .sub-menu { display: block; }
    .site-nav__menu .sub-menu a { padding-left: 40px; }
    .site-nav__menu .sub-menu .sub-menu a { padding-left: 56px; }
    .site-nav__menu .sub-menu .sub-menu .sub-menu a { padding-left: 72px; }

    .site-nav__menu .menu-item-has-children > a::after,
    .site-nav__menu .sub-menu .menu-item-has-children > a::after {
        transform: rotate(45deg) translateY(-2px);
        margin-left: auto;
    }
    .site-nav__menu li.is-open > a::after { transform: rotate(-135deg) translateY(2px) !important; }
}

/* ---------- Buttons ---------- */
.btn { display: inline-block; padding: 14px 36px; font-weight: 700; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; border-radius: var(--radius-sm); transition: .2s; border: 2px solid transparent; cursor: pointer; }
.btn--primary { background: var(--brand-red); color: #fff; }
.btn--primary:hover { background: var(--brand-red-hover); color: #fff; }
.btn--outline { background: transparent; color: var(--brand-red); border-color: var(--brand-red); }
.btn--outline:hover { background: var(--brand-red); color: #fff; }
.btn--outline-light { background: transparent; color: #fff; border-color: #fff; }
.btn--outline-light:hover { background: #fff; color: var(--brand-blue); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 520px; display: flex; align-items: center; background-size: cover; background-position: center; color: #fff; overflow: hidden; }
.hero__overlay { position: absolute; inset: 0; background: rgba(40, 45, 55, .55); }

/* === Stylish hero entrance animations === */
/* Ken Burns slow zoom on the background image */
.hero--animated {
    animation: mwuHeroKenBurns 18s ease-out 0s 1 forwards;
}
@keyframes mwuHeroKenBurns {
    0%   { background-size: 105% auto; background-position: center 48%; }
    100% { background-size: 115% auto; background-position: center 52%; }
}

/* Title / text / button entrance — slide DOWN from above, slowly, with stagger */
.hero-anim {
    opacity: 0;
    will-change: transform, opacity, filter;
}
.hero-anim--title {
    transform: translateY(-80px);
    filter: blur(8px);
    animation: mwuHeroSlideDown 1.8s cubic-bezier(.22,.61,.36,1) .25s forwards;
}
.hero-anim--text {
    transform: translateY(-50px);
    filter: blur(4px);
    animation: mwuHeroSlideDown 1.6s cubic-bezier(.22,.61,.36,1) .85s forwards;
}
.hero-anim--btn {
    transform: translateY(-30px) scale(.95);
    animation: mwuHeroSlideDownBtn 1.4s cubic-bezier(.22,.61,.36,1) 1.45s forwards;
    position: relative;
    overflow: hidden;
}
.hero-anim--btn::after {
    /* shine sweep across button */
    content: "";
    position: absolute; top: 0; left: -80%;
    width: 60%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.45), transparent);
    transform: skewX(-20deg);
    animation: mwuBtnShine 2.4s ease-in-out 3s infinite;
    pointer-events: none;
}
@keyframes mwuHeroSlideDown {
    0%   { opacity: 0; transform: translateY(-80px); filter: blur(8px); }
    60%  { opacity: 1; filter: blur(0); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes mwuHeroSlideDownBtn {
    0%   { opacity: 0; transform: translateY(-30px) scale(.95); }
    60%  { opacity: 1; }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes mwuBtnShine {
    0%   { left: -80%; }
    60%  { left: 130%; }
    100% { left: 130%; }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero--animated { animation: none; }
    .hero-anim,
    .hero-anim--title,
    .hero-anim--text,
    .hero-anim--btn { animation: none; opacity: 1; transform: none; filter: none; }
    .hero-anim--btn::after { display: none; }
}
.hero__inner { position: relative; max-width: 820px; padding-top: 80px; padding-bottom: 80px; text-align: center; margin: 0 auto; z-index: 1; }
.hero__title { font-family: var(--font-display); font-size: 50px; font-weight: 800; text-transform: uppercase; color: #fff; line-height: 1.2; letter-spacing: .5px; margin-bottom: 28px; }
.hero__text { font-size: 16px; max-width: 680px; margin: 0 auto 32px; line-height: 1.6; color: #fff; }
@media (max-width: 768px) { .hero { min-height: 380px; } .hero__title { font-size: 28px; } }

/* ---------- Notice band ---------- */
.notice-band { background: #fff; padding: 36px 0; text-align: center; }
.notice-band__text { max-width: 880px; margin: 0 auto; color: var(--brand-red); font-size: 15px; line-height: 1.7; }
.notice-band__text a { color: var(--brand-red); text-decoration: underline; }

/* ---------- Photo strip ---------- */
.photo-strip { padding: 0; }
.photo-strip__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.photo-strip__item { display: block; overflow: hidden; }
.photo-strip__img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .4s; display: block; }
.photo-strip__item:hover .photo-strip__img { transform: scale(1.05); }
@media (max-width: 1024px) { .photo-strip__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .photo-strip__grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Kicker (section label) — matches live 24px Libre Franklin 700 uppercase ---------- */
.kicker { font-family: var(--font-heading); color: var(--brand-blue); font-size: 24px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; line-height: 1.2; }
@media (max-width: 1024px) { .kicker { font-size: 22px; } }

/* ---------- News + Map row ---------- */
.news-row__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.news-row__headline { color: var(--text-dark); font-size: 22px; margin: 8px 0; }
.news-row__body { color: var(--text-body); }
.news-row__map { text-align: center; }
.news-row__map img { display: inline-block; max-width: 300px; }
@media (max-width: 768px) { .news-row__grid { grid-template-columns: 1fr; gap: 24px; } }

/* ---------- What We Do ---------- */
.wwd__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.wwd__body { color: var(--text-body); margin-bottom: 24px; line-height: 1.7; }
.wwd__body strong { color: var(--text-dark); }
.wwd__gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.wwd__gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 2px; }
@media (max-width: 768px) { .wwd__grid { grid-template-columns: 1fr; gap: 24px; } }

/* ---------- Programs (list) ---------- */
.programs { padding-top: 24px; }
.programs .kicker { margin-bottom: 28px; }

/* ---------- Programs ---------- */
.programs__list { list-style: none; padding: 0; margin: 0; }
.programs__item { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; }
.programs__icon { color: var(--brand-red); flex: 0 0 auto; font-size: 18px; padding-top: 2px; }
.programs__link { color: var(--text-body); }
.programs__link:hover { color: var(--brand-red); }

/* ---------- CTA (Get Involved) ---------- */
.cta { background: var(--brand-blue); color: #fff; padding: 80px 0; text-align: center; }
.cta__title { color: #fff; font-family: var(--font-display); font-size: 36px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.cta__text { max-width: 760px; margin: 0 auto 32px; font-size: 15px; }

/* ============================================================
   Who We Are page
   ============================================================ */
.wwa-hero { position: relative; background-size: cover; background-position: center; color: #fff; padding: 110px 0 120px; }
.wwa-hero__overlay { position: absolute; inset: 0; background: rgba(20, 22, 30, .65); }
.wwa-hero__inner { position: relative; text-align: center; max-width: 920px; margin: 0 auto; }
.wwa-hero__title { font-family: var(--font-display); font-size: 50px; font-weight: 800; text-transform: uppercase; color: #fff; letter-spacing: 1px; line-height: 60px; margin: 0 0 22px; }
.wwa-hero__subtitle { color: #fff; font-size: 14px; line-height: 1.75; letter-spacing: .5px; max-width: 760px; margin: 0 auto; font-weight: 400; }
@media (max-width: 1024px) { .wwa-hero__title { font-size: 30px; line-height: 1.2; } }
@media (max-width: 767px)  { .wwa-hero { padding: 70px 0 80px; } .wwa-hero__title { font-size: 24px; } .wwa-hero__subtitle { font-size: 13px; } }

/* Story 2x2 gallery */
.wwa-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wwa-gallery__item { overflow: hidden; border-radius: 4px; }
.wwa-gallery__img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .5s; }
.wwa-gallery__item:hover .wwa-gallery__img { transform: scale(1.05); }

.wwa-section { padding: 64px 0; }
.wwa-section--alt { background: #fafafa; }
.wwa-section--gray { background: #f4f6f8; }

/* Partners section — photo background with light overlay, teal heading */
.wwa-section--partners {
    position: relative;
    padding: 64px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: #f4f6f8;
    overflow: hidden;
}
.wwa-section--partners__overlay {
    position: absolute; inset: 0;
    background: rgba(244, 246, 248, .82);
    pointer-events: none;
}
@media (max-width: 900px) {
    .wwa-section--partners { background-attachment: scroll; }
}

/* Board section — soft green/photo parallax background with overlay */
.wwa-section--board {
    position: relative;
    padding: 64px 0;
    background-image: url('https://menandwomenunited.org/wp-content/uploads/2023/02/preparing-fresh-produce-2_orig.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    overflow: hidden;
}
.wwa-section--board__overlay {
    position: absolute; inset: 0;
    background: rgba(255, 255, 255, .82);
    pointer-events: none;
}
@media (max-width: 900px) {
    .wwa-section--board { background-attachment: scroll; }
}
.wwa-section--intro { padding-bottom: 24px; }

.wwa-h2 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 18px;
    position: relative;
    padding-bottom: 12px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .5px;
}
@media (max-width: 1024px) { .wwa-h2 { font-size: 28px; } }
@media (max-width: 767px)  { .wwa-h2 { font-size: 22px; } }
.wwa-h2::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 48px; height: 3px;
    background: var(--brand-red);
}
.wwa-h2--center { text-align: center; }
.wwa-h2--center::after { left: 50%; transform: translateX(-50%); }
.wwa-h2--teal { color: #2592a8; }
.wwa-h2--teal::after { background: #2592a8; }

.wwa-body { color: var(--text-body); line-height: 1.8; font-size: 15px; }
.wwa-body p { margin: 0 0 12px; }
.wwa-body strong { color: var(--text-dark); }

.wwa-intro { color: var(--text-body); line-height: 1.6; font-size: 15px; margin: 0 0 28px; max-width: 760px; }
.wwa-intro--center { margin-left: auto; margin-right: auto; text-align: center; }
.wwa-intro--italic { font-style: italic; }

.wwa-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.wwa-split--reverse .wwa-split__media { order: 1; }
.wwa-img { width: 100%; height: auto; border-radius: 6px; box-shadow: 0 6px 18px rgba(0,0,0,.08); }
@media (max-width: 900px) { .wwa-split { grid-template-columns: 1fr; gap: 24px; } .wwa-split--reverse .wwa-split__media { order: 0; } }

.wwa-list {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 8px 32px; max-width: 920px; margin: 0 auto;
}
.wwa-list li { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; color: var(--text-body); font-size: 14.5px; line-height: 1.5; }
.wwa-list__icon { color: var(--brand-red); font-weight: 700; flex: 0 0 auto; font-size: 16px; line-height: 1.5; }
.wwa-list__icon--money { color: #888; font-size: 18px; line-height: 1.4; flex: 0 0 22px; }
.wwa-list li:hover .wwa-list__icon--money { color: var(--brand-red); }
.wwa-list__icon--hand { color: #888; font-size: 18px; line-height: 1.4; flex: 0 0 22px; }
.wwa-list li:hover .wwa-list__icon--hand { color: var(--brand-red); }
.wwa-list li a {
    color: var(--text-body);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color .2s, border-color .2s;
}
.wwa-list li a:hover {
    color: var(--brand-red);
    border-bottom-color: var(--brand-red);
}
@media (max-width: 700px) { .wwa-list { grid-template-columns: 1fr; } }

.wwa-board {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    margin-bottom: 24px;
}
.wwa-board__card {
    background: #fff;
    border: 2px solid var(--brand-red);
    border-radius: 4px;
    padding: 28px 20px;
    text-align: center;
    transition: transform .25s, box-shadow .25s;
}
.wwa-board__card {
    transition: transform .25s, box-shadow .25s, background .25s, border-color .25s;
}
.wwa-board__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(153, 27, 30, .25);
    background: var(--brand-red);
    border-color: var(--brand-red);
}
.wwa-board__card:hover .wwa-board__name,
.wwa-board__card:hover .wwa-board__role,
.wwa-board__card:hover .wwa-board__loc {
    color: #fff;
}
.wwa-board__name { font-family: var(--font-heading); color: var(--text-dark); font-size: 18px; font-weight: 700; margin: 0 0 8px; transition: color .25s; }
.wwa-board__role { color: var(--text-body); font-size: 13.5px; font-weight: 500; margin: 0 0 4px; line-height: 1.5; transition: color .25s; }
.wwa-board__loc  { color: var(--text-muted); font-size: 13px; margin: 0; transition: color .25s; }
.wwa-board__note { text-align: center; color: var(--text-body); font-size: 14px; margin-top: 32px; line-height: 1.6; }
.wwa-board__note a { color: var(--brand-red); font-weight: 600; }
@media (max-width: 900px) { .wwa-board { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .wwa-board { grid-template-columns: 1fr; } }

/* ============================================================
   Generic Program / Inner page
   ============================================================ */
.program-hero { position: relative; min-height: 320px; display: flex; align-items: center; background-size: cover; background-position: center; color: #fff; padding: 60px 0; }
.program-hero__overlay { position: absolute; inset: 0; background: rgba(20, 22, 30, .58); }
.program-hero__inner { position: relative; text-align: center; max-width: 880px; margin: 0 auto; }
.program-hero__title { font-family: var(--font-display); font-size: 50px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 14px; line-height: 1.1; }
.program-hero__subtitle { color: #fff; font-size: 15px; line-height: 1.7; font-weight: 400; }
@media (max-width: 1024px) { .program-hero__title { font-size: 30px; } }
@media (max-width: 767px)  { .program-hero__title { font-size: 24px; } }

.program-body__content { max-width: 880px; margin: 0 auto; color: var(--text-body); line-height: 1.8; font-size: 15.5px; }
.program-body__content h1, .program-body__content h2, .program-body__content h3 { font-family: var(--font-heading); color: var(--text-dark); font-weight: 700; margin: 28px 0 14px; }
.program-body__content h2 { font-size: 26px; }
.program-body__content h3 { font-size: 20px; }
.program-body__content p { margin: 0 0 14px; }
.program-body__content strong { color: var(--text-dark); }
.program-body__content img { display: block; max-width: 100%; height: auto; margin: 24px auto; border-radius: 4px; }
.program-body__content ul, .program-body__content ol { padding-left: 1.4em; margin: 0 0 16px; }
.program-body__content li { margin-bottom: 6px; }
.program-body__content a { color: var(--brand-red); text-decoration: underline; }

.program-cta { background: #fafafa; padding: 56px 0; text-align: center; }
.program-cta__text { color: var(--text-body); margin: 12px auto 20px; max-width: 580px; }

/* Italic intro centered */
.program-intro__inner { max-width: 1040px; margin: 0 auto; }
.program-intro__text { color: var(--text-body); font-style: italic; font-size: 15px; line-height: 1.8; text-align: center; margin: 0; }

/* Services section */
.program-services { padding-top: 24px; padding-bottom: 64px; }
.program-services__title {
    font-family: var(--font-heading);
    color: var(--brand-blue);
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 auto 28px;
    padding-bottom: 14px;
    position: relative;
    width: max-content;
    max-width: 100%;
}
.program-services__title::after {
    content: "";
    position: absolute;
    bottom: 0; left: 50%; transform: translateX(-50%);
    width: 60px; height: 3px;
    background: var(--brand-blue);
}
.program-services__title--left { text-align: left; width: auto; margin-left: 0; margin-right: 0; }
.program-services__title--left::after { left: 0; transform: none; }

/* Grid variant: services left + image right */
.program-services__grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
.program-services--with-image .program-services__grid { grid-template-columns: 1fr 1fr; gap: 48px; }
.program-services__intro { color: var(--text-body); font-size: 14.5px; line-height: 1.75; margin: 0 0 18px; }
.program-services__intro p { margin: 0 0 16px; }
.program-services__intro p:last-child { margin-bottom: 0; }
.program-services__intro ul { padding-left: 22px; margin: 4px 0 16px; }
.program-services__intro li { margin: 4px 0; }

/* Second section — image LEFT, text RIGHT (Summer Camp counselors etc.) */
.program-second { padding: 32px 0 56px; background: #fff; }
.program-second__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: center; }
.program-second__media img { width: 100%; max-width: 360px; height: auto; display: block; margin: 0 auto; border-radius: 4px; }
.program-second__text { color: var(--text-body); font-size: 15px; line-height: 1.8; }
.program-second__text p { margin: 0 0 16px; }
.program-second__text p:last-child { margin-bottom: 0; }
.program-second__text strong em,
.program-second__text em strong { color: var(--text-dark); }
@media (max-width: 900px) { .program-second__grid { grid-template-columns: 1fr; gap: 24px; } }

.program-services__list {
    list-style: none; padding: 0; margin: 0 auto;
    max-width: 1040px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6px 60px;
}
.program-services__list--stacked { grid-template-columns: 1fr; gap: 14px 0; max-width: none; }
.program-services__list li {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 8px 0;
    color: var(--text-body);
    font-size: 15px; line-height: 1.5;
}
.program-services__list--stacked li { padding: 6px 0; }
.program-services__icon { color: var(--brand-red); flex: 0 0 auto; font-size: 18px; }
.program-services__icon.icon-degree-style {
    width: 22px; height: 22px;
    background: var(--brand-red); color: #fff;
    border-radius: 4px;
    display: inline-flex; align-items: center; justify-content: center;
    font-style: normal;
}
.program-services__icon.icon-degree-style::before {
    content: "\f19d"; /* fa-graduation-cap */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
}
.program-services__media-img { width: 100%; border-radius: 4px; box-shadow: 0 6px 18px rgba(0,0,0,.08); }
.program-services__gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.program-services__gallery--3col { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.program-services__gallery-item { overflow: hidden; border-radius: 4px; }
.program-services__gallery-img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .4s; display: block; }
.program-services__gallery-item:hover .program-services__gallery-img { transform: scale(1.05); }
@media (max-width: 600px) { .program-services__gallery--3col { grid-template-columns: 1fr 1fr; } }
@media (max-width: 900px) {
    .program-services--with-image .program-services__grid { grid-template-columns: 1fr; }
    .program-services__list { grid-template-columns: 1fr; }
}

/* WHEN / WHERE blocks */
.program-when-where { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.program-when-where__label { font-family: var(--font-heading); color: var(--text-dark); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 6px; }
.program-when-where__value { color: var(--text-body); font-size: 14.5px; line-height: 1.6; }
.program-when-where__value strong { color: var(--text-dark); }

/* Sign-up section */
.program-signup { position: relative; padding: 64px 0; background: #fafafa; overflow: hidden; }
.program-signup__bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}
.program-signup__bg::after {
    content: "";
    position: absolute; inset: 0;
    background: rgba(0, 0, 0, .55);
}
.program-signup--has-bg .program-signup__title { color: #fff; border-bottom-color: var(--brand-red); }
.program-signup--has-bg .program-signup__intro,
.program-signup--has-bg .program-signup__contacts li,
.program-signup--has-bg .program-signup__extra,
.program-signup--has-bg .program-signup__extra strong { color: #fff; }
.program-signup--has-bg .program-signup__contacts a { color: #fff; }
.program-signup--has-bg .program-signup__contacts a:hover { color: var(--brand-red); }
.program-signup--has-bg .program-signup__contacts i { color: #fff; }
.program-signup--has-bg .container { position: relative; z-index: 1; }
.program-signup__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.program-signup__title {
    font-family: var(--font-heading);
    color: var(--brand-blue);
    font-size: 30px; font-weight: 700; text-transform: uppercase;
    margin: 0 0 18px; padding-bottom: 12px;
    border-bottom: 3px solid var(--brand-red);
    display: inline-block;
}
.program-signup__intro { color: var(--text-body); line-height: 1.7; font-size: 15px; }
.program-signup__contacts { list-style: none; padding: 0; margin: 16px 0 0; }
.program-signup__contacts li { padding: 6px 0; color: var(--text-body); }
.program-signup__contacts i { color: var(--brand-red); margin-right: 8px; }
.program-signup__contacts a { color: var(--brand-red); text-decoration: none; }
.program-signup__contacts a:hover { color: var(--brand-red-hover); }
.program-signup__extra { color: var(--text-body); font-size: 14.5px; line-height: 1.75; margin-top: 22px; }
.program-signup__extra a { color: var(--brand-red); font-weight: 600; }
.program-signup__extra a:hover { color: var(--brand-red-hover); }
.program-signup__extra strong { color: var(--text-dark); }
.program-signup__form { background: #fff; padding: 28px; border-radius: 4px; box-shadow: 0 4px 14px rgba(0,0,0,.05); }
@media (max-width: 900px) { .program-signup__grid { grid-template-columns: 1fr; gap: 24px; } }

/* Page-level centered intro (used on Moving Forward etc.) */
.program-intro-centered { padding: 64px 0 32px; text-align: center; }
.program-intro-centered__inner { max-width: 1040px; margin: 0 auto; }
.program-intro-centered__title { font-family: var(--font-heading); color: var(--text-dark); font-size: 38px; font-weight: 600; line-height: 1.25; margin: 0 0 18px; text-transform: none; letter-spacing: 0; }
.program-intro-centered__quote { font-family: var(--font-heading); color: #739B39; font-size: 22px; font-weight: 600; font-style: italic; margin: 0 0 26px; line-height: 1.4; }
.program-intro-centered__body { color: var(--text-body); font-size: 15px; line-height: 1.8; }
.program-intro-centered__body p { margin: 0 0 12px; }
.program-intro-centered__body strong { color: var(--text-dark); }
@media (max-width: 768px) { .program-intro-centered__title { font-size: 26px; } .program-intro-centered__quote { font-size: 18px; } }

/* Multi-list section (Available Services, Who Is Eligible, etc.) */
.program-list-section { padding: 48px 0; position: relative; }
.program-list-section--has-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.program-list-section--has-bg .container { position: relative; z-index: 1; }
.program-list-section__overlay {
    position: absolute; inset: 0;
    background: rgba(255, 255, 255, .88);
    pointer-events: none;
}
.program-list-section__title {
    font-family: var(--font-heading);
    color: #739B39; /* brand green (Adults & Families color) */
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 auto 14px;
    padding-bottom: 14px;
    position: relative;
    width: max-content;
    max-width: 100%;
    line-height: 1.2;
}
.program-list-section__title::after {
    content: "";
    position: absolute;
    bottom: 0; left: 50%; transform: translateX(-50%);
    width: 60px; height: 3px;
    background: #739B39;
}
.program-list-section__intro {
    color: #6c7a89;
    font-family: var(--font-heading);
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    max-width: 880px;
    margin: 0 auto 36px;
}
.program-list-section__list {
    list-style: none; padding: 0; margin: 0 auto;
    max-width: 1040px;
    column-count: 2;
    column-gap: 60px;
}
.program-list-section__list li {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 8px 0;
    color: var(--text-body); font-size: 15px; line-height: 1.5;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
}
.program-list-section__icon { color: var(--brand-red); flex: 0 0 auto; font-size: 18px; padding-top: 2px; }
/* Green icons for gem-style (Available Services) */
.program-list-section__icon.fa-gem { color: #739B39; }
@media (max-width: 700px) { .program-list-section__list { column-count: 1; } }

/* Sub-grouped items (e.g. Strengthening Families: For Parents / For Children / For The Family) */
.program-list-section__groups { max-width: 1040px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px 60px; }
.program-list-section__group { padding: 8px 0; }
.program-list-section__subtitle { font-family: var(--font-heading); color: var(--text-dark); font-size: 17px; font-weight: 700; margin: 0 0 10px; text-transform: none; letter-spacing: 0; }
.program-list-section__list--in-group { display: block; max-width: none; column-count: 1; }
.program-list-section__list--in-group li { padding: 4px 0; font-size: 14.5px; }
@media (max-width: 700px) { .program-list-section__groups { grid-template-columns: 1fr; gap: 20px; } }

/* Green accent for Adults & Families program pages
   Live site renders THE PROGRAM heading + sign-up title in green instead of blue,
   and program-services icons match. Body class set by functions.php body_class filter. */
.mwu-green-accent .program-services__title { color: #739B39; }
.mwu-green-accent .program-services__title::after { background: #739B39; }
.mwu-green-accent .program-signup__title { color: #739B39; border-bottom-color: #739B39; }
.mwu-green-accent .program-services__icon { color: #739B39; }
.mwu-green-accent .program-services__icon.icon-degree-style { background: #739B39; }
.mwu-green-accent .program-services__icon.icon-degree-style::before { color: #fff; }
.mwu-green-accent .program-when-where__label { color: #739B39; }
.mwu-green-accent .program-list-section__icon { color: #739B39; }
.mwu-green-accent .program-email-band { background: #739B39; }
.mwu-green-accent .program-signup { background: linear-gradient(rgba(115, 155, 57, 0.04), rgba(115, 155, 57, 0.10)); }
.mwu-green-accent .program-signup__intro {
    font-family: var(--font-heading);
    color: #739B39;
    font-style: italic;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    margin: 14px 0 18px;
}
.mwu-green-accent .program-signup__contacts i,
.mwu-green-accent .program-signup__contacts a { color: #739B39; }
.mwu-green-accent .program-signup__contacts a:hover { color: #5d7c2e; }

/* Email CTA band */
.program-email-band { background: var(--brand-red); padding: 26px 16px; text-align: center; }
.program-email-band__link {
    color: #fff !important;
    font-family: var(--font-heading);
    font-size: 18px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
}
.program-email-band__link:hover { text-decoration: underline; }
@media (max-width: 600px) { .program-email-band__link { font-size: 13px; } }

/* ============================================================
   Disaster Relief / similar — intro+gallery, funder cards, help form
   ============================================================ */
.dr-info { padding: 56px 0; }
.dr-info__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.dr-info__intro { color: var(--text-body); font-size: 14.5px; line-height: 1.75; margin: 0 0 24px; }
.dr-info__intro p { margin: 0 0 12px; }
.dr-info__heading {
    font-family: var(--font-heading);
    color: #739B39;
    font-size: 28px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 24px 0 4px;
    padding-bottom: 8px;
    border-bottom: 3px solid #739B39;
    display: inline-block;
    line-height: 1.2;
}
.dr-info__sub-intro { color: var(--text-body); font-size: 14.5px; line-height: 1.7; margin: 16px 0 8px; }
.dr-info__list { list-style: disc; padding-left: 24px; margin: 8px 0 0; }
.dr-info__list li { color: var(--text-body); font-size: 15px; line-height: 1.85; padding: 1px 0; }

.dr-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.dr-gallery__item { display: block; overflow: hidden; border-radius: 4px; aspect-ratio: 1; }
.dr-gallery__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.dr-gallery__item:hover .dr-gallery__img { transform: scale(1.06); }
@media (max-width: 900px) { .dr-info__grid { grid-template-columns: 1fr; gap: 28px; } }

/* FUNDING PARTNERS cards */
.dr-funders { padding: 56px 0; background: linear-gradient(rgba(115,155,57,.05), rgba(115,155,57,.12)); }
.dr-funders__header { text-align: center; margin-bottom: 32px; }
.dr-funders__title {
    font-family: var(--font-heading);
    color: #739B39;
    font-size: 20px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 8px;
    display: inline-block;
}
.dr-funders__bar { display: block; width: 60px; height: 3px; background: #739B39; margin: 0 auto; }
.dr-funders__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.dr-funder-card {
    background: #fff;
    padding: 36px 18px;
    border-radius: 4px;
    box-shadow: 0 4px 14px rgba(0,0,0,.07);
    text-align: center;
    transition: transform .3s, box-shadow .3s;
}
.dr-funder-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,.10); }
.dr-funder-card__title {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 19px; font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.25;
}
.dr-funder-card__meta {
    color: var(--text-body);
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0;
}
@media (max-width: 900px) { .dr-funders__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .dr-funders__grid { grid-template-columns: 1fr; } }

/* NEED HELP? form section */
.dr-help { padding: 56px 0; }
.dr-help__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.dr-help__col--info { text-align: center; }
.dr-help__title {
    font-family: var(--font-heading);
    color: #739B39;
    font-size: 28px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 8px;
}
.dr-help__bar { display: block; width: 60px; height: 3px; background: #739B39; margin: 0 auto 22px; }
.dr-help__contacts {
    list-style: none; padding: 0; margin: 0 0 18px;
    display: flex; justify-content: center; flex-wrap: wrap;
    gap: 24px;
}
.dr-help__contacts li { display: flex; align-items: center; gap: 8px; font-size: 15px; }
.dr-help__contacts a { color: var(--brand-red); text-decoration: none; }
.dr-help__contacts a:hover { text-decoration: underline; }
.dr-help__contacts i { color: var(--brand-red); }
.dr-help__text { color: var(--text-body); font-size: 14.5px; line-height: 1.75; text-align: left; }
.dr-help__text a, .dr-help__text a.link-green { color: #739B39; text-decoration: none; font-weight: 600; }
.dr-help__text a:hover { text-decoration: underline; }
@media (max-width: 900px) { .dr-help__grid { grid-template-columns: 1fr; gap: 28px; } }

/* Green-accent overrides applied via body class */
.mwu-green-accent .dr-help__contacts a,
.mwu-green-accent .dr-help__contacts i { color: #739B39; }

/* ============================================================
   VSA page — product grid, masonry gallery, Vimeo embed
   ============================================================ */
.vsa-section__header { text-align: center; margin-bottom: 36px; }
.vsa-section__title {
    font-family: var(--font-heading);
    color: var(--brand-blue);
    font-size: 30px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 8px;
    display: inline-block;
}
.vsa-section__bar { display: block; width: 60px; height: 3px; background: var(--brand-blue); margin: 0 auto; }

.vsa-products { padding: 56px 0; }
.vsa-products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.vsa-product {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 4px;
    overflow: hidden;
    display: flex; flex-direction: column;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
}
.vsa-product:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(0,0,0,.10); }
.vsa-product__media { display: block; overflow: hidden; }
.vsa-product__media img,
.vsa-product__img {
    width: 100%; height: auto;
    display: block;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform .4s;
}
.vsa-product:hover .vsa-product__img { transform: scale(1.04); }
.vsa-product__body { padding: 18px 16px 22px; flex: 1; display: flex; flex-direction: column; align-items: center; }
.vsa-product__title {
    font-family: var(--font-heading);
    font-size: 18px; font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.3;
}
.vsa-product__title a { color: var(--text-dark); text-decoration: none; transition: color .2s; }
.vsa-product__title a:hover { color: var(--brand-red); }
.vsa-product__price {
    color: #739B39;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 14px;
}
.vsa-product__price .woocommerce-Price-amount { color: #739B39; }
.vsa-product__btn {
    display: inline-block;
    background: transparent;
    color: var(--brand-red);
    border: 2px solid var(--brand-red);
    padding: 8px 22px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    text-decoration: none;
    font-size: 13px;
    transition: background .2s, color .2s;
}
.vsa-product__btn:hover { background: var(--brand-red); color: #fff; }
@media (max-width: 900px) { .vsa-products__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .vsa-products__grid { grid-template-columns: 1fr; } }

/* Masonry gallery using CSS columns — naturally handles variable image heights */
.vsa-gallery { padding: 32px 0 56px; }
.vsa-gallery__grid {
    column-count: 4;
    column-gap: 12px;
}
.vsa-gallery__item {
    display: block;
    overflow: hidden;
    margin: 0 0 12px;
    border-radius: 4px;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
}
.vsa-gallery__img {
    width: 100%; height: auto;
    display: block;
    transition: transform .4s;
}
.vsa-gallery__item:hover .vsa-gallery__img { transform: scale(1.04); }
@media (max-width: 1024px) { .vsa-gallery__grid { column-count: 3; } }
@media (max-width: 700px)  { .vsa-gallery__grid { column-count: 2; } }
@media (max-width: 480px)  { .vsa-gallery__grid { column-count: 1; } }

/* Vimeo video centered */
.vsa-video { padding: 16px 0 64px; }
.vsa-video__wrap {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(0,0,0,.18);
}
.vsa-video__iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: 0;
}

/* ============================================================
   Single post — newsletter article view (single.php)
   ============================================================ */
.single-hero {
    position: relative;
    min-height: 320px;
    background-size: cover; background-position: center;
    background-color: #2a2a2a;
    color: #fff;
    display: flex; align-items: center;
    padding: 56px 0;
}
.single-hero__overlay { position: absolute; inset: 0; background: rgba(20, 22, 30, .58); }
.single-hero__inner { position: relative; text-align: center; }
.single-hero__title {
    font-family: var(--font-display);
    color: #fff;
    font-size: 38px; font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.2;
    margin: 0 auto;
    max-width: 980px;
}
.single-hero__meta { color: rgba(255,255,255,.8); font-size: 14px; margin-top: 14px; letter-spacing: .5px; }

.single-post { padding: 56px 0 72px; }
.single-post__container { max-width: 820px; margin: 0 auto; }
.single-post__content { color: var(--text-body); font-size: 16px; line-height: 1.75; }
.single-post__content p { margin: 0 0 18px; }
.single-post__content img { max-width: 100%; height: auto; display: block; margin: 22px auto; border-radius: 4px; box-shadow: 0 4px 14px rgba(0,0,0,.08); }
.single-post__content a { color: var(--brand-red); }
.single-post__content a:hover { text-decoration: underline; }
.single-post__content h2, .single-post__content h3 { font-family: var(--font-heading); color: var(--text-dark); margin: 28px 0 12px; }
.single-post__content h2 { font-size: 24px; }
.single-post__content h3 { font-size: 20px; }
.single-post__content ul, .single-post__content ol { padding-left: 22px; margin: 0 0 18px; }
.single-post__content li { margin-bottom: 6px; }

.single-post__back { margin-top: 40px; text-align: center; }
.single-post__back-link {
    color: var(--brand-red);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: .5px;
}
.single-post__back-link:hover { text-decoration: underline; }

@media (max-width: 700px) {
    .single-hero__title { font-size: 26px; }
    .single-post { padding: 36px 0 56px; }
}

/* ============================================================
   Newsletter list — posts archive on the Newsletter page
   ============================================================ */
.newsletter-page { padding: 56px 0 80px; }
.newsletter-page__title {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 30px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 36px;
    text-align: left;
}
.newsletter-page__empty { color: var(--text-body); font-style: italic; }

.newsletter-list { display: flex; flex-direction: column; gap: 28px; }
.newsletter-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 4px;
    padding: 18px;
    transition: box-shadow .3s, transform .3s;
}
.newsletter-item:hover { box-shadow: 0 6px 22px rgba(0,0,0,.08); transform: translateY(-2px); }
.newsletter-item__media {
    display: block; overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4 / 3;
}
.newsletter-item__img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .4s;
}
.newsletter-item__media:hover .newsletter-item__img { transform: scale(1.04); }
.newsletter-item__body { padding: 6px 12px; }
.newsletter-item__title {
    font-family: var(--font-heading);
    font-size: 26px; font-weight: 700;
    line-height: 1.25;
    margin: 0 0 14px;
}
.newsletter-item__title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color .2s;
}
.newsletter-item__title a:hover { color: var(--brand-red); }
.newsletter-item__excerpt { color: var(--text-body); font-size: 14.5px; line-height: 1.7; }
.newsletter-item__excerpt p { margin: 0; }
@media (max-width: 800px) {
    .newsletter-item { grid-template-columns: 1fr; gap: 16px; }
    .newsletter-item__body { padding: 0 4px 8px; }
    .newsletter-item__title { font-size: 22px; }
}

/* ============================================================
   COVID Response — centered question + services title + 2-col icon list
   ============================================================ */
.cr-services { padding: 56px 0 24px; }
.cr-services__question {
    font-family: var(--font-heading);
    color: #6c7a89;
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 22px;
}
.cr-services__title-wrap { text-align: center; margin-bottom: 36px; }
.cr-services__title {
    font-family: var(--font-heading);
    color: #739B39;
    font-size: 22px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #739B39;
    display: inline-block;
    line-height: 1.3;
}
.cr-services__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 80px;
    max-width: 1040px;
    margin: 0 auto;
}
.cr-services__col { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.cr-services__item {
    display: flex; align-items: center; gap: 14px;
    color: var(--text-body); font-size: 16px;
    line-height: 1.5;
}
.cr-services__icon { color: #739B39; font-size: 22px; flex: 0 0 auto; }
@media (max-width: 700px) { .cr-services__grid { grid-template-columns: 1fr; gap: 12px; } }

/* ============================================================
   Food Pantry / Tefap / Disaster / COVID — info layout + carousel
   ============================================================ */
.fp-info { padding: 56px 0; }
.fp-info__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.fp-info__title {
    font-family: var(--font-heading);
    color: #739B39;
    font-size: 32px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0; line-height: 1.2;
}
.fp-info__title-bar { display: block; width: 60px; height: 3px; background: #739B39; margin: 8px 0 22px; }
.fp-info__label { color: var(--text-dark); font-family: var(--font-heading); font-size: 16px; margin: 0 0 6px; }
.fp-info__list { list-style: disc; padding-left: 24px; margin: 0 0 24px; }
.fp-info__list li { color: var(--text-body); font-size: 15px; line-height: 1.8; padding: 1px 0; }
.fp-info__heading {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 16px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 22px 0 8px;
}
.fp-info__body { color: var(--text-body); font-size: 15px; line-height: 1.7; margin: 0 0 12px; }
.fp-info__body p { margin: 0 0 4px; }
.fp-info__body a { color: var(--brand-red); text-decoration: none; }
.fp-info__body a.link-green { color: #739B39; }
.fp-info__body a:hover { text-decoration: underline; }
@media (max-width: 900px) { .fp-info__grid { grid-template-columns: 1fr; gap: 28px; } }

/* Carousel component (reusable) */
.mwu-carousel { position: relative; overflow: visible; border-radius: 6px; }
.mwu-carousel__track {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #f5f5f5;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(0,0,0,.10);
}
.mwu-carousel__slide { position: absolute; inset: 0; opacity: 0; transition: opacity .5s ease; }
.mwu-carousel__slide.is-active { opacity: 1; z-index: 1; }
.mwu-carousel__img, .mwu-carousel__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mwu-carousel__nav {
    position: absolute; top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(0,0,0,.45);
    border: none;
    color: #fff;
    width: 42px; height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
}
.mwu-carousel__nav:hover { background: rgba(0,0,0,.7); }
.mwu-carousel__nav--prev { left: 12px; }
.mwu-carousel__nav--next { right: 12px; }
.mwu-carousel__dots {
    position: absolute; bottom: -28px; left: 0; right: 0;
    display: flex; justify-content: center; gap: 8px;
    z-index: 2;
}
.mwu-carousel__dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: none;
    background: #d0d5d0;
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
}
.mwu-carousel__dot:hover { transform: scale(1.15); }
.mwu-carousel__dot.is-active { background: #739B39; }
.fp-info__col--media { padding-bottom: 36px; }

/* ============================================================
   YABC (Youth Ambassadors) page-specific blocks
   ============================================================ */

/* THE PROGRAM intro paragraphs */
.yabc-program__intro p { color: var(--text-body); font-size: 14.5px; line-height: 1.75; margin: 0 0 14px; }
.yabc-program .yabc-inline-link,
.yabc-program__intro a { color: var(--brand-red); font-weight: 600; text-decoration: none; }
.yabc-program__intro a:hover { text-decoration: underline; }

/* WHAT WE DO block in THE PROGRAM left column */
.yabc-what-we-do__title {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 18px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    margin: 24px 0 12px;
}
.yabc-what-we-do__list { list-style: disc; padding-left: 22px; margin: 0 0 8px; }
.yabc-what-we-do__list li { color: var(--text-body); font-size: 14.5px; line-height: 1.7; padding: 2px 0; }

/* 3-column info cards (Onsite Gardens / Expand Access / Food Policy) */
.yabc-cards { padding: 48px 0; }
.yabc-cards__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.yabc-card { background: #fff; border-radius: 4px; overflow: hidden; box-shadow: 0 4px 18px rgba(0,0,0,.06); display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s; }
.yabc-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.10); }
.yabc-card__image { overflow: hidden; aspect-ratio: 1; }
.yabc-card__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.yabc-card:hover .yabc-card__img { transform: scale(1.05); }
.yabc-card__body { padding: 24px 22px 28px; text-align: center; flex: 1; display: flex; flex-direction: column; }
.yabc-card__title { font-family: var(--font-heading); color: var(--brand-blue); font-size: 22px; font-weight: 700; margin: 0 0 14px; text-transform: none; letter-spacing: 0; line-height: 1.25; }
.yabc-card__text { color: var(--text-body); font-size: 14px; line-height: 1.65; margin: 0 0 14px; text-align: left; }
.yabc-card__list { list-style: disc; padding-left: 20px; margin: 0; text-align: left; }
.yabc-card__list li { color: var(--text-body); font-size: 14px; line-height: 1.6; padding: 2px 0; }
.yabc-card__list li a { color: var(--brand-red); text-decoration: none; }
.yabc-card__list li a:hover { text-decoration: underline; }
@media (max-width: 900px) { .yabc-cards__grid { grid-template-columns: 1fr; } }

/* Summer Internship header band */
.yabc-internship-title { padding: 36px 0 0; text-align: center; }
.yabc-internship__heading {
    font-family: var(--font-heading);
    color: #739B39;
    font-size: 32px; font-weight: 700;
    text-transform: capitalize; letter-spacing: .5px;
    margin: 0 auto; display: inline-block;
    padding-bottom: 10px; border-bottom: 3px solid #739B39;
}
.yabc-internship { padding: 28px 0 56px; }
.yabc-internship__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    justify-items: center;
}
.yabc-internship__col {
    width: 100%;
}
.yabc-internship__col--text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.yabc-internship__cta-title {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 32px; font-weight: 700;
    margin: 0 0 22px;
    line-height: 1.2;
    text-align: center;
}
.yabc-internship__btn-wrap { text-align: center; margin: 0; }
.yabc-internship__btn {
    display: inline-block;
    background: var(--brand-red);
    color: #fff;
    padding: 12px 32px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background .2s;
}
.yabc-internship__btn:hover { background: var(--brand-red-hover); color: #fff; }
.yabc-internship__flyer {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
    box-shadow: 0 6px 22px rgba(0,0,0,.10);
}
/* When no flyer image is present, the grid collapses to a single centered column */
.yabc-internship__grid:not(:has(.yabc-internship__col--media)) {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
}
@media (max-width: 900px) { .yabc-internship__grid { grid-template-columns: 1fr; gap: 24px; } }

/* YABC sign-up — same as program-signup but with subtitle h5 styling */
.yabc-signup__intro-h5 { font-family: var(--font-heading); color: var(--text-dark); font-size: 16px; font-weight: 600; line-height: 1.6; margin: 12px 0 18px; }
.yabc-signup__contacts li i { color: var(--brand-red); }

/* Photo gallery grid (4 per row) */
.yabc-gallery { padding: 48px 0; background: #fff; }
.yabc-gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.yabc-gallery__item { display: block; overflow: hidden; border-radius: 4px; aspect-ratio: 1; }
.yabc-gallery__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.yabc-gallery__item:hover .yabc-gallery__img { transform: scale(1.06); }
@media (max-width: 900px) { .yabc-gallery__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .yabc-gallery__grid { grid-template-columns: 1fr; } }

/* ============================================================
   Get Involved page
   ============================================================ */
.gi-hero { position: relative; min-height: 340px; display: flex; align-items: center; background-size: cover; background-position: center; color: #fff; padding: 60px 0; }
.gi-hero__overlay { position: absolute; inset: 0; background: rgba(20, 22, 30, .55); }
.gi-hero__inner { position: relative; text-align: center; }
.gi-hero__title { font-family: var(--font-display); font-size: 56px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 2px; margin: 0; line-height: 1.1; }
@media (max-width: 767px) { .gi-hero__title { font-size: 32px; } }

.gi-section { padding: 56px 0; }
.gi-section--alt { background: #fafafa; }
.gi-section__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.gi-section__text .kicker { padding-bottom: 12px; border-bottom: 3px solid var(--brand-red); display: inline-block; }
.gi-section__body { color: var(--text-body); line-height: 1.8; font-size: 14.5px; }
.gi-section__body ul { padding-left: 1.2em; }
.gi-section__body li { margin-bottom: 4px; }
.gi-section__body strong { color: var(--text-dark); }
.gi-section__img { width: 100%; border-radius: 4px; box-shadow: 0 6px 18px rgba(0,0,0,.08); }
@media (max-width: 768px) { .gi-section__grid { grid-template-columns: 1fr; gap: 24px; } .gi-section__grid--reverse > * { order: initial; } }

.gi-form-cta { background: #fff; }
.gi-form-cta .kicker.wwa-h2--center { display: block; text-align: center; color: var(--brand-red); margin-bottom: 24px; }
.gi-form-cta__wrap { max-width: 620px; margin: 0 auto; }

/* PayPal donate form sits inline under the donate section body */
.gi-paypal { margin-top: 18px; }
.gi-paypal input[type="image"] { vertical-align: middle; }

/* Red full-width CTA band linking to contact page */
.gi-cta-band { background: var(--brand-red); padding: 22px 16px; text-align: center; }
.gi-cta-band__link {
    color: #fff !important;
    font-family: var(--font-heading);
    font-size: 18px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
}
.gi-cta-band__link:hover { text-decoration: underline; }

/* ============================================================
   Donate page
   ============================================================ */
.donate-hero { position: relative; min-height: 360px; display: flex; align-items: center; background-size: cover; background-position: center; color: #fff; padding: 60px 0; }
.donate-hero__overlay { position: absolute; inset: 0; background: rgba(20, 22, 30, .50); }
.donate-hero__inner { position: relative; text-align: center; }
.donate-hero__title { font-family: var(--font-display); font-size: 60px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 2px; margin: 0; line-height: 1.1; }
@media (max-width: 767px) { .donate-hero__title { font-size: 38px; } }

.donate-verse { background: #fff; padding: 50px 0 30px; text-align: center; }
.donate-verse__inner { max-width: 820px; margin: 0 auto; }
.donate-verse__text { color: var(--text-body); font-style: italic; font-size: 14.5px; line-height: 1.8; margin: 0 0 8px; }
.donate-verse__cite { color: var(--text-muted); font-size: 13px; font-style: normal; letter-spacing: .5px; }

.donate-give__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.donate-give__col .kicker { color: var(--brand-blue); padding-bottom: 12px; border-bottom: 3px solid #e85a5a; display: inline-block; }
.donate-give__h { color: #739B39 !important; border-bottom-color: #739B39 !important; font-family: var(--font-heading); font-size: 26px; font-weight: 700; letter-spacing: .5px; text-transform: none; }
.donate-give__why-image { margin-top: 24px; max-width: 280px; }
.donate-give__why-img { width: 100%; height: auto; display: block; border-radius: 4px; }
.donate-give__sub { color: var(--text-dark) !important; }
.donate-give__sub:first-of-type { color: #739B39 !important; }
.donate-give__stripe-link {
    display: inline-flex; align-items: center; gap: 10px;
    margin: 10px 0 18px;
    color: var(--brand-red);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}
.donate-give__stripe-link:hover { text-decoration: underline; }
.donate-give__stripe-icon { color: #6772E5; font-size: 28px; }
.donate-give__list { list-style: none; padding: 0; margin: 0; }
.donate-give__list li { padding: 8px 0; color: var(--text-body); display: flex; gap: 10px; align-items: flex-start; font-size: 15px; line-height: 1.5; }
.donate-give__icon { color: var(--brand-red); flex: 0 0 auto; }
.donate-give__sub { font-family: var(--font-heading); color: var(--text-dark); font-size: 18px; font-weight: 700; margin: 18px 0 8px; }
.donate-give__body { color: var(--text-body); line-height: 1.7; font-size: 14.5px; }
.donate-give__body p { margin: 0 0 10px; }
.donate-give__stripe img { max-width: 220px; margin: 8px 0 14px; }
@media (max-width: 768px) { .donate-give__grid { grid-template-columns: 1fr; gap: 24px; } }

.donate-funders { background: #fff; }
.donate-funders__title {
    font-family: var(--font-heading);
    color: #739B39;
    font-size: 24px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin: 0 0 8px;
    padding-bottom: 10px;
    border-bottom: 3px solid #739B39;
    display: inline-block;
}
.donate-funders > .container { text-align: center; }
.donate-funders__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 60px; text-align: left; max-width: 1040px; margin: 28px auto 0; }
.donate-funders__list { list-style: none; padding: 0; margin: 0; }
.donate-funders__item { display: flex; align-items: flex-start; gap: 14px; padding: 8px 0; color: var(--text-body); font-size: 15px; line-height: 1.55; }
.donate-funders__item a { color: var(--text-body); text-decoration: none; }
.donate-funders__item a:hover { color: var(--brand-red); text-decoration: underline; }
.donate-funders__icon { color: #739B39; font-size: 18px; flex: 0 0 auto; padding-top: 3px; }
@media (max-width: 700px) { .donate-funders__grid { grid-template-columns: 1fr; gap: 8px 0; } }

.donate-cta__band { background: #6aab3c; padding: 24px 16px; text-align: center; }
.donate-cta__btn {
    color: #fff !important;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
}
.donate-cta__btn:hover { color: #fff8; text-decoration: underline; }

/* ============================================================
   Contact Us page
   ============================================================ */
.contact-hero {
    position: relative;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 60px 0;
}
.contact-hero__overlay { position: absolute; inset: 0; background: rgba(245, 240, 235, .65); }
.contact-hero__inner { position: relative; text-align: center; max-width: 920px; margin: 0 auto; }
.contact-hero__intro {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 768px) { .contact-hero { min-height: 200px; } .contact-hero__intro { font-size: 16px; } }

.contact-grid__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .contact-grid__inner { grid-template-columns: 1fr; gap: 24px; } }

/* ----- The form ----- */
.mwu-form { display: flex; flex-direction: column; gap: 14px; max-width: 460px; }
.mwu-form .mwu-hp { position: absolute; left: -9999px; top: -9999px; }
.mwu-form__row input,
.mwu-form__row select,
.mwu-form__row textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cfcfcf;
    border-radius: 3px;
    background: #fff;
    font-family: inherit;
    font-size: 14px;
    color: var(--text-dark);
    transition: border-color .15s, box-shadow .15s;
}
.mwu-form__row input:focus,
.mwu-form__row select:focus,
.mwu-form__row textarea:focus {
    outline: none;
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(153, 27, 30, .12);
}
.mwu-form__row textarea { resize: vertical; min-height: 110px; }
.mwu-form__row select { background: #fff; appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--text-dark) 50%), linear-gradient(135deg, var(--text-dark) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 32px; }

.mwu-form__row--submit { margin-top: 6px; }
.mwu-form__submit {
    background: transparent;
    color: var(--brand-red);
    border: 1px solid var(--brand-red);
    border-radius: 3px;
    padding: 10px 26px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background .15s, color .15s;
    text-transform: none;
    letter-spacing: 0;
}
.mwu-form__submit:hover { background: var(--brand-red); color: #fff; }

.mwu-form__notice { padding: 12px 14px; border-radius: 3px; font-size: 14px; margin-bottom: 6px; }
.mwu-form__notice--ok  { background: #e8f5e9; border-left: 4px solid #4caf50; color: #1b5e20; }
.mwu-form__notice--err { background: #fdecea; border-left: 4px solid var(--brand-red); color: #7a1518; }

/* ----- Dark contact card on the right ----- */
.contact-card {
    background: #18181b;
    color: #fff;
    padding: 36px 32px;
    border-radius: 2px;
    line-height: 1.6;
}
.contact-card p { color: #fff; margin: 0 0 16px; display: flex; gap: 12px; align-items: flex-start; }
.contact-card a { color: #fff; text-decoration: none; }
.contact-card a:hover { color: var(--brand-blue); }
.contact-card__icon { color: var(--brand-blue); font-size: 18px; flex: 0 0 auto; padding-top: 2px; min-width: 20px; }
.contact-card__org { font-weight: 700; margin-bottom: 18px; }
@media (max-width: 900px) { .contact-card { padding: 24px 20px; } }

/* ============================================================
   Scroll Reveal animations — IntersectionObserver-triggered
   ============================================================ */
.reveal {
    opacity: 0;
    transition: opacity .8s ease-out, transform .8s cubic-bezier(.2, .8, .2, 1);
    will-change: opacity, transform;
}
.reveal--up    { transform: translateY(40px); }
.reveal--left  { transform: translateX(-60px); }
.reveal--right { transform: translateX(60px); }
.reveal--zoom  { transform: scale(.94); }

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.reveal--delay-1 { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .24s; }
.reveal--delay-3 { transition-delay: .36s; }
.reveal--delay-4 { transition-delay: .48s; }

/* Respect users who prefer no motion */
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Board contact note + email CTA band */
.wwa-board-contact { padding: 40px 0 0; }
.wwa-board-contact__heading {
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin: 0 0 28px;
    line-height: 1.3;
}
.wwa-board-contact__band {
    background: var(--brand-red);
    padding: 30px 16px;
    text-align: center;
    margin-bottom: 48px;
}
.wwa-board-contact__btn {
    color: #fff !important;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    display: inline-block;
}
.wwa-board-contact__btn:hover { color: #ffd; text-decoration: underline; }
@media (max-width: 768px) {
    .wwa-board-contact__heading { font-size: 18px; }
    .wwa-board-contact__btn { font-size: 14px; }
}

/* Equal Opportunity — blue text on white with a left divider line */
.wwa-eo { background: #fff; padding: 40px 0 64px; }
.wwa-eo__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 32px; align-items: center; }
.wwa-eo__divider { height: 1px; background: #c8d1d6; width: 100%; }
.wwa-eo__text {
    font-family: var(--font-display);
    color: var(--brand-blue);
    font-size: 36px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}
@media (max-width: 768px) {
    .wwa-eo__grid { grid-template-columns: 1fr; gap: 16px; }
    .wwa-eo__text { font-size: 22px; text-align: center; }
    .wwa-eo__divider { display: none; }
}

/* ---------- Footer ---------- */
.site-footer { background: #2c2c2c; color: #cfcfcf; padding-top: 56px; }
.site-footer__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.site-footer__heading { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.site-footer__addr p, .site-footer__addr { color: #cfcfcf; font-size: 14px; line-height: 1.7; }
.site-footer__hours { color: #cfcfcf; font-size: 14px; }
.site-footer__contact { list-style: none; padding: 0; margin: 0; }
.site-footer__contact li { padding: 6px 0; font-size: 14px; }
.site-footer__contact a { color: #cfcfcf; }
.site-footer__contact a:hover { color: #fff; }
.site-footer__visit { font-size: 14px; line-height: 1.6; margin-bottom: 12px; }
.site-footer__map iframe { width: 100%; height: 180px; border: 0; border-radius: var(--radius-sm); }
.site-footer__bottom { background: #1f1f1f; padding: 16px 0; }
.site-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; }
.site-footer__copy { margin: 0; font-size: 13px; color: #cfcfcf; }
.site-footer__social { list-style: none; display: flex; gap: 12px; padding: 0; margin: 0; }
.site-footer__social a { display: inline-flex; width: 32px; height: 32px; align-items: center; justify-content: center; background: #444; color: #fff; border-radius: 50%; font-size: 14px; }
.site-footer__social a:hover { background: var(--brand-red); }
@media (max-width: 768px) { .site-footer__grid { grid-template-columns: 1fr; gap: 32px; } .site-footer__bottom-inner { flex-direction: column; gap: 8px; } }

/* ============================================================
   Tri-County Job Center
   ============================================================ */
.tcjc-hero {
    position: relative;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    background-color: #1f1f1f;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    padding: 80px 0;
}
.tcjc-hero__overlay {
    position: absolute; inset: 0;
    background: rgba(0, 0, 0, .55);
}
.tcjc-hero__inner {
    position: relative; z-index: 1;
    text-align: center;
    color: #fff;
}
.tcjc-hero__title {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    margin: 0 0 18px;
    line-height: 1.1;
    letter-spacing: .5px;
    text-transform: uppercase;
}
@media (max-width: 1024px) { .tcjc-hero__title { font-size: 40px; } }
@media (max-width: 600px)  { .tcjc-hero__title { font-size: 30px; } }
.tcjc-hero__subtitle {
    color: #fff;
    font-size: 18px;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 760px;
}

/* Intro paragraph — italic, centered, white bg */
.tcjc-intro { padding: 60px 0; background: #fff; }
.tcjc-intro__body {
    font-style: italic;
    text-align: center;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    max-width: 1080px;
    margin: 0 auto;
}

/* Services — light gray photo bg with overlay, teal heading + divider, two-col list */
.tcjc-services {
    position: relative;
    padding: 70px 0 80px;
    background-color: #f4f6f8;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    overflow: hidden;
}
@media (max-width: 900px) { .tcjc-services { background-attachment: scroll; } }
.tcjc-services__overlay {
    position: absolute; inset: 0;
    background: rgba(244, 246, 248, .88);
    pointer-events: none;
}
.tcjc-services__title {
    color: #2592a8;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 12px;
}
.tcjc-services__divider {
    width: 80px;
    height: 3px;
    background: #2592a8;
    margin: 0 auto 40px;
}
.tcjc-services__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 60px;
    max-width: 1080px;
    margin: 0 auto;
}
@media (max-width: 768px) { .tcjc-services__grid { grid-template-columns: 1fr; gap: 0; } }
.tcjc-services__list { list-style: none; padding: 0; margin: 0; }
.tcjc-services__list li {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 10px 0;
    color: #555;
    font-size: 16px;
    line-height: 1.4;
}
.tcjc-services__icon {
    color: var(--brand-red);
    font-size: 20px;
    flex: 0 0 22px;
    margin-top: 2px;
}
.tcjc-services__list li a {
    color: #555;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color .2s, border-color .2s;
}
.tcjc-services__list li a:hover { color: var(--brand-red); border-bottom-color: var(--brand-red); }

/* Red email CTA band */
.tcjc-email-band {
    background: var(--brand-red);
    padding: 22px 0;
    text-align: center;
}
.tcjc-email-band__link {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.tcjc-email-band__link:hover { color: #fff; text-decoration: underline; }
