/* =========================================================
   Muskurahat Clone — Main Stylesheet (cleaned)
   Colors & fonts are CSS variables (--mc-*) injected by the
   WordPress Customizer — see inc/customizer.php

   CHANGES IN THIS PASS
   - Removed duplicate/conflicting selector blocks (multiple
     ".mc-founder", ".mc-volunteer", ".mc-donate-modal",
     ".mc-section-heading" definitions were fighting each other).
     Renamed the two different "founder" section designs to
     .mc-founder--home and .mc-founder--about so they no longer
     collide under one class name — update those two markup
     blocks to use the new class names.
   - All "eyebrow / title" style headings (the small line +
     big line pattern used across ~10 sections) now pull from
     ONE shared type scale below instead of each section having
     its own random size (34/40/48/50/54/56/58/60/62/66/72/76px…).
   - File layout: DESKTOP / BASE styles are on top. TABLET
     (max-width:991px) and MOBILE (max-width:767px) overrides
     are grouped into two single blocks at the very bottom, in
     the same order as the sections above, instead of being
     scattered after every single section.
   ========================================================= */

:root {
	/* Unified heading/title scale — used by every "eyebrow + big title"
	   section (donate, pillars, bridge, get-involved, vision, faq, journey…) */
	--mc-title-eyebrow: 40px;
	/* small top line */
	--mc-title-main: 48px;
	/* big colored headline */
	--mc-title-hero: 60px;
	/* largest, page-hero-level headline (FAQ, page-content h2/h3) */
}

/* ---------- GLOBAL RESET (fixes mobile image overflow & alignment) ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

img,
svg,
video {
	max-width: 100%;
	height: auto;
	display: block;
}
img {
    width: 100%;
    display: block;
    border-radius: 22px !important;
    overflow: hidden;
}
body {
	margin: 0;
	font-family: var(--mc-font-body, 'Inter', sans-serif);
	color: var(--mc-text, #222);
	line-height: 1.6;
	background: #fff;
	overflow-x: hidden;
}

body.mc-nav-open {
	overflow: hidden;
}

h1,
h2,
h3,
h4 {
	font-family: var(--mc-font-heading, 'Baloo 2', sans-serif);
	line-height: 1.2;
	margin: 0 0 16px;
}

.mc-container {
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 24px;
}

.mc-btn {
	display: inline-block;
	padding: 14px 28px;
	border-radius: 50px;
	font-weight: 600;
	transition: transform .2s ease, box-shadow .2s ease;
}

.mc-btn:hover {
	transform: translateY(-2px);
}

.mc-btn--primary,
.mc-btn--donate {
	background: var(--mc-primary, #F26522);
	color: #fff;
}

.mc-btn--outline {
	border: 2px solid #fff;
	color: #fff;
}

.mc-btn--white {
	background: #fff;
	color: #EC2227;
}

.mc-btn--white:hover {
	background: #EC2227;
	color: #fff;
}

.mc-eyebrow {
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 40px;
	font-weight: 700;
	color: var(--mc-primary, #F26522);
	margin-bottom: 10px;
}

/* ---------- SHARED "EYEBROW + TITLE" SECTION HEADING ---------- */
.mc-section-heading {
	max-width: 520px;
	margin: 0 auto 40px;
	text-align: center;
	line-height: .88;
	text-transform: uppercase;
	font-family: var(--mc-font-heading);
	font-weight: 900;
}

.mc-section-heading--light {
	color: #fff;
}

.mc-section-heading span {
	display: block;
}

.mc-section-heading .top {
	color: #555555bf;
	font-size: var(--mc-title-eyebrow);
	line-height: 1.1;
}

.mc-section-heading .bottom {
	margin-top: 6px;
	color: #6A2B86;
	font-size: var(--mc-title-main);
	line-height: 48px;
}

/* ---------- HEADER ---------- */
.mc-header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 9999;
	box-shadow: 0 2px 15px rgba(0, 0, 0, .06);
}

.mc-header__inner {
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
	padding: 0 40px;
	display: grid;
	grid-template-columns: 260px 1fr 220px;
	align-items: center;
	height: 90px;
}

.mc-header__logo {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.mc-header__logo img,
.custom-logo {
	height: 68px !important;
	width: auto !important;
	max-width: 220px;
	display: block;
	border-radius:0px !important;
}

.mc-header__nav {
	display: flex;
	justify-content: center;
}

.mc-nav-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 42px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mc-nav-menu li {
	margin: 0;
}

.mc-nav-menu a {
	font-size: 18px;
	font-weight: 600;
	color: #555;
	text-decoration: none;
	transition: .3s;
}

.mc-nav-menu a:hover,
.mc-nav-menu .current-menu-item>a {
	color: #6A2B86;
}

.mc-btn--donate {
	justify-self: end;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 160px;
	height: 52px;
	background: #FF4433;
	color: #fff;
	font-weight: 700;
	border-radius: 0;
	text-decoration: none;
	transition: .3s;
}

.mc-btn--donate:hover {
	background: #d91a1f;
}

.mc-nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
}

.mc-nav-toggle span {
	display: block;
	width: 28px;
	height: 3px;
	background: #333;
	margin: 5px 0;
}

.mc-nav-toggle.is-active span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.mc-nav-toggle.is-active span:nth-child(2) {
	opacity: 0;
}

.mc-nav-toggle.is-active span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

.mc-header__nav-donate {
	display: none;
	/* only shown inside mobile menu panel */
}

/* ---------- HERO ---------- */
.mc-hero {
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--mc-secondary, #1B3A2B);
}

.mc-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mc-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .6));
}

.mc-hero__content {
	position: relative;
	z-index: 2;
	color: #fff;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
	max-width: 1400px !important;
}

.mc-hero__content h1 {
	font-size: 44px;
	margin-bottom: 20px;
}

.mc-hero__tagline {
	font-size: 18px;
	opacity: .9;
	margin-bottom: 32px;
}

.mc-hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
}

/* ---------- HERO VILLAGE BANNER ---------- */
.mc-village-banner {
	background: #6A2B86 ;
	text-align: center;
	padding: 34px 20px;
}

.mc-village-banner__line1 {
	margin: 0;
	color: #fff;
	font-size: 19px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.2;
	letter-spacing: .5px;
}

.mc-village-banner__line2 {
	margin: 5px 0 0;
	color: #FAFA33;
	font-size: 48px;
	font-weight: 800;
	text-transform: uppercase;
	line-height: 1;
}

/* ---------- HERO CTA BAR ---------- */
.mc-cta-bar {
	display: grid;
	grid-template-columns: 33% 34% 33%;
	width: 100%;
}

.mc-cta-bar__item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	min-height: 160px;
	padding: 20px 35px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 800;
	line-height: 1.25;
	box-sizing: border-box;
	transition: .25s ease;
}

.mc-cta-bar__item--intern {
	background: #fff;
	color: #6A2B86;
	border-bottom: 4px solid #6A2B86;
}

.mc-cta-bar__item--donate {
	background: #FF4433;
	color: #fff;
	border-bottom: none;
	font-size: 35px;
	line-height: 1.2;
}

.mc-cta-bar__item--corporate {
	background: #fff;
	color: #6A2B86;
	border-bottom: 4px solid #6A2B86;
}

.mc-cta-bar__item--intern:hover,
.mc-cta-bar__item--corporate:hover {
	background: #fafafa;
}

.mc-cta-bar__item--donate:hover {
	background: #d81820;
}

.mc-cta-bar__item--intern,
.mc-cta-bar__item--corporate {
	font-size: 24px;
}

.mc-cta-bar__item br {
	display: block;
	margin-top: 6px;
}

/* ---------- STORY SLIDER ---------- */
.mc-stories {
	position: relative;
	padding: 90px 0 100px;
	background: #f6f5f2;
	overflow: hidden;
}

.mc-stories::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 120px;
	background: #f6f5f2;
	z-index: 0;
}

.mc-stories .mc-container {
	position: relative;
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 30px;
	z-index: 2;
}

.mc-story-slider {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	padding: 30px 100px 80px;
	overflow: visible;
}

.mc-story-slider .swiper-wrapper,
.swiper-wrapper {
	align-items: stretch;
}

.mc-story-slider .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: stretch;
	height: auto;
}

.swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
}

.mc-story {
	position: relative;
	overflow: visible;
	display: grid;
	grid-template-columns: 46% 54%;
	max-width: 1040px;
	min-height: 530px;
	margin: 0 auto;
	background: #fff;
	box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
}

