/* =============================================================
   Mithila Homepage — homepage.css  v1.2
   Full-width sections · Creedy theme colour scheme
   ============================================================= */

/* ── Global reset for this page ──────────────────────────── */
.mithila-home *,
.mithila-home *::before,
.mithila-home *::after { box-sizing: border-box; }
.mithila-home img     { max-width: 100%; height: auto; display: block; }
.mithila-home ul,
.mithila-home ol      { list-style: none; margin: 0; padding: 0; }
.mithila-home figure  { margin: 0; }
.mithila-home p       { margin-top: 0; }

/* The wrapper itself must be 100% so child sections fill the viewport */
.mithila-home {
	width: 100%;
	font-family: var(--wdtFontTypo_Base, 'Roboto', sans-serif);
	color: var(--wdtBodyTxtColor, #202020);
	background: var(--wdtBodyBGColor, #fff);
}

/* Every section is truly full-width — no container clipping */
.mithila-home section {
	display: block;
	width: 100%;
	padding-block: clamp(3rem, 6vw, 5.5rem);
}

/* ── Centred inner container (used INSIDE each section) ──── */
.mh-container {
	width: 100%;
	max-width: 1366px;
	margin-inline: auto;
	padding-inline: clamp(1.25rem, 4vw, 3rem);
}

/* ── Utility ─────────────────────────────────────────────── */
.mh-visually-hidden {
	position: absolute;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

/* ── Typography ─────────────────────────────────────────── */
.mh-h2 {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: var(--wdtFontWeight_Alt, 700);
	color: var(--wdtHeadAltColor, #202020);
	line-height: 1.2;
	margin: 0 0 1.25rem;
}
.mh-h2--center { text-align: center; }

.mh-kicker {
	display: block;
	font-size: .8125rem;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--wdtPrimaryColor, #d88e7d);
	font-family: var(--wdtFontTypo_Base, 'Roboto', sans-serif);
	margin-bottom: .55rem;
}
.mh-kicker--center { text-align: center; }
.mh-kicker--light  { color: rgba(255,255,255,.85); }

/* ── Buttons ─────────────────────────────────────────────── */
.mh-btn {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	padding: .72rem 1.75rem;
	border-radius: var(--wdtRadius_Part, 2.5em);
	font-size: .9375rem;
	font-weight: 600;
	font-family: var(--wdtFontTypo_Base, 'Roboto', sans-serif);
	text-decoration: none;
	transition: var(--wdtBaseTransition, all .3s linear);
	cursor: pointer;
	border: 2px solid transparent;
	line-height: 1;
}
.mh-btn--primary {
	background: var(--wdtPrimaryColor, #d88e7d);
	color: var(--wdtAccentTxtColor, #fff);
	border-color: var(--wdtPrimaryColor, #d88e7d);
}
.mh-btn--primary:hover {
	background: var(--wdtSecondaryColor, #363e5a);
	border-color: var(--wdtSecondaryColor, #363e5a);
	color: #fff;
}
.mh-btn--outline {
	background: transparent;
	color: #fff;
	border-color: rgba(255,255,255,.65);
}
.mh-btn--outline:hover {
	background: rgba(255,255,255,.15);
	border-color: #fff;
}
.mh-btn--ghost {
	background: transparent;
	color: var(--wdtPrimaryColor, #d88e7d);
	border-color: var(--wdtPrimaryColor, #d88e7d);
}
.mh-btn--ghost:hover {
	background: var(--wdtPrimaryColor, #d88e7d);
	color: #fff;
}
.mh-btn--sm { padding: .5rem 1.2rem; font-size: .875rem; }
.mh-btn--gold {
	background: linear-gradient(135deg, #b8803a 0%, #9a6535 100%);
	color: #1a0f08;
	border-color: transparent;
	font-weight: 700;
	padding: 1rem 2.5rem;
	font-size: 1rem;
	border-radius: 50px;
	box-shadow: 0 4px 20px rgba(196,133,10,.45);
	white-space: nowrap;
	flex-shrink: 0;
}
.mh-btn--gold:hover {
	background: linear-gradient(135deg, #f5c030 0%, #d4950f 100%);
	color: #1a0f08;
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(196,133,10,.55);
}

/* =============================================================
   1. HERO CAROUSEL — full-bleed, min 88 vh
   ============================================================= */
.mh-hero {
	position: relative;
	overflow: hidden;
	min-height: 88vh;
	display: flex;
	align-items: center;
	padding-block: 0 !important;
}

/* ── Carousel slides (background layer) ── */
.mh-carousel {
	position: absolute;
	inset: 0;
}
.mh-carousel__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center top;
	opacity: 0;
	transform: scale(1.04);
	transition: opacity 1s ease, transform 6s ease;
	pointer-events: none;
}
.mh-carousel__slide.is-active {
	opacity: 1;
	transform: scale(1);
}

.mh-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(70,30,12,.62);
	z-index: 1;
}

/* ── Arrow controls ── */
.mh-carousel__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 3rem !important;
	height: 3rem !important;
	border-radius: 50% !important;
	background: rgba(255,255,255,.15);
	border: 2px solid rgba(255,255,255,.4) !important;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .22s, border-color .22s;
	backdrop-filter: blur(4px);
	padding: 0 !important;
	-webkit-appearance: none;
	appearance: none;
	flex-shrink: 0;
	box-sizing: border-box !important;
	outline: none;
}
.mh-carousel__arrow:hover {
	background: var(--wdtPrimaryColor, #d88e7d);
	border-color: var(--wdtPrimaryColor, #d88e7d) !important;
}
.mh-carousel__arrow--prev { left: clamp(1rem, 3vw, 2.5rem); }
.mh-carousel__arrow--next { right: clamp(1rem, 3vw, 2.5rem); }

/* ── Dot indicators ── */
.mh-carousel__dots {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: .6rem;
	align-items: center;
}
.mh-carousel__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255,255,255,.45);
	border: 2px solid rgba(255,255,255,.6);
	cursor: pointer;
	padding: 0;
	transition: background .25s, transform .25s, width .25s;
}
.mh-carousel__dot.is-active {
	background: var(--wdtPrimaryColor, #d88e7d);
	border-color: var(--wdtPrimaryColor, #d88e7d);
	width: 28px;
	border-radius: 5px;
}

/* Inner content row */
.mh-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1366px;
	margin-left: auto;
	margin-right: auto;
	padding-left: clamp(1.25rem, 4vw, 3rem);
	padding-right: clamp(1.25rem, 4vw, 3rem);
	padding-top: 260px;
	padding-bottom: 5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.mh-hero__content {
	color: #fff;
	text-align: center;
	max-width: 780px;
}

.mh-hero__tag {
	display: inline-block;
	background: rgba(255,255,255,.15);
	border: 1px solid rgba(255,255,255,.35);
	color: #fff;
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	padding: .35rem 1rem;
	border-radius: var(--wdtRadius_Part, 2.5em);
	margin-bottom: 1.25rem;
}

.mh-hero__title {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: clamp(2.4rem, 5.5vw, 4.25rem);
	font-weight: var(--wdtFontWeight_Alt, 700);
	line-height: 1.1;
	color: #fff;
	margin: 0 0 1.25rem;
}

.mh-hero__sub {
	font-size: 1.0625rem;
	line-height: 1.7;
	color: rgba(255,255,255,.88);
	max-width: 60ch;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2.25rem;
}

.mh-hero__actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
}

@media (max-width: 860px) {
	.mh-hero__inner { padding-top: 120px; padding-bottom: 4rem; }
	.mh-hero { min-height: 70vh; }
}

/* =============================================================
   2. FEATURE PILLARS
   ============================================================= */
.mh-features {
	background: #834d22;
	padding-block: 5rem !important;
	border-top: none;
	position: relative;
}

/* subtle diamond texture on dark bg */
.mh-features::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M20 2 L38 20 L20 38 L2 20 Z' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E");
	background-size: 40px 40px;
	pointer-events: none;
}

.mh-features .mh-container { position: relative; z-index: 1; }

.mh-features__eyebrow {
	display: block;
	text-align: center;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: #d4b080;
	margin-bottom: .75rem;
}

.mh-features__title {
	text-align: center;
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(1.6rem, 3vw, 2.25rem);
	color: #fff;
	margin: 0 0 3rem;
	line-height: 1.3;
}

.mh-features__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

/* boxed cards — cream bg */
.mh-features__item {
	text-align: center;
	padding: 3rem 2.5rem;
	background: #fdf6e3;
	border: 1px solid rgba(196,133,10,.20);
	border-radius: 16px;
	box-shadow: 0 6px 28px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.10);
	transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
	position: relative;
	overflow: hidden;
}
.mh-features__item:hover {
	background: #fff;
	transform: translateY(-5px);
	box-shadow: 0 20px 52px rgba(0,0,0,.22), 0 6px 16px rgba(0,0,0,.12);
}

/* full-width colored top border per pillar */
.mh-features__item:nth-child(1)::before { background: #9b2335; }
.mh-features__item:nth-child(2)::before { background: #9a6535; }
.mh-features__item:nth-child(3)::before { background: #2c5f2e; }
.mh-features__item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	border-radius: 16px 16px 0 0;
}

/* icon circles — colored per pillar */
.mh-features__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin-bottom: 1.5rem;
	color: #fff;
}
.mh-features__item:nth-child(1) .mh-features__icon { background: #9b2335; box-shadow: 0 0 0 10px rgba(155,35,53,.15); }
.mh-features__item:nth-child(2) .mh-features__icon { background: #9a6535; box-shadow: 0 0 0 10px rgba(154,101,53,.15); }
.mh-features__item:nth-child(3) .mh-features__icon { background: #2c5f2e; box-shadow: 0 0 0 10px rgba(44,95,46,.15); }

.mh-features__heading {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.35rem;
	font-weight: 700;
	color: #1a0f08;
	margin: 0 0 1rem;
}

.mh-features__desc {
	font-size: .9375rem;
	color: rgba(26,15,8,.65);
	line-height: 1.75;
	margin: 0;
}

@media (max-width: 860px) {
	.mh-features__list {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}
	.mh-features__item::before {
		height: 4px;
		width: 100%;
		top: 0;
		left: 0;
		border-radius: 16px 16px 0 0;
	}
}

/* =============================================================
   3. ABOUT US
   ============================================================= */
.mh-story { background: var(--wdtTertiaryColor, #f8eae1); }

/* Two-column grid: image left, content right */
.mh-about__grid {
	display: grid;
	grid-template-columns: 5fr 7fr;
	gap: clamp(2.5rem, 5vw, 5rem);
	align-items: center;
}

/* Left image */
.mh-about__figure { margin: 0; }
.mh-about__figure img {
	width: 100%;
	height: 100%;
	max-height: 680px;
	object-fit: cover;
	border-radius: 14px;
	box-shadow: 0 12px 48px rgba(54,62,90,.15);
	display: block;
}

/* Right content */
.mh-about__intro {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .78;
	margin: 0 0 1.75rem;
}

/* Icon cards grid */
.mh-about__cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin: 0 0 2rem;
}
.mh-about__card {
	background: #fff;
	border-radius: 16px;
	padding: 1.5rem 1.35rem;
	box-shadow: 0 2px 16px rgba(54,62,90,.08);
	transition: transform .22s ease, box-shadow .22s ease;
}
.mh-about__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 28px rgba(54,62,90,.13);
}
.mh-about__card--wide { grid-column: span 2; }

/* Rounded-square icon badge */
.mh-about__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: linear-gradient(135deg, #d4b080, #a07040);
	color: #5d3a00;
	margin-bottom: 1rem;
}
.mh-about__card-title {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--wdtSecondaryColor, #363e5a);
	margin: 0 0 .45rem;
	line-height: 1.3;
}
.mh-about__card-desc {
	font-size: .9rem;
	line-height: 1.65;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .72;
	margin: 0;
}

@media (max-width: 860px) {
	.mh-about__grid { grid-template-columns: 1fr; }
	.mh-about__figure img { max-height: 380px; }
}
@media (max-width: 480px) {
	.mh-about__cards { grid-template-columns: 1fr; }
	.mh-about__card--wide { grid-column: span 1; }
}

/* =============================================================
   BRIDGE / ABOUT — Image left + Zigzag timeline right
   ============================================================= */
.mh-bridge {
	background: #fdf6e3;
	padding-block: clamp(4rem, 7vw, 6.5rem);
}

.mh-bridge__header {
	text-align: center;
	margin-bottom: 3rem;
}

.mh-bridge__kicker {
	display: block;
	margin-bottom: .5rem;
}

/* Two-column: image | cards */
.mh-bridge__layout {
	display: grid;
	grid-template-columns: 5fr 7fr;
	gap: clamp(2rem, 4vw, 4rem);
	align-items: start;
}

/* Sticky image column */
.mh-bridge__image-col {
	position: sticky;
	top: 5.5rem;
}

.mh-bridge__figure {
	margin: 0;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 16px 56px rgba(131,77,34,.28), 0 4px 16px rgba(0,0,0,.12);
}

.mh-bridge__figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	min-height: 480px;
}

/* Cards column */
.mh-bridge__cards-col {
	display: flex;
	flex-direction: column;
}

.mh-bridge__timeline {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin-bottom: 2rem;
}


/* Base card — left-aligned */
.mh-bridge__card {
	width: 88%;
	margin-right: auto;
	display: flex;
	align-items: flex-start;
	gap: 1.1rem;
	border-radius: 16px;
	padding: 1.5rem 1.75rem;
	box-shadow: 0 4px 22px rgba(0,0,0,.09), 0 1px 6px rgba(0,0,0,.05);
	border-left: 4px solid var(--bridge-accent, #9b2335);
	transition: transform .28s ease, box-shadow .28s ease;
}

.mh-bridge__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 40px rgba(0,0,0,.13), 0 3px 10px rgba(0,0,0,.07);
}

/* Right-shifted cards */
.mh-bridge__card--right {
	margin-left: auto;
	margin-right: 0;
	border-left: none;
	border-right: 4px solid var(--bridge-accent, #9b2335);
	flex-direction: row-reverse;
}

/* Number badge */
.mh-bridge__num {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--bridge-accent, #9b2335);
	color: #fff;
	font-family: 'Playfair Display', Georgia, serif;
	font-size: .95rem;
	font-weight: 800;
	flex-shrink: 0;
	box-shadow: 0 3px 10px rgba(0,0,0,.20);
}

.mh-bridge__title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.1rem;
	font-weight: 700;
	color: #1a0f08;
	margin: 0 0 .5rem;
	line-height: 1.3;
}

.mh-bridge__desc {
	font-size: .9rem;
	line-height: 1.78;
	color: rgba(26,15,8,.68);
	margin: 0;
}

/* Per-card accent colours + tinted backgrounds */
.mh-bridge__card--amber  { --bridge-accent: #c9950c; background: #fffbee; }
.mh-bridge__card--green  { --bridge-accent: #834d22; background: #fdf6e3; }
.mh-bridge__card--blue   { --bridge-accent: #1e5bb5; background: #eff5ff; }
.mh-bridge__card--purple { --bridge-accent: #6d2fb0; background: #f7f2ff; }
.mh-bridge__card--crimson { --bridge-accent: #9b2335; background: #fff5f6; }

/* CTA */
.mh-bridge__cta {
	text-align: left;
}

/* Responsive */
@media (max-width: 900px) {
	.mh-bridge__layout {
		grid-template-columns: 1fr;
	}
	.mh-bridge__image-col {
		position: static;
	}
	.mh-bridge__figure img {
		max-height: 380px;
	}
	.mh-bridge__card,
	.mh-bridge__card--right {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		border-left: 4px solid var(--bridge-accent, #9b2335);
		border-right: none;
		flex-direction: row;
	}
	.mh-bridge__timeline::before { display: none; }
	.mh-bridge__cta { text-align: center; }
}

/* =============================================================
   3b. STATS BAND
   ============================================================= */
.mh-stats {
	background: var(--wdtSecondaryColor, #363e5a);
	padding-top: clamp(2.5rem, 5vw, 4rem) !important;
	padding-bottom: clamp(2.5rem, 5vw, 4rem) !important;
}
.mh-stats__list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}
.mh-stats__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 1rem 1.5rem;
	position: relative;
}
.mh-stats__item + .mh-stats__item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 15%;
	height: 70%;
	width: 1px;
	background: rgba(255,255,255,.18);
}
.mh-stats__number {
	display: block;
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: clamp(2.6rem, 5vw, 3.75rem);
	font-weight: 700;
	line-height: 1;
	color: var(--wdtPrimaryColor, #d88e7d);
	margin-bottom: .5rem;
}
.mh-stats__label {
	display: block;
	font-size: .9375rem;
	font-weight: 500;
	color: rgba(255,255,255,.82);
	letter-spacing: .03em;
	line-height: 1.4;
}

@media (max-width: 720px) {
	.mh-stats__list { grid-template-columns: repeat(2, 1fr); }
	.mh-stats__item:nth-child(3)::before { display: none; }
}
@media (max-width: 420px) {
	.mh-stats__list { grid-template-columns: 1fr 1fr; }
}

/* =============================================================
   4. EVENTS
   ============================================================= */
.mh-events { background: var(--wdtBodyBGColor, #fff); }

.mh-events__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-top: 2.5rem;
}
.mh-event-card {
	border-radius: var(--wdtRadius_3X, 10px);
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(54,62,90,.10);
	background: var(--wdtBodyBGColor, #fff);
	border: 1px solid rgba(54,62,90,.07);
	display: flex;
	flex-direction: column;
	transition: var(--wdtAltTransition, all .35s ease-in-out);
}
.mh-event-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(54,62,90,.16); }

.mh-event-card__img-wrap {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16/9;
}
.mh-event-card__img-wrap img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
}
.mh-event-card:hover .mh-event-card__img-wrap img { transform: scale(1.05); }

.mh-event-card__badge {
	position: absolute;
	top: .9rem; right: .9rem;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .07em;
	text-transform: uppercase;
	padding: .3rem .85rem;
	border-radius: var(--wdtRadius_Part, 2.5em);
	color: #fff;
}
.mh-event-card__badge--green { background: #834d22; }
.mh-event-card__badge--red   { background: #c62828; }

.mh-event-card__body {
	padding: 1.5rem 1.75rem;
	display: flex;
	flex-direction: column;
	gap: .6rem;
	flex: 1;
}
.mh-event-card__meta {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-size: .8125rem;
	color: var(--wdtPrimaryColor, #d88e7d);
	font-weight: 600;
}
.mh-event-card__sep { opacity: .45; color: var(--wdtBodyTxtColor, #202020); }
.mh-event-card__title {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--wdtHeadAltColor, #202020);
	margin: 0;
	line-height: 1.3;
}
.mh-event-card__desc {
	font-size: .9375rem;
	line-height: 1.65;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .75;
	margin: 0;
	flex: 1;
}
.mh-event-card__actions { display: flex; gap: .75rem; margin-top: .5rem; }

.mh-event-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color .25s ease;
}
.mh-event-card__title a:hover { color: var(--wdtPrimaryColor, #d88e7d); }

.mh-events__footer {
	text-align: center;
	margin-top: 2rem;
}

@media (max-width: 720px) {
	.mh-events__grid { grid-template-columns: 1fr; }
}

/* ── mae_upcoming_events shortcode integration ────────────── */
.mh-events__shortcode-wrap {
	width: 100%;
	/* override plugin accent → brand crimson */
	--mae-accent:      #9b2335;
	--mae-accent-dark: #6e1422;
}
.mh-events__shortcode-wrap .mae-events-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: clamp(1.25rem, 3vw, 2rem);
}
.mh-events__shortcode-wrap .mae-event-card {
	flex: 0 1 520px;
	max-width: 560px;
	border-radius: .75rem;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,.10);
	background: #fff;
	display: flex;
	flex-direction: column;
}
.mh-events__shortcode-wrap .mae-event-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
@media (max-width: 720px) {
	.mh-events__shortcode-wrap .mae-event-card { flex: 1 1 100%; }
}

/* =============================================================
   5. CTA BAND
   ============================================================= */
.mh-cta-band { position: relative; overflow: hidden; }

.mh-cta-band__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}
.mh-cta-band__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(100,18,30,.72) 0%,
		rgba(70,25,8,.68) 100%
	);
}
.mh-cta-band__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2.5rem;
	flex-wrap: wrap;
}
.mh-cta-band__text { flex: 1; min-width: 260px; }
.mh-cta-band__title {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	font-weight: var(--wdtFontWeight_Alt, 700);
	color: #fff;
	line-height: 1.25;
	margin: 0 0 .85rem;
}
.mh-cta-band__sub {
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(255,255,255,.84);
	max-width: 64ch;
	margin: 0;
}

/* =============================================================
   6. OUR IMPACT
   ============================================================= */
.mh-pillars { background: var(--wdtBodyBGColor, #fff); }

.mh-pillars__header {
	text-align: center;
	max-width: 740px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 3rem;
}
.mh-pillars__subtitle {
	font-size: 1.0625rem;
	line-height: 1.75;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .75;
	margin: 0;
}

.mh-pillars__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}
.mh-pillars__item {
	background: var(--wdtTertiaryColor, #f8eae1);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(54,62,90,.07);
	transition: transform .25s ease, box-shadow .25s ease;
}
.mh-pillars__item:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 36px rgba(54,62,90,.13);
}
.mh-pillars__figure {
	overflow: hidden;
	margin: 0;
}
.mh-pillars__figure img {
	width: 100%;
	aspect-ratio: 16/10;
	object-fit: cover;
	display: block;
	transition: transform .45s ease;
}
.mh-pillars__item:hover .mh-pillars__figure img { transform: scale(1.06); }

.mh-pillars__body {
	padding: 1.5rem 1.5rem 1.75rem;
}
.mh-pillars__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: var(--wdtPrimaryColor, #d88e7d);
	color: #fff;
	margin-bottom: .85rem;
}
.mh-pillars__label {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--wdtSecondaryColor, #363e5a);
	margin: 0 0 .55rem;
	line-height: 1.25;
}
.mh-pillars__desc {
	font-size: .9375rem;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .75;
	line-height: 1.68;
	margin: 0;
}

@media (max-width: 860px) {
	.mh-pillars__list { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 540px) {
	.mh-pillars__figure img { aspect-ratio: 16/9; }
}

/* =============================================================
   8. ART GALLERY / TABS
   ============================================================= */
.mh-gallery { background: var(--wdtTertiaryColor, #f8eae1); }

.mh-gallery__tabs {
	display: flex;
	gap: .5rem;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 2rem;
	margin-bottom: 2rem;
}
.mh-gallery__tab {
	padding: .55rem 1.35rem;
	border-radius: var(--wdtRadius_Part, 2.5em);
	border: 2px solid rgba(54,62,90,.18);
	background: var(--wdtBodyBGColor, #fff);
	color: var(--wdtBodyTxtColor, #202020);
	font-family: var(--wdtFontTypo_Base, 'Roboto', sans-serif);
	font-size: .9rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--wdtBaseTransition, all .3s linear);
}
.mh-gallery__tab:hover,
.mh-gallery__tab.is-active {
	background: var(--wdtPrimaryColor, #d88e7d);
	border-color: var(--wdtPrimaryColor, #d88e7d);
	color: var(--wdtAccentTxtColor, #fff);
}
.mh-gallery__panel { display: none; }
.mh-gallery__panel.is-active { display: block; }

.mh-gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}
.mh-gallery__grid figure {
	border-radius: var(--wdtRadius_2X, 5px);
	overflow: hidden;
	aspect-ratio: 4/3;
}
.mh-gallery__grid figure img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
}
.mh-gallery__grid figure:hover img { transform: scale(1.06); }

@media (max-width: 680px) {
	.mh-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
	.mh-gallery__grid { grid-template-columns: 1fr; }
}

/* =============================================================
   9. BLOG
   ============================================================= */
.mh-blog { background: var(--wdtBodyBGColor, #fff); }

.mh-blog__intro {
	text-align: center;
	max-width: 64ch;
	margin-inline: auto;
	margin-bottom: 2.5rem;
	font-size: 1rem;
	line-height: 1.7;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .78;
}
.mh-blog__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}
.mh-blog-card {
	border-radius: var(--wdtRadius_3X, 10px);
	overflow: hidden;
	box-shadow: 0 2px 14px rgba(54,62,90,.09);
	background: var(--wdtBodyBGColor, #fff);
	border: 1px solid rgba(54,62,90,.07);
	display: flex;
	flex-direction: column;
	transition: var(--wdtAltTransition, all .35s ease-in-out);
}
.mh-blog-card:hover { box-shadow: 0 8px 32px rgba(54,62,90,.15); transform: translateY(-4px); }

.mh-blog-card__img { aspect-ratio: 3/2; overflow: hidden; }
.mh-blog-card__img img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
}
.mh-blog-card:hover .mh-blog-card__img img { transform: scale(1.05); }

.mh-blog-card__body {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: .6rem;
	flex: 1;
}
.mh-blog-card__cat {
	display: inline-block;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: var(--wdtPrimaryColor, #d88e7d);
}
.mh-blog-card__title {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--wdtHeadAltColor, #202020);
	margin: 0;
	line-height: 1.3;
}
.mh-blog-card__excerpt {
	font-size: .9375rem;
	line-height: 1.65;
	color: var(--wdtBodyTxtColor, #202020);
	opacity: .72;
	margin: 0;
	flex: 1;
}

/* Linked title inside card */
.mh-blog-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color .25s ease;
}
.mh-blog-card__title a:hover { color: var(--wdtPrimaryColor, #d88e7d); }

/* View-all footer link */
.mh-blog__footer {
	text-align: center;
	margin-top: 2.5rem;
}
.mh-blog__view-all {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	font-size: .9375rem;
	font-weight: 700;
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--wdtSecondaryColor, #363e5a);
	text-decoration: none;
	border-bottom: 2px solid var(--wdtPrimaryColor, #d88e7d);
	padding-bottom: .2rem;
	transition: color .25s ease, border-color .25s ease;
}
.mh-blog__view-all:hover {
	color: var(--wdtPrimaryColor, #d88e7d);
	border-color: var(--wdtPrimaryColor, #d88e7d);
}

/* Empty state */
.mh-blog__empty {
	text-align: center;
	padding: 3rem 0;
	font-style: italic;
	color: rgba(32,32,32,.45);
}

@media (max-width: 860px) {
	.mh-blog__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
	.mh-blog__list { grid-template-columns: 1fr; }
}

/* =============================================================
   10. SUBSCRIBE
   ============================================================= */
.mh-subscribe { background: var(--wdtSecondaryColor, #363e5a); }
.mh-subscribe__inner { text-align: center; }
.mh-subscribe .mh-kicker { color: var(--wdtPrimaryColor, #d88e7d); }
.mh-subscribe .mh-h2   { color: #fff; }
.mh-subscribe__desc {
	max-width: 54ch;
	margin-inline: auto;
	margin-bottom: 2rem;
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(255,255,255,.78);
}
.mh-subscribe__form {
	display: flex;
	gap: .75rem;
	max-width: 520px;
	margin-inline: auto;
	flex-wrap: wrap;
	justify-content: center;
}
.mh-subscribe__input {
	flex: 1;
	min-width: 220px;
	padding: .8rem 1.35rem;
	border: 2px solid rgba(255,255,255,.45);
	border-radius: var(--wdtRadius_Part, 2.5em);
	font-size: 1rem;
	font-family: var(--wdtFontTypo_Base, 'Roboto', sans-serif);
	color: #fff;
	background: rgba(255,255,255,.12);
	outline: none;
	transition: var(--wdtBaseTransition, all .3s linear);
}
.mh-subscribe__input::placeholder { color: rgba(255,255,255,.65); }
.mh-subscribe__input:focus {
	border-color: var(--wdtPrimaryColor, #d88e7d);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(216,142,125,.25);
}
.mh-subscribe__input:focus::placeholder { color: rgba(0,0,0,.4); }

/* =============================================================
   11. WHAT WE DO
   ============================================================= */
.mh-whatwedo { background: #fff; }

.mh-whatwedo__intro {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 3rem;
	color: #6b7280;
	font-size: 1.05rem;
	line-height: 1.7;
}

.mh-whatwedo__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.75rem;
}

.mh-whatwedo__card {
	background: #fff;
	border-radius: 16px;
	padding: 2rem 1.75rem;
	box-shadow: 0 4px 24px rgba(0,0,0,.10), 0 1px 6px rgba(0,0,0,.05);
	border-top: 4px solid transparent;
	display: flex;
	flex-direction: column;
	gap: .4rem;
}
.mh-whatwedo__card--purple { border-top-color: #7c3aed; }
.mh-whatwedo__card--navy   { border-top-color: #363e5a; }
.mh-whatwedo__card--salmon { border-top-color: #d88e7d; }
.mh-whatwedo__card--blue   { border-top-color: #2563eb; }

.mh-whatwedo__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 12px;
	margin-bottom: .5rem;
	flex-shrink: 0;
}
.mh-whatwedo__card--purple .mh-whatwedo__icon { background: #f3e8ff; color: #7c3aed; }
.mh-whatwedo__card--navy   .mh-whatwedo__icon { background: #e8eaf0; color: #363e5a; }
.mh-whatwedo__card--salmon .mh-whatwedo__icon { background: #fdf0ed; color: #c97b69; }
.mh-whatwedo__card--blue   .mh-whatwedo__icon { background: #eff6ff; color: #2563eb; }

.mh-whatwedo__title {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--wdtSecondaryColor, #363e5a);
	margin: 0;
	line-height: 1.3;
}

.mh-whatwedo__sub {
	font-size: .8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: #9ca3af;
	margin: 0;
}

.mh-whatwedo__desc {
	font-size: .95rem;
	line-height: 1.75;
	color: #4b5563;
	margin: .25rem 0 0;
	flex: 1;
}

.mh-whatwedo__link {
	display: inline-flex;
	align-items: center;
	gap: .3rem;
	font-size: .9rem;
	font-weight: 600;
	color: var(--wdtPrimaryColor, #d88e7d);
	text-decoration: none;
	margin-top: .75rem;
	transition: gap .2s;
}
.mh-whatwedo__link:hover { gap: .6rem; color: #c07060; }

@media (max-width: 700px) {
	.mh-whatwedo__grid { grid-template-columns: 1fr; }
}

/* =============================================================
   12. ART FOR SDGs
   ============================================================= */
.mh-sdgs {
	background: #1c1c1e;
	padding-top: clamp(4.5rem, 8vw, 7rem) !important;
	padding-bottom: clamp(4.5rem, 8vw, 7rem) !important;
}

.mh-sdgs__layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.mh-sdgs__tag {
	display: inline-block;
	background: linear-gradient(135deg, #d4b080, #a07040);
	color: #5d3a00;
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	padding: .35rem .9rem;
	border-radius: 2em;
	margin-bottom: 1.25rem;
}

.mh-sdgs__heading {
	font-size: clamp(1.85rem, 3.5vw, 2.7rem);
	font-weight: 800;
	color: #fff;
	margin: 0 0 1rem;
	line-height: 1.15;
}
.mh-sdgs__heading span { color: #a07040; }

.mh-sdgs__intro {
	font-size: 1rem;
	line-height: 1.75;
	color: rgba(255,255,255,.72);
	margin: 0 0 2rem;
}

.mh-sdgs__list {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	margin: 0 0 2rem;
}

.mh-sdgs__item {
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 10px;
	overflow: hidden;
	transition: border-color .25s;
}
.mh-sdgs__item.is-active { border-color: rgba(255,180,0,.45); }

.mh-sdgs__row {
	display: flex;
	align-items: center;
	gap: 1rem;
	width: 100%;
	padding: .9rem 1.25rem;
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
	color: #fff;
	transition: background .2s;
}
.mh-sdgs__row:hover { background: rgba(255,255,255,.05); }

.mh-sdgs__num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 8px;
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: 1.25rem;
	font-weight: 700;
	color: #fff;
	flex-shrink: 0;
}

.mh-sdgs__item-icon {
	display: flex;
	align-items: center;
	color: rgba(255,255,255,.55);
	flex-shrink: 0;
}

.mh-sdgs__item-title {
	font-size: 1rem;
	font-weight: 600;
	flex: 1;
	color: #fff;
}

.mh-sdgs__expand {
	display: none;
	padding: 0 1.25rem 1rem 4.5rem;
	font-size: .9rem;
	line-height: 1.65;
	color: rgba(255,255,255,.68);
}
.mh-sdgs__item.is-active .mh-sdgs__expand { display: block; }

.mh-sdgs__btn {
	display: inline-flex;
	align-items: center;
	margin-top: 1.75rem;
	gap: .5rem;
	padding: .75rem 1.75rem;
	border: 1.5px solid #a07040;
	border-radius: 2em;
	color: #a07040;
	font-size: .9rem;
	font-weight: 600;
	text-decoration: none;
	transition: background .2s, color .2s;
}
.mh-sdgs__btn:hover { background: #a07040; color: #1c1c1e; }

/* Right panel */
.mh-sdgs__right { position: relative; padding-top: 1.5rem; }

.mh-sdgs__un-badge {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: .65rem;
	background: #fff;
	border-radius: 10px;
	padding: .55rem .9rem;
	box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.mh-sdgs__un-circle {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #009edb;
	color: #fff;
	font-size: .7rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	letter-spacing: .04em;
}
.mh-sdgs__un-badge strong { display: block; font-size: .82rem; color: #1a1a1a; line-height: 1.2; }
.mh-sdgs__un-badge em     { display: block; font-size: .7rem; color: #666; font-style: normal; }

.mh-sdgs__panel {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	margin-top: 1rem;
}
.mh-sdgs__panel-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: opacity .35s;
}
.mh-sdgs__panel-overlay {
	position: absolute;
	inset: 0;
	top: auto;
	padding: 2rem 1.75rem 1.75rem;
	background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.35) 65%, transparent 100%);
}
.mh-sdgs__panel-badge {
	display: inline-block;
	padding: .25rem .75rem;
	border-radius: 2em;
	font-size: .75rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: .65rem;
}
.mh-sdgs__panel-title {
	font-size: clamp(1.25rem, 2.5vw, 1.6rem);
	font-weight: 700;
	color: #fff;
	margin: 0 0 .5rem;
}
.mh-sdgs__panel-desc {
	font-size: .9rem;
	line-height: 1.6;
	color: rgba(255,255,255,.82);
	margin: 0;
}

@media (max-width: 860px) {
	.mh-sdgs__layout { grid-template-columns: 1fr; gap: 2.5rem; }
	.mh-sdgs__right { padding-top: 2rem; }
}

/* =============================================================
   13. MITHILA MUSEUM INITIATIVE
   ============================================================= */
.mh-museum {
	background: #7d5c38;
	padding-top: clamp(5rem, 9vw, 8rem) !important;
	padding-bottom: clamp(5rem, 9vw, 8rem) !important;
}

/* ── Centered header ── */
.mh-museum__header {
	text-align: center;
	margin-bottom: 3rem;
}

.mh-museum__soon {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	background: rgba(0,0,0,.25);
	border: 1px solid rgba(222,185,110,.3);
	color: #e8c06a;
	font-size: .7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .14em;
	padding: .35rem 1.1rem;
	border-radius: 2em;
	margin-bottom: 1.35rem;
}
.mh-museum__soon::before {
	content: '';
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #e8c06a;
	flex-shrink: 0;
	animation: mh-pulse 1.8s ease-in-out infinite;
}
@keyframes mh-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50%       { opacity: .3; transform: scale(.65); }
}

.mh-museum__heading {
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 800;
	color: #fff;
	margin: 0 0 .85rem;
	line-height: 1.15;
}

.mh-museum__location {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .4rem;
	font-size: .97rem;
	color: #e8c06a;
	font-weight: 500;
}

/* ── 2-col content grid ── */
.mh-museum__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3.5rem;
	align-items: start;
}

/* Left: image */
.mh-museum__figure { position: relative; }

.mh-museum__img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 16px;
	aspect-ratio: 3 / 4;
	object-fit: cover;
}

.mh-museum__mom-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: linear-gradient(135deg, #d4b080, #9a6535);
	color: #5d3a00;
	font-size: .75rem;
	font-weight: 800;
	padding: .4rem 1rem;
	border-radius: 2em;
	letter-spacing: .04em;
}

.mh-museum__year-card {
	position: absolute;
	bottom: -1rem;
	right: 1.5rem;
	background: #fff;
	border-radius: 14px;
	padding: 1.1rem 1.75rem;
	box-shadow: 0 8px 32px rgba(0,0,0,.2);
	text-align: center;
	min-width: 130px;
}
.mh-museum__year-num {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: 2.75rem;
	font-weight: 700;
	color: #d4882a;
	display: block;
	line-height: 1;
}
.mh-museum__year-label {
	display: block;
	font-size: .68rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: #666;
	margin-top: .3rem;
}

/* Right: text content */
.mh-museum__content { padding-top: .5rem; }

.mh-museum__subheading {
	font-size: clamp(1.3rem, 2.5vw, 1.7rem);
	font-weight: 700;
	color: #fff;
	margin: 0 0 1rem;
	line-height: 1.3;
}
.mh-museum__subheading span { color: #e8c06a; }

.mh-museum__desc {
	font-size: .97rem;
	line-height: 1.75;
	color: rgba(255,255,255,.82);
	margin: 0 0 1.75rem;
}

/* 2×2 feature cards */
.mh-museum__cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin: 0 0 2rem;
}

.mh-museum__card {
	background: rgba(255,255,255,.14);
	border-radius: 12px;
	padding: 1.25rem;
}

.mh-museum__card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 10px;
	background: linear-gradient(135deg, #d4b080, #9a6535);
	color: #5d3a00;
	margin-bottom: .85rem;
	flex-shrink: 0;
}

.mh-museum__card-title {
	font-size: .9rem;
	font-weight: 700;
	color: #e8c06a;
	margin: 0 0 .3rem;
}

.mh-museum__card-desc {
	font-size: .8rem;
	line-height: 1.55;
	color: rgba(255,255,255,.72);
	margin: 0;
}

/* CTA row */
.mh-museum__actions {
	display: flex;
	align-items: center;
	margin-top: 1.75rem;
	gap: 1.75rem;
	flex-wrap: wrap;
}

.mh-museum__cta {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	padding: .85rem 2rem;
	background: linear-gradient(135deg, #d4b080, #9a6535);
	color: #5d3a00;
	font-size: .95rem;
	font-weight: 700;
	border-radius: 2em;
	text-decoration: none;
	transition: opacity .2s, transform .2s;
}
.mh-museum__cta:hover { opacity: .88; transform: translateY(-2px); color: #5d3a00; }

.mh-museum__learn {
	font-size: .8rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: #fff;
	text-decoration: none;
	transition: color .2s;
}
.mh-museum__learn:hover { color: #e8c06a; }

@media (max-width: 860px) {
	.mh-museum__grid { grid-template-columns: 1fr; gap: 3rem; }
	.mh-museum__year-card { bottom: 1rem; }
}
@media (max-width: 520px) {
	.mh-museum__cards { grid-template-columns: 1fr; }
}

/* =============================================================
   14. RECOGNITION AND PRESS
   ============================================================= */
.mh-recognition {
	background: #f5f0eb;
	padding-top: clamp(4rem, 7vw, 6rem) !important;
	padding-bottom: clamp(4rem, 7vw, 6rem) !important;
}

.mh-recognition__intro {
	text-align: center;
	max-width: 58ch;
	margin: 0 auto 3rem;
	font-size: 1rem;
	line-height: 1.7;
	color: #6b7280;
}

/* ── Carousel layout ── */
.mh-recognition__slider-wrap {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}
.mh-recognition__slider {
	overflow: hidden;
	flex: 1;
	min-width: 0;
}
.mh-recognition__track {
	display: flex;
	gap: 1.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
	transition: transform .45s cubic-bezier(.4,0,.2,1);
	will-change: transform;
}

.mh-recognition__card {
	flex-shrink: 0;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	padding: 0;
	box-shadow: 0 4px 24px rgba(0,0,0,.09), 0 1px 6px rgba(0,0,0,.05);
	display: flex;
	flex-direction: column;
	gap: .6rem;
	transition: box-shadow .25s, transform .25s;
}
.mh-recognition__card:hover {
	box-shadow: 0 8px 36px rgba(54,62,90,.14);
	transform: translateY(-3px);
}

.mh-recognition__card-img {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	flex-shrink: 0;
}

.mh-recognition__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .4s ease;
}

.mh-recognition__card:hover .mh-recognition__img {
	transform: scale(1.04);
}

.mh-recognition__card-body {
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	gap: .6rem;
	flex: 1;
}

.mh-recognition__card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .5rem;
	flex-wrap: wrap;
}

.mh-recognition__badge {
	display: inline-block;
	padding: .25rem .85rem;
	border-radius: 2em;
	background: #f1f3f5;
	color: #5a6070;
	font-size: .7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .07em;
}

.mh-recognition__year {
	font-size: .85rem;
	font-weight: 700;
	color: var(--wdtPrimaryColor, #d88e7d);
	white-space: nowrap;
}

.mh-recognition__title {
	font-family: var(--wdtFontTypo_Alt, 'Oswald', sans-serif);
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--wdtSecondaryColor, #363e5a);
	margin: .25rem 0 0;
	line-height: 1.3;
}

.mh-recognition__excerpt {
	font-size: .9rem;
	line-height: 1.68;
	color: #6b7280;
	margin: 0;
	flex: 1;
}

.mh-recognition__readmore {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	font-size: .875rem;
	font-weight: 600;
	color: var(--wdtPrimaryColor, #d88e7d);
	text-decoration: none;
	margin-top: .5rem;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity .25s ease, transform .25s ease, color .2s;
	pointer-events: none;
}
.mh-recognition__card:hover .mh-recognition__readmore {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.mh-recognition__readmore:hover { color: #c07060; }

/* ── Carousel nav arrows ── */
.mh-recognition__nav {
	flex-shrink: 0;
	width: 48px !important;
	height: 48px !important;
	border-radius: 10px !important;
	border: 2px solid #834d22 !important;
	background: #fff !important;
	color: #834d22 !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin: 0 !important;
	padding: 0 !important;
	box-shadow: 0 4px 16px rgba(131,77,34,.18), 0 1px 4px rgba(26,15,8,.08);
	transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.mh-recognition__nav svg {
	display: block !important;
	flex-shrink: 0;
	pointer-events: none;
}
.mh-recognition__nav:hover {
	background: #834d22 !important;
	border-color: #834d22 !important;
	color: #fff !important;
	box-shadow: 0 6px 22px rgba(131,77,34,.30);
}
.mh-recognition__nav:disabled {
	opacity: .35;
	cursor: default;
}

/* ── Carousel dots ── */
.mh-recognition__dots {
	display: flex;
	justify-content: center;
	gap: .5rem;
	margin-top: .5rem;
	margin-bottom: 2rem;
}
.mh-recognition__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	background: rgba(26,15,8,.18);
	cursor: pointer;
	padding: 0;
	transition: background .2s ease, width .2s ease, border-radius .2s ease;
}
.mh-recognition__dot.is-active {
	background: #834d22;
	width: 24px;
	border-radius: 4px;
}

/* ── View More CTA ── */
.mh-recognition__cta {
	text-align: center;
	margin-top: 2rem;
}

.mh-recognition__cta-btn {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	font-size: .95rem;
	font-weight: 600;
	color: #1a0f08;
	padding: .75rem 2.25rem;
	border: 2px solid rgba(26,15,8,.18);
	border-radius: 2em;
	text-decoration: none;
	transition: background .25s ease, border-color .25s ease, color .25s ease;
}

.mh-recognition__cta-btn:hover {
	background: #9b2335;
	border-color: #9b2335;
	color: #fff;
}

@media (max-width: 767px) {
	.mh-recognition__nav { width: 38px !important; height: 38px !important; }
}
@media (max-width: 479px) {
	.mh-recognition__nav { display: none !important; }
}

/* ── Trusted By sub-section ── */
.mh-recognition__trusted-wrap {
	background: #fff;
	border-radius: 16px;
	padding: 2rem 2.5rem;
	display: flex;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
	box-shadow: 0 2px 18px rgba(54,62,90,.07);
}

.mh-recognition__trusted-label {
	display: flex;
	align-items: center;
	gap: .55rem;
	font-size: .8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--wdtSecondaryColor, #363e5a);
	white-space: nowrap;
	flex-shrink: 0;
}

.mh-recognition__trusted-label svg {
	color: var(--wdtPrimaryColor, #d88e7d);
	flex-shrink: 0;
}

.mh-recognition__pills {
	display: flex;
	flex-wrap: wrap;
	gap: .65rem;
}

.mh-recognition__pill {
	display: inline-block;
	padding: .4rem 1.1rem;
	border-radius: 2em;
	border: 1.5px solid rgba(54,62,90,.18);
	font-size: .85rem;
	font-weight: 600;
	color: var(--wdtSecondaryColor, #363e5a);
	text-decoration: none;
	transition: border-color .2s, background .2s;
}
.mh-recognition__pill:hover {
	border-color: var(--wdtPrimaryColor, #d88e7d);
	background: #fdf0ed;
	color: var(--wdtPrimaryColor, #d88e7d);
}

@media (max-width: 580px) {
	/* recognition grid responsive — kept for any legacy fallback */
	.mh-recognition__trusted-wrap { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* =============================================================
   MITHILA DESIGN SYSTEM — colour + typography + SVG patterns
   Overrides above rules to match mithilaarts.org aesthetic
   ============================================================= */

/* ── Typography: Playfair Display headings, Lato body ──────── */
.mithila-home {
	font-family: 'Lato', sans-serif;
}
.mithila-home h1,
.mithila-home h2,
.mithila-home h3,
.mithila-home h4,
.mh-h2,
.mh-hero__title,
.mh-about__heading,
.mh-sdgs__heading,
.mh-museum__heading,
.mh-museum__subheading,
.mh-whatwedo__title,
.mh-recognition__title,
.mh-pillars__label {
	font-family: 'Playfair Display', Georgia, serif;
}

/* Kicker stays small-caps Lato */
.mh-kicker {
	font-family: 'Lato', sans-serif;
	letter-spacing: .18em;
	font-weight: 700;
	color: #9b2335;
}

.mh-cta-band .mh-kicker { color: #fdf6e3; }

/* ── Hero — diagonal SVG lattice pattern (on ::before so it doesn't break children) ── */
.mh-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 4L76 40L40 76L4 40Z' fill='none' stroke='rgba(255,255,255,.04)' stroke-width='1'/%3E%3Ccircle cx='40' cy='40' r='3' fill='rgba(255,255,255,.04)'/%3E%3Ccircle cx='0' cy='0' r='3' fill='rgba(255,255,255,.04)'/%3E%3Ccircle cx='80' cy='0' r='3' fill='rgba(255,255,255,.04)'/%3E%3Ccircle cx='0' cy='80' r='3' fill='rgba(255,255,255,.04)'/%3E%3Ccircle cx='80' cy='80' r='3' fill='rgba(255,255,255,.04)'/%3E%3C/svg%3E");
	background-size: 80px 80px;
	z-index: 3;
}
/* only the content layer needs a z-index bump — carousel + overlay must stay absolute */
.mh-hero__inner { position: relative; z-index: 4; }

/* ── Stat band — cream with subtle lotus pattern ───────────────── */
.mh-stats {
	background: #fdf6e3 !important;
	position: relative;
	overflow: hidden;
}
.mh-stats::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg width='90' height='90' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='45' cy='45' r='16' fill='none' stroke='rgba(155,35,53,.08)' stroke-width='1'/%3E%3Cpath d='M45 29C48 35 48 55 45 61C42 55 42 35 45 29Z' fill='rgba(155,35,53,.05)'/%3E%3Cpath d='M29 45C35 42 55 42 61 45C55 48 35 48 29 45Z' fill='rgba(155,35,53,.05)'/%3E%3Cpath d='M33 33C37 37 53 53 56 57C52 53 36 37 33 33Z' fill='rgba(155,35,53,.03)'/%3E%3Cpath d='M33 57C37 53 53 37 57 33C53 37 37 53 33 57Z' fill='rgba(155,35,53,.03)'/%3E%3C/svg%3E");
	background-size: 90px 90px;
}
.mh-stats > * { position: relative; z-index: 1; }
.mh-stats .mh-container { position: relative; z-index: 1; }
.mh-stats__item + .mh-stats__item::before { background: rgba(26,15,8,.12) !important; }

/* Stat numbers — large, crimson, Playfair Display */
.mh-stats__number {
	font-family: 'Playfair Display', Georgia, serif !important;
	font-size: clamp(3rem, 6vw, 5rem) !important;
	font-weight: 800 !important;
	font-style: italic;
	color: #9b2335 !important;
	line-height: 1 !important;
	letter-spacing: -.02em;
	text-shadow: 0 2px 12px rgba(155,35,53,.18);
}
.mh-stats__label {
	font-size: 1rem !important;
	font-weight: 600 !important;
	letter-spacing: .04em !important;
	color: rgba(26,15,8,.60) !important;
	text-transform: uppercase;
	font-size: .8rem !important;
}
.mh-stats__item { gap: .6rem !important; }

/* ── CTA band — warm crimson to earth ───────────────────────── */
.mh-cta {
	background: linear-gradient(135deg, #9b2335 0%, #b5344a 45%, #8c4a2e 100%) !important;
	position: relative;
	overflow: hidden;
}
.mh-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 2L58 30L30 58L2 30Z' fill='none' stroke='rgba(255,255,255,.06)' stroke-width='1'/%3E%3C/svg%3E");
	background-size: 60px 60px;
}
.mh-cta .mh-container { position: relative; z-index: 1; }

/* ── About section — warm ivory background ──────────────────── */
.mh-about { background: #fdf6e3 !important; }

/* ── Features (lineage pillars) — dark bg, handled above ──── */

/* ── What We Do — white with subtle paisley ─────────────────── */
.mh-whatwedo {
	background: #fff !important;
	position: relative;
	overflow: hidden;
}
.mh-whatwedo::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='60' cy='60' rx='22' ry='34' fill='none' stroke='rgba(155,35,53,.04)' stroke-width='1.5' transform='rotate(30 60 60)'/%3E%3Cellipse cx='60' cy='60' rx='22' ry='34' fill='none' stroke='rgba(196,133,10,.04)' stroke-width='1' transform='rotate(-30 60 60)'/%3E%3Ccircle cx='60' cy='42' r='3' fill='rgba(155,35,53,.04)'/%3E%3Ccircle cx='0' cy='0' r='2' fill='rgba(155,35,53,.03)'/%3E%3Ccircle cx='120' cy='120' r='2' fill='rgba(155,35,53,.03)'/%3E%3C/svg%3E");
	background-size: 120px 120px;
}
.mh-whatwedo > * { position: relative; z-index: 1; }
.mh-whatwedo .mh-container { position: relative; z-index: 1; }

/* Card top borders use Mithila palette */
.mh-whatwedo__card--purple { border-top-color: #9b2335 !important; }
.mh-whatwedo__card--navy   { border-top-color: #2c5f2e !important; }
.mh-whatwedo__card--salmon { border-top-color: #9a6535 !important; }
.mh-whatwedo__card--blue   { border-top-color: #6e1422 !important; }
.mh-whatwedo__card--purple .mh-whatwedo__icon { background: #fff !important; border: 1px solid rgba(155,35,53,.18) !important; color: #9b2335 !important; box-shadow: 0 2px 10px rgba(155,35,53,.12) !important; }
.mh-whatwedo__card--navy   .mh-whatwedo__icon { background: #fff !important; border: 1px solid rgba(44,95,46,.18) !important;  color: #2c5f2e !important; box-shadow: 0 2px 10px rgba(44,95,46,.12) !important; }
.mh-whatwedo__card--salmon .mh-whatwedo__icon { background: #fff !important; border: 1px solid rgba(154,101,53,.18) !important; color: #9a6535 !important; box-shadow: 0 2px 10px rgba(154,101,53,.12) !important; }
.mh-whatwedo__card--blue   .mh-whatwedo__icon { background: #fff !important; border: 1px solid rgba(110,20,34,.18) !important;  color: #6e1422 !important; box-shadow: 0 2px 10px rgba(110,20,34,.12) !important; }

/* Cream shade variants per card */
.mh-whatwedo__card--cream-1 { background: #fdf6e3 !important; }
.mh-whatwedo__card--cream-2 { background: #f5ead0 !important; }
.mh-whatwedo__card--cream-3 { background: #fef2dc !important; }
.mh-whatwedo__card--cream-4 { background: #f0e6cc !important; }

/* Stretched link — entire card is clickable */
.mh-whatwedo__card { position: relative !important; }
.mh-whatwedo__card-link {
	position: absolute !important;
	inset: 0 !important;
	border-radius: inherit !important;
	z-index: 1 !important;
}
.mh-whatwedo__card-link:focus-visible {
	outline: 3px solid #9b2335 !important;
	outline-offset: 3px !important;
}
.mh-whatwedo__card:hover { transform: translateY(-4px); }

/* "Explore Program" link chip */
.mh-whatwedo__link {
	display: inline-flex !important;
	align-items: center !important;
	gap: .3rem !important;
	margin-top: auto !important;
	padding-top: 1rem !important;
	padding-bottom: .25rem !important;
	font-size: .85rem !important;
	font-weight: 700 !important;
	color: #9b2335 !important;
	letter-spacing: .02em !important;
	pointer-events: none !important;
}
.mh-whatwedo__card:hover .mh-whatwedo__link { color: #6e1422 !important; }

/* ── Art for SDGs — brown bg, cream cards ───────────────────── */
.mh-sdgs {
	background: #834d22 !important;
}
.mh-sdgs__heading { color: #fff !important; }
.mh-sdgs__heading span { color: #f0d090 !important; }
.mh-sdgs__intro { color: rgba(255,255,255,.88) !important; }
.mh-sdgs__tag {
	background: linear-gradient(135deg, #b8803a, #9a6535) !important;
}
.mh-sdgs__item {
	border-color: rgba(44,95,46,.15) !important;
	border-radius: 10px !important;
	box-shadow: 0 4px 18px rgba(0,0,0,.14), 0 1px 5px rgba(0,0,0,.08) !important;
	transition: box-shadow .25s, transform .25s !important;
}
/* Green shades per card */
.mh-sdgs__item:nth-child(1) { background: #edf7ee !important; }
.mh-sdgs__item:nth-child(2) { background: #e4f4e5 !important; }
.mh-sdgs__item:nth-child(3) { background: #d8f0da !important; }
.mh-sdgs__item:nth-child(4) { background: #ceecd0 !important; }
.mh-sdgs__item:hover {
	box-shadow: 0 8px 28px rgba(44,95,46,.18), 0 2px 8px rgba(0,0,0,.10) !important;
	transform: translateY(-2px);
}
.mh-sdgs__item.is-active {
	border-color: #2c5f2e !important;
	box-shadow: 0 6px 24px rgba(44,95,46,.22), 0 2px 8px rgba(0,0,0,.10) !important;
}
.mh-sdgs__row { color: #1a3d1c !important; }
.mh-sdgs__row:hover { background: rgba(44,95,46,.06) !important; }
.mh-sdgs__item-title { color: #1a3d1c !important; }
.mh-sdgs__item-icon { color: rgba(44,95,46,.55) !important; }
.mh-sdgs__expand { color: rgba(26,15,8,.68) !important; }
.mh-sdgs__btn {
	background: linear-gradient(135deg, #f0b429 0%, #c9850a 100%) !important;
	border-color: transparent !important;
	color: #1a0f08 !important;
	font-weight: 700 !important;
	box-shadow: 0 4px 16px rgba(201,133,10,.40) !important;
}
.mh-sdgs__btn:hover {
	background: linear-gradient(135deg, #f5c842 0%, #d9950f 100%) !important;
	border-color: transparent !important;
	color: #1a0f08 !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(201,133,10,.50) !important;
}
.mh-sdgs__un-circle { background: #9a6535 !important; }
.mh-sdgs__panel-badge { background: #9b2335 !important; }

/* ── Museum — keep warm brown, add lotus pattern ────────────── */
.mh-museum {
	position: relative;
	overflow: hidden;
}
.mh-museum::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='18' fill='none' stroke='rgba(255,255,255,.06)' stroke-width='1'/%3E%3Cpath d='M50 32C54 38 54 62 50 68C46 62 46 38 50 32Z' fill='rgba(255,255,255,.04)'/%3E%3Cpath d='M32 50C38 46 62 46 68 50C62 54 38 54 32 50Z' fill='rgba(255,255,255,.04)'/%3E%3Ccircle cx='0' cy='0' r='3' fill='rgba(255,255,255,.04)'/%3E%3Ccircle cx='100' cy='0' r='3' fill='rgba(255,255,255,.04)'/%3E%3Ccircle cx='0' cy='100' r='3' fill='rgba(255,255,255,.04)'/%3E%3Ccircle cx='100' cy='100' r='3' fill='rgba(255,255,255,.04)'/%3E%3C/svg%3E");
	background-size: 100px 100px;
}
.mh-museum .mh-container { position: relative; z-index: 1; }
.mh-museum__soon { border-color: rgba(232,168,18,.35) !important; }

/* ── Recognition section — warm ivory + fish pattern ────────── */
.mh-recognition {
	position: relative;
	overflow: hidden;
}
.mh-recognition::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='60' cy='60' rx='18' ry='28' fill='none' stroke='rgba(155,35,53,.05)' stroke-width='1' transform='rotate(45 60 60)'/%3E%3Ccircle cx='68' cy='48' r='2.5' fill='rgba(155,35,53,.06)'/%3E%3Cellipse cx='20' cy='20' rx='10' ry='16' fill='none' stroke='rgba(196,133,10,.04)' stroke-width='1' transform='rotate(45 20 20)'/%3E%3Cellipse cx='100' cy='100' rx='10' ry='16' fill='none' stroke='rgba(196,133,10,.04)' stroke-width='1' transform='rotate(45 100 100)'/%3E%3C/svg%3E");
	background-size: 120px 120px;
}
.mh-recognition .mh-container { position: relative; z-index: 1; }

/* Recognition colour tokens */
.mh-recognition__year       { color: #9b2335 !important; }
.mh-recognition__readmore   { color: #9b2335 !important; }
.mh-recognition__card:hover .mh-recognition__readmore { color: #6e1422 !important; }
.mh-recognition__trusted-label { color: #2d3a2e !important; }
.mh-recognition__trusted-label svg { color: #9a6535 !important; }
.mh-recognition__pill:hover {
	border-color: #9b2335 !important;
	background: #fdf0f2 !important;
	color: #9b2335 !important;
}
.mh-recognition__title { color: #1a0f08 !important; }

/* ── Impact section cards ────────────────────────────────────── */
.mh-impact-card__icon { color: #9b2335 !important; }
.mh-impact-card__title { font-family: 'Playfair Display', Georgia, serif; }

/* ── Subscribe — medium rust-brown ──────────────────────────── */
.mh-subscribe {
	background: #834d22 !important;
	position: relative;
	overflow: hidden;
}
.mh-subscribe::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 2L58 30L30 58L2 30Z' fill='none' stroke='rgba(255,255,255,.05)' stroke-width='1'/%3E%3Ccircle cx='30' cy='30' r='2' fill='rgba(255,255,255,.04)'/%3E%3C/svg%3E");
	background-size: 60px 60px;
}
.mh-subscribe .mh-container { position: relative; z-index: 1; }
.mh-subscribe .mh-kicker { color: #b8803a !important; }
.mh-subscribe .mh-subscribe__input {
	background: rgba(255,255,255,.22) !important;
	border-color: rgba(255,255,255,.60) !important;
	color: #fff !important;
}
.mh-subscribe .mh-subscribe__input::placeholder { color: rgba(255,255,255,.90) !important; }

/* Subscribe button */
.mh-subscribe .mh-btn--primary {
	background: #9b2335 !important;
	border-color: #9b2335 !important;
}
.mh-subscribe .mh-btn--primary:hover {
	background: #6e1422 !important;
	border-color: #6e1422 !important;
}

/* ── Events section accent ───────────────────────────────────── */
.mh-events__view-all { color: #9b2335 !important; border-color: #9b2335 !important; }
.mh-events__view-all:hover { color: #6e1422 !important; }
.mh-event-card__cat  { color: #9b2335 !important; }

/* ── Impact cards ────────────────────────────────────────────── */
.mh-impact .mh-kicker { color: #9b2335; }

/* ── Decorative SVG dividers between sections ────────────────── */

/* Lotus vine top-border added to key light sections */
.mh-about::before,
.mh-recognition::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg,
		transparent 0%,
		#9a6535 20%,
		#9b2335 50%,
		#9a6535 80%,
		transparent 100%
	);
	opacity: .45;
	pointer-events: none;
}
.mh-about { position: relative; }

/* ── Pillar / Three-pillars section — warm terracotta ───────── */
.mh-pillars { background: #834d22 !important; }
.mh-pillars .mh-kicker { color: #b8803a !important; }
.mh-pillars .mh-h2--center { color: #fff !important; }
.mh-pillars__subtitle { color: rgba(255,255,255,.65) !important; opacity: 1 !important; }
.mh-pillars__item {
	background: #fdf6e3 !important;
	border: 1px solid rgba(196,133,10,.20) !important;
	box-shadow: 0 8px 32px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.10) !important;
}
.mh-pillars__item:hover {
	background: #fff !important;
	box-shadow: 0 20px 52px rgba(0,0,0,.22), 0 6px 16px rgba(0,0,0,.12) !important;
}
.mh-pillars__icon { background: #9b2335 !important; }
.mh-pillars__label { font-family: 'Playfair Display', Georgia, serif; color: #1a0f08 !important; }
.mh-pillars__desc { color: rgba(26,15,8,.65) !important; opacity: 1 !important; }

/* ── Gallery ─────────────────────────────────────────────────── */
.mh-gallery { background: #fdf6e3 !important; }
.mh-gallery__tab.is-active,
.mh-gallery__tab:hover {
	background: #9b2335 !important;
	border-color: #9b2335 !important;
}

/* ── Footer pattern strip ────────────────────────────────────── */
.mcusa-footer__pattern {
	background: #0e0e0e;
	height: 28px;
	background-image:
		repeating-linear-gradient(90deg,
			transparent 0px, transparent 22px,
			#9b2335 22px, #9b2335 24px,
			transparent 24px, transparent 32px
		),
		radial-gradient(ellipse 6px 8px at 50% 50%, #9b2335 70%, transparent 70%);
	background-size: 40px 28px, 40px 28px;
}

/* ── Museum — flip to LIGHT cream so SDGs(dark)→Museum(light) contrasts ── */
.mh-museum { background: #fdf6e3 !important; }
.mh-museum__soon {
	background: rgba(155,35,53,.1) !important;
	border-color: rgba(155,35,53,.3) !important;
	color: #9b2335 !important;
}
.mh-museum__soon::before { background: #9b2335 !important; }
.mh-museum__heading { color: #1a0f08 !important; }
.mh-museum__location { color: #7d4e24 !important; }
.mh-museum__subheading { color: #1a0f08 !important; }
.mh-museum__subheading span { color: #9b2335 !important; }
.mh-museum__desc { color: rgba(26,15,8,.72) !important; }
.mh-museum__cards { gap: 1.4rem !important; }
.mh-museum__card {
	padding: 1.65rem 1.5rem !important;
	border-radius: 14px !important;
	border: none !important;
	border-top: 3px solid #9b2335 !important;
	box-shadow: 0 8px 32px rgba(26,15,8,.13), 0 2px 10px rgba(26,15,8,.09) !important;
	transition: box-shadow .25s ease, transform .25s ease !important;
}
.mh-museum__card:hover {
	box-shadow: 0 14px 44px rgba(26,15,8,.18), 0 4px 14px rgba(26,15,8,.10) !important;
	transform: translateY(-4px) !important;
}
/* Per-card tints + accent borders */
.mh-museum__card:nth-child(1) { background: #fff8ee !important; border-top-color: #9b2335 !important; }
.mh-museum__card:nth-child(2) { background: #f3faf4 !important; border-top-color: #2c5f2e !important; }
.mh-museum__card:nth-child(3) { background: #fffbee !important; border-top-color: #c4850a !important; }
.mh-museum__card:nth-child(4) { background: #f0f5ff !important; border-top-color: #1e5bb5 !important; }
/* Icon boxes — white with matching accent */
.mh-museum__card:nth-child(1) .mh-museum__card-icon { background: #fff !important; color: #9b2335 !important; border: 1px solid rgba(155,35,53,.22) !important; box-shadow: 0 2px 10px rgba(155,35,53,.14) !important; }
.mh-museum__card:nth-child(2) .mh-museum__card-icon { background: #fff !important; color: #2c5f2e !important; border: 1px solid rgba(44,95,46,.22) !important; box-shadow: 0 2px 10px rgba(44,95,46,.14) !important; }
.mh-museum__card:nth-child(3) .mh-museum__card-icon { background: #fff !important; color: #c4850a !important; border: 1px solid rgba(196,133,10,.22) !important; box-shadow: 0 2px 10px rgba(196,133,10,.14) !important; }
.mh-museum__card:nth-child(4) .mh-museum__card-icon { background: #fff !important; color: #1e5bb5 !important; border: 1px solid rgba(30,91,181,.22) !important; box-shadow: 0 2px 10px rgba(30,91,181,.14) !important; }
/* Titles per card accent */
.mh-museum__card:nth-child(1) .mh-museum__card-title { color: #9b2335 !important; }
.mh-museum__card:nth-child(2) .mh-museum__card-title { color: #2c5f2e !important; }
.mh-museum__card:nth-child(3) .mh-museum__card-title { color: #c4850a !important; }
.mh-museum__card:nth-child(4) .mh-museum__card-title { color: #1e5bb5 !important; }
.mh-museum__card-desc { color: rgba(26,15,8,.65) !important; }
.mh-museum__learn { color: #2c5f2e !important; }
.mh-museum__learn:hover { color: #9b2335 !important; }

/* ══════════════════════════════════════════════════════════════
   PARTNERS & COLLABORATORS SECTION
   ══════════════════════════════════════════════════════════════ */
.mh-partners {
	background: #fff;
	padding: 5rem 0;
}
.mh-partners__intro {
	max-width: 600px;
	margin: 0 auto 3rem;
	text-align: center;
	font-size: 1.05rem;
	line-height: 1.7;
	color: rgba(26,15,8,.68);
}

/* ── Slider layout ─────────────────────────────────────────── */
.mh-partners__slider-wrap {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.mh-partners__slider {
	overflow: hidden;
	flex: 1;
	min-width: 0;
}
.mh-partners__track {
	display: flex;
	gap: 1.5rem;
	transition: transform .45s cubic-bezier(.4,0,.2,1);
	will-change: transform;
}

/* ── Card ──────────────────────────────────────────────────── */
.mh-partners__card {
	flex-shrink: 0;
	background: #fff;
	border: 1px solid rgba(26,15,8,.08);
	border-radius: 18px;
	padding: 0;
	box-shadow: 0 8px 32px rgba(26,15,8,.10), 0 2px 10px rgba(26,15,8,.06);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: box-shadow .25s ease, transform .25s ease;
}

/* Card body below the image */
.mh-partners__type,
.mh-partners__name,
.mh-partners__desc,
.mh-partners__link {
	padding-inline: 1.75rem;
}

.mh-partners__type { margin-top: 1.25rem; display: none; }
.mh-partners__link { padding-bottom: 1.75rem; display: none; }
.mh-partners__card:hover {
	box-shadow: 0 14px 44px rgba(26,15,8,.15), 0 4px 14px rgba(26,15,8,.09);
	transform: translateY(-3px);
}

/* ── Card image header ─────────────────────────────────────── */
.mh-partners__card-img-wrap {
	width: calc(100% + 2px);
	margin: -1px -1px 0;
	border-radius: 16px 16px 0 0;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: #f5f0e8;
	flex-shrink: 0;
}

.mh-partners__card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .4s ease;
}

.mh-partners__card:hover .mh-partners__card-img {
	transform: scale(1.04);
}

.mh-partners__card-img-ph {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ── Logo circle ───────────────────────────────────────────── */
.mh-partners__logo {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	background: #834d22;
	flex-shrink: 0;
}
.mh-partners__logo[data-type*="Government"] { background: #1e5bb5; }
.mh-partners__logo[data-type*="International"] { background: #c4850a; }
.mh-partners__logo[data-type*="Diplomatic"] { background: #9b2335; }
.mh-partners__logo[data-type*="NGO"] { background: #2c5f2e; }
.mh-partners__logo[data-type*="Business"] { background: #6d2fb0; }
.mh-partners__logo[data-type*="Educational"] { background: #834d22; }

/* Placeholder colours matching the old initials circles */
.mh-partners__card-img-ph { background: #834d22; }
.mh-partners__card-img-ph[data-type*="Government"] { background: #1e5bb5; }
.mh-partners__card-img-ph[data-type*="International"] { background: #c4850a; }
.mh-partners__card-img-ph[data-type*="Diplomatic"] { background: #9b2335; }
.mh-partners__card-img-ph[data-type*="NGO"] { background: #2c5f2e; }
.mh-partners__card-img-ph[data-type*="Business"] { background: #6d2fb0; }
.mh-partners__card-img-ph[data-type*="Educational"] { background: #834d22; }

.mh-partners__logo--img {
	background: transparent;
	padding: 0;
	overflow: hidden;
}
.mh-partners__thumb {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: 50%;
	display: block;
}

.mh-partners__initials {
	color: #fff;
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 2.2rem;
	font-weight: 700;
	letter-spacing: .06em;
}

/* ── Type badge ────────────────────────────────────────────── */
.mh-partners__type {
	display: inline-block;
	font-size: .68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: #9b2335;
	background: rgba(155,35,53,.08);
	border-radius: 2em;
	padding: .2em .85em;
	margin-bottom: .7rem;
	width: fit-content;
}

/* ── Card text ─────────────────────────────────────────────── */
.mh-partners__name {
	font-size: 1.05rem;
	font-weight: 700;
	color: #1a0f08;
	margin: 0 0 .65rem;
	line-height: 1.3;
	font-family: 'Playfair Display', Georgia, serif;
}
.mh-partners__desc {
	font-size: .85rem;
	line-height: 1.65;
	color: rgba(26,15,8,.65);
	margin: 0 0 1.25rem;
	flex: 1;
}
.mh-partners__link {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	font-size: .85rem;
	font-weight: 600;
	color: #9b2335;
	text-decoration: none;
	transition: color .2s ease;
}
.mh-partners__link:hover { color: #6e1422; }

/* ── Nav arrows ────────────────────────────────────────────── */
.mh-partners__nav {
	flex-shrink: 0;
	width: 48px !important;
	height: 48px !important;
	border-radius: 10px !important;
	border: 2px solid #9b2335 !important;
	background: #fff !important;
	color: #9b2335 !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin: 0 !important;
	padding: 0 !important;
	box-shadow: 0 4px 16px rgba(155,35,53,.18), 0 1px 4px rgba(26,15,8,.08);
	transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.mh-partners__nav svg {
	display: block !important;
	flex-shrink: 0;
	pointer-events: none;
}
.mh-partners__nav:hover {
	background: #9b2335 !important;
	border-color: #9b2335 !important;
	color: #fff !important;
	box-shadow: 0 6px 22px rgba(155,35,53,.30);
}
.mh-partners__nav:disabled {
	opacity: .35;
	cursor: default;
}

/* ── Dots ──────────────────────────────────────────────────── */
.mh-partners__dots {
	display: flex;
	justify-content: center;
	gap: .5rem;
	margin-top: 2rem;
}
.mh-partners__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	background: rgba(26,15,8,.18);
	cursor: pointer;
	padding: 0;
	transition: background .2s ease, width .2s ease, border-radius .2s ease;
}
.mh-partners__dot.is-active {
	background: #9b2335;
	width: 24px;
	border-radius: 4px;
}

/* ── Footer CTA ────────────────────────────────────────────── */
.mh-partners__footer {
	text-align: center;
	margin-top: 2.75rem;
}
.mh-partners__learn {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	font-size: .95rem;
	font-weight: 600;
	color: #1a0f08;
	padding: .75rem 2.25rem;
	border: 2px solid rgba(26,15,8,.18);
	border-radius: 2em;
	text-decoration: none;
	transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.mh-partners__learn:hover {
	background: #9b2335;
	border-color: #9b2335;
	color: #fff;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 767px) {
	.mh-partners__nav { width: 38px !important; height: 38px !important; }
}
@media (max-width: 479px) {
	.mh-partners__nav { display: none !important; }
}

/* ── Footer CTA gradient — Mithila earth tones ───────────────── */
.mcusa-footer__cta {
	background: linear-gradient(135deg, #3b1408 0%, #2c1a0e 45%, #0d2010 100%) !important;
}
