/* ==========================================================================
   Bushed theme stylesheet
   ========================================================================== */

:root {
	--navy: #14213d;
	--navy-2: #1b2c4f;
	--navy-3: #223a67;
	--orange: #e07a2e;
	--orange-dark: #c8691f;
	--orange-light: #f4b06c;
	--green: #4c7c40;
	--green-dark: #3d6533;
	--cream: #fdf6e9;
	--cream-2: #faf3e2;
	--ink: #1f2937;
	--muted: #64748b;
	--white: #ffffff;
	--border: #e7e2d6;
	--radius: 14px;
	--radius-sm: 8px;
	--shadow: 0 10px 30px rgba(20, 33, 61, 0.08);
	--shadow-lg: 0 20px 50px rgba(20, 33, 61, 0.16);
	--font-head: 'Poppins', 'Segoe UI', Arial, sans-serif;
	--font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
	--container: 1240px;
}

/* -------------------------------------------------------------- reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--navy); margin: 0 0 .5em; line-height: 1.2; font-weight: 700; }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px,1px,1px,1px);
	white-space: nowrap;
}
.skip-link {
	position: fixed; top: -100px; left: 0; z-index: 10000;
	background: var(--navy); color: var(--white); padding: 12px 20px;
	transition: top .2s;
}
.skip-link:focus { top: 0; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.icon-flip { transform: scaleX(-1); }

/* ------------------------------------------------------------ buttons --- */
.btn {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 13px 22px; border-radius: 999px;
	font-weight: 600; font-size: .95rem; border: 2px solid transparent;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn .icon { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 10px 20px rgba(224,122,46,.35); }
.btn-outline { background: transparent; border-color: var(--green); color: var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-large { padding: 16px 30px; font-size: 1.05rem; }
.btn-small { padding: 9px 16px; font-size: .85rem; white-space: nowrap; }
.btn-block { width: 100%; justify-content: center; }

.text-link {
	display: inline-flex; align-items: center; gap: 6px;
	color: var(--navy-3); font-weight: 600; font-size: .92rem;
	border-bottom: 2px solid transparent;
}
.text-link .icon { width: 16px; height: 16px; transition: transform .15s ease; }
.text-link:hover .icon { transform: translateX(3px); }
.text-link:hover { color: var(--orange); }

.section-heading { font-size: clamp(1.6rem, 2.4vw, 2.1rem); }
.section-heading.centered { text-align: center; }
.section-subheading { color: var(--muted); font-size: 1.02rem; margin-top: -.4em; }
.section-subheading.centered { text-align: center; }

/* ========================================================== topbar === */
.site-topbar {
	background: var(--navy);
}
.site-topbar-inner {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
	min-height: 34px;
	padding-top: 6px;
	padding-bottom: 6px;
}
.site-topbar .social-links {
	margin: 0;
	gap: 8px;
}
.site-topbar .social-link {
	width: 24px;
	height: 24px;
	background: rgba(255,255,255,.12);
	color: var(--white);
}
.site-topbar .social-link:hover {
	background: var(--orange);
}
.site-topbar .social-link svg {
	width: 13px;
	height: 13px;
}
.site-topbar-phone {
	margin: 0;
	font-size: .82rem;
	color: rgba(255,255,255,.75);
}
.site-topbar-phone a {
	color: var(--orange-light);
	font-weight: 700;
}
.site-topbar-phone a:hover {
	color: var(--white);
}
@media (max-width: 640px) {
	.site-topbar-inner {
		flex-wrap: wrap;
	}
	.site-topbar-phone {
		flex-basis: 100%;
		text-align: right;
	}
}

/* =========================================================== header === */
.site-header {
	position: sticky; top: 0; z-index: 500;
	background: var(--white);
	border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 84px; }

.site-logo, .custom-logo-link { display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 34px; height: 34px; color: var(--orange); }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong { font-family: var(--font-head); font-size: 1.35rem; color: var(--navy); letter-spacing: .5px; }
.logo-text small { font-size: .68rem; color: var(--muted); font-weight: 500; }

.primary-navigation { flex: 1; display: flex; justify-content: center; }
#primary-menu, .primary-menu { display: flex; align-items: center; gap: 30px; }
#primary-menu > li, .primary-menu > li { position: relative; }
#primary-menu > li > a, .primary-menu > li > a {
	display: flex; align-items: center; gap: 4px;
	font-weight: 600; font-size: .95rem; color: var(--ink); padding: 10px 0;
}
#primary-menu > li > a:hover, .primary-menu > li > a:hover { color: var(--orange); }
.menu-item-has-children > a::after {
	content: ''; width: 7px; height: 7px; margin-left: 2px;
	border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
	transform: rotate(45deg); opacity: .6;
}
.sub-menu {
	position: absolute; top: 100%; left: 0; min-width: 220px;
	background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
	padding: 10px; opacity: 0; visibility: hidden; transform: translateY(8px);
	transition: all .15s ease; border: 1px solid var(--border);
}
.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children.submenu-open > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu li a { display: block; padding: 9px 12px; border-radius: 6px; font-size: .92rem; font-weight: 500; }
.sub-menu li a:hover { background: var(--cream); color: var(--orange-dark); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.btn-donate { background: var(--navy); }
.btn-donate:hover { background: var(--navy-3); }
.portal-link { display: flex; align-items: center; gap: 6px; font-weight: 600; font-size: .9rem; color: var(--navy); }
.portal-link .icon { width: 18px; height: 18px; }
.portal-link:hover { color: var(--orange); }

.mobile-menu-toggle {
	display: none; background: none; border: none; padding: 6px; color: var(--navy);
}
.mobile-menu-toggle .icon-close { display: none; }
body.nav-open .mobile-menu-toggle .icon-open { display: none; }
body.nav-open .mobile-menu-toggle .icon-close { display: block; }

/* ============================================================= hero === */
.hero {
	position: relative; color: var(--white);
	background-size: cover; background-position: center;
	padding: 110px 0 90px;
	min-height: 620px; display: flex; align-items: center;
	overflow: hidden;
}
.hero-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(15,25,50,.58) 0%, rgba(15,25,50,.34) 55%, rgba(15,25,50,.08) 100%);
}
.hero-inner { position: relative; max-width: 780px; }