.mc-story__content {
	position: relative;
	padding: 40px 44px 36px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.mc-story__content::after {
	content: "";
	position: absolute;
	top: 40px;
	bottom: 40px;
	right: -1px;
	width: 1px;
	background: #555;
}

.mc-story__icons {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 28px;
	font-size: 46px;
	color: #444;
	display: none;
}

.mc-story__text {
	font-size: 18px;
	line-height: 1.75;
	color: #444;
	margin-bottom: 34px;
}

.mc-story__text strong {
	color: #5b4697;
}

.mc-story__warning {
	margin: 12px 0 22px;
}

.mc-story__warning-line {
	color: #6A2B86 ;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.45;
	text-transform: uppercase;
	padding: 8px 0;
	border-bottom: 1px solid #666;
}

.mc-story__warning-line:first-child {
	border-top: 1px solid #666;
}

.mc-story__disclaimer {
	margin-top: auto;
	font-size: 13px;
	line-height: 1.6;
	color: #777;
	font-style: italic;
}

.mc-story__image {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 36px;
}

.mc-story__image img {
	width: 100%;
	height: 100%;
	max-height: 450px;
	object-fit: cover;
	object-position: center;
	display: block;
}

.mc-story-prev,
.mc-story-next {
	width: 60px !important;
	height: 60px !important;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
	color: #e53935 !important;
	top: 50% !important;
	transform: translateY(-50%);
}

.mc-story-prev {
	left: 10px !important;
}

.mc-story-next {
	right: 10px !important;
}

.mc-story-prev:after,
.mc-story-next:after {
	font-size: 28px !important;
	font-weight: bold;
}

.mc-story-pagination {
	position: relative !important;
	margin-top: 35px;
	text-align: center;
	bottom: 0 !important;
}

.mc-story-pagination .swiper-pagination-bullet {
	width: 9px;
	height: 9px;
	margin: 0 5px !important;
	background: #cfcfcf;
	opacity: 1;
	border-radius: 50%;
	transition: .3s;
}

.mc-story-pagination .swiper-pagination-bullet-active {
	width: 11px;
	height: 11px;
	background: #5b4697;
	transform: scale(1.1);
}

/* ---------- FOUNDER (HOME PAGE VERSION) ---------- */
/* NOTE: renamed from .mc-founder -> .mc-founder--home because a second,
   completely different "founder" layout (about page) also used to share
   the class .mc-founder. Update the homepage template to this class. */
.mc-founder--home {
	padding: 110px 0;
	background: #fff;
}

.mc-founder--home .mc-container {
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 20px;
}

.mc-founder--home .mc-founder__grid {
	display: grid;
	grid-template-columns: 470px 1fr;
	gap: 55px;
	align-items: start;
}

.mc-founder--home .mc-founder__left {
	position: relative;
	text-align: center;
}

.mc-founder--home .mc-founder__photo {
	width: 100%;
	max-width: 470px;
	display: block;
	margin: 0 auto;
	filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .18));
}

.mc-founder--home .mc-founder__title {
	margin-top: 25px;
	font-family: var(--mc-font-heading);
	font-size: var(--mc-title-main);
	line-height: .9;
	font-weight: 900;
	text-transform: uppercase;
	color: #6A2B86 ;
}

.mc-founder--home .mc-founder__arrow {
	position: absolute;
	right: 5px;
	bottom: 130px;
	font-size: 55px;
	color: #444;
	transform: rotate(15deg);
}

.mc-founder--home .mc-founder__content {
	max-width: 100%;
}

.mc-founder--home .mc-founder__heading {
	margin: 0 0 24px;
	font-family: var(--mc-font-heading);
	font-size: 24px;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
	color: #6A2B86 ;
}

.mc-founder--home .mc-founder__body {
	font-family: var(--mc-font-body);
	font-size: 18px;
	line-height: 30px;
	color: #444;
}

.mc-founder--home .mc-founder__body p {
	margin: 0 0 24px;
}

.mc-founder--home .mc-founder__body strong {
	color: #e1251b;
	font-weight: 700;
}

.mc-founder--home .mc-founder__signature {
	margin-top: 34px;
}

.mc-founder--home .mc-founder__signature span {
	display: block;
	font-family: var(--mc-font-body);
	font-size: 18px;
	color: #444;
	margin-bottom: 8px;
}

.mc-founder--home .mc-founder__signature strong {
	display: block;
	font-family: var(--mc-font-heading);
	font-size: 26px;
	font-weight: 800;
	color: #6A2B86 ;
	text-transform: uppercase;
}

/* ---------- ENABLERS / CARD GRID ---------- */
.mc-enablers {
	padding: 110px 0;
	background: #fff;
}

.mc-enablers .mc-container {
	max-width: 1380px;
	margin: auto;
	padding: 0 20px;
}

.mc-enablers__heading {
	margin-bottom: 45px;
	text-align: center;
}

.mc-enablers__heading span {
	display: block;
	font-size: 62px;
	line-height: .92;
	font-weight: 900;
	text-transform: uppercase;
}

.mc-enablers__heading .line1 {
	color: #555555bf;
}

.mc-enablers__heading .line2 {
	color: #6A2B86;
}

.mc-enablers__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	border: 2px dashed #8c8c8c;
	padding: 14px;
	background: #fff;
	overflow: hidden;
}

.mc-enabler-card {
	position: relative;
	overflow: hidden;
	height: 285px;
	background: #eee;
	cursor: pointer;
}

.mc-enabler-card:first-child {
	border-right: 2px solid rgba(255, 255, 255, .15);
}

.mc-enabler-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform .8s ease;
}

.mc-enabler-overlay {
	position: absolute;
	inset: 0;
	opacity: .82;
	transition: .35s;
}

.mc-enabler-content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 30px;
	z-index: 2;
	transition: .35s;
}

.mc-enabler-icon {
	width: 78px;
	height: 78px;
	object-fit: contain;
	margin-bottom: 18px;
	transform: scale(1.5);
	border-radius:0px !important;
}

.mc-enabler-card h3 {
	color: #fff;
	font-size: 32px;
	font-weight: 800;
	text-transform: uppercase;
	margin: 10px 0;
}

.mc-enabler-card p {
	color: #fff;
	font-size: 15px;
	line-height: 1.7;
	max-width: 320px;
	margin-top: 15px;
	opacity: 0;
	transform: translateY(20px);
	transition: .35s;
}

.mc-enabler-card:hover .mc-enabler-bg {
	transform: scale(1.08);
}

.mc-enabler-card:hover .mc-enabler-overlay {
	opacity: .68;
}

.mc-enabler-card:hover .mc-enabler-content {
	transform: translateY(-8px);
}

.mc-enabler-card:hover p {
	opacity: 1;
	transform: none;
}

/* ---------- IMPACT COUNTERS ---------- */
.mc-impact {
	padding: 90px 0;
	background: var(--mc-secondary, #1B3A2B);
	color: #fff;
}

.mc-impact__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 30px;
	text-align: center;
}

.mc-impact-stat__number,
.mc-impact-stat__suffix {
	font-size: 48px;
	font-weight: 800;
	color: var(--mc-accent, #FFC93C);
}

.mc-impact-stat p {
	margin-top: 8px;
	opacity: .85;
}

/* ---------- INNER PAGE BLOCKS ---------- */
.mc-page-title {
	padding: 70px 0 20px;
	text-align: center;
}

.mc-block-hero {
	background-size: cover;
	background-position: center;
	padding: 100px 0;
	color: #fff;
	text-align: center;
}

.mc-block-text-image__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
	padding: 70px 0;
}

.mc-block-text-image--left .mc-block-text-image__grid img {
	order: -1;
}

.mc-block-text-image__grid img {
	border-radius: 20px;
}

.mc-cta-banner {
	background: var(--mc-primary, #F26522);
	color: #fff;
	text-align: center;
	padding: 70px 0;
}

.mc-cta-banner .mc-btn {
	background: #fff;
	color: var(--mc-primary, #F26522);
	margin-top: 20px;
}

.mc-page-content {
	font-size: 17px;
	line-height: 2;
	color: #4b4b4b;
}

.mc-page-content p {
	margin: 0 0 34px;
}



.mc-page-content h2,
.mc-page-content h3 {
	font-size: var(--mc-title-hero);
	line-height: 1.1;
	margin: 45px 0 20px;
	color: #555;
	font-family: var(--mc-font-heading);
}

.mc-page-content h2 strong,
.mc-page-content h3 strong {
	color: #EC2227;
}

/* ---------- FOOTER ---------- */
.mc-footer {
	position: relative;
	background-color: #f5f5f5;
	overflow: hidden;
	padding: 90px 0 70px;
}

.mc-footer::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 340px;
	
	background-size: 100% auto;
	opacity: 85;
	z-index: 0;
	pointer-events: none;
}

.mc-footer::after {
	content: "";
	position: absolute;
	top: 20px;
	right: 80px;
	width: 120px;
	height: 55px;
	background: url("assets/images/footer-clouds.svg") no-repeat center;
	background-size: contain;
	opacity: .7;
	pointer-events: none;
}

.mc-footer .mc-container {
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
	padding: 0 40px;
	position: relative;
	z-index: 2;
}

.mc-footer__grid {
	display: grid;
	grid-template-columns: 50% 50%;
	gap: 80px;
	align-items: flex-start;
}

.mc-footer__right {
	border-left: 1px solid #222;
	padding-left: 70px;
}

.mc-footer__logo {
	margin-bottom: 28px;
}

.mc-footer__logo img {
	width: 100%;
	max-width: 340px;
	height: auto;
}

.mc-footer__about {
	font-family: var(--mc-font-body);
	font-size: 18px;
	line-height: 1.85;
	color: #555;
}

.mc-footer__about p {
	margin: 0 0 24px;
}

.mc-footer__about strong {
	color: #6A2B86;
	font-weight: 700;
}

.mc-footer__social {
	display: flex;
	align-items: center;
	gap: 38px;
	margin-bottom: 22px;
}

.mc-footer__social a {
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	font-size: 42px;
	transition: .3s;
}

.mc-footer__social a:hover {
	color: #5b4697;
	transform: translateY(-4px);
}

.mc-footer__follow {
	font-family: var(--mc-font-body);
	font-size: 18px;
	line-height: 1.8;
	color: #555;
	max-width: 420px;
	margin-bottom: 55px;
}

.mc-footer__follow strong {
	color: #5b4697;
}

.mc-footer__follow a {
	color: #5b4697;
	text-decoration: none;
	font-weight: 700;
}

.mc-footer__block {
	margin-bottom: 45px;
}

.mc-footer__block h3 {
	margin: 0 0 18px;
	font-family: var(--mc-font-heading);
	font-size: 22px;
	color: #6A2B86;
	text-transform: uppercase;
}

.mc-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mc-footer-menu li {
	margin-bottom: 12px;
}

.mc-footer-menu a {
	font-family: var(--mc-font-body);
	color: #555;
	font-size: 18px;
	text-decoration: none;
	transition: .25s;
}

.mc-footer-menu a:hover {
	color: #5b4697;
	padding-left: 6px;
}

.mc-footer__email {
	font-size: 18px;
	font-family: var(--mc-font-body);
	color: #555;
	font-weight: 600;
	text-decoration: none;
}

.mc-footer__email:hover {
	color: #5b4697;
}

.mc-footer__bottom {
	display: block;
	position: relative;
	z-index: 2;
	margin-top: 50px;
	padding-top: 20px;
	border-top: 1px solid rgba(0, 0, 0, .1);
	text-align: center;
}

.mc-footer__bottom p {
	margin: 0;
	font-size: 14px;
	color: #777;
}

/* ---------- MODAL (generic) ---------- */
.mc-modal {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, .65);
	opacity: 0;
	visibility: hidden;
	transition: .35s;
	z-index: 99999;
}

.mc-modal.is-open {
	opacity: 1;
	visibility: visible;
}

.mc-modal__overlay {
	position: absolute;
	inset: 0;
}

.mc-modal__content {
	position: relative;
	background: #fff;
	width: min(92%, 700px);
	padding: 45px;
	border-radius: 24px;
	max-height: 100vh;
	overflow: auto;
	animation: mcModal .35s ease;
}

@keyframes mcModal {
	from {
		transform: translateY(30px);
		opacity: 0;
	}

	to {
		transform: none;
		opacity: 1;
	}
}

.mc-modal__close {
	position: absolute;
	right: 18px;
	top: 18px;
	width: 42px;
	height: 42px;
	border: none;
	border-radius: 50%;
	background: #eee;
	font-size: 28px;
	cursor: pointer;
}

.mc-modal__close:hover {
	background: #F26522;
	color: #fff;
}

.mc-modal h2 {
	margin-bottom: 30px;
	font-size: 34px;
	font-family: var(--mc-font-heading);
}

/* ---------- DONATE HERO / FORM SECTION ---------- */
.mc-donate-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--mc-secondary, #1B3A2B);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
	text-align: center;
	padding: 120px 20px 80px;
}

.mc-donate-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .45);
}

.mc-donate-hero .mc-container {
	width: 100%;
	max-width: 1380px;
	margin: auto;
	position: relative;
	z-index: 2;
}

.mc-donate-hero .mc-eyebrow,
.mc-donate-hero h1 {
	position: relative;
	z-index: 2;
}

.mc-donate-hero h1 {
	font-size: var(--mc-title-hero);
	line-height: .95;
	margin: 15px 0 0;
	color: #fff;
}

.mc-donate-form-section {
	padding: 110px 0;
	background: #ffffff;
}

.mc-donate-form-section .mc-container {
	max-width: 1380px;
	margin: auto;
	padding: 0 20px;
}

.mc-donate-heading {
	text-align: center;
	margin-bottom: 65px;
}

.mc-donate-heading__eyebrow {
	display: inline-block;
	margin-bottom: 12px;
	font-family: var(--mc-font-body);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 2px;
	color: #876c0c;
	text-transform: uppercase;
}

.mc-donate-heading__title {
	margin: 0;
	font-family: var(--mc-font-heading);
	font-size: var(--mc-title-main);
	font-weight: 900;
	line-height: .9;
	color: #6A2B86;
	text-transform: uppercase;
}

.mc-amount-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-bottom: 30px;
}

.mc-amount-tile {
	position: relative;
	background: #fff;
	border: 2px solid transparent;
	border-radius: 24px;
	overflow: hidden;
	cursor: pointer;
	padding: 34px 26px 30px;
	text-align: left;
	box-shadow: 1px 1px 1px 2px rgba(0, 0, 0, .08);
	transition: transform .3s, box-shadow .3s;
}

.mc-amount-tile:focus {
	outline: none;
}

.mc-amount-tile:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 35px rgba(0, 0, 0, .15);
}

.mc-amount-tile.is-selected {
	box-shadow: 0 20px 45px rgba(0, 0, 0, .18);
	transform: translateY(-6px);
}

.mc-amount-tile__amount {
	display: block;
	font-family: var(--mc-font-heading);
	font-size: 38px;
	font-weight: 900;
	line-height: 1;
	color: #6A2B86;
}

.mc-amount-tile__body {
	margin-top: 24px;
}

.mc-amount-tile__body p {
	margin: 0 0 10px;
	font-size: 15px;
	line-height: 1.7;
	color: #666;
}

.mc-amount-tile__body strong {
	display: block;
	font-size: 22px;
	font-family: var(--mc-font-heading);
	font-weight: 800;
	color: #FF4433;
	text-transform: uppercase;
}

.mc-amount-tile__bar {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 12px;
	background: #6A2B86;
}

.mc-amount-tile--custom {
	justify-content: center;
}

.mc-amount-tile--custom .mc-amount-tile__amount {
	font-size: 30px;
}

.mc-amount-input-wrap {
	position: relative;
}

.mc-amount-input-wrap span {
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 26px;
	font-weight: 700;
	color: #5A3F98;
}

.mc-amount-input-wrap .mc-modal-amount-input {
	padding-left: 55px;
}

.mc-tax-note {
	text-align: center;
	margin-top: 15px;
	font-size: 15px;
	color: #666;
	line-height: 1.8;
}

.mc-tax-note a {
	color: #E52321;
	font-weight: 700;
	text-decoration: none;
}

.mc-tax-note a:hover {
	text-decoration: underline;
}

/* ---------- DONATION MODAL (amount + donor form) ---------- */
.mc-donate-modal {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(0, 0, 0, .55);
	backdrop-filter: blur(8px);
	z-index: 999999;
}

.mc-donate-modal.is-open {
	display: flex !important;
}

.mc-donate-modal__overlay {
	position: absolute;
	inset: 0;
}

.mc-donate-modal__box {
	position: relative;
	width: min(520px, 92vw);
	max-height: 90vh;
	overflow-y: auto;
	background: #fff;
	border-radius: 20px;
	padding: 35px;
	box-shadow: 0 30px 70px rgba(0, 0, 0, .20);
	z-index: 2;
	animation: mcModalIn .35s ease;
}

@keyframes mcModalIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.mc-donate-modal__close {
	position: absolute;
	top: 14px;
	right: 18px;
	width: 42px;
	height: 42px;
	border: none;
	border-radius: 50%;
	background: #f4f4f4;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	color: #888;
	transition: .25s;
}

.mc-donate-modal__close:hover {
	background: #E52321;
	color: #fff;
}

.mc-payment-success {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 50px;
	min-height: 520px;
	animation: fadeIn .4s ease;
}

.mc-payment-success[hidden] {
	display: none !important;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.mc-payment-success__icon {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: #2ecc71;
	color: #fff;
	font-size: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	font-weight: bold;
}

.mc-payment-success h2 {
	font-size: 34px;
	margin: 0 0 10px;
	color: #5A3F98;
	font-family: var(--mc-font-heading);
}

.mc-payment-success p {
	font-size: 16px;
	color: #666;
	margin: 10px 0;
}

.mc-payment-details {
	width: 100%;
	max-width: 380px;
	background: #f8f8f8;
	border-radius: 18px;
	padding: 20px;
	margin: 25px 0;
}

.mc-payment-details div {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}

.mc-payment-details div:last-child {
	border: none;
}

.mc-payment-details strong {
	color: #333;
}

.mc-payment-details span {
	color: #E52321;
	font-weight: 700;
}

.mc-modal-title {
	margin-bottom: 35px;
	text-align: center;
	font-family: var(--mc-font-heading);
	font-size: 23px;
	font-weight: 900;
	color: #5A3F98;
	text-transform: uppercase;
}

.mc-modal-field {
	margin-bottom: 28px;
}

.mc-modal-field label,
.mc-modal-amount-label {
	display: block;
	margin-bottom: 10px;
	font-size: 15px;
	font-weight: 700;
	color: #555;
}

.mc-modal-amount-input {
	width: 100%;
	height: 62px;
	border: 2px solid #e8e8e8;
	border-radius: 16px;
	padding: 0 20px;
	font-size: 28px;
	font-family: var(--mc-font-heading);
	font-weight: 800;
	color: #5A3F98;
	transition: .25s;
}

.mc-modal-amount-input:focus {
	outline: none;
	border-color: #876c0c;
}

.mc-donate-frequency {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-bottom: 30px;
}

.mc-freq-btn {
	padding: 13px 26px;
	border-radius: 40px;
	border: 2px solid #876c0c;
	background: #fff;
	color: #F4A11A;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: .3s;
}

.mc-freq-btn.is-active {
	background: #F4A11A;
	color: #fff;
}

.mc-donor-fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin-bottom: 24px;
}

.mc-donate-modal .mc-donor-fields {
	grid-template-columns: 1fr;
	margin-top: 20px;
}

.mc-donor-fields input {
	width: 100%;
	height: 56px;
	border: 2px solid #ececec;
	border-radius: 14px;
	padding: 0 18px;
	font-size: 15px;
	transition: .25s;
}

.mc-donor-fields input:focus {
	outline: none;
	border-color: #5A3F98;
}

.mc-checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 26px;
	font-size: 14px;
	color: #666;
}

.mc-checkbox input {
	width: 18px;
	height: 18px;
}

.mc-donate-submit {
	width: 100%;
	height: 60px;
	border: none;
	border-radius: 50px;
	background: #E52321;
	color: #fff;
	font-size: 17px;
	font-weight: 700;
	cursor: pointer;
	transition: .3s;
}

.mc-donate-submit:hover {
	background: #c91816;
	transform: translateY(-3px);
}

.mc-donate-msg {
	margin-top: 18px;
	text-align: center;
	font-weight: 600;
	min-height: 24px;
}