/* --- slider variant: multiple admin-managed slides, cross-faded --- */
.hero-slider { padding: 0; background-image: none !important; }
.hero-slides { position: relative; width: 100%; min-height: 620px; }
.hero-slide {
	position: absolute; inset: 0; z-index: 1;
	background-size: cover; background-position: center;
	display: flex; align-items: center;
	padding: 110px 0 90px;
	opacity: 0; visibility: hidden; pointer-events: none;
	transition: opacity .7s ease;
}
.hero-slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; z-index: 2; }
.hero-arrow {
	position: absolute; top: 50%; z-index: 3; transform: translateY(-50%);
	width: 44px; height: 44px; border-radius: 50%;
	background: rgba(15,25,50,.4); border: 1px solid rgba(255,255,255,.4);
	color: var(--white); display: flex; align-items: center; justify-content: center;
	cursor: pointer; transition: background .15s ease;
}
.hero-arrow:hover { background: rgba(15,25,50,.7); }
.hero-arrow-prev { left: 20px; }
.hero-arrow-next { right: 20px; }
.hero-arrow-icon { width: 18px; height: 18px; }
.hero-arrow-icon-prev { transform: rotate(90deg); }
.hero-arrow-icon-next { transform: rotate(-90deg); }
.hero-dots {
	position: absolute; z-index: 3; left: 50%; bottom: 22px; transform: translateX(-50%);
	display: flex; gap: 10px;
}
.hero-dot {
	width: 10px; height: 10px; border-radius: 50%;
	background: rgba(255,255,255,.4); border: 1px solid rgba(255,255,255,.7);
	cursor: pointer; padding: 0; transition: background .15s ease, transform .15s ease;
}
.hero-dot:hover { background: rgba(255,255,255,.7); }
.hero-dot.is-active { background: var(--orange-light); border-color: var(--orange-light); transform: scale(1.15); }
.hero-title { font-size: clamp(2.1rem, 4.6vw, 3.4rem); color: var(--white); margin-bottom: .4em; text-shadow: 0 2px 16px rgba(0,0,0,.35); }
.hero-title .highlight { color: var(--orange-light); display: inline; }
.hero-subtitle { font-size: 1.12rem; max-width: 560px; color: rgba(255,255,255,.92); margin-bottom: 2em; text-shadow: 0 1px 10px rgba(0,0,0,.4); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-btn {
	display: flex; align-items: center; gap: 10px;
	padding: 12px 16px; border-radius: var(--radius-sm);
	color: var(--white); min-width: 0; flex: 0 0 auto;
	box-shadow: var(--shadow-lg);
	transition: transform .15s ease;
}
.hero-btn:hover { transform: translateY(-3px); }
.hero-btn .icon { width: 22px; height: 22px; flex-shrink: 0; }
.hero-btn span { display: flex; flex-direction: column; white-space: nowrap; }
.hero-btn strong { font-size: .92rem; font-weight: 700; }
.hero-btn small { font-size: .74rem; opacity: .85; font-weight: 500; }
.hero-btn-dark { background: var(--navy); }
.hero-btn-orange { background: var(--orange); }
.hero-btn-green { background: var(--green); }

/* ====================================================== help cards === */
.help-cards { padding: 90px 0; background: #E2D7CE; }
.help-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.help-card {
	background: var(--white); border-radius: var(--radius); padding: 36px 30px;
	box-shadow: var(--shadow); text-align: left;
}
.help-card-icon {
	width: 60px; height: 60px; border-radius: 50%;
	background: var(--navy); color: var(--white);
	display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.help-card-icon .icon { width: 28px; height: 28px; }
.help-card h3 { font-size: 1.25rem; margin-bottom: .5em; }
.help-card > p { color: var(--muted); }
.help-card-list { margin: 18px 0 22px; display: flex; flex-direction: column; gap: 10px; }
.help-card-list li { display: flex; align-items: center; gap: 10px; font-size: .93rem; font-weight: 500; }
.help-card-list .icon { width: 16px; height: 16px; color: var(--orange); }

/* ======================================================= impact band === */
.impact-band { background: var(--navy); color: var(--white); padding: 34px 0; }
.impact-inner { display: flex; flex-wrap: nowrap; align-items: center; gap: 36px; justify-content: space-between; }
.impact-heading { max-width: 230px; flex-shrink: 0; }
.impact-heading .eyebrow { color: var(--orange-light); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: .78rem; }
.impact-heading h2 { color: var(--white); font-size: 1.15rem; margin-top: .3em; margin-bottom: 0; line-height: 1.3; }
.impact-stats { display: flex; flex-wrap: nowrap; gap: 28px; flex: 1; justify-content: space-between; }
.impact-stat { text-align: center; max-width: 150px; }
.impact-icon { width: 30px; height: 30px; margin: 0 auto 10px; color: var(--orange-light); }
.impact-icon .icon { width: 100%; height: 100%; }
.impact-number { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--white); line-height: 1.2; }
.impact-label { font-size: .74rem; color: rgba(255,255,255,.75); margin-top: 4px; line-height: 1.35; }

@media (max-width: 1080px) {
	.impact-inner { flex-wrap: wrap; }
	.impact-stats { flex-wrap: wrap; justify-content: flex-start; row-gap: 24px; }
	.impact-stat { max-width: none; width: calc(50% - 14px); }
}

/* ========================================================== programs === */
.programs { padding: 90px 0; background: var(--white); }
.programs .section-heading { margin-bottom: .2em; }
.programs .section-subheading { margin-bottom: 40px; }
.programs-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.program-card {
	background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
	overflow: hidden; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease;
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.program-card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.program-card-media img { width: 100%; height: 100%; object-fit: cover; }
.program-card-icon {
	display: none;
}
.program-card-icon svg { width: 20px; height: 20px; }
.program-card-body { padding: 20px 16px 18px; }
.program-card-body h3 { font-size: .95rem; margin-bottom: .4em; line-height: 1.25; }
.program-card-body p { color: var(--muted); font-size: .8rem; line-height: 1.4; }

/* ================================================== stories & events === */
.stories-events { padding: 90px 0; background: #E2D7CE; }
.stories-events-grid { display: grid; grid-template-columns: 1.1fr 1fr .55fr; gap: 44px; align-items: start; }
.col-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.col-header .section-heading { margin-bottom: .15em; }
.stories-col .section-subheading, .events-col .section-subheading { margin-bottom: 26px; }

.story-card {
	background: var(--white); border-radius: var(--radius); overflow: hidden;
	box-shadow: var(--shadow); display: none;
}
.story-card.is-active { display: block; }
.story-card-media { aspect-ratio: 16/10; overflow: hidden; }
.story-card-media img { width: 100%; height: 100%; object-fit: cover; }
.story-card-body { padding: 26px; }
.story-card-body h3 { font-size: 1.15rem; }
.story-card-body p { color: var(--muted); font-size: .93rem; }
.story-dots { display: flex; gap: 8px; justify-content: center; margin-top: 20px; }
.story-dots .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border); cursor: pointer; }
.story-dots .dot.is-active { background: var(--orange); }

.events-list { display: flex; flex-direction: column; gap: 16px; }
.event-item {
	display: flex; align-items: center; gap: 16px;
	background: var(--white); border-radius: var(--radius-sm); padding: 16px;
	box-shadow: var(--shadow);
}
.event-date {
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	width: 58px; height: 58px; border-radius: var(--radius-sm);
	background: var(--navy); color: var(--white); flex-shrink: 0;
}
.event-day { font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; line-height: 1; }
.event-month { font-size: .7rem; letter-spacing: 1px; font-weight: 600; margin-top: 2px; }
.event-body { flex: 1; min-width: 0; }
.event-body h4 { font-size: .98rem; margin-bottom: 2px; }
.event-location { display: flex; align-items: center; gap: 5px; font-size: .82rem; color: var(--muted); margin: 0; }
.event-location .icon { width: 14px; height: 14px; }

.windmill-col { align-self: stretch; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.windmill-col img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }

.empty-note { padding: 30px; text-align: center; color: var(--muted); background: var(--white); border-radius: var(--radius); }

/* ============================================================ cta band === */
.cta-band { position: relative; background-size: cover; background-position: center; color: var(--white); }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,25,50,.88), rgba(15,25,50,.55)); }
.cta-inner {
	position: relative; padding: 70px 24px;
	display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-copy h2 { color: var(--white); font-size: 1.9rem; margin-bottom: .3em; }
.cta-copy p { color: rgba(255,255,255,.85); margin: 0; }
.cta-action { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.cta-note { font-size: .85rem; color: rgba(255,255,255,.8); }

/* ============================================================== footer === */
.site-footer { background: var(--navy); color: rgba(255,255,255,.82); }
.footer-columns { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 36px; padding: 70px 24px 50px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo .logo-text strong { color: var(--white); }
.footer-logo .logo-text small { color: rgba(255,255,255,.6); }
.footer-about p { font-size: .92rem; color: rgba(255,255,255,.72); }
.footer-col-title { color: var(--white); font-size: 1rem; margin-bottom: 18px; }
.footer-office .office-contact { margin-bottom: 12px; }
.footer-menu, .footer-widget ul { display: flex; flex-direction: column; gap: 10px; }
.footer-menu a, .footer-widget a { font-size: .9rem; color: rgba(255,255,255,.72); }
.footer-menu a:hover, .footer-widget a:hover { color: var(--orange-light); }

.footer-office .office-org { color: var(--orange-light); font-weight: 700; font-size: .95rem; margin: 0 0 12px; }
.footer-office .office-line { font-size: .88rem; color: rgba(255,255,255,.72); margin: 0 0 8px; line-height: 1.4; }
.footer-office .office-line strong { color: var(--white); font-weight: 700; }
.footer-office .office-hours-block { margin-top: 14px; }
.footer-office .office-abn { color: var(--white); font-weight: 700; }
.footer-office .office-tax-note { font-size: .82rem; color: rgba(255,255,255,.55); margin-top: 16px; line-height: 1.5; }

.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-link {
	width: 36px; height: 36px; border-radius: 50%;
	background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
	transition: background .15s ease;
}
.social-link:hover { background: var(--orange); }

/* Uses the site's standard .btn.btn-primary pill button (see "buttons"
   above) instead of a custom flat button merged into the input, so it
   matches the Donate/Register Now buttons used elsewhere on the site. */
.newsletter-form { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.newsletter-form input {
	border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); border-radius: 999px;
	padding: 12px 18px; color: var(--white); font-size: .88rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.55); }
.newsletter-form .btn { align-self: flex-start; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact li { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: rgba(255,255,255,.72); }
.footer-contact .icon { width: 16px; height: 16px; color: var(--orange-light); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom-inner {
	display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
	gap: 12px; padding: 22px 24px; font-size: .82rem; color: rgba(255,255,255,.6);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a:hover { color: var(--white); }

/* ======================================================= inner pages === */
.inner-hero { background: var(--navy); color: var(--white); padding: 70px 0; position: relative; overflow: hidden; }
.inner-hero-plain { padding: 60px 0; text-align: center; }
.inner-hero-media { position: absolute; inset: 0; opacity: .35; }
.inner-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.inner-hero .container { position: relative; }
.inner-hero .page-title { color: var(--white); }
.inner-hero-icon {
	width: 56px; height: 56px; border-radius: 50%; background: var(--orange);
	display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.inner-hero-lede { max-width: 640px; color: rgba(255,255,255,.85); font-size: 1.05rem; }
.inner-hero-tag { display: inline-flex; align-items: center; gap: 6px; color: var(--orange-light); font-weight: 600; font-size: .88rem; }

.inner-page { padding: 60px 0 90px; }
.page-title { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.page-header { margin-bottom: 30px; }
.content-layout { display: grid; grid-template-columns: 1fr 300px; gap: 50px; align-items: start; }
.content-layout:has(.content-main:only-child) { grid-template-columns: 1fr; }
.entry-content.narrow, .page-content { max-width: 760px; }
.entry-content :is(h2, h3) { margin-top: 1.4em; }
.entry-content p { color: var(--ink); }
.entry-content a:not(.btn) {
	color: var(--orange-dark);
	text-decoration: underline;
	text-decoration-color: rgba(200,105,31,.35);
	text-underline-offset: 3px;
	font-weight: 600;
}
.entry-content a:not(.btn):hover {
	color: var(--orange);
	text-decoration-color: currentColor;
}
.page-featured-image { border-radius: var(--radius); overflow: hidden; margin-bottom: 30px; }

.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.loop-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.loop-card-media { aspect-ratio: 16/10; overflow: hidden; display: block; }
.loop-card-media img { width: 100%; height: 100%; object-fit: cover; }
.loop-card-body { padding: 22px; }
.loop-card-title { font-size: 1.1rem; margin-bottom: 6px; }
.loop-card-meta { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: .82rem; margin-bottom: 8px; }
.loop-card-meta .icon { width: 14px; height: 14px; }

.single-cta { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.event-single-layout { display: grid; grid-template-columns: 1fr 300px; gap: 50px; align-items: start; }
.event-single-card { background: var(--cream); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; position: sticky; top: 110px; }
.event-date-large { width: 100%; height: 90px; }
.event-date-large .event-day { font-size: 2rem; }
.events-list-archive { max-width: 760px; }

.widget-title { font-size: 1rem; margin-bottom: 14px; }
.widget { margin-bottom: 34px; }

/* Reusable "Donate Now + bank details" sidebar card — paste the matching
   HTML into a Custom HTML widget (see README) to reproduce this block.
   Built from the same card language as .help-card / .program-card (white
   background, var(--radius), var(--shadow)) so it reads as part of the
   theme rather than a plain text block. The button reuses the site's
   standard .btn.btn-primary.btn-large pill button. */
.sidebar-donate {
	background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
	box-shadow: var(--shadow); padding: 32px 26px; text-align: center;
}
.sidebar-donate .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.sidebar-donate .btn .icon { width: 18px; height: 18px; }
.sidebar-donate-note { display: block; font-size: .82rem; color: var(--muted); margin-bottom: 22px; }
.sidebar-donate-help { font-size: .88rem; color: var(--muted); line-height: 1.5; margin-bottom: 14px; }
.sidebar-donate-phone {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	font-size: 1.05rem; font-weight: 700; color: var(--orange); text-decoration: none;
}
.sidebar-donate-phone .icon { width: 16px; height: 16px; }
.sidebar-donate-divider { height: 1px; background: var(--border); margin: 24px 0; }
.sidebar-donate .bank-details-title { font-size: .95rem; margin: 0 0 14px; text-align: left; }
.bank-details { margin: 0; text-align: left; }
.bank-details-row {
	display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
	padding: 9px 0; border-bottom: 1px dashed var(--border); font-size: .87rem;
}
.bank-details-row:last-child { border-bottom: none; padding-bottom: 0; }
.bank-details-row dt { margin: 0; color: var(--muted); }
.bank-details-row dd { margin: 0; font-weight: 700; color: var(--navy); text-align: right; }
.sidebar-donate .bank-details-title { font-size: 1rem; margin: 0 0 12px; }
.sidebar-donate .bank-details p { margin: 0 0 4px; font-size: .9rem; color: rgba(15,25,50,.85); }

.search-form { display: flex; border: 2px solid var(--border); border-radius: 999px; overflow: hidden; max-width: 420px; margin: 20px auto; }
.search-form input { flex: 1; border: none; padding: 12px 18px; font-size: .95rem; }
.search-form button { background: var(--orange); border: none; color: var(--white); padding: 0 18px; }
.empty-note.centered { max-width: 560px; margin: 0 auto; }
.empty-note.centered .btn { margin-top: 10px; }

.comments-area { margin-top: 50px; max-width: 760px; }
.comments-title { font-size: 1.3rem; }
.comment-list, .comment-list ul { list-style: none; margin: 0; padding: 0; }
.comment-list > li { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.comment-form input, .comment-form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 14px; }
.comment-form-cookies-consent { display: flex; align-items: center; gap: 8px; }

/* ================================================================ misc === */
.front-page-extra-content { padding: 40px 0; }

/* ============================================================ responsive === */
@media (max-width: 1080px) {
	.footer-columns { grid-template-columns: 1fr 1fr 1fr; }
	.stories-events-grid { grid-template-columns: 1fr 1fr; }
	.windmill-col { display: none; }
	.programs-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}

@media (max-width: 900px) {
	.primary-navigation {
		position: fixed; inset: 84px 0 0 0; background: var(--white);
		flex-direction: column; padding: 20px 24px; overflow-y: auto;
		transform: translateX(100%); transition: transform .25s ease; justify-content: flex-start;
	}
	body.nav-open .primary-navigation { transform: translateX(0); }
	#primary-menu, .primary-menu { flex-direction: column; align-items: stretch; gap: 4px; width: 100%; }
	#primary-menu > li > a, .primary-menu > li > a { padding: 14px 4px; border-bottom: 1px solid var(--border); }
	.sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; display: none; padding-left: 12px; }
	.menu-item-has-children.submenu-open > .sub-menu { display: block; }
	.portal-link { display: none; }
	.mobile-menu-toggle { display: block; }
	.help-cards-grid { grid-template-columns: 1fr; }
	.programs-grid { grid-template-columns: repeat(2, 1fr); }
	.stories-events-grid { grid-template-columns: 1fr; }
	.impact-inner { flex-direction: column; text-align: center; }
	.impact-heading { max-width: none; }
	.content-layout, .event-single-layout { grid-template-columns: 1fr; }
	.event-single-card { position: static; }
	.post-grid { grid-template-columns: 1fr; }
	.footer-columns { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
	.header-inner { min-height: 70px; }
	.logo-text small { display: none; }
	.btn-donate span, .btn-donate { font-size: .85rem; padding: 10px 14px; }
	.hero { padding: 80px 0 60px; min-height: 520px; }
	.hero-slides, .hero-slide { min-height: 520px; padding: 80px 0 60px; }
	.hero-btn { min-width: 0; width: 100%; }
	.hero-arrow { width: 36px; height: 36px; }
	.hero-arrow-prev { left: 10px; }
	.hero-arrow-next { right: 10px; }
	.cta-inner { flex-direction: column; align-items: flex-start; }
	.footer-columns { grid-template-columns: 1fr; padding: 50px 24px 30px; }
}

/* ---------------------------------------------------------- Login form */
.bushed-login-card {
	max-width: 540px;
	margin: 20px auto 40px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 36px 44px;
}
.bushed-login-title {
	margin: 0 0 22px;
	font-size: 1.3rem;
	text-align: center;
	color: var(--navy);
}
.bushed-login-card .login-username,
.bushed-login-card .login-password {
	margin: 0 0 18px;
}
.bushed-login-card label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	font-size: .9rem;
	color: var(--navy);
}
.bushed-login-card input.input {
	width: 100%;
	padding: 11px 14px;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	font-size: .95rem;
	font-family: inherit;
	box-sizing: border-box;
}
.bushed-login-card input.input:focus {
	outline: none;
	border-color: var(--orange);
}
.bushed-login-card .login-remember {
	margin: 4px 0 22px;
	font-size: .88rem;
	color: var(--muted);
}
.bushed-login-card .login-remember label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 400;
	margin: 0;
}
.bushed-login-card .login-submit {
	margin: 0;
}
.bushed-login-card input.button.button-primary {
	width: 100%;
	padding: 13px 20px;
	border: none;
	border-radius: 999px;
	background: var(--navy);
	color: var(--white);
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: background .15s ease;
}
.bushed-login-card input.button.button-primary:hover {
	background: var(--orange);
}
.bushed-login-lost {
	margin: 18px 0 0;
	text-align: center;
	font-size: .88rem;
}
.bushed-login-lost a {
	color: var(--orange);
	text-decoration: none;
}
.bushed-login-lost a:hover {
	text-decoration: underline;
}
.bushed-login-card.bushed-login-loggedin {
	text-align: center;
}
.bushed-login-card.bushed-login-loggedin p {
	margin: 0 0 18px;
	color: var(--muted);
}
#bushed-login-message,
.bushed-login-error {
	margin: -8px 0 16px;
	padding: 10px 14px;
	border-radius: var(--radius-sm);
	background: #fdecea;
	color: #b3261e;
	font-size: .85rem;
}
.bushed-logout-button {
	margin-top: 24px;
}

/* ------------------------------------------------------ Welcome card */
.bushed-welcome-name {
	margin: 0 0 24px;
	font-size: 1.6rem;
	color: var(--navy);
}

/* ------------------------------------------------------ Account choice */
.bushed-account-choice {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin: 0 0 32px;
}
.bushed-account-choice-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 22px 24px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	color: var(--navy);
	transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.bushed-account-choice-item:hover {
	transform: translateY(-2px);
	border-color: var(--orange);
	box-shadow: 0 10px 20px rgba(224,122,46,.15);
}
.bushed-account-choice-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--cream);
	color: var(--orange-dark);
}
.bushed-account-choice-icon .icon {
	width: 22px;
	height: 22px;
}
.bushed-account-choice-label {
	flex: 1;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1rem;
}
.bushed-account-choice-arrow {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	color: var(--muted);
	transition: transform .15s ease;
}
.bushed-account-choice-item:hover .bushed-account-choice-arrow {
	transform: translateX(4px);
	color: var(--orange);
}
@media (max-width: 640px) {
	.bushed-account-choice {
		grid-template-columns: 1fr;
	}
}