.mc-donate-msg.is-success {
	color: #1b8d47;
}

.mc-donate-msg.is-error {
	color: #d62828;
}

/* ---------- DONATE SUPPORT SECTION ---------- */
.mc-donate-support {
	padding: 120px 0;
	background: #f7f7f7;
	overflow: hidden;
}

.mc-donate-support .mc-container {
	max-width: 1380px;
	margin: auto;
	padding: 0 20px;
}

.mc-donate-support__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 90px;
	align-items: center;
}

.mc-donate-support__content {
	max-width: 580px;
	position: relative;
}

.mc-donate-support__doodle {
	width: 70px;
	position: absolute;
	top: -25px;
	right: 40px;
}

.mc-donate-support__heading {
	margin: 0 0 40px;
	line-height: .92;
}

.mc-donate-support__heading .top {
	display: block;
	font-family: var(--mc-font-heading);
	font-size: var(--mc-title-eyebrow);
	font-weight: 900;
	line-height:72px !important;
}

.mc-donate-support__heading .bottom {
	display: block;
	font-family: var(--mc-font-heading);
	font-size: var(--mc-title-main);
	font-weight: 900;
	text-transform: uppercase;
	line-height:54px !important;
}

.mc-donate-support__content p {
	margin: 0 0 34px;
	font-family: var(--mc-font-body);
	font-size: 18px;
	line-height: 27px;
	color: #555;
}

.mc-donate-support__image {
	text-align: right;
}

.mc-donate-support__image img {
	width: 100%;
	max-width: 560px;
	display: block;
	margin-left: auto;
	filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .18));
}

/* ---------- PROGRAM PILLARS ---------- */
.mc-pillars {
	position: relative;
	padding: 120px 0 140px;
	background: #fff;
	overflow: hidden;
}

.mc-pillars .mc-container {
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 25px;
}

.mc-pillars__top {
	display: grid;
	grid-template-columns: 48% 52%;
	gap: 90px;
	align-items: center;
}

.mc-pillars__image {
	position: relative;
}

.mc-pillars__photo {
	display: block;
	width: 100%;
	max-width: 610px;
	height: auto;
	margin: 0 auto;
	filter: drop-shadow(0 18px 35px rgba(0, 0, 0, .16));
}

.mc-pillars__content {
	position: relative;
	max-width: 620px;
}

.mc-pillars__doodle {
	position: absolute;
	top: -30px;
	right: 20px;
	width: 68px;
	height: auto;
}

.mc-pillars__heading {
	margin: 0 0 38px;
	line-height: .92;
}

.mc-pillars__heading .top {
	display: block;
	font-family: var(--mc-font-heading);
	font-size: var(--mc-title-eyebrow);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -1px;
	line-height:45px;
}

.mc-pillars__heading .bottom {
	display: block;
	margin-top: 8px;
	font-family: var(--mc-font-heading);
	font-size: var(--mc-title-main);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -1px;
	line-height:50px;
}

.mc-pillars__description {
	max-width: 470px;
	font-family: var(--mc-font-body);
	font-size: 18px;
	line-height: 1.9;
	color: #575757;
}

.mc-pillars__description p {
	margin: 0;
}

.mc-pillars__arrow {
	display: block;
	width: 110px;
	margin-top: 42px;
	margin-left: -35px;
}

.mc-pillars__cards {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 26px;
	align-items: start;
}

/* ---------- PROGRAM CARDS ---------- */
.mc-pillar-card {
	position: relative;
	min-height: 430px;
	border-radius: 34px;
	overflow: hidden;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	display: flex;
	align-items: flex-end;
	transition: transform .35s ease, box-shadow .35s ease;
	box-shadow: 0 14px 32px rgba(0, 0, 0, .12);
}

.mc-pillar-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 24px 48px rgba(0, 0, 0, .18);
}

.mc-pillar-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .55) 100%);
	z-index: 1;
	pointer-events: none;
}

.mc-pillar-card__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 30px;
	pointer-events: auto;
}

.mc-pillar-card h3 {
	margin: 0 0 16px;
	line-height: .92;
	font-family: var(--mc-font-heading);
	text-transform: uppercase;
}

.mc-pillar-card h3 span {
	display: block;
}

.mc-pillar-card h3 span:first-child,
.mc-pillar-card h3 span:last-child {
	font-size: 32px;
	font-weight: 900;
}

.mc-pillar-card h3 span:last-child {
	margin-top: 2px;
}

.mc-pillar-card p {
	margin: 0;
	font-family: var(--mc-font-body);
	font-size: 16px;
	line-height: 1.75;
	color: #fff;
}

.mc-pillar-card:nth-child(1) {
	margin-top: 60px;
}

.mc-pillar-card:nth-child(3) {
	margin-top: 60px;
}

.mc-pillar-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: inherit;
	background-size: cover;
	background-position: center;
	transform: scale(1);
	transition: transform .45s ease;
	z-index: 0;
}

.mc-pillar-card:hover::after {
	transform: scale(1.06);
}

/* ---------- FAQ ---------- */
.mc-faq {
	position: relative;
	padding: 120px 0;
	background: #fff8f0;
}

.mc-faq .mc-container {
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 20px;
}

.mc-faq .mc-section-heading {
	position: relative;
	margin: 0 0 55px;
	font-family: var(--mc-font-heading);
	font-size: var(--mc-title-hero);
	font-weight: 900;
	line-height: .9;
	color: #6A2B86;
}

.mc-faq__list {
	max-width: 1180px;
	margin: 0 auto;
}

.mc-faq-item {
	margin-bottom: 30px;
	border-radius: 22px;
	background: #fff;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
	transition: .35s ease;
}

.mc-faq-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
}

.mc-faq-item__q {
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	border: 0;
	cursor: pointer;
	text-align: left;
	padding: 28px 38px;
	font-family: var(--mc-font-body);
	font-size: 18px;
	font-weight: 700;
	color: #444;
	transition: .35s;
}

.mc-faq-item.is-open .mc-faq-item__q {
	color: #5A3F98;
	box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
}

.mc-faq-item__q span {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid #ececec;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 24px;
	font-weight: 300;
	color: #555;
	transition: .35s;
	background: #fff;
}

.mc-faq-item.is-open .mc-faq-item__q span {
	transform: rotate(45deg);
	color: #5A3F98;
}

.mc-faq-item__a {
	background: #fff;
	max-height: 0;
	overflow: hidden;
	padding: 0 38px;
	transition: max-height .45s ease, padding .35s ease;
}

.mc-faq-item.is-open .mc-faq-item__a {
	max-height: 800px;
	padding: 28px 38px 32px;
}

.mc-faq-item__a p {
	margin: 0 0 18px;
	font-family: var(--mc-font-body);
	font-size: 17px;
	line-height: 1.85;
	color: #555;
}

.mc-faq-item__a ul {
	margin: 0;
	padding-left: 26px;
}

.mc-faq-item__a li {
	margin-bottom: 18px;
	font-family: var(--mc-font-body);
	font-size: 17px;
	line-height: 1.85;
	color: #555;
}

.mc-faq-item__a strong {
	color: #F5A623;
	font-weight: 700;
}

/* ---------- AWARDS ---------- */
.mc-awards {
	padding: 90px 0;
	background: var(--mc-light-bg, #FFF8F0);
}

.mc-awards__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 30px;
}

.mc-awards__grid figure {
	margin: 0;
	text-align: center;
}

.mc-awards__grid img {
	border-radius: 16px;
	margin-bottom: 12px;
}

.mc-awards__grid figcaption {
	font-size: 14px;
	font-weight: 600;
}

/* ---------- BRIDGING THE GAP ---------- */
.mc-bridge {
	position: relative;
	padding: 120px 0;
	background: #f7f7f7;
	overflow: hidden;
}

.mc-bridge .mc-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 25px;
}

.mc-bridge__grid {
	display: grid;
	grid-template-columns: 48% 52%;
	gap: 80px;
	align-items: center;
}

.mc-bridge__left {
	position: relative;
}

.mc-bridge__heading {
	margin-bottom: 55px;
}

.mc-bridge__heading span {
	display: block;
	text-transform: uppercase;
	line-height: .92;
}

.mc-bridge__heading-red {
	font-family: var(--mc-font-heading);
	font-size: var(--mc-title-eyebrow);
	font-weight: 800;
	line-height: 1.1;
	text-transform: uppercase;
	color: #6A2B86;
}

.mc-bridge__heading-purple {
	font-family: var(--mc-font-heading);
	font-size: var(--mc-title-main);
	font-weight: 900;
	line-height: .95;
	letter-spacing: -1px;
	text-transform: uppercase;
	color: #5A3F98;
}

.mc-bridge__arrow {
	position: absolute;
	width: 78px;
	left: -65px;
	top: 155px;
}

.mc-bridge__cards {
	display: flex;
	gap: 22px;
	align-items: flex-end;
}

.mc-bridge__card {
	position: relative;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	flex: 1;
	min-height: 390px;
	border-radius: 34px;
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	color: #fff;
	overflow: hidden;
	box-shadow: 0 15px 30px rgba(0, 0, 0, .12);
	transition: .35s;
}

.mc-bridge__card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, .18);
}

.mc-bridge__card>* {
	position: relative;
	z-index: 2;
}

.mc-bridge__card-text {
	font-family: var(--mc-font-body);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.45;
	color: #fff;
}

.mc-bridge__card img {
	transition: .35s;
	width: 70px;
}

.mc-bridge__card:hover img {
	transform: scale(1.08);
}

.mc-bridge__right {
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.mc-bridge__image {
	display: block;
	width: 100%;
	max-width: 650px;
	height: auto;
	transform: rotate(2deg);
	filter: drop-shadow(0 16px 30px rgba(0, 0, 0, .18));
	transition: .5s ease;
}

.mc-bridge:hover .mc-bridge__image {
	transform: rotate(0deg) scale(1.02);
}

.mc-bridge__hands {
	position: absolute;
	right: 35px;
	bottom: -45px;
	width: 180px;
	opacity: .16;
	pointer-events: none;
}

/* ---------- LEGAL DOCUMENT TABLE ---------- */
.mc-resources-documents {
	padding: 110px 0;
	background: #fff6f6;
}

.mc-legal-table {
	margin-top: 50px;
	border-radius: 18px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
}

.mc-legal-table__head {
	display: grid;
	grid-template-columns: 2fr 1.2fr 2fr 1.4fr ;
	background: #555555bf;
	color: #fff;
	font-size: 17px;
	font-weight: 600;
	text-align: center;
	padding: 16px;
	font-family: var(--mc-font-heading);
	text-transform: uppercase;
}

.mc-legal-table__row {
	display: grid;
	grid-template-columns: 2fr 1.2fr 2fr 1.4fr ;
	align-items: center;
	text-align: center;
	padding: 20px;
	border-bottom: 1px solid #ddd;
	font-size: 16px;
	font-weight: 500;
	color: #6A2B86;
}

.mc-legal-table__row:last-child {
	border-bottom: none;
}

.mc-legal-table__row a {
	color: #EC2227;
	text-decoration: none;
	font-weight: 800;
}

.mc-legal-table__row a:hover {
	text-decoration: underline;
}

/* ---------- RESOURCE INTRO ---------- */
.mc-resource-intro {
	padding: 50px 0;
	background: #fff;
}

.mc-resource-intro__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 90px;
	align-items: center;
}

.mc-resource-intro__content {
	position: relative;
	max-width: 600px;
}

.mc-resource-intro__doodle {
	width: 70px;
	margin-bottom: 30px;
}

.mc-resource-intro__arrow {
	width: 130px;
	margin-top: 20px;
	margin-left: auto;
	display: block;
}

.mc-resource-intro__image {
	text-align: right;
}

.mc-resource-intro__image img {
	width: 100%;
	max-width: 620px;
	filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .20));
}

/* ---------- FUNDRAISING INTERNSHIP ---------- */
.mc-internship {
	padding: 110px 0;
	position: relative;
	overflow: hidden;
	background: #fff;
}

.mc-internship .mc-container {
	max-width: 1240px;
	margin: auto;
	padding: 0 20px;
}

.mc-internship__grid {
	display: grid;
	grid-template-columns: 1fr 560px;
	gap: 80px;
	align-items: center;
}

.mc-internship__content {
	position: relative;
}

.mc-internship__doodle {
	width: 65px;
	margin-bottom: 25px;
}

.mc-internship .mc-section-heading {
	text-align: left;
	margin: 0 0 30px;
}

.mc-internship .mc-section-heading .top,
.mc-internship .mc-section-heading .bottom {
	font-size: var(--mc-title-main);
	line-height: .9;
	margin-top: 10px;
	
}

.mc-internship .mc-page-content {
	max-width: 520px;
	margin-bottom: 35px;
}

.mc-internship .mc-page-content p {
	font-size: 22px;
	line-height: 1.75;
}

.mc-internship__image {
	position: relative;
}

.mc-internship__image img {
	width: 100%;
	display: block;
	transform: rotate(-3deg);
	border-radius: 12px;
	box-shadow: 0 30px 60px rgba(0, 0, 0, .18);
}

.mc-internship__image:after {
	content: "";
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: -20px;
	height: 38px;
	background: #fff;
	border-radius: 50%;
	filter: blur(6px);
}

.mc-internship .mc-btn {
	padding: 16px 38px;
}

/* ---------- VOLUNTEER OPPORTUNITIES ---------- */
.mc-volunteer {
	padding: 110px 0;
	background: #f8f8f8;
	position: relative;
}

.mc-volunteer .mc-container {
	max-width: 1240px;
	margin: auto;
	padding: 0 20px;
}

.mc-volunteer__header {
	max-width: 820px;
	margin: 0 auto 70px;
	text-align: center;
}

.mc-volunteer__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.mc-volunteer-card {
	position: relative;
	min-height: 520px;
	border-radius: 30px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-start;
}

.mc-volunteer-card__overlay {
	position: absolute;
	inset: 0;
	background: #9751b7e0;
	transition: .35s;
}

.mc-volunteer-card__content {
	position: absolute;
	inset: 0;
	z-index: 2;
	padding: 34px;
	display: flex;
	color: #ffffff;
	flex-direction: column;
}

.mc-volunteer-card h3 {
	margin: 0 0 28px;
	font-size: 30px;
	line-height: 1.15;
	min-height: 115px;
	color: #FAFA33;
	font-weight: 900;
	font-family: var(--mc-font-heading);
}

.mc-volunteer-card__text {
	color: #fff;
	font-size: 18px;
	line-height: 1.8;
}

.mc-volunteer-card__text p {
	margin: 0 0 10px;
}

.mc-volunteer-card__text ul {
	margin: 15px 0;
	padding-left: 20px;
	list-style: disc;
}

.mc-volunteer-card__text li {
	margin-bottom: 6px;
	color: #fff;
	line-height: 1.7;
}

.mc-volunteer-card .mc-btn {
	margin-top: 25px;
}

/* ---------- CORPORATE CONTACT ---------- */
.mc-corporate {
	padding: 110px 0;
	background: #fff;
}

.mc-corporate .mc-container {
	max-width: 1050px;
	margin: auto;
	padding: 0 20px;
}

.mc-corporate .mc-section-heading {
	margin-bottom: 45px;
}

.mc-corporate-card {
	display: grid;
	grid-template-columns: 450px 1fr;
	border-radius: 26px;
	overflow: hidden;
	background: #f7f7f7;
	box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
}

.mc-corporate-card__left {
	position: relative;
	min-height: 225px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
}

.mc-corporate-card__overlay {
	position: absolute;
	inset: 0;
	background: #9751b7e0;
}

.mc-corporate-card__title {
	position: relative;
	z-index: 2;
	padding: 35px;
	color: #fff;
	font-family: var(--mc-font-heading);
	font-size: 25px;
	line-height: .9;
	text-transform: uppercase;
}

.mc-corporate-card__right {
	padding: 14px 40px;
}

.mc-corporate-card__right p {
	margin: 0 0 25px;
	font-size: 20px;
	line-height: 1.6;
	color: #444;
}

.mc-corporate-card__right strong {
	color: #333;
}

.mc-corporate-card__right a {
	color: #444;
	font-weight: 700;
}

/* ---------- GET INVOLVED INTRO ---------- */
.mc-gi-intro {
	position: relative;
	padding: 120px 0;
	background: #fff;
	overflow: hidden;
}

.mc-gi-intro .mc-container {
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 25px;
}

.mc-gi-intro__grid {
	display: grid;
	grid-template-columns: 52% 48%;
	gap: 90px;
	align-items: center;
}

.mc-gi-intro__content {
	position: relative;
	max-width: 620px;
}

.mc-gi-intro__doodle {
	position: absolute;
	top: -120px;
	left: -26px;
	width: 110px;
	z-index: 2;
}

.mc-gi-intro .mc-section-heading {
	margin: 0 0 45px;
	max-width: 100%;
	text-align: left;

}

.mc-gi-intro .mc-section-heading .top {
	font-size: var(--mc-title-eyebrow);
	line-height: 1.1;
}

.mc-gi-intro .mc-section-heading .bottom {
	margin-top: 28px;
	font-size: var(--mc-title-main);
	line-height: 53px;
}

.mc-gi-intro .mc-page-content p {
	margin: 0;
	font-size: 18px;
	line-height: 1.9;
	color: #555;
}

.mc-gi-intro__arrow {
	width: 120px;
	margin-top: 45px;
	margin-left: -25px;
}

.mc-gi-intro__image {
	position: relative;
	text-align: right;
}

.mc-gi-intro__image img {
	width: 100%;
	max-width: 600px;
	display: block;
	margin-left: auto;
	filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .18));
	transform: rotate(2deg);
	transition: .35s;
}

.mc-gi-intro__image img:hover {
	transform: rotate(0deg) scale(1.02);
}

/* ---------- WHY DONATE ---------- */
.mc-why {
	padding: 110px 0;
	background: #f8f8f8;
}

.mc-why .mc-container {
	max-width: 1240px;
	margin: auto;
	padding: 0 20px;
}

.mc-why__grid {
	display: grid;
	grid-template-columns: 520px 1fr;
	gap: 80px;
	align-items: center;
}

.mc-why__image img {
	width: 100%;
	display: block;
	transform: rotate(-3deg);
	box-shadow: 0 25px 45px rgba(0, 0, 0, .18);
}

.mc-why__cards {
	display: flex;
	flex-direction: column;
	gap: 26px;
}

.mc-why .mc-section-heading {
	text-align: left;
	margin-bottom: 25px;
	color: #6A2B86;
}

.mc-why-card {
	height: 170px;
	border-radius: 24px;
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	padding: 35px;
	text-decoration: none;
}

.mc-why-card__overlay {
	position: absolute;
	inset: 0;
	background: rgba(86, 62, 150, .82);
}

.mc-why-card__content {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.mc-why-card__content img {
	width: 54px;
	height: 54px;
	order: 2;
}

.mc-why-card h3 {
	margin: 0;
	color: #fff;
	font-size: 28px;
	line-height: 1.15;
	font-weight: 900;
	font-family: var(--mc-font-heading);
	max-width: 70%;
}

.mc-why-card h3 strong {
	color: #F6A41A;
}

/* ---------- ABOUT: MISSION ---------- */
.mc-about-mission {
	padding: 120px 0;
	background: #f8f8f8;
}

.mc-about-mission .mc-container {
	max-width: 1240px;
	margin: auto;
	padding: 0 20px;
}

.mc-about-mission__grid {
	display: grid;
	grid-template-columns: 520px 1fr;
	gap: 90px;
	align-items: center;
}

.mc-about-mission__image {
	position: relative;
}

.mc-about-mission__image img {
	width: 100%;
	display: block;
	border-radius: 22px;
}

.mc-about-mission__content {
	max-width: 560px;
}

.mc-about-mission .mc-section-heading {
	text-align: left;
	margin-bottom: 35px;
}

.mc-about-mission .mc-page-content {
	font-size: 18px;
	line-height: 1.9;
	color: #555;
}

.mc-about-mission .mc-page-content p {
	margin-bottom: 18px;
}

/* ---------- ABOUT: JOURNEY ---------- */
.mc-about-journey {
	padding: 120px 0;
	background: #ffffff;
}

.mc-about-journey .mc-section-heading,
.mc-journey-heading {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto 80px;
	text-align: center;
	font-size: var(--mc-title-main);
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	font-family: var(--mc-font-heading);
	
}

.mc-journey-heading .purple {
	color: #555555bf;
}

.mc-journey-heading .red {
	color: #6A2B86;
}

.mc-journey {
	position: relative;
}

.mc-journey:before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 4px;
	background: #F4A11A;
	transform: translateX(-50%);
}

.mc-journey__item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: center;
	margin-bottom: 90px;
	position: relative;
}

.mc-journey__item.is-right .mc-journey__content {
	order: 2;
}

.mc-journey__item.is-right .mc-journey__image {
	order: 1;
}

.mc-journey__year {
	display: inline-block;
	margin-bottom: 18px;
	padding: 10px 20px;
	background: #FF4433;
	color: #fff;
	border-radius: 40px;
	font-weight: 700;
}

.mc-journey__content h3 {
	margin: 0 0 18px;
	font-size: 34px;
	line-height: 1.1;
	color:#6A2B86;
}

.mc-journey__content p {
	margin: 0;
	color: #666;
	line-height: 1.9;
}

.mc-journey__image img {
	width: 100%;
	border-radius: 24px;
	display: block;
	box-shadow: 0 18px 35px rgba(0, 0, 0, .15);
}

.mc-journey__item:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 40px;
	width: 22px;
	height: 22px;
	background: #5B43A8;
	border: 6px solid #fff;
	border-radius: 50%;
	transform: translateX(-50%);
	box-shadow: 0 0 0 5px #F4A11A;
}

/* ---------- ABOUT: FOUNDER ---------- */
/* NOTE: renamed from .mc-founder -> .mc-founder--about (see home founder note above) */
.mc-founder--about {
	padding: 120px 0;
	background: #eeeded;
}

.mc-founder--about .mc-container {
	max-width: 1240px;
	margin: auto;
	padding: 0 20px;
}

.mc-founder--about .mc-founder__grid {
	display: grid;
	grid-template-columns: 470px 1fr;
	gap: 90px;
	align-items: center;
}

.mc-founder--about .mc-founder__image img {
	width: 100%;
	display: block;
	border-radius: 26px;
	box-shadow: 0 20px 45px rgba(0, 0, 0, .18);
}

.mc-founder--about .mc-founder__content {
	position: relative;
}

.mc-founder--about .mc-founder__quote {
	display: block;
	font-size: 81px;
	line-height: .7;
	color: #F4A11A;
	font-family: Georgia, serif;
}

.mc-founder--about blockquote {
	margin: 0 0 35px;
	font-size: 34px;
	line-height: 1.4;
	font-weight: 700;
	color: #6A2B86;
	font-family: var(--mc-font-heading);
}

.mc-founder--about .mc-page-content {
	color: #555;
	font-size: 18px;
	line-height: 1.9;
}

.mc-founder--about .mc-founder__signature {
	width: 180px;
	margin-top: 35px;
}

.mc-founder--about .mc-founder__info {
	margin-top: 25px;
}

.mc-founder--about .mc-founder__info h4 {
	margin: 0;
	font-size: 26px;
	font-family: var(--mc-font-heading);
	color: #6A2B86;
}

.mc-founder--about .mc-founder__info span {
	display: block;
	margin-top: 5px;
	color: #777;
	font-size: 16px;
}

/* ---------- ABOUT: VISION ---------- */
.mc-about-vision {
	position: relative;
	padding: 120px 0;
	background: #fff;
	overflow: hidden;
}

.mc-about-vision .mc-container {
	max-width: 1280px;
	margin: auto;
	padding: 0 20px;
}

.mc-about-vision__grid {
	display: grid;
	grid-template-columns: 560px 1fr;
	gap: 90px;
	align-items: center;
}

.mc-about-vision__content {
	position: relative;
}

.mc-about-vision__doodle {
	position: absolute;
	top: -84px;
	left: -29px;
	width: 95px;
	height: auto;
}

.mc-about-vision .mc-section-heading {
	margin: 0 0 38px;
	text-align: left;
	line-height: 1;
}

.mc-about-vision .mc-section-heading .top {
	color: #555555bf;
	font-size: var(--mc-title-eyebrow);
	margin-bottom: 14px;
}

.mc-about-vision .mc-section-heading .bottom {
	color: #6A2B86;
	font-size: var(--mc-title-eyebrow);
}

.mc-about-vision .mc-page-content {
	font-size: 18px;
	line-height: 1.9;
	color: #4f4f4f;
}

.mc-about-vision .mc-page-content p {
	margin: 0 0 18px;
}

.mc-about-vision__image {
	text-align: right;
}

.mc-about-vision__image img {
	width: 100%;
	max-width: 620px;
	display: block;
	margin-left: auto;
	border-radius: 24px;
}


/* ============================================================
   ============================================================
   RESPONSIVE — everything below this line is mobile/tablet
   overrides only. Desktop styles above never change.
   ============================================================
   ============================================================ */

/* =========================================================
   TABLET  (max-width: 991px)
   ========================================================= */
@media (max-width: 991px) {
	.mc-header__inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
		height: 80px;
		padding: 0 20px;
	}

	.mc-header__logo {
		flex: 1;
	}

	.mc-nav-toggle {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 44px;
		height: 44px;
		z-index: 10002;
	}

	.mc-nav-toggle span {
		width: 26px;
		height: 3px;
		margin: 3px 0;
		background: #222;
	}

	.mc-header__nav {
		position: fixed;
		top: 80px;
		left: 0;
		width: 100%;
		height: calc(100vh - 80px);
		background: #fff;
		overflow-y: auto;
		z-index: 10001;

		/* smooth open/close */
		transform: translateX(100%);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: transform .35s ease, opacity .3s ease, visibility 0s linear .35s;
	}

	.mc-header__nav.is-open {
		transform: translateX(0);
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transition: transform .35s ease, opacity .3s ease, visibility 0s linear 0s;
	}

	/* mobile-menu-only donate button (hidden on desktop) */
	.mc-header__nav-donate {
		display: none;
	}

	.mc-header__nav.is-open {
		display: block;
	}

	.mc-nav-menu {
		flex-direction: column;
		gap: 25px;
		padding: 40px 20px;
		align-items: center;
	}

	.mc-header__donate-desktop {
		display: none;
	}

	.mc-header__nav-donate {
		display: flex;
		justify-content: center;
		align-self: center;
		width: max-content;
		margin: 20px auto 30px;
		min-width: 200px;
		height: 52px;
	}

	.mc-stories .mc-container {
		max-width: 1100px;
	}

	.mc-story-slider {
		padding: 20px 20px 70px;
	}

	.mc-story {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.mc-story__content {
		border-right: 0;
		border-bottom: 1px solid #ddd;
		padding: 35px;
	}

	.mc-story__image {
		padding: 25px;
	}

	.mc-story__image img {
		max-height: 420px;
	}

	.mc-story-prev,
	.mc-story-next {
		display: none;
	}

	.mc-founder--home {
		padding: 80px 0;
	}

	.mc-founder--home .mc-founder__grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.mc-founder--home .mc-founder__photo {
		max-width: 420px;
	}

	.mc-founder--home .mc-founder__title {
		font-size: 58px;
	}

	.mc-founder--home .mc-founder__heading {
		font-size: 22px;
	}

	.mc-founder--home .mc-founder__body {
		font-size: 17px;
		line-height: 28px;
	}

	.mc-founder--home .mc-founder__signature strong {
		font-size: 24px;
	}

	.mc-founder--home .mc-founder__arrow {
		display: none;
	}

	.mc-enablers__grid {
		grid-template-columns: 1fr;
	}

	.mc-enabler-card {
		height: 260px;
	}

	.mc-enabler-card:first-child {
		border-right: 0;
		border-bottom: 2px solid rgba(255, 255, 255, .15);
	}

	.mc-donate-hero {
		min-height: 80vh;
		padding: 100px 20px 60px;
	}

	.mc-donate-hero h1 {
		font-size: 54px;
	}

	.mc-donate-heading__title {
		font-size: 54px;
	}

	.mc-amount-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.mc-donate-support {
		padding: 90px 0;
	}

	.mc-donate-support__grid {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.mc-donate-support__content {
		max-width: 100%;
	}

	.mc-donate-support__heading .top {
		font-size: 48px;
		line-height:52px !important;
	}

	.mc-donate-support__heading .bottom {
		font-size: 56px;
		line-height:52px !important;
	}

	.mc-donate-support__image {
		text-align: center;
	}

	.mc-donate-support__image img {
		margin: auto;
	}

	.mc-pillars {
		padding: 90px 0;
	}

	.mc-pillars__top {
		grid-template-columns: 1fr;
		gap: 55px;
		margin-bottom: 70px;
	}

	.mc-pillars__content {
		max-width: 100%;
	}

	.mc-pillars__photo {
		max-width: 560px;
	}

	.mc-pillars__heading .top {
		font-size: 44px;
	}

	.mc-pillars__heading .bottom {
		font-size: 56px;
	}

	.mc-pillars__description {
		max-width: 100%;
	}

	.mc-pillars__cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.mc-pillar-card {
		min-height: 360px;
		border-radius: 28px;
	}

	.mc-pillar-card:nth-child(n) {
		margin-top: 0;
	}

	.mc-pillar-card__inner {
		padding: 24px;
	}

	.mc-pillar-card h3 span:first-child,
	.mc-pillar-card h3 span:last-child {
		font-size: 28px;
	}

	.mc-faq {
		padding: 90px 0;
	}

	.mc-faq .mc-section-heading {
		font-size: 54px;
	}

	.mc-faq-item__q {
		padding: 24px 28px;
		font-size: 17px;
	}

	.mc-faq-item__a {
		padding: 0 28px;
	}

	.mc-faq-item.is-open .mc-faq-item__a {
		padding: 24px 28px 28px;
	}

	.mc-cta-bar {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.mc-cta-bar__item {
		min-height: 130px;
		padding: 20px;
	}

	.mc-cta-bar__item--intern,
	.mc-cta-bar__item--corporate {
		font-size: 18px;
	}

	.mc-cta-bar__item--donate {
		font-size: 42px;
	}

	.mc-bridge {
		padding: 90px 0;
	}

	.mc-bridge__grid {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.mc-bridge__left {
		order: 1;
	}

	.mc-bridge__right {
		order: 2;
		justify-content: center;
	}

	.mc-bridge__heading {
		text-align: center;
	}

	.mc-bridge__heading-red {
		font-size: 42px;
	}

	.mc-bridge__heading-purple {
		font-size: 58px;
	}

	.mc-bridge__cards {
		justify-content: center;
	}

	.mc-bridge__card {
		min-height: 415px;
		padding: 26px 18px;
		border-radius: 28px;
	}

	.mc-bridge__image {
		max-width: 520px;
		transform: none;
	}

	.mc-bridge__hands {
		width: 140px;
		right: 0;
		bottom: -20px;
	}

	.mc-bridge__arrow {
		display: none;
	}

	.mc-legal-table {
		overflow-x: auto;
	}

	.mc-legal-table__head,
	.mc-legal-table__row {
		min-width: 980px;
	}

	.mc-resource-intro {
		padding: 80px 0;
	}

	.mc-resource-intro__grid {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.mc-resource-intro__image {
		text-align: center;
	}

	.mc-resource-intro__content {
		max-width: 100%;
	}

	.mc-internship {
		padding: 80px 0;
	}

	.mc-internship__grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.mc-internship__image {
		order: -1;
	}

	.mc-internship .mc-section-heading {
		text-align: center;
	}

	.mc-internship__doodle {
		display: block;
		margin: 0 auto 25px;
	}

	.mc-internship .mc-page-content {
		max-width: 100%;
		text-align: center;
	}

	.mc-internship .mc-btn {
		display: table;
		margin: auto;
	}

	.mc-volunteer__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.mc-corporate-card {
		grid-template-columns: 1fr;
	}

	.mc-corporate-card__left {
		min-height: 180px;
	}

	.mc-gi-intro {
		padding: 90px 0;
	}

	.mc-gi-intro__grid {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.mc-gi-intro__content {
		max-width: 100%;
		order: 2;
	}

	.mc-gi-intro__image {
		order: 1;
		text-align: center;
	}

	.mc-gi-intro__image img {
		margin: auto;
	}

	.mc-gi-intro .mc-section-heading {
		text-align: center;
	}

	.mc-gi-intro .mc-page-content {
		max-width: 100%;
		text-align: center;
	}

	.mc-gi-intro__arrow {
		display: none;
	}

	.mc-gi-intro__doodle {
		left: 50%;
		transform: translateX(-50%);
		top: -40px;
	}

	.mc-why__grid {
		grid-template-columns: 1fr;
	}

	.mc-about-mission {
		padding: 90px 0;
	}

	.mc-about-mission__grid {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.mc-about-mission__content {
		max-width: 100%;
	}

	.mc-about-mission .mc-section-heading {
		text-align: center;
	}

	.mc-about-mission .mc-page-content {
		text-align: center;
	}

	.mc-about-mission__image {
		text-align: center;
	}

	.mc-about-mission__image img {
		max-width: 600px;
		margin: auto;
	}

	.mc-journey:before {
		display: none;
	}

	.mc-journey__item {
		grid-template-columns: 1fr;
		gap: 35px;
		margin-bottom: 70px;
	}

	.mc-journey__item.is-right .mc-journey__content,
	.mc-journey__item.is-right .mc-journey__image {
		order: unset;
	}

	.mc-journey__item:after {
		display: none;
	}

	.mc-founder--about {
		padding: 90px 0;
	}

	.mc-founder--about .mc-founder__grid {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.mc-founder--about .mc-founder__content {
		text-align: center;
	}

	.mc-founder--about .mc-founder__image {
		text-align: center;
	}

	.mc-founder--about .mc-founder__image img {
		max-width: 520px;
		margin: auto;
	}

	.mc-founder--about .mc-founder__signature {
		margin: 30px auto 0;
	}

	.mc-about-vision {
		padding: 90px 0;
	}

	.mc-about-vision__grid {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.mc-about-vision__content {
		order: 1;
		text-align: center;
	}

	.mc-about-vision__image {
		order: 2;
		text-align: center;
	}

	.mc-about-vision__image img {
		margin: auto;
		max-width: 580px;
	}

	.mc-about-vision__doodle {
		display: none;
	}

	.mc-about-vision .mc-section-heading {
		text-align: center;
	}

	/* fine-tuning that used to live in separate 1200/1400px queries */
	.mc-bridge__heading-red {
		font-size: 54px;
	}

	.mc-bridge__heading-purple {
		font-size: 72px;
	}

	.mc-bridge__image {
		max-width: 610px;
	}

	.mc-pillars__top {
		gap: 60px;
	}

	.mc-pillars__heading .top {
		font-size: 48px;
	}

	.mc-pillars__heading .bottom {
		font-size: 60px;
	}
	/* ---------- FOOTER (tablet) ---------- */
	.mc-footer {
		padding: 70px 0 50px;
	}
	.mc-footer .mc-container {
		padding: 0 25px;
	}
	.mc-footer::before {
		height: 220px;
	}
	.mc-footer::after {
		display: none;
	}
	.mc-footer__grid {
		grid-template-columns: 1fr;
		gap: 45px;
	}
	.mc-footer__right {
		border-left: 0;
		padding-left: 0;
		border-top: 1px solid #222;
		padding-top: 40px;
	}
}

@media (max-width: 800px) {
	.mc-block-text-image__grid {
		grid-template-columns: 1fr;
	}

	.mc-block-text-image--left .mc-block-text-image__grid img {
		order: 0;
	}

	.mc-donate-support__grid {
		grid-template-columns: 1fr;
	}
}

/* =========================================================
   MOBILE  (max-width: 767px)
   ========================================================= */
@media (max-width: 767px) {
	.mc-hero__content h1 {
		font-size: 30px;
	}

	.mc-stories {
		padding: 50px 0;
	}

	.mc-stories .mc-container {
		padding: 0 15px;
	}

	.mc-story-slider {
		padding: 10px 10px 60px;
	}

	.mc-story__content {
		padding: 25px;
	}

	.mc-story__text {
		font-size: 16px;
	}

	.mc-story__warning-line {
		font-size: 15px;
	}

	.mc-story__image {
		height: 280px;
	}

	.mc-founder--home {
		padding: 70px 0;
	}

	.mc-founder--home .mc-founder__photo {
		max-width: 320px;
	}

	.mc-founder--home .mc-founder__title {
		font-size: 42px;
	}

	.mc-founder--home .mc-founder__heading {
		font-size: 20px;
	}

	.mc-founder--home .mc-founder__body {
		font-size: 16px;
		line-height: 28px;
	}

	.mc-founder--home .mc-founder__signature strong {
		font-size: 22px;
	}

	.mc-enablers {
		padding: 70px 0;
	}

	.mc-enablers__heading span {
		font-size: 38px;
	}

	.mc-enabler-card {
		height: 230px;
	}

	.mc-enabler-icon {
		width: 58px;
	height: 58px;
	object-fit: contain;
	transform: scale(1.5);
	}

	.mc-enabler-card h3 {
		font-size: 24px;
	}

	.mc-enabler-card p {
		display: none;
	}

	.mc-donate-hero {
		min-height: 100vh;
		padding: 90px 20px 50px;
	}

	.mc-donate-hero h1 {
		font-size: 38px;
	}

	.mc-donate-form-section {
		padding: 70px 0;
	}

	.mc-donate-heading {
		margin-bottom: 40px;
	}

	.mc-donate-heading__title {
		font-size: 40px;
	}

	.mc-amount-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.mc-amount-tile {
		padding: 28px 20px;
	}

	.mc-amount-tile__amount {
		font-size: 32px;
	}

	.mc-amount-tile__body strong {
		font-size: 20px;
	}

	.mc-donate-modal__box {
		padding: 28px 22px;
		border-radius: 20px;
	}

	.mc-modal-title {
		font-size: 30px;
	}

	.mc-donor-fields {
		grid-template-columns: 1fr;
	}

	.mc-modal-amount-input {
		font-size: 24px;
	}

	.mc-freq-btn {
		padding: 12px 18px;
		font-size: 14px;
	}

	.mc-donate-support {
		padding: 70px 0;
	}

	.mc-donate-support__heading .top {
		font-size: 34px;
	}

	.mc-donate-support__heading .bottom {
		font-size: 42px;
	}

	.mc-donate-support__content p {
		font-size: 16px;
		line-height: 1.8;
	}

	.mc-donate-support__doodle {
		display: none;
	}

	.mc-pillars {
		padding: 70px 0;
	}

	.mc-pillars__heading .top {
		font-size: 32px;
	}

	.mc-pillars__heading .bottom {
		font-size: 42px;
	}

	.mc-pillars__description {
		font-size: 16px;
		line-height: 1.8;
	}

	.mc-pillars__cards {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.mc-pillars__arrow,
	.mc-pillars__doodle {
		display: none;
	}

	.mc-pillar-card {
		min-height: 300px;
		border-radius: 22px;
	}

	.mc-pillar-card__inner {
		padding: 22px;
	}

	.mc-pillar-card h3 span:first-child,
	.mc-pillar-card h3 span:last-child {
		font-size: 24px;
	}

	.mc-pillar-card p {
		font-size: 15px;
		line-height: 1.7;
	}

	.mc-faq {
		padding: 70px 0;
	}

	.mc-faq .mc-section-heading {
		font-size: 38px;
		margin-bottom: 30px;
	}

	.mc-faq-item {
		border-radius: 16px;
		margin-bottom: 18px;
	}

	.mc-faq-item__q {
		padding: 20px;
		font-size: 16px;
	}

	.mc-faq-item__q span {
		width: 28px;
		height: 28px;
		font-size: 20px;
	}

	.mc-faq-item__a {
		padding: 0 20px;
	}

	.mc-faq-item.is-open .mc-faq-item__a {
		padding: 20px 20px 24px;
	}

	.mc-faq-item__a p,
	.mc-faq-item__a li {
		font-size: 15px;
		line-height: 1.7;
	}

	.mc-cta-bar {
		grid-template-columns: 1fr;
	}

	.mc-cta-bar__item {
		min-height: 90px;
	}

	.mc-cta-bar__item--intern,
	.mc-cta-bar__item--corporate {
		font-size: 18px;
	}

	.mc-cta-bar__item--donate {
		font-size: 34px;
	}

	.mc-bridge {
		padding: 70px 0;
	}

	.mc-bridge .mc-container {
		padding: 0 18px;
	}

	.mc-bridge__heading {
		margin-bottom: 35px;
	}

	.mc-bridge__heading-red {
		font-size: 18px;
	}

	.mc-bridge__heading-purple {
		font-size: 36px;
	}

	.mc-bridge__card-text {
		font-size: 17px;
	}

	.mc-bridge__cards {
		flex-direction: column;
		gap: 20px;
	}

	.mc-bridge__card {
		width: 100%;
		min-height: 240px;
		border-radius: 24px;
	}

	.mc-bridge__card-icon {
		position: relative;
		left: 50%;
		transform: translateX(-50%);
		margin-bottom: 28px;
	}

	.mc-bridge__card-icon img {
		height: auto;
		display: block;
		width: 70px;
	}

	.mc-bridge__image {
		max-width: 100%;
	}

	.mc-bridge__hands {
		width: 100px;
		bottom: -10px;
		right: 10px;
	}

	.mc-resources-documents {
		padding: 70px 0;
	}

	.mc-page-content {
		font-size: 17px;
		line-height: 1.8;
	}

	.mc-page-content h2,
	.mc-page-content h3 {
		font-size: 34px;
	}

	.mc-resource-intro__arrow {
		display: none;
	}

	.mc-resource-intro__doodle {
		display: none;
	}

	.mc-internship .mc-section-heading .top,
	.mc-internship .mc-section-heading .bottom {
		font-size: 46px;
	}

	.mc-internship .mc-page-content p {
		font-size: 18px;
	}

	.mc-volunteer {
		padding: 70px 0;
	}

	.mc-volunteer__grid {
		grid-template-columns: 1fr;
	}

	.mc-volunteer-card__content {
		padding: 25px;
	}

	.mc-volunteer-card h3 {
		font-size: 24px;
	}

	.mc-corporate {
		padding: 70px 0;
	}

	.mc-corporate-card__title {
		font-size: 25px;
		padding: 25px;
	}

	.mc-corporate-card__right {
		padding: 30px 25px;
	}

	.mc-corporate-card__right p {
		font-size: 17px;
	}

	.mc-gi-intro {
		padding: 70px 0;
	}

	.mc-gi-intro .mc-section-heading .top {
		font-size: 26px;
	}

	.mc-gi-intro .mc-section-heading .bottom {
		font-size: 34px;
	}

	.mc-gi-intro .mc-page-content p {
		font-size: 16px;
		line-height: 1.8;
	}

	.mc-gi-intro__doodle {
		width: 70px;
		top: -20px;
	}

	.mc-about-mission {
		padding: 70px 0;
	}

	.mc-about-mission__grid {
		gap: 40px;
	}

	.mc-about-journey {
		padding: 70px 0;
	}

	.mc-about-journey .mc-section-heading,
	.mc-journey-heading {
		font-size: 34px;
	}

	.mc-journey__content h3 {
		font-size: 28px;
	}

	.mc-founder--about {
		padding: 70px 0;
	}

	.mc-founder--about blockquote {
		font-size: 26px;
	}

	.mc-founder--about .mc-founder__quote {
		font-size: 90px;
	}

	.mc-founder--about .mc-founder__info h4 {
		font-size: 22px;
	}

	.mc-about-vision {
		padding: 70px 0;
	}

	.mc-about-vision__grid {
		gap: 40px;
	}

	.mc-about-vision .mc-section-heading {
		margin-bottom: 25px;
	}

	.mc-about-vision .mc-section-heading .top {
		font-size: 26px;
		margin-bottom: 8px;
	}

	.mc-about-vision .mc-section-heading .bottom {
		font-size: 32px;
		line-height: 1.05;
	}

	.mc-about-vision .mc-page-content {
		font-size: 17px;
		line-height: 1.8;
	}

	.mc-about-vision__image img {
		border-radius: 18px;
	}
	/* ---------- FOOTER (mobile) ---------- */
	.mc-footer {
		padding: 55px 0 40px;
		text-align: center;
	}
	.mc-footer .mc-container {
		padding: 0 20px;
	}
	.mc-footer::before {
		height: 150px;
		background-size: 140% auto;
	}
	.mc-footer__grid {
		gap: 35px;
	}
	.mc-footer__logo {
		display: flex;
		justify-content: center;
		margin-bottom: 20px;
	}
	.mc-footer__logo img {
		max-width: 220px;
	}
	.mc-footer__about {
		font-size: 16px;
		line-height: 1.75;
	}
	.mc-footer__right {
		padding-top: 30px;
	}
	.mc-footer__social {
		justify-content: center;
		gap: 26px;
		margin-bottom: 20px;
	}
	.mc-footer__social a {
		font-size: 32px;
		width: 40px;
		height: 40px;
	}
	.mc-footer__follow {
		font-size: 16px;
		line-height: 1.7;
		max-width: 100%;
		margin: 0 auto 40px;
	}
	.mc-footer__block {
		margin-bottom: 32px;
	}
	.mc-footer__block h3 {
		font-size: 19px;
	}
	.mc-footer-menu {
		display: inline-block;
	}
	.mc-footer-menu a {
		font-size: 16px;
	}
	.mc-footer__email {
		font-size: 16px;
		word-break: break-all;
	}
}

/* ---------- IMAGE HOVER (lift, no zoom) ---------- */
.mc-page-content img,
.mc-story__image img,
.mc-founder--home .mc-founder__photo,
.mc-founder--about .mc-founder__image img,
.mc-about-mission__image img,
.mc-about-vision__image img,
.mc-resource-intro__image img,
.mc-gi-intro__image img,
.mc-donate-support__image img,
.mc-pillars__photo,
.mc-internship__image img,
.mc-journey__image img,
.mc-volunteer-card__image img {
	transition: transform .35s ease, box-shadow .35s ease;
	box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

.mc-page-content img:hover,
.mc-story__image img:hover,
.mc-founder--home .mc-founder__photo:hover,
.mc-founder--about .mc-founder__image img:hover,
.mc-about-mission__image img:hover,
.mc-about-vision__image img:hover,
.mc-resource-intro__image img:hover,
.mc-gi-intro__image img:hover,
.mc-donate-support__image img:hover,
.mc-pillars__photo:hover,
.mc-internship__image img:hover,
.mc-journey__image img:hover,
.mc-volunteer-card__image img:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, .22);
}

/* ---------- LEGAL TABLE: VIEW BUTTON ---------- */
.mc-doc-view-btn {
	display: inline-block;
	border: none;
	background: none;
	padding: 0;
	font: inherit;
	color: #F26522;
	font-weight: 700;
	cursor: pointer;
	text-decoration: underline;
}

.mc-doc-view-btn:hover {
	color: #5b4697;
}

/* ---------- DOCUMENT VIEWER MODAL ---------- */
.mc-doc-modal__content {
	width: 90%;
	height: 90vh;
	display: flex;
	flex-direction: column;
	padding: 30px;
}

.mc-doc-modal__title {
	margin: 0 40px 15px 0;
	font-size: 22px;
}

.mc-doc-modal__frame-wrap {
	position: relative;
	flex: 1;
	border-radius: 12px;
	overflow: hidden;
	background: #f4f4f4;
}

.mc-doc-modal__frame {
	width: 100%;
	height: 100%;
	border: 0;
}

@media (max-width: 767px) {
	.mc-doc-modal__content {
		height: 85vh;
		padding: 20px;
	}
}
