:root {
			--bg: #f5f7fb;
			--ink: #0d2340;
			--navy: #071b33;
			--navy-2: #0e2748;
			--gold: #d8a041;
			--gold-2: #f2bb5b;
			--green: #4f7c3c;
			--rust: #cb6a35;
			--blue: #275d97;
			--line: rgba(10, 30, 58, .12);
			--card: #ffffff;
			--shadow: 0 20px 50px rgba(7, 27, 51, .12);
			--radius: 22px;
		}

		* { box-sizing: border-box; }
		html { scroll-behavior: smooth; }
		body {
			margin: 0;
			font-family: 'Source Sans 3', sans-serif;
			color: var(--ink);
			
		}

		img { display: block; max-width: 100%; }
		a { color: inherit; text-decoration: none; }

		

		.topbar {
			background: linear-gradient(180deg, #091d38 0%, #0a223f 100%);
			color: #fff;			
			z-index: 20;
			box-shadow: 0 8px 25px rgba(7, 27, 51, .18);
		}

		.nav {
			display: flex;
			align-items: center;
			justify-content: space-between;
			gap: 24px;
			padding: 16px 0;
		}

		.brand {
			display: flex;
			align-items: center;
			gap: 12px;
			min-width: 0;
		}

		.brand img {
			width: 234px;			
			object-fit: contain;
			flex: 0 0 auto;
		}

		.brand-copy {
			line-height: 1.05;
		}

		.brand-copy strong {
			display: block;
			
			font-size: 1.6rem;
			letter-spacing: .02em;
		}

		.brand-copy span {
			display: block;
			font-size: .82rem;
			color: rgba(255,255,255,.86);
			max-width: 270px;
		}

		.menu {
			display: flex;
			align-items: center;
			gap: 26px;
			flex-wrap: wrap;
			justify-content: center;
			font-size: 1.02rem;
		}

		.menu a {
			color: rgba(255,255,255,.94);
			position: relative;
			padding-bottom: 6px;
		}

		.menu a.active::after,
		.menu a:hover::after {
			content: '';
			position: absolute;
			left: 0;
			right: 0;
			bottom: 0;
			height: 2px;
			background: var(--gold);
			border-radius: 999px;
		}

		.btn {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			gap: 10px;
			min-height: 44px;
			padding: 0 18px;
			border-radius: 8px;
			border: 1px solid transparent;
			font-weight: 500;
			letter-spacing: .01em;
			transition: transform .2s ease, background .2s ease, border-color .2s ease;
			white-space: nowrap;
		}

		.btn:hover { transform: translateY(-1px); }
		.btn.primary {
			background: linear-gradient(180deg, #e3ac4d 0%, #d29132 100%);
			color: #fff;
			box-shadow: 0 12px 24px rgba(210, 145, 50, .28);
		}

		.btn.secondary {
			border-color: rgba(255,255,255,.28);
			color: #fff;
			background: rgba(255,255,255,.03);
		}

		.hero {
    position: relative;
    overflow: hidden;
    background: url(../img/slider-bg.jpg);
    min-height: 340px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

	

		.hero-inner {
			position: relative;
			z-index: 1;
			display: grid;
			grid-template-columns: minmax(0, 1.18fr) minmax(260px, .82fr);
			align-items: stretch;
			gap: 0;
			padding: 0 0 0 18px;
		}

		.hero-copy {
			color: #fff;
			display: flex;
			flex-direction: column;
			justify-content: center;
			padding: 30px 0;
			max-width: 720px;
		}

		.hero-copy h1 {
			margin: 0 0 18px;
			font-weight: 900;
			font-size: clamp(2.55rem, 4.4vw, 4.9rem);
			line-height: .92;
			letter-spacing: -.03em;
			text-transform: uppercase;
		}

		.hero-copy h1 span { color: #f0b44e; display: block; }

		.hero-copy p {
			margin: 0 0 18px;
			max-width: 350px;
			font-size: 1.02rem;
			line-height: 1.55;
			color: rgba(255,255,255,.88);
		}

		.hero-note {
			display: flex;
    gap: 14px;
    max-width: 414px;
		}

		.hero-note .badge {
			width: 128px;			
		}

		.hero-actions {
			display: flex;
			flex-wrap: wrap;
			gap: 14px;
		}

		.hero-actions .btn {
			min-width: 170px;
			border-radius: 6px;
		}

		.hero-actions .btn.primary {
			box-shadow: 0 14px 28px rgba(210, 145, 50, .34);
		}

		.hero-actions .btn.secondary {
			border-width: 1.5px;
			background: rgba(255,255,255,.02);
		}

		.hero-visual {
			position: relative;
			align-self: stretch;
			height: 100%;
			min-height: 340px;
			border-radius: 0;
			overflow: hidden;
			box-shadow: none;
			isolation: isolate;
		}

		.hero-visual::before {
			content: '';
			position: absolute;
			inset: 0;
			background:
				linear-gradient(90deg, rgba(7,27,51,.12) 0%, rgba(7,27,51,.02) 22%, rgba(7,27,51,.36) 100%),
				linear-gradient(180deg, rgba(255,255,255,.02) 0%, rgba(0,0,0,.18) 100%);
			pointer-events: none;
			z-index: 1;
		}

		.hero-visual img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			object-position: 64% center;
			transform: scale(1.01);
		}

		.section {
			padding: 28px 0;
		}

		.intro {
			display: grid;
			grid-template-columns: 1.05fr .95fr;
			gap: 22px;
			align-items: stretch;			
		}

	.gallery {
    display: flex;
    justify-content: space-between;
    gap: 20px;
	align-items: center;
}

	.gallery img {
    height: 198px;
    width: 132px;
}

	.cls-full-height {
	height: 100% ;}	

		.eyebrow {
			
			text-transform: uppercase;
			letter-spacing: 1px;
			font-size: 20px;
			color: var(--gold);
			margin-bottom: 10px;
			font-weight: 800;
		}

		.cls-border-heading {
			display: inline-flex;
			align-items: center;
			gap: 16px;
			width: fit-content;
			white-space: nowrap;
		}

		.cls-border-heading::before,
		.cls-border-heading::after {
			content: '';
			width: clamp(56px, 10vw, 160px);
			height: 1px;
			background: linear-gradient(90deg, transparent 0%, rgba(216,160,65,.95) 40%, rgba(216,160,65,.95) 100%);
		}

		.cls-border-heading::after {
			transform: scaleX(-1);
		}

		.intro-copy h2,
		.section-title h2,
		.wide-title h2,
		.cta h2 {
			margin: 0;
			
			text-transform: uppercase;
			letter-spacing: -.03em;
			line-height: 1.02;
		}

		.intro-copy h2 {
			font-size: clamp(1.9rem, 4vw, 3.1rem);
		}

		.intro-copy h2 span { color: var(--gold); }

		.intro-copy p {
			margin: 14px 0 0;
			font-size: 1.1rem;
			line-height: 1.6;
			color: rgba(13,35,64,.85);
		}

		.what {
			padding: 0;
		}

		.section-title {
			text-align: center;
			margin-bottom: 20px;
		}

		.section-title h2 {
			font-size: clamp(2rem, 4vw, 3.5rem);
		}

		.section-title p {
			margin: 12px auto 0;
			max-width: 860px;
			font-size: 1.08rem;
			color: rgba(13,35,64,.78);
		}

		.feature-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 26px;
}

		.feature {
			text-align: center;
			padding: 10px 8px 0;
		}

	
		.pt-30 { padding-top: 30px !important; }
.mt-0 { margin-top: 0 !important; }
		.icon-circle {
			margin: 0 auto 14px;
    display: grid;
    place-items: center;
		}

		.icon-circle svg { width: 42px; height: 42px; }
		.feature h3 {
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: 1.08rem;
    font-weight: 600;
}

		.feature p {
			margin: 0;
			color: rgba(13,35,64,.8);
			font-size: 1rem;
			line-height: 1.5;
		}

		.metric img {
    margin: 0 auto;
}

		.impact-band {
    margin: 26px 0 0 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: linear-gradient(90deg, #071b33 0%, #071b33 54%, #0f2948 100%);
    color: #fff;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
}

		.impact-band .photo {
			min-height: 400px;
			background: url('../img/HappyAfrican kids.png') center / cover no-repeat;
		}

		.mt-30 { margin-top: 30px !important; }

		.impact-band .stats {
			padding: 22px 26px;
			display: flex;
			flex-direction: column;
			justify-content: center;
		}

		.impact-band h3 {
			margin: 0 0 18px;
			
			text-transform: uppercase;
			font-size: clamp(1.5rem, 2.6vw, 2.25rem);
			letter-spacing: -.03em;
			color: #f2c15c;
		}

		.metrics {
			display: grid;
			grid-template-columns: repeat(4, 1fr);
			gap: 16px;
		}

		.metric {
			text-align: center;
			padding: 10px 8px;
			border-left: 1px solid rgba(255,255,255,.13);
		}

		.metric:first-child { border-left: 0; }
		.metric .num {
			display: block;
			margin-top: 10px;
			font-size: clamp(2rem, 3vw, 3.1rem);
			font-weight: 900;
			line-height: 1;
			margin-bottom: 6px;
		}

		.metric p {
			margin: 0;
			color: rgba(255,255,255,.86);
			line-height: 1.35;
		}

		.metric small {
			display: block;
			margin-top: 4px;
			color: rgba(255,255,255,.72);
			line-height: 1.3;
		}

		.cls-border {
    background: #f2f2f2;
    width: 1px;
}

	.why-grid {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    padding: 0 50px;
}

		.why-card {
			padding: 22px 20px;
			display: flex;
			gap: 16px;
			align-items: center;
		}

		.why-card .icon-circle {
			width: 72px;
			height: 72px;
			margin: 0;
			flex: 0 0 auto;
		}

		.why-card h3 {
    margin: 0 0 8px;
    text-transform: uppercase;
    font-size: 1.02rem;
    font-weight: 600;
}

		.why-card p {
			margin: 0;
			color: rgba(13,35,64,.82);
			line-height: 1.55;
		}

		.support-grid {
			margin-top: 24px;
			display: grid;
			grid-template-columns: 1.55fr .95fr;
			gap: 18px;
			background: #f4f5f7;
			border-radius: 22px;
			padding: 0 50px;			
		}

		.cls-apsr-foundation {
    background: #fff;
    padding-bottom: 0;
}



		.support-chart {
			padding: 26px;
			display: grid;
			grid-template-columns: 260px 1fr;
			gap: 22px;
			align-items: center;
		}

		.donut {
			width: 240px;
			aspect-ratio: 1;
			border-radius: 50%;
			background:
				radial-gradient(circle at center, #fff 0 18%, transparent 18.5%),
				conic-gradient(
					#4f7c3c 0 30%,
					#cb6a35 30% 50%,
					#6c9fdf 50% 65%,
					#0a2c67 65% 100%
				);
			box-shadow: inset 0 0 0 14px rgba(255,255,255,.48);
			position: relative;
		}

		.donut::after {
			content: '❤';
			position: absolute;
			inset: 50% auto auto 50%;
			transform: translate(-50%, -55%);
			width: 62px;
			height: 62px;
			border-radius: 50%;
			background: #fff;
			display: grid;
			place-items: center;
			color: #d8a041;
			font-size: 1.8rem;
			box-shadow: 0 8px 24px rgba(7,27,51,.14);
			line-height: 73px;
		}

		.legend {
			display: grid;
			gap: 10px;
		}

		.legend-item {
			display: flex;
			align-items: center;
			gap: 12px;
			color: rgba(13,35,64,.86);
			font-size: 1.05rem;
		}

		.legend-item .dot {
			width: 16px;
			height: 16px;
			border-radius: 50%;
			flex: 0 0 auto;
		}

		.support-copy {
			padding: 28px 26px;
			border-left: 1px solid rgba(10, 30, 58, .08);
			display: flex;
			flex-direction: column;
			justify-content: center;
			gap: 10px;
			padding-left: 50px;
		}

		.support-copy p {
			margin: 0;
			color: rgba(13,35,64,.82);
			line-height: 1.6;
			font-size: 1.08rem;
		}

		.support-copy .mini-title {
			color: var(--gold);
			
			text-transform: uppercase;
			font-size: .82rem;
			font-weight: 800;
			letter-spacing: .12em;
		}

		.support-copy .link {
			margin-top: 10px;
			color: var(--navy);
			font-weight: 800;
			text-transform: uppercase;
			letter-spacing: .04em;
		}

		.operate-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 24px;
    align-items: center;
    margin-top: 18px;
    border-bottom: 1px solid rgb(93 93 93 / 8%);
}

		

		.operate-copy p {
			margin: 14px 0 0;
			font-size: 1.08rem;
			line-height: 1.65;
			color: rgba(13,35,64,.8);
		}

		.map-card {
			padding: 12px;
		}

		.map-card img {
			width: 100%;
			height: auto;
			object-fit: contain;
		}

		.partners {
			padding: 20px;
			background: #fff;
		}

		.partners-row {
			display: grid;
			grid-template-columns: repeat(7, 1fr);
			gap: 12px;
			align-items: center;			
		}

		.partners-row.owl-carousel {
			display: block;
			padding: 0 10px;
		}

		.partners-row.owl-carousel .owl-stage {
			display: flex;
			align-items: center;
		}

		.partners-row.owl-carousel .owl-item {
			display: flex;
			align-items: center;
			justify-content: center;
		}

		.partners-row img {
			width: auto;
			max-width: 100%;
			max-height: 56px;
			object-fit: contain;
			filter: saturate(.96);
		}

		.partners .owl-nav {
			margin-top: 14px;
			display: flex;
			justify-content: center;
			gap: 10px;
		}

		.partners .owl-nav button.owl-prev,
		.partners .owl-nav button.owl-next {
			width: 38px;
			height: 38px;
			border-radius: 999px;
			background: var(--navy) !important;
			color: #fff !important;
			box-shadow: 0 10px 20px rgba(7, 27, 51, .12);
		}

		.partners .owl-nav button.owl-prev:hover,
		.partners .owl-nav button.owl-next:hover {
			background: var(--gold) !important;
		}

	.cta {
   background: url(../img/cta-back.jpg) center right / cover no-repeat;
    color: #fff;
    padding: 30px 0;
}


		.cta h2 {
			font-size: 35px;
			margin-bottom: 10px;
		}

	.cta h2 span {
    color: #f0b44e;
    display: block;
}

		.cta p {
			margin: 0;
			font-size: 1.08rem;
			color: rgba(255,255,255,.84);
			max-width: 700px;
		}

		.cta-actions {
			display: flex;
			flex-direction: column;
			gap: 12px;	
			min-width: 230px;		
		}

		.cta-actions a {
    text-transform: uppercase;
}

		/* Footer CTA banner (matches supplied image) */
		.footer-cta {
			position: relative;
			overflow: hidden;
			background: #061629;
			color: #fff;
			padding: 80px 0;
			display: flex;
			flex-direction: column;
			justify-content: center;
		}

		.footer-cta::before {
			content: '';
			position: absolute;
			inset: 0;
			background: linear-gradient(90deg, rgba(5, 18, 35, .98) 0%, rgba(5, 18, 35, .96) 33%, rgba(5, 18, 35, .85) 48%, rgba(5, 18, 35, .25) 68%, rgba(5, 18, 35, 0) 100%);
			z-index: 1;
		}

		.footer-bg-img {
			position: absolute;
			inset: 0 0 0 44%;
			background: url('../img/Shaking hands.png') center right/cover no-repeat;
			z-index: 0;
		}

		.footer-cta h2,
		.footer-cta p {
			position: relative;
			z-index: 2;
			max-width: 620px;
		}

		.footer-cta h2 {
    margin: 0;
    font-size: 35px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: none;
    max-width: 640px;
}

		.footer-cta h2 span {
			color: #d8a041;
			font-weight: 800;
		}

		.footer-cta p {
			margin-top: 18px;
			margin-bottom: 0;
			font-size: clamp(1rem, 1.35vw, 1.2rem);
			line-height: 1.45;
			font-weight: 500;
			color: rgba(255,255,255,.9);
			text-shadow: 0 1px 1px rgba(0,0,0,.2);
		}

		.footer-cta h2,
		.footer-cta p,
		.footer-cta .footer-bg-img {
			pointer-events: none;
		}

		.footer-cta .footer-bg-img img {
			display: none;
		}


		.footer {
    background: #08192e;
    color: rgba(255, 255, 255, .9);
    padding: 22px 0 18px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

		/* Inquiry levels section (matches provided screenshot) */
		.inquiry-section {
            background: #fff;
            padding: 56px 0 0px;
            color: var(--ink);
        }

		.inquiry-grid {
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 32px;
			align-items: start;
		}

		.inquiry-left h3 {
            margin: 0 0 8px;
            font-size: 1.4rem;
            font-weight: 900;
            color: var(--navy);
        }

		.inquiry-left p { margin: 6px 0 18px; color: rgba(13,35,64,.78); }

		.icons-row {
			display: flex;
			justify-content: space-between;
			align-items: flex-start;
			gap: 0;
			margin: 18px 0;
			border-top: 1px solid rgba(13,35,64,.06);
			padding-top: 18px;
		}

		.icon-item {
			flex: 1 1 0;
			display: flex;
			flex-direction: column;
			align-items: center;
			text-align: center;
			padding: 14px 10px;
			border-left: 1px solid rgba(13,35,64,.06);
		}

		.icon-item:first-child { border-left: 0; }

		.icon-item img { margin-bottom: 12px; }

		.icon-label { font-size: .95rem; color: rgba(13,35,64,.85); line-height:1.3; }

		.integrity-box { display:flex; gap:18px; align-items:flex-start; border-radius:8px; background:#fff; padding:18px; margin-top:18px; box-shadow: 0 6px 18px rgba(10,30,58,.04); border-left:4px solid var(--green); }

		.integrity-mark {
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    padding: 5px;
    font-size: 14px;
}

		.integrity-copy strong { display:block; margin-bottom:6px; color:var(--navy); }

		.integrity-copy p { margin:0; color: rgba(13,35,64,.76); }

		.inquiry-right { background:#fff; padding:18px; border-radius:8px; box-shadow: 0 8px 24px rgba(10,30,58,.04); }

		.inquiry-right h4 { margin:0 0 6px; font-size:1.12rem; font-weight:800; color:var(--navy); }

		.inquiry-right .muted { margin:0 0 14px; color: rgba(13,35,64,.66); }

		.tier-list { display:flex; flex-direction:column; gap:12px; }

		.tier {
            display: grid;
            grid-template-columns: 56px 1fr 140px;
            gap: 12px;
            border:1px solid rgba(13,35,64,.06);
            padding:12px;
            border-radius:8px;
            background:#fff;
        }

		.tier-badge {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    flex: 0 0 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

		.tier-body { flex:1; }

		.tier-body strong { display:block; font-size:1rem; margin-bottom:6px; color:var(--navy); }

		.tier-body p { margin:0; color: rgba(13,35,64,.72); font-size:.95rem; }

		.tier-when { justify-self: end; color: rgba(13,35,64,.66); font-size:.95rem; text-align:right; }

		@media (max-width: 991px) {
			.inquiry-grid { grid-template-columns: 1fr; }
			.inquiry-right { order: 2; padding: 14px 0 0; box-shadow: none; background: transparent; }
			.tier { grid-template-columns: 48px 1fr; }
			.tier-when { grid-column: 1 / -1; text-align: right; margin-top: 8px; }
			.icon-item { flex: 1 1 45%; }

		
		}


	/* Contact page hero/banner (matches supplied screenshot) */
	.contact-hero {
		position: relative;
		overflow: hidden;
		background: linear-gradient(90deg, rgba(6,22,41,1) 0%, rgba(6,22,41,.95) 48%, rgba(6,22,41,.85) 100%);
		color: #fff;
		padding: 64px 0;
	}

	.contact-hero::before {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient(90deg, rgba(5,18,35,.98) 0%, rgba(5,18,35,.6) 42%, rgba(5,18,35,0) 70%);
		z-index: 1;
	}

	.contact-hero__inner {
		position: relative;
		z-index: 2;
		display: grid;
		grid-template-columns: 1fr minmax(300px, .9fr);
		gap: 28px;
		align-items: center;
		padding: 0 18px;
	}

	.contact-hero__content h2 {
		margin: 0 0 12px;
		font-size: clamp(1.8rem, 3.6vw, 3rem);
		line-height: 1.02;
		font-weight: 900;
		text-transform: none;
	}

	.contact-hero__content h2 span { color: var(--gold); display: inline-block; }

	.contact-hero__content p {
		margin: 0 0 18px;
		max-width: 620px;
		color: rgba(255,255,255,.92);
		font-size: clamp(0.98rem, 1.2vw, 1.05rem);
		line-height: 1.6;
	}

	.contact-note {
		display: inline-flex;
		gap: 14px;
		align-items: center;
		padding: 14px 18px;
		border-radius: 10px;
		border: 1px solid rgba(255,255,255,.07);
		background: rgba(255,255,255,.02);
		max-width: 520px;
	}

	.contact-note__icon { width: 44px; height: 44px; display: block; }
	.contact-note__text { color: rgba(255,255,255,.95); font-size: 0.97rem; }

	.contact-hero__visual {
		min-height: 240px;
		border-radius: 6px;
		background: url('../img/contact-bg.png') right center/cover no-repeat;
		box-shadow: 0 20px 60px rgba(7,27,51,.35);
	}

	@media (max-width: 860px) {
		.contact-hero__inner { grid-template-columns: 1fr; gap: 18px; }
		.contact-hero__visual { order: -1; min-height: 180px; background-position: center; }
		.contact-hero { padding: 36px 0; }
		.contact-note { max-width: 100%; }
	}


		.footer-grid {
			display: grid;
			grid-template-columns: 1.2fr .8fr .95fr .95fr;
			gap: 22px;
			align-items: start;
		}

		.footer-brand {
			display: flex;
			gap: 12px;
			align-items: center;
		}

		.footer-brand img {
			width: 210px;		
		}

		.footer-brand strong {
			display: block;
			
			font-size: 1.25rem;
			color: #fff;
		}

		.footer h4 {
			margin: 0 0 12px;
			
			text-transform: uppercase;
			letter-spacing: .08em;
			font-size: .92rem;
			color: #f2c15c;
		}

		.footer ul {
			margin: 0;
			padding: 0;
			list-style: none;
			display: grid;
			gap: 6px;
		}

		.footer li,
		.footer p {
			margin: 0;
			line-height: 1.5;
		}

		.socials {
			display: flex;
			gap: 5px;
			flex-wrap: wrap;
		}

		.socials img {
    width: 28px;
}

		.recent {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			min-height: 42px;
			padding: 0 14px;
			border-radius: 8px;
			background: linear-gradient(180deg, #e3ac4d 0%, #d29132 100%);
			color: #fff;
			font-weight: 700;
		}

		.copyright {
			margin-top: 16px;
			padding-top: 12px;
			border-top: 1px solid rgba(255,255,255,.08);
			font-size: .92rem;
			color: rgba(255,255,255,.72);
			display: flex;
			justify-content: space-between;
			gap: 16px;
			flex-wrap: wrap;
		}

		.spacer { height: 10px; }

		.nav-mobile {
			display: none;
			color: #fff;
		}

		.nav-toggle,
		.mobile-nav-backdrop,
		.mobile-nav-panel,
		.mobile-nav-close {
			display: none;
		}

		@media (max-width: 991px) {

			.cls-footer-grid .col-md-6.col-lg-3 {
    margin-bottom: 20px;
}
			.why-card {
    flex-direction: column;
    text-align: center;
}
.cta-actions a.btn.primary {
    display: inline-flex;
}
			.nav { padding: 12px 0; gap: 12px; }
			.menu { display: none; }
			.btn.primary:not(.nav-mobile) { display: none; }
			.nav-toggle {
				display: inline-flex;
				margin-left: auto;
				width: 48px;
				height: 48px;
				padding: 0;
				border: 1px solid rgba(255,255,255,.18);
				border-radius: 12px;
				background: rgba(255,255,255,.06);
				align-items: center;
				justify-content: center;
				flex-direction: column;
				gap: 5px;
			}

			.nav-toggle span {
				display: block;
				width: 20px;
				height: 2px;
				border-radius: 999px;
				background: #fff;
			}

			.mobile-nav-backdrop {
				position: fixed;
				inset: 0;
				background: rgba(4, 13, 26, .56);
				backdrop-filter: blur(2px);
				z-index: 35;
			}

			.mobile-nav-panel {
				display: flex;
				position: fixed;
				top: 0;
				left: 0;
				bottom: 0;
				width: min(86vw, 320px);
				transform: translateX(-100%);
				transition: transform .25s ease;
				z-index: 40;
				flex-direction: column;
				padding: 18px 18px 20px;
				background: linear-gradient(180deg, #091d38 0%, #0a223f 100%);
				box-shadow: 18px 0 40px rgba(7, 27, 51, .34);
				border-right: 1px solid rgba(255,255,255,.08);
			}

			.mobile-nav-panel__header {
				display: flex;
				align-items: center;
				justify-content: space-between;
				gap: 12px;
				padding-bottom: 14px;
				margin-bottom: 16px;
				border-bottom: 1px solid rgba(255,255,255,.10);
				color: #fff;
				text-transform: uppercase;
				letter-spacing: .08em;
				font-weight: 800;
			}

			.mobile-nav-close {
				display: inline-grid;
				place-items: center;
				width: 38px;
				height: 38px;
				border: 1px solid rgba(255,255,255,.14);
				border-radius: 10px;
				background: rgba(255,255,255,.06);
				color: #fff;
				font-size: 1.6rem;
				line-height: 1;
			}

			.mobile-menu {
				display: grid;
				gap: 8px;
			}

			.mobile-menu a {
				display: flex;
				align-items: center;
				min-height: 46px;
				padding: 0 14px;
				border-radius: 12px;
				color: rgba(255,255,255,.95);
				background: rgba(255,255,255,.04);
				border: 1px solid rgba(255,255,255,.06);
			}

			.mobile-nav-panel__actions {
				margin-top: auto;
				padding-top: 16px;
			}

			.mobile-nav-panel__actions .btn.primary {
				display: inline-flex;
				width: 100%;
			}

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

			body.mobile-nav-open .mobile-nav-backdrop {
				display: block;
			}

			body.mobile-nav-open .mobile-nav-panel {
				transform: translateX(0);
			}

			.cta {
				background: url(../img/cta-back.jpg) center center / cover no-repeat;
				padding: 40px 20px;
				text-align: center;
			}

			.cta .row {
				flex-direction: column;
			}

			.cta .col-md-7 {
				width: 100%;
			}

			.cta .d-flex {
				flex-direction: column;
				align-items: center !important;
				justify-content: center !important;
				gap: 20px;
			}

			.cta h2 {
				font-size: clamp(1.8rem, 8vw, 2.6rem);
				margin-bottom: 14px;
				line-height: 1.2;
			}

			.cta p {
				font-size: .98rem;
				max-width: 100%;
				margin-bottom: 20px;
			}

			.cta-actions {
				flex-direction: row;
			}

			.cta .d-flex .cta-content {
    width: 100%;
}

			.cta-actions a {
				width: 100%;
				padding: 12px 24px;
			}

			.cta .col-md-5 {
				display: none;
			}
		}

		@media (max-width: 1120px) {
			.support-grid{
				padding: 0 !important;
			}
			.menu { gap: 18px; font-size: .98rem; }
			.hero-inner,
			.intro,.operate-grid,
			.cta-inner,
			.footer-grid { grid-template-columns: 1fr; }

			.hero,
			.hero-inner { min-height: auto; }

			.hero-inner { padding: 28px 0 30px; }

			.hero-visual {
				min-height: 420px;
				border-radius: 24px;
			}

			.feature-grid,
			.metrics,
			.why-grid,
			.partners-row { grid-template-columns: repeat(2, 1fr); }

			.support-chart { grid-template-columns: 1fr; justify-items: center; }
			
		}

		@media (max-width: 767px) {

			.programs-v2 .reason-arrow-v2{
				display: none;
			}
		
			.container{
	max-width:100% !important;
	padding-left: 20px;
	padding-right: 20px;
}
			.brand img { width: 180px; }
			.brand-copy strong { font-size: 1.2rem; }
			.brand-copy span { max-width: 180px; font-size: .72rem; }
			    .hero {
               background: none;
        background-color: #0a223e;
        padding: 0 20px 20px 20px;
    }
			.hero-inner {
				grid-template-columns: 1fr;
				gap: 14px;
				padding: 14px 0 0;
			}
			.hero-copy {
				padding: 8px 0 0;
				max-width: none;
			}
			.hero-copy h1 {
				font-size: clamp(2rem, 10vw, 3rem);
				margin-bottom: 14px;
			}
			.hero-copy p {
				max-width: none;
				font-size: .92rem;
				margin-bottom: 12px;
			}
			.hero-note {
				padding: 0;
				margin-bottom: 14px;
				max-width: none;
			}
			
			.hero-actions {
				flex-direction: column;
				gap: 10px;
			}
			.hero-actions .btn {
				width: 100%;
				min-width: 0;
				font-size: .92rem;
				padding: 0 14px;
				min-height: 40px;
			}
			.hero-visual {
				min-height: 220px;
				border-radius: 16px;
			}
			.section { padding: 22px 0; }
			
			.feature-grid,
			.why-grid,
			.metrics,
			.partners-row,
			.footer-cta-inner {
				display: grid;
				grid-template-columns: 1fr;
			}
			.gallery { gap: 12px; }
			.feature-grid,
			.why-grid { gap: 12px; }
			.feature,
			.why-card {
				padding-left: 0;
				padding-right: 0;
			}
			.cls-border {
				display: none;
			}
			.why-grid { padding: 0; }
			.why-card {
				flex-direction: column;
				text-align: center;
			}
			.why-card .icon-circle {
				width: 64px;
				height: 64px;
			}
			.gallery img { height: 150px; }
			.feature-grid,
			.metrics,
			.partners-row {
				grid-template-columns: 1fr;
			}
			.impact-band { grid-template-columns: 1fr; }
			.metric { border-left: 0; border-top: 1px solid rgba(255,255,255,.13); }
			.metric:first-child { border-top: 0; }
			.impact-band .photo {
				min-height: 220px;
			}
			.impact-band .stats {
				padding: 18px;
			}
			.support-grid {
				padding: 0 16px;
				border-radius: 18px;
				grid-template-columns: 1fr;
			}
			.support-chart {
				padding: 22px 18px;
			}
			.donut {
				width: min(210px, 70vw);
			}
			.legend-item {
				font-size: .95rem;
			}
			.support-copy {
				padding: 18px;
				text-align: center;
			}
			.support-copy .mini-title {
    margin: 0 auto;
}

.operate-copy {
    text-align: center;
}


			.support-copy p {
				font-size: .98rem;
			}
			.operate-grid {
				gap: 14px;
			}
			.operate-copy p,
			.intro-copy p,
			.cta p {
				font-size: 1rem;
				line-height: 1.55;
			}
			.operate-copy h2,
			.cta h2,
			.section-title h2,
			.intro-copy h2 {
				font-size: clamp(1.6rem, 7vw, 2.2rem);
			}
			.cta .d-flex {
				flex-direction: column;
				align-items: flex-start !important;
				gap: 18px;
			}
			.cta-actions {
				width: 100%;
				min-width: 0;
			}
			.cta-actions .btn {
				width: 100%;
			}
			.footer-cta-inner,
			.footer-grid {
				grid-template-columns: 1fr;
			}
			.footer-brand img {
				width: 180px;
			}
			.footer h4 {
				margin-top: 8px;
			}
			.cta { padding-top: 24px; }
			.cta-actions { min-width: 0; }
			.footer-grid { gap: 18px; }
			    .copyright {
        flex-direction: row;
        justify-content: center;
    }

	br{
		display: none;
	}

.cls-footer-grid .col-md-6.col-lg-3 {
    margin-bottom: 20px;
}

.socials {
    margin-bottom: 15px;
}

		}

		@media (min-width: 768px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 1280px !important;
		        padding-left: 20px;
        padding-right: 20px;
    }

    .cls-mob-img {
    display: none;
}
}

		@media (max-width: 400px) {
			.gallery {
				display: grid;
				grid-template-columns: repeat(2, minmax(0, 1fr));
				gap: 10px;
				align-items: stretch;
			}

			.gallery img {
				width: 100%;
				height: 140px;
				object-fit: cover;
			}
		}

		.row {
    margin: 0;
}

.pd-0 {
	padding: 0 !important;
}

footer.footer .col-md-6.col-lg-3 p {
    margin-bottom: 5px;
}
footer.footer .col-md-6.col-lg-3 i {
    margin-right: 5px;
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1280px !important;
    }
}

.mt-20{
	margin-top: 20px !important;
}

.mb-0{
	margin-bottom: 0 !important;
}

section#work2 {
    background: #fff;
    padding-bottom: 0;
    padding-top: 0;
}

	/* Vision / Mission / Values (dark strip) */
	.about-dark-strip {
		background: linear-gradient(180deg, #071b33 0%, #0b2b4a 100%);
		color: #fff;
		padding: 36px 0;
	}
	

	.about-vmv-grid article:not(:last-child) {
		border-right: 1px solid rgba(255,255,255,.08);
	}
	.cls-vision-icon-sec {
		display: flex;
		gap: 14px;
		align-items: flex-start;
	}
	.vision-icon {
		width: 64px;
		height: 64px;
		border-radius: 50%;
		background: var(--green);
		display: flex;
		align-items: center;
		justify-content: center;
		flex: 0 0 64px;
		box-shadow: 0 6px 20px rgba(7,27,51,.18);
	}
	.vision-icon img { width: 34px; height: 34px; object-fit: contain; }
	.vision-text p { margin: 0; color: rgba(255,255,255,.95); line-height: 1.6; }

	.vmv-values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.vmv-value { display: flex; gap: 12px; align-items: flex-start; }
	.value-icon {
		width: 46px;
		height: 46px;
		border-radius: 8px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--gold-2);
		flex: 0 0 46px;		
	}

.value-icon i {
    font-size: 25px;
}

.value-text p {
    font-size: 13px !important;
}

.value-text h4 {
    font-size: 15px !important;
    margin-bottom: 3px;
}

	.value-text h4 { margin: 0; font-size: 1rem; color: #fff; font-weight: 700; }
	.value-text p { margin: 4px 0 0; color: rgba(255,255,255,.86); font-size: .95rem; }

	@media (max-width: 991px) {
		
		.about-vmv-grid article { border-right: none; padding: 14px 0; }
		.vmv-values-grid { grid-template-columns: 1fr 1fr; }
	}


/* About page clone layout */


.about-page .section {
	padding: 24px 0;
}

.about-hero {
	background: url('../img/about-hero-bg.jpg') center / cover no-repeat;
}

.about-hero-inner {
	display: grid;
	grid-template-columns: 1fr 1.12fr;	
}

.about-hero-copy {
	padding: 30px 0;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 1;	
}

.about-kicker {
	font-size: .96rem;
	text-transform: uppercase;
	letter-spacing: .12em;
	font-weight: 800;
	color: #f2c15c;
	margin-bottom: 12px;
}

.about-hero-copy h1 {
	margin: 0;
	
	font-size: clamp(2.2rem, 3.85vw, 4rem);
	line-height: .98;
	letter-spacing: -.02em;	
	max-width: 650px;
}

.about-hero-copy p {
	margin: 16px 0 0;
	max-width: 560px;
	font-size: 1.15rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, .9);
}

.about-hero-points {
	margin-top: 20px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	max-width: 735px;
}

.about-hero-point {
    display: flex;
    align-items: center;
    gap: 10px;
}

.border-width-1 {
    background: #d29132;
    height: 1px;
    width: 100px;
    margin-top: 15px;
}

.about-hero-point span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #f2c15c;
    flex: 0 0 auto;
    border: 1px solid;
}

.about-hero-point p {
	margin: 0;
	font-size: .82rem;
	line-height: 1.25;
	font-weight: 500;
	letter-spacing: .02em;
	
}

.about-hero-art {
	min-height: 428px;
	background:
		linear-gradient(90deg, rgba(8,34,61,.03) 0%, rgba(8,34,61,.34) 100%),
		url('../img/African boys sunset.PNG') center / cover no-repeat;
}

.about-body {
	padding-top: 20px;
	padding-bottom: 10px;
}

.about-grid-two {
	display: grid;
	grid-template-columns: 1fr 1.08fr;
	gap: 18px;
	    padding: 30px 0;
}

.about-spaced {
	margin-top: 14px;
	padding-top: 18px;
	border-top: 1px solid rgba(10, 30, 58, .12);
}



.about-card h2 {
	margin: 0 0 10px;
	
	font-size: 2.05rem;
	letter-spacing: -.02em;
	text-transform: uppercase;
	color: #102f54;
}

.about-card p {
	margin: 0 0 12px;
	font-size: 1.03rem;
	line-height: 1.55;
	color: rgba(15, 42, 72, .9);
}

.about-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
	padding: 10px 16px;
	border-radius: 9px;
	background: linear-gradient(180deg, #0b2e56 0%, #0a2444 100%);
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	font-size: .9rem;
	letter-spacing: .03em;
}

.about-impact-panel {
	background: linear-gradient(180deg, #0b2d52 0%, #082443 100%);
	color: #fff;
	border-radius: 12px;
	padding: 22px;	
}

.about-impact-panel h3 {
	margin: 0 0 16px;
	text-align: center;
	
	text-transform: uppercase;
	font-size: 1.65rem;
	letter-spacing: -.02em;
	color: #fff;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.bottom-border-heading:before {
    content: "";
    background: #d09032;
    position: absolute;
    width: 60px;
    height: 2px;
    bottom: -8px;
}

.about-list i {
    color: #07233e;
    font-size: 20px;
}

.about-list.about-list-icons li:before{
	display: none;
}

.bottom-border-heading {
    position: relative;
    margin-bottom: 25px !important;
}

.about-impact-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border-radius: 10px;
	overflow: hidden;
}

.impact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 18px 14px;
	border-right: 1px solid rgba(255, 255, 255, .14);
	border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.impact-item:nth-child(2n) {
	border-right: 0;
}

.impact-item:nth-last-child(-n + 2) {
	border-bottom: 0;
}

.impact-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: radial-gradient(circle at 35% 30%, #f7ce75, #d59a2f);
	color: #fff;
	font-size: 1.4rem;
	box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .26);
	flex: 0 0 auto;
}

.impact-item strong {
	display: block;
	
	font-size: 2.15rem;
	line-height: .95;
	letter-spacing: -.02em;
}

.impact-item p {
	margin: 5px 0 0;
	font-size: .92rem;
	line-height: 1.25;
	text-transform: capitalize;
	color: rgba(255, 255, 255, .9);
}

.about-list {
	list-style: none;
	padding: 0;
	margin: 14px 0 0;
	display: grid;
	gap: 12px;
}

.about-list li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin-bottom: 15px;
}

.about-list span {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #0b2f57;
	color: #f2c15c;
	flex: 0 0 auto;
	font-size: 1rem;
}

.about-list h4 {
	margin: 0;
	font-size: 1rem;
	
	text-transform: capitalize;
	color: #0f2a48;
}

.about-list p {
	margin: 2px 0 0;
	font-size: .95rem;
	line-height: 1.4;
	color: rgba(15, 42, 72, .82);
}

.about-model-card p {
	margin-bottom: 12px;
}

.model-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	gap: 0;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28);
}

.model-icon {
    font-size: 30px;
    margin-top: 10px;
    display: inline-block;
}

.model-step {
	padding: 14px 14px 16px;
	color: #fff;
	position: relative;
	min-height: 216px;
	clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 50%, calc(100% - 24px) 100%, 0 100%, 24px 50%);
	margin-left: -14px;
	z-index: 1;
	text-align: center;
}

.model-step:first-child {
	margin-left: 0;
	clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 50%, calc(100% - 24px) 100%, 0 100%);
}

.model-step strong {
	display: block;
	
	font-size: 2.05rem;
	line-height: 1;
	margin-bottom: 6px;
}

.model-step h4 {
	margin: 0;
	
	font-size: .95rem;
	text-transform: uppercase;
	line-height: 1.2;
}

.model-step p {
	margin: 10px 0 0;
	font-size: .85rem;
	line-height: 1.35;
	color: rgba(255, 255, 255, .95);
	padding:0 15px;
}

.model-step.blue-1 {
	background: linear-gradient(180deg, #0a2f59, #0b2343);
	z-index: 4;
}

.model-step.blue-2 {
	background: linear-gradient(180deg, #11509a, #0e3e7f);
	z-index: 3;
}

.model-step.green {
	background: linear-gradient(180deg, #4f8b3b, #3f742f);
	z-index: 2;
}

.model-step.gold {
	background: linear-gradient(180deg, #d9a43a, #c38c21);
	z-index: 1;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 24px 50%);
}

.model-footer {
	margin-top: 10px;
	padding: 10px;
	text-align: center;
	border: 1px solid rgba(10, 30, 58, .12);
	border-radius: 8px;
	font-size: .95rem;
	color: #31506e;
	background: #f8fafc;
}

.about-dark-strip {
	margin-top: 6px;
	padding: 22px 0;
	background: linear-gradient(180deg, #08294a 0%, #07223e 100%);
	color: #fff;
}


	.about-vmv-grid article {
    padding: 4px 18px;
    height: 100%;
    border-right: 1px solid #fbf3f330 !important;
}
#border-none {
    border-right: 0 !important;
}

.about-vmv-grid article:first-child {
	border-left: 0;
	padding-left: 0;
}

.about-vmv-grid h3 {
	margin: 0 0 8px;
	
	font-size: 1.52rem;
	text-transform: uppercase;
	color: #fff;
}

.about-vmv-grid p {
	margin: 0;
	font-size: .95rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, .86);
}

.about-vmv-grid ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px 10px;
}

.about-vmv-grid li {
	font-size: .95rem;
	color: rgba(255, 255, 255, .9);
	padding-left: 14px;
	position: relative;
}

.about-vmv-grid li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #f2c15c;
}

.about-bottom-grid {
	padding-top: 18px;
	padding-bottom: 12px;
}

.about-grid-three {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.about-lite-card {
	background: #fff;
	border: 1px solid rgba(10, 30, 58, .11);
	border-radius: 12px;
	padding: 18px;	
}

.about-lite-card h3 {
	margin: 0 0 10px;
	
	font-size: 1.45rem;
	text-transform: uppercase;
	color: #103257;
}

.about-lite-card p {
	margin: 0 0 12px;
	font-size: .96rem;
	line-height: 1.5;
	color: rgba(15, 42, 72, .84);
}

.about-lite-card ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 8px;
}

.about-lite-card li {
	font-size: .95rem;
	color: #244866;
	padding-left: 20px;
	position: relative;
}

.about-lite-card li::before {
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	color: #4f8b3b;
	font-size: .83rem;
	top: 2px;
}

.about-lite-card img {
	margin-top: 14px;
	width: 100%;
	height: 140px;
	object-fit: cover;
	border-radius: 9px;
}

/* Submit Institutional Inquiry Section (Contact Form) */
.submit-inquiry-section {
	background: #fff;
	padding: 34px 0 42px;
}

.submit-inquiry-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, .95fr);
	gap: 22px;
	align-items: stretch;
}

.submit-inquiry-grid > * {
	min-width: 0;
}

.submit-inquiry-form-wrapper,
.submit-inquiry-info-panel {
	min-width: 0;
}

.submit-inquiry-form-wrapper h3 {
	margin: 0 0 18px;
	font-size: 1.4rem;
	font-weight: 900;
	color: #fff;
	text-transform: none;
	letter-spacing: -.02em;
}

.submit-inquiry-form {
	display: block;
}

.submit-inquiry-form-wrapper {
	background: linear-gradient(180deg, #081d33 0%, #07182a 100%);
	border-radius: 8px;
	padding: 18px 20px 16px;	
}

.submit-inquiry-fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 16px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.form-group label {
	font-size: .82rem;
	font-weight: 700;
	color: rgba(255, 255, 255, .96);
	text-transform: none;
}

.form-group .required {
	color: #d32f2f;
	margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 10px 12px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 3px;
	font-family: 'Source Sans 3', sans-serif;
	font-size: .92rem;
	color: var(--ink);
	background: #f9fafb;
	transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--blue);
	box-shadow: 0 0 0 3px rgba(39, 93, 151, .1);
}

.form-group input::placeholder {
	color: rgba(13, 35, 64, .5);
}

.form-group textarea {
	resize: vertical;
	min-height: 56px;
	line-height: 1.5;
}

.form-group--full {
	grid-column: 1 / -1;
}

.form-security-notice {
	display: flex;
	gap: 12px;
	padding: 2px 0 0;
	background: transparent;
	border-radius: 0;
	border-left: 0;
	margin: 10px 0 0;
}

.security-icon {
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	color: rgba(255, 255, 255, .92);
	margin-top: 1px;
}

.security-items {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.security-item {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	font-size: .82rem;
	color: rgba(255, 255, 255, .84);
	line-height: 1.35;
}

.security-item .checkmark {
	color: var(--green);
	font-weight: 800;
	flex: 0 0 auto;
	margin-top: 2px;
}

.btn-submit-inquiry {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 11px 18px;
	margin-top: 10px;
	background: var(--gold);
	color: #fff;
	border: none;
	border-radius: 3px;
	font-size: .92rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	transition: all .2s ease;
	box-shadow: 0 8px 20px rgba(216, 160, 65, .26);
}

.btn-submit-inquiry:hover {
	background: #c99030;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(216, 160, 65, .32);
}

.submit-inquiry-info-panel {
	background: #f8f8f6;
	padding: 20px 22px 18px;
	border-radius: 8px;
	box-shadow: 0 8px 20px rgba(7, 27, 51, .06);
}

.submit-inquiry-info-panel h3 {
	margin: 0 0 10px;
	font-size: 1.35rem;
	font-weight: 900;
	color: var(--navy);
	text-transform: none;
	letter-spacing: -.02em;
	line-height: 1.08;
}

.submit-inquiry-info-panel > p {
	margin: 0 0 18px;
	font-size: .96rem;
	color: rgba(13, 35, 64, .82);
	line-height: 1.5;
}

.info-intro {
	margin: 0 0 18px !important;
}

.engagement-areas h4 {
	margin: 0 0 12px;
	font-size: 1rem;
	font-weight: 800;
	color: var(--navy);
	text-transform: none;
}

.engagement-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 18px;
}

.engagement-list li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: .93rem;
	color: rgba(13, 35, 64, .82);
	line-height: 1.45;
}

.engagement-list .checkmark {
	color: var(--gold);
	font-weight: 900;
	flex: 0 0 auto;
	margin-top: 1px;
}

.info-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.btn-info-action {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	padding: 11px 14px;
	border: 2px solid;
	border-radius: 4px;
	font-size: .82rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	cursor: pointer;
	transition: all .2s ease;
	background: transparent;
	min-height: 38px;
	line-height: 1.15;
	text-align: left;
	white-space: normal;
}

.btn-briefing {
	border-color: var(--gold);
	background: var(--gold);
	color: #fff;
}

.btn-briefing:hover {
	background: #c99030;
	color: #fff;
}

.btn-relations {
	border-color: #3a66a7;
	color: #3a66a7;
}

.btn-relations:hover {
	background: #3a66a7;
	color: #fff;
}

.btn-overview {
	border-color: #6e8ec1;
	color: var(--ink);
}

.btn-overview:hover {
	background: var(--ink);
	color: #fff;
	border-color: var(--ink);
}

.btn-info-action svg {
	flex: 0 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.submit-inquiry-grid {
		gap: 18px;
	}

	.submit-inquiry-info-panel {
		padding: 18px;
	}
}

@media (max-width: 768px) {
	.submit-inquiry-section {
		padding: 26px 0 34px;
	}

	.submit-inquiry-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.submit-inquiry-form-wrapper {
		padding: 16px;
	}

	.submit-inquiry-fields {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.submit-inquiry-form-wrapper h3,
	.submit-inquiry-info-panel h3 {
		font-size: 1.25rem;
	}

	.submit-inquiry-info-panel {
		padding: 16px;
	}

	.form-group input,
	.form-group select,
	.form-group textarea {
		padding: 10px 11px;
		font-size: .94rem;
	}

	.btn-submit-inquiry {
		padding: 11px 16px;
		font-size: .88rem;
	}

	.btn-info-action {
		padding: 10px 12px;
		font-size: .78rem;
		gap: 8px;
	}

	.info-actions {
		gap: 8px;
	}
}



@media (max-width: 480px) {
	.submit-inquiry-section {
		padding: 22px 0 28px;
	}

	.submit-inquiry-form-wrapper h3,
	.submit-inquiry-info-panel h3 {
		font-size: 1.15rem;
		margin-bottom: 14px;
	}

	.submit-inquiry-info-panel {
		padding: 14px;
	}

	.form-group {
		gap: 5px;
	}

	.form-group label {
		font-size: .84rem;
	}

	.form-group input,
	.form-group select,
	.form-group textarea {
		padding: 10px;
		font-size: .9rem;
		width:100%;
	}

	.form-security-notice {
		padding: 0;
		gap: 8px;
		font-size: .8rem;
	}

	.security-item {
		font-size: .8rem;
	}

	.btn-submit-inquiry {
		padding: 10px 14px;
		font-size: .82rem;
		gap: 6px;
	}

	.submit-inquiry-info-panel > p {
		font-size: .92rem;
	}

	.engagement-list li {
		font-size: .88rem;
	}

	.btn-info-action {
		padding: 10px 11px;
		font-size: .76rem;
		gap: 6px;
	}

	.btn-info-action svg {
		width: 14px;
		height: 14px;
	}
}

/* Inquiry handling summary strip */
.inquiry-handling-section {
	background: #fff;
	padding: 0 0 34px;
}

.inquiry-handling-card {
	display: grid;
	grid-template-columns: 1.18fr .88fr 1.14fr;
	background: #fff;
	border: 1px solid rgba(13, 35, 64, .12);
	border-radius: 8px;
	box-shadow: 0 8px 22px rgba(7, 27, 51, .05);
	overflow: hidden;
}

.inquiry-handling-col {
	padding: 14px 18px 15px;
}

.inquiry-handling-col + .inquiry-handling-col {
	border-left: 1px solid rgba(13, 35, 64, .12);
}

.inquiry-handling-col h3 {
	margin: 0 0 15px;
	font-size: 1.08rem;
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: -.02em;
	color: var(--navy);
	text-transform: none;
}

.inquiry-handling-col > p {
	margin: 0 0 10px;
	font-size: .86rem;
	line-height: 1.4;
	color: rgba(13, 35, 64, .78);
}

.inquiry-flow-list,
.response-standards-list,
.security-standards-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.inquiry-flow-list {
	display: grid;
	gap: 8px;
}

.inquiry-flow-list li {
	display: grid;
	grid-template-columns: 16px minmax(0, 1fr) 18px minmax(0, 1fr);
	align-items: center;
	column-gap: 8px;
	font-size: .8rem;
	line-height: 1.22;
	color: rgba(13, 35, 64, .84);
}

.inquiry-flow-icon,
.response-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	color: #67738a;
}

.inquiry-flow-icon svg,
.response-icon svg {
	width: 15px;
	height: 15px;
	display: block;
}

.inquiry-flow-arrow {
	color: var(--gold);
	font-size: 1rem;
	font-weight: 800;
	line-height: 1;
	text-align: center;
}

.response-standards-list {
	display: grid;
	gap: 8px;
}

.response-standards-list li {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr) auto;
	column-gap: 10px;
	align-items: center;
	font-size: .8rem;
	line-height: 1.22;
	color: rgba(13, 35, 64, .84);
}

.response-standards-list strong {
	font-weight: 700;
	color: rgba(13, 35, 64, .95);
	white-space: nowrap;
}

.security-standards-list {
	display: grid;
	gap: 8px;
	margin-bottom: 10px;
}

.security-standards-list li {
	display: grid;
	grid-template-columns: 14px minmax(0, 1fr);
	gap: 8px;
	align-items: start;
	font-size: .82rem;
	line-height: 1.25;
	color: rgba(13, 35, 64, .84);
}

.security-check {
	color: var(--navy);
	font-size: .95rem;
	font-weight: 800;
	line-height: 1.2;
	margin-top: 1px;
}

.security-shield {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding-top: 2px;
	color: #1f3153;
}

.security-shield svg {
	width: 70px;
	height: 70px;
	display: block;
}

.inquiry-handling-col--security {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 88px;
	grid-template-areas:
		"title shield"
		"intro shield"
		"list shield";
	column-gap: 18px;
	align-items: start;
}

.inquiry-handling-col--security h3 {
	grid-area: title;
	margin-bottom: 15px;
	font-size: 1.02rem;
	line-height: 1.08;
}

.inquiry-handling-col--security > p {
	grid-area: intro;
	margin-bottom: 8px;
	font-size: .84rem;
	line-height: 1.38;
}

.inquiry-handling-col--security .security-standards-list {
	grid-area: list;
	margin-bottom: 0;
}

.inquiry-handling-col--security .security-shield {
	grid-area: shield;
	justify-content: center;
	align-self: center;
	padding-top: 22px;
	color: #1f3153;
}

.inquiry-handling-col--security .security-standards-list li {
	font-size: .82rem;
	line-height: 1.28;
	grid-template-columns: 14px minmax(0, 1fr);
	gap: 8px;
}

.inquiry-handling-col--security .security-check {
	font-size: .92rem;
	margin-top: 0;
}

.inquiry-handling-col--security .security-standards-list li span:last-child {
	max-width: 250px;
}

@media (max-width: 1100px) {
	.inquiry-handling-card {
		grid-template-columns: 1fr;
	}

	.inquiry-handling-col + .inquiry-handling-col {
		border-left: 0;
		border-top: 1px solid rgba(13, 35, 64, .12);
	}

	.inquiry-handling-section {
		padding-bottom: 34px;
	}

	.inquiry-handling-col {
		padding: 20px;
	}

	.inquiry-handling-col--security {
		grid-template-columns: minmax(0, 1fr) 78px;
		column-gap: 14px;
	}
}

@media (max-width: 767px) {
	.inquiry-handling-section {
		padding-bottom: 28px;
	}

	.inquiry-handling-col h3 {
		font-size: 1.06rem;
		        margin-bottom: 15px;
	}

	.impact-clone-hero,.about-hero {
    background: #001736 !important;
}

.programs-v2 .programs-hero-v2{
    background: #001225 !important;
}

.news-intel-hero{
	background: #000914 !important;
}

.partners-page .hero{
	background: #001122 !important;
}

.contact-hero{
	background: #011326 !important;
}

.donate-hero{
	background: #061427 !important;
}

.privacy-hero{
	background: #031328 !important;
}

.privacy-hero{
	background: #031328 !important;
}

    .programs-v2 .hero-grid-v2 {
        flex-direction: column;
    }



         .programs-v2 .hero-metrics-v2 {
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 12px !important;
        width: 100% !important;
        justify-content: center;
    }

        .programs-v2 .hero-metrics-v2 li {
        width: calc(50% - 6px);
        box-sizing: border-box;
        justify-content: flex-start;
    }

	.inquiry-flow-list li,
	.response-standards-list li,
	.security-standards-list li {
		font-size: .84rem;
	}



	


	

	.security-shield {
		justify-content: center;
	}

	.security-shield svg {
		width: 64px;
		height: 64px;
	}

	.inquiry-handling-col--security {
		grid-template-columns: 1fr;
		grid-template-areas:
			"title"
			"intro"
			"list"
			"shield";
	}

	.inquiry-handling-col--security .security-shield {
		padding-top: 8px;
		justify-content: flex-start;
	}

	.inquiry-handling-col--security .security-standards-list li span:last-child {
		max-width: none;
	}
}

@media (max-width: 480px) {
	.inquiry-handling-col {
		padding: 14px 14px 15px;
	}

	.inquiry-handling-col > p {
		font-size: .9rem;
	}

	.inquiry-flow-list,
	.response-standards-list,
	.security-standards-list {
		gap: 7px;
	}
}

/* Headquarters strip below inquiry handling */
.hq-strip-section {
	background: #fff;
	padding: 0 0 20px;
}

.hq-strip-card {
	display: grid;
	grid-template-columns: 1.32fr .98fr 1.24fr 1.08fr;
	background: #fff;
	border: 1px solid rgba(13, 35, 64, .08);
	border-radius: 10px;
	overflow: hidden;
}

.hq-strip-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px 16px;
	min-width: 0;
}

.hq-strip-item + .hq-strip-item {
	border-left: 1px solid rgba(13, 35, 64, .1);
}

.hq-strip-icon {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	font-size: 2rem;
	color: #1f3153;
	flex: 0 0 auto;
}

.hq-strip-icon--address {
	color: #cf9326;
	font-size: 2.3rem;
}

.hq-strip-copy {
	min-width: 0;
}

.hq-strip-copy h3 {
	margin: 0 0 3px;
	font-size: 1.12rem;
	line-height: 1.1;
	font-weight: 900;
	color: #132949;
	text-transform: none;
}

.hq-strip-copy p {
	margin: 0;
	font-size: 1.01rem;
	line-height: 1.22;
	font-weight: 600;
	color: rgba(19, 41, 73, .9);
}

@media (max-width: 1100px) {
	.hq-strip-card {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hq-strip-item:nth-child(odd) {
		border-left: 0;
	}

	.hq-strip-item:nth-child(n + 3) {
		border-top: 1px solid rgba(13, 35, 64, .1);
	}
}

@media (max-width: 767px) {
	.hq-strip-card {
		grid-template-columns: 1fr;
	}

	.hq-strip-item,
	.hq-strip-item + .hq-strip-item {
		border-left: 0;
		border-top: 1px solid rgba(13, 35, 64, .1);
	}

	.hq-strip-item:first-child {
		border-top: 0;
	}

	.hq-strip-item {
		padding: 10px 12px;
		gap: 10px;
	}

	.hq-strip-icon {
		font-size: 1.55rem;
		width: 36px;
		height: 36px;
	}

	.hq-strip-icon--address {
		font-size: 1.95rem;
	}

	.hq-strip-copy h3 {
		font-size: 1rem;
	}

	.hq-strip-copy p {
		font-size: .95rem;
	}
}

.about-lite-card .map {
	height: auto;
	max-height: 214px;
	object-fit: contain;
	padding: 8px;
}

.about-note {
	margin-top: 14px;
	padding: 10px 12px;
	background: #f5ead2;
	border: 1px solid #ead9b4;
	border-radius: 8px;
	color: #614720;
	font-size: .9rem;
	font-weight: 700;
}

.about-location {
	margin-top: 12px;
	padding: 10px 12px;
	border: 1px solid rgba(10, 30, 58, .14);
	border-radius: 8px;
	font-size: .9rem;
	font-weight: 700;
	color: #1e4468;
	background: #f8fafd;
}

.about-location i {
	margin-right: 8px;
	color: #103257;
}

.about-commitment {
    padding: 20px 0;
    background: #f7f7f7;
}

.about-commitment-inner {	
	display: grid;
	grid-template-columns: 1.25fr 1.5fr .9fr;
	gap: 18px;
	align-items: center;	
}

.about-commitment-copy h3 {
	margin: 0 0 8px;
	
	font-size: 1.36rem;
	text-transform: uppercase;
	color: #0f2d50;
}

.about-commitment-copy p {
	margin: 0;
	font-size: .94rem;
	line-height: 1.55;
	color: rgba(15, 42, 72, .85);
}

.about-commitment-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    border-left: 1px solid #d1d2d3;
}

.about-commitment-icons div {
	padding: 6px 4px;
	text-align: center;
}

.about-commitment-icons i {
	color: #d09a35;
	font-size: 1.35rem;
	margin-bottom: 7px;
}

.about-commitment-icons p {
	margin: 0;
	font-size: .82rem;
	line-height: 1.3;
	font-weight: 700;
	color: #2f4e6d;
}

.about-commitment-aside {
	padding: 15px;
	border-radius: 10px;
	background: linear-gradient(180deg, #0a2e56 0%, #0a2444 100%);
	color: #dbe7f5;
	font-size: .9rem;
	line-height: 1.45;
	font-weight: 700;
}

@media (max-width: 1200px) {
	.about-hero-inner,
	.about-grid-two,
	.about-vmv-grid,
	.about-grid-three,
	.about-commitment-inner {
		grid-template-columns: 1fr;
	}

	.about-hero-copy {
		padding: 30px 0;
	}

	.about-hero-points {
		grid-template-columns: 1fr;
		max-width: 100%;
	}

	.about-hero-art {
		min-height: 320px;
	}

	.model-steps,
	.about-impact-grid,
	.about-commitment-icons {
		grid-template-columns: repeat(2, 1fr);
	}

	.model-step {
		clip-path: none;
		margin-left: 0;
		min-height: auto;
	}

	.model-step.gold,
	.model-step:first-child {
		clip-path: none;
	}

	.about-vmv-grid article {
		border-left: 0;
		padding: 0;
	}
}

@media (max-width: 767px) {

	.impact-band h3 ,.impact-band .stats p{
    text-align: center;
}
	.about-hero-copy h1 {
		font-size: clamp(1.8rem, 8vw, 2.55rem);
	}

	.about-card,
	.about-impact-panel,
	.about-lite-card,
	.about-commitment-inner {
		padding: 16px;
	}

	.model-steps,
	.about-impact-grid,
	.about-commitment-icons {
		grid-template-columns: 1fr;
	}

	.impact-item {
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, .14);
		flex-direction: column;
        text-align: center;
	}

	.about-vmv-grid article {
    margin-bottom: 20px;
}

.about-commitment-copy {
    text-align: center;
}

	.impact-item:last-child {
		border-bottom: 0;
	}

	.about-vmv-grid ul {
		grid-template-columns: 1fr;
	}
}


@media screen and (min-width:768px){
	 .mb-hide{
		display: none !important;	
}



}

@media screen and (max-width: 576px){
	.cta-actions {
    flex-direction: column;
    width: 100%;
}



}

@media screen and (min-width: 992px){
	.about-card.about-problem-card {
    border-right: 1px solid #e1e4e7;
    margin-right: 20px;
}
}

/* Governance list with icons (Used in About page) */
.about-list.about-list-icons {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
}
.about-list.about-list-icons li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding-left: 0;
    margin-bottom: 0;
}
.about-list.about-list-icons .li-icon {
	width: 46px;
	height: 46px;
	border-radius: 8px;
	display: grid;
	place-items: center;
	background: rgba(255,255,255,.04);
	color: var(--gold-2);
	flex: 0 0 46px;
	border: 1px solid rgba(255,255,255,.06);
}
.about-list.about-list-icons strong { display: block; font-weight: 700; }
.about-list.about-list-icons p { margin: 4px 0 0;  font-size: .95rem; }
.about-card.about-problem-card i {
    color: #fff;
}

.about-note-icon i {
    font-size: 30px;
}
.about-note {
	margin-top: 12px;
	background: rgba(255,255,255,.04);
	padding: 12px 14px;
	border-radius: 8px;
	display: flex;
	gap: 12px;
	align-items: center;
	font-size:13px;	
}
.about-note-icon {
	width: 44px;
	height: 44px;
	border-radius: 8px;
	display: grid;
	place-items: center;
	background: rgba(242,193,92,.12);
	color: var(--gold-2);
	flex: 0 0 44px;
}

@media (max-width: 767px) {
	.about-list.about-list-icons { gap: 10px; }
	.about-list.about-list-icons .li-icon { width: 40px; height: 40px; }

	.cls-mob-img {
    padding-bottom: 30px;
}
.cls-mob-img img{
	border-radius: 30px;
}
}

/* Impact page clone */
.impact-clone-page {
	background: #fff;	
}

.impact-clone-wrap {
	max-width: 1240px;
}

.impact-clone-hero {
	position: relative;
	background: url('../img/our-impact-bg.jpg') center top / cover no-repeat;	
}

.impact-clone-metric div {
    text-align: left;
}

.impact-clone-copy {
	position: relative;
	z-index: 1;
	color: #fff;
	max-width: 560px;
	padding: 54px 0 62px;
}

.impact-clone-kicker {
	text-transform: uppercase;
	color: #e4af4b;
	font-size: 1.9rem;
	
	font-weight: 700;
	letter-spacing: .05em;
	margin-bottom: 4px;
}

.impact-clone-copy h1 {
	margin: 0;
	text-transform: uppercase;
	font-size: clamp(2.35rem, 5vw, 5rem);
	line-height: .92;
	
	font-weight: 800;
	letter-spacing: -.02em;
	color: #ffffff;
}

.impact-clone-copy h1 span {
	color: #e4af4b;
}

.impact-clone-copy p {
	margin: 0;
	font-size: 1.04rem;
	line-height: 1.48;
	color: rgba(255, 255, 255, .9);
	font-weight: 400;
	max-width: 540px;
}

.impact-clone-line {
	display: block;
	width: 80px;
	height: 4px;
	background: #e4af4b;
	border-radius: 99px;
	margin: 22px 0 18px;
}

.impact-clone-metrics {
	background: linear-gradient(180deg, #041b37 0%, #062347 100%);
	border-top: 2px solid rgba(236, 179, 76, .85);
	position: relative;
	z-index: 2;
}

.impact-clone-metrics-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.impact-clone-metric {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 18px 14px;
	border-right: 1px solid rgba(255, 255, 255, .12);
}

.impact-clone-metric:last-child {
	border-right: 0;
}



.impact-clone-metric .num {
	display: block;
	margin-top: 0;
	font-size: 2.25rem;
	line-height: .95;
	font-weight: 700;
	color: #fff;
	margin-bottom: 8px;
}

.impact-clone-metric p {
	margin: 0;
	color: rgba(255, 255, 255, .84);
	font-size: 1.02rem;
	line-height: 1.35;
	font-weight: 500;
}

.impact-clone-section {
    padding: 38px 0;
    background: #fff;
}

.impact-clone-title {
	margin: 0;
	text-align: center;
	text-transform: uppercase;
	
	font-size: 2.25rem;
	color: #102949;
	letter-spacing: -.01em;
}

.impact-clone-title::before,
.impact-clone-title::after {
	content: '';
	display: inline-block;
	width: 115px;
	height: 2px;
	background: rgba(202, 157, 66, .44);
	vertical-align: middle;
	margin: 0 16px;
}

.impact-clone-pillar-grid {
	margin-top: 30px;
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
}

.impact-clone-pillar-icon i {
    font-size: 30px;
}

.impact-clone-pillar {
	padding: 22px 14px;
	text-align: center;
	border-right: 1px solid #e3e8ee;
}

.impact-clone-pillar:last-child {
	border-right: 0;
}

.impact-clone-pillar-icon {
	width: 76px;
	height: 76px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	margin: 0 auto 12px;
	color: #fff;
	font-size: 3rem;
	box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .2);
}

.impact-clone-pillar-icon.navy { background: #082a53; }
.impact-clone-pillar-icon.gold { background: #d5a238; }
.impact-clone-pillar-icon.green { background: #4f7d3d; }
.impact-clone-pillar-icon.rust { background: #c56534; }
.impact-clone-pillar-icon.amber { background: #d39a2c; }

.impact-clone-pillar-num {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #0f2f57;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 11px;
    line-height: 30px;
}

.impact-clone-pillar h3 {
	margin: 0 0 8px;
	
	font-size: 1.13rem;
	line-height: 1.3;
	color: #112e50;
}

.impact-clone-pillar p {
	margin: 0;
	font-size: .95rem;
	line-height: 1.5;
	color: #536983;
}

.impact-clone-subtitle {
	max-width: 980px;
	margin: 14px auto 24px;
	text-align: center;
	font-size: 1.15rem;
	color: #4f647d;
	line-height: 1.55;
}

.impact-clone-systems-grid {
	display: grid;
	grid-template-columns: 1fr 1.25fr;
	gap: 16px;
}

.impact-clone-card {
	background: #f9f9f9;
	border: 1px solid #e0e6ef;
	border-radius: 12px;
	padding: 20px;	
}



.impact-clone-phases i {
    font-size: 25px !important;
}

.impact-clone-card h3 {
    text-transform: uppercase;
    font-size: 20px;
    color: #112d4f;
    letter-spacing: .02em;
    font-weight: 900;
    margin-bottom: 30px;
    margin-top: 10px;
}

.impact-clone-layers {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 12px;
}

.impact-clone-layers li {
	display: flex;
	gap: 30px;
	align-items: flex-start;
	padding: 20px 0;
	border-bottom: 1px dashed #dde4ed;
}

.mb-15{
	margin-bottom: 15px !important;
}

.risk-img img {
    width: 52px;
}
.risk-img {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #06264b;
    color: #fff;
    font-size: 2rem;
    flex: 0 0 auto;
}

.impact-clone-risk {
    display: flex;
    gap: 20px;
    align-items: center;
}

.impact-clone-layers li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.impact-clone-layers span {
	width: 82px;
	height: 82px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #06264b;
	color: #fff;
	font-size: 2rem;
	flex: 0 0 auto;
}

.impact-clone-layers strong {
	display: block;
	
	font-size: 1.04rem;
	color: #112d4f;
	margin-bottom: 4px;
}

.impact-clone-layers p {
	margin: 0;
	font-size: .95rem;
	line-height: 1.44;
	color: #526882;
}

.impact-clone-stack {
	display: grid;
	gap: 16px;
}

.impact-clone-phases {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.impact-clone-phases div {
	text-align: center;
	position: relative;
	padding: 8px 8px 2px;
}

.impact-clone-phases div i {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	margin: 0 auto 7px;
	color: #fff;
	font-size: 2rem;
	background: #062a51;
}

.impact-clone-phases div:nth-child(2) i {
	background: #4f7d3d;
}

.impact-clone-phases div:nth-child(3) i {
	background: #cb6a35;
}

.impact-clone-phases div strong {
	display: block;
	
	font-size: 1.05rem;
	color: #123154;
	margin-bottom: 4px;
}

.impact-clone-phases div p {
	margin: 0;
	font-size: .9rem;
	color: #546b84;
	line-height: 1.35;
}

.impact-clone-bullets {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 9px 14px;
}

.impact-clone-bullets li {
	position: relative;
	padding-left: 18px;
	color: #4f657d;
	font-size: .96rem;
	line-height: 1.35;
}

.impact-clone-bullets li::before {
	content: '\f05d';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	top: .05em;
	color: #d29c33;
	font-size: .9rem;
}

.impact-clone-card p {
	margin: 0;
	font-size: .96rem;
	line-height: 1.53;
	color: #4f657d;
}

.impact-clone-risk {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.risk-img {
	flex: 0 0 82px;
	width: 82px;
	height: 82px;
	border-radius: 50%;
	background: #0a2a53;
	display: grid;
	place-items: center;
	box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .12);
}

.risk-img img {
	width: 38px;
	height: 38px;
	object-fit: contain;
	margin: 0;
}

.risk-content {
	flex: 1;
	min-width: 0;
}

.impact-clone-partner {
	padding: 0 0 20px;
}


.impact-clone-partner-copy {
    background: url(../img/impact-partner-bg.jpg);
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
	    border-radius: 10px;
}

.impact-clone-partner-copy h3 {
	margin: 0 0 10px;
	
	text-transform: uppercase;
	font-size: 2rem;
	letter-spacing: -.01em;
}

.impact-clone-partner-copy p {
	margin: 0;
	color: rgba(255, 255, 255, .86);
	font-size: 1rem;
	line-height: 1.5;
	max-width: 380px;
}

.impact-clone-cta {
	margin-top: 18px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 11px 17px;
	background: linear-gradient(180deg, #e2ad4d 0%, #cf922f 100%);
	border-radius: 8px;
	
	font-size: .94rem;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	width: fit-content;
}




@media (max-width: 1300px) {
	.impact-clone-metric .num {
		font-size: 1.9rem;
	}

	.impact-clone-metric p {
		font-size: .89rem;
	}

	.impact-clone-pillar h3 {
		font-size: .98rem;
	}
}

@media (max-width: 1100px) {
	.impact-clone-metrics-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.impact-clone-metric {
		border-bottom: 1px solid rgba(255, 255, 255, .12);
	}

	.impact-clone-metric:nth-child(3n) {
		border-right: 0;
	}

	.impact-clone-metric:nth-last-child(-n + 2) {
		border-bottom: 0;
	}

	.impact-clone-pillar-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.impact-clone-pillar:nth-child(3n) {
		border-right: 0;
	}

	.impact-clone-pillar:nth-child(-n + 3) {
		border-bottom: 1px solid #e3e8ee;
	}

	.impact-clone-systems-grid {
		grid-template-columns: 1fr;
	}

	
}

@media (max-width: 767px) {
	

	.impact-clone-copy {
		padding: 34px 0 36px;
	}

	.impact-clone-kicker {
		font-size: .95rem;
	}

	.impact-clone-copy h1 {
		font-size: clamp(1.95rem, 9.4vw, 2.9rem);
	}

	.impact-clone-copy p {
		font-size: .95rem;
	}

	.impact-clone-metrics-grid {
		grid-template-columns: 1fr;
	}

	.impact-clone-metric,
	.impact-clone-metric:last-child {
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, .12);
	}

	.impact-clone-metric:last-child {
		border-bottom: 0;
	}

	.impact-clone-title {
		font-size: 1.55rem;
	}

	.impact-clone-title::before,
	.impact-clone-title::after {
		display: none;
	}

	.impact-clone-pillar-grid {
		grid-template-columns: 1fr;
	}

	.impact-clone-pillar,
	.impact-clone-pillar:nth-child(3n) {
		border-right: 0;
		border-bottom: 1px solid #e3e8ee;
	}

	.impact-clone-pillar:last-child {
		border-bottom: 0;
	}

	.impact-clone-subtitle {
		font-size: .96rem;
	}

	.impact-clone-card h3 {
		font-size: .98rem;
		text-align: center;
	}

	.impact-clone-phases {
		grid-template-columns: 1fr;
	}

	.impact-clone-risk {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.risk-img {
		margin-bottom: 6px;
	}

	.impact-clone-bullets {
		grid-template-columns: 1fr;
	}

	.impact-clone-partner-copy {
		padding: 18px;
	}

	    .impact-clone-partner-copy {
        padding: 40px;
        position: relative;
		border-radius: 15px;
		text-align: center;
    }

	.impact-clone-layers li {
    flex-direction: column;
    text-align: center;
}

/* Programs page styles (scoped) */
.programs-page .programs-hero {
	background: linear-gradient(180deg, #071b33 0%, #0a2b48 100%);
	color: #fff;
	padding: 40px 0 36px;
}
.programs-hero-inner {
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 24px;
	align-items: center;
}
.programs-hero-copy .eyebrow {
	color: #f2c15c;
	font-weight: 800;
	letter-spacing: .06em;
	margin-bottom: 6px;
}
.programs-hero-copy h1 {
	
	font-size: 2.6rem;
	margin: 6px 0 12px;
}
.programs-hero-copy h1 span { color: #f2c15c; }
.programs-hero-copy p { max-width: 640px; color: rgba(255,255,255,.92); }
.programs-hero-visual img { width: 100%; height: auto; display:block; }

.programs-band { padding: 12px 0; }
.programs-keyline { background:#071b33; color:#fff; padding:14px; border-radius:6px; text-align:center; border: 1px solid rgba(255,255,255,.04); }

.programs-systems .systems-grid { display:grid; grid-template-columns: 1fr 360px; gap: 18px; align-items:start; margin-top:18px; }
.programs-systems .card { background:#fff; padding:22px; border-radius:10px; border:1px solid #e6eef6; }
.programs-systems .systems-left h3 { margin-top:0; color:#16314b; }
.programs-systems .systems-left ul { margin:12px 0 0; padding-left:18px; color:#405b6f; }
.programs-systems .systems-right .systems-copy h4{ margin:0 0 6px; color:#fff; }
.programs-systems .systems-right .systems-copy { padding:20px; background:linear-gradient(180deg,#08263f,#0b3850); color:#fff; border-radius:10px; }

.portfolio-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top:18px; }
.program-card { background:#fff; border:1px solid #e6eef6; padding:16px; border-radius:10px; }
.program-card .card-head { display:flex; gap:12px; align-items:center; }
.card-num { background:#0b2f57; color:#fff; width:38px; height:38px; display:grid; place-items:center; border-radius:50%; font-weight:700; }
.card-desc { color:#4f657d; margin:8px 0; }
.card-points { margin:8px 0 0; padding-left:18px; color:#556b7f; }
.funding { margin-top:10px; font-size:.95rem; color:#1b3a52; }

.engage-grid { display:grid; grid-template-columns: repeat(5,1fr); gap:10px; margin-top:12px; }
.engage-item { background:#0b2f57; color:#fff; padding:14px; border-radius:6px; text-align:center; }

.stats-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap:12px; margin:24px 0; }
.stat { background:#fff; padding:20px; border-radius:8px; text-align:center; border:1px solid #e6eef6; }
.stat strong { display:block; font-size:1.6rem; color:#0b3459; }
.stat span { color:#536b84; }

@media (max-width: 992px) {
	.programs-hero-inner { grid-template-columns: 1fr; }
	.programs-systems .systems-grid { grid-template-columns: 1fr; }
	.portfolio-grid { grid-template-columns: 1fr; }
	.engage-grid { grid-template-columns: repeat(2,1fr); }
	.stats-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 576px) {
	.engage-grid { grid-template-columns: 1fr; }
	.programs-hero-copy h1 { font-size:1.6rem; }
}

.impact-clone-layers span {
    margin: 0 auto;
}

.impact-clone-bullets li::before{
	display: none;
}

.impact-clone-bullets li {
    list-style: disc;
    list-style-position: inside;
}

.impact-clone-section.impact-clone-systems {
    padding-top: 0;
}

.impact-clone-metric img {
    margin: inherit;
}

	.impact-clone-partner-copy:before {
    content: "";
    width: 100%;
    position: absolute;
    height: 100%;
    background: #00182eb0;
    left: 0;
	border-radius: 15px;
}

.impact-clone-partner-copy h3,.impact-clone-partner-copy p,.impact-clone-partner-copy a{
	position: relative;	
}

	.impact-clone-photo-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.impact-clone-photo-grid img,
	.impact-clone-photo-grid img:first-child,
	.impact-clone-photo-grid img:last-child {
		clip-path: none;
		margin-left: 0;
		min-height: 170px;
	}

	.impact-clone-cta {
		width: 100%;
		justify-content: center;
	}
}

/* partners page styles (scoped) */
.partners-page .hero {
    background: url(../img/partner-bg.png);
    padding: 36px 36px 40px;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
 
 
  .partners-page .hero-content { position: relative; z-index: 2; max-width: 58%; }
 .partners-page .hero h1 {
    font-size: 68.3px;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 12px;
}
  .partners-page .hero h1 span {
    color: #d49435;
}
 .partners-page .hero-sub {
    font-size: 20px;
    color: #fff;
    line-height: 1.55;
    margin-bottom: 18px;
    font-weight: 400;
}
.partners-page .hero-callout {
    border-left: 3px solid var(--gold);
    padding-left: 12px;
    color: #fff;
    font-weight: 500;
    line-height: 1.5;
}

.partners-page .where-fits {
		background: #fff;
		padding: 38px 0 34px;
		border-bottom: 1px solid rgba(10, 30, 58, .08);
}

.partners-page .where-fits-grid {
		display: grid;
		grid-template-columns: minmax(320px, .95fr) minmax(560px, 1.35fr);
		gap: 34px;
		align-items: center;
}

.partners-page .where-fits-text {
		max-width: 420px;
}

.partners-page .where-fits-text h2 {
		margin: 0;
		font-size: clamp(2rem, 2.6vw, 3.1rem);
		line-height: 1.08;
		letter-spacing: -.03em;
		color: #10213d;
		font-weight: 800;
}

.partners-page .where-fits-underline {
		width: 40px;
		height: 3px;
		background: #d8a041;
		margin: 16px 0 20px;
		border-radius: 999px;
}

.partners-page .where-fits-text p {
		margin: 0 0 18px;
		color: rgba(16, 33, 61, .88);
		line-height: 1.6;
		font-size: 1.06rem;
}

.partners-page .where-fits-text p strong {
		font-weight: 800;
}

.partners-page .where-fits-diagram {
		display: flex;
		justify-content: center;
		align-items: center;
}

.partners-page .wf-node {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 18px;
		z-index: 2;
}

.partners-page .wf-side {
		width: 150px;
}

.partners-page .wf-icon {
		width: 110px;
		height: 110px;
		border-radius: 50%;
		border: 2px solid rgba(216, 160, 65, .24);
		background: #fff;
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0 2px 12px rgba(7, 27, 51, .04);
}

.partners-page .wf-icon svg {
		width: 42px;
		height: 42px;
}

.partners-page .wf-label {
		margin: 0;
		font-weight: 700;
		text-align: center;
		color: #1b2234;
		text-transform: uppercase;
		letter-spacing: 0;
		line-height: 1.25;
		font-size: .92rem;
}

.partners-page .wf-center-node {
		width: 250px;
		margin: 0 2px;
}

.partners-page .wf-center-ring {
		width: 250px;
		height: 250px;
		border-radius: 50%;
		border: 1px solid rgba(216, 160, 65, .24);
		position: relative;
		display: grid;
		place-items: center;
}

.partners-page .wf-ring-dot {
		position: absolute;
		width: 10px;
		height: 10px;
		border-radius: 50%;
		background: #fff;
		border: 3px solid #d8a041;
}

.partners-page .wf-ring-top { top: -5px; left: 50%; transform: translateX(-50%); }
.partners-page .wf-ring-right { right: -5px; top: 50%; transform: translateY(-50%); }
.partners-page .wf-ring-bottom { bottom: -5px; left: 50%; transform: translateX(-50%); }
.partners-page .wf-ring-left { left: -5px; top: 50%; transform: translateY(-50%); }

.partners-page .wf-center-circle {
		width: 196px;
		height: 196px;
		border-radius: 50%;
		background: radial-gradient(circle at 50% 30%, #112241 0%, #091b35 62%, #07182d 100%);
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		color: #fff;
		text-align: center;
		box-shadow: 0 10px 24px rgba(7, 27, 51, .18);
		overflow: hidden;
}

.partners-page .wf-center-circle img {
		width: 118px;
		max-width: 118px;
		margin-bottom: 12px;
}

.partners-page .wf-center-copy {
		font-size: 1rem;
		line-height: 1.35;
		font-weight: 700;
		color: rgba(255, 255, 255, .9);
}

.partners-page .wf-arrow {
		width: 62px;
		height: 0;
		border-top: 2px dotted rgba(83, 92, 108, .9);
		position: relative;
		flex-shrink: 0;
		margin: 0 2px 66px;
}

.partners-page .wf-arrow::after {
		content: '';
		position: absolute;
		right: -1px;
		top: -5px;
		border-left: 7px solid rgba(83, 92, 108, .9);
		border-top: 5px solid transparent;
		border-bottom: 5px solid transparent;
}

.partners-page .wf-arrow.left::after {
		right: auto;
		left: -1px;
		border-left: none;
		border-right: 7px solid rgba(83, 92, 108, .9);
}

@media (max-width: 991px) {
	.partners-page .where-fits-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.icons-row {
    flex-wrap: wrap;
}

.tier-badge{
	width:auto  !important;
	height: auto !important;
}

	.where-fits-underline {
    margin: 15px auto !important;
}

	.partners-page .where-fits-text {
		max-width: 100%;
		text-align: center;
	}

	.partners-page .where-fits-diagram {
		justify-content: flex-start;
		overflow-x: auto;
		padding-bottom: 8px;
		flex-direction: column;
		        gap: 20px;
	}

	.partners-page .wf-arrow {
		display: none;
	}
}

@media (max-width: 767px) {
	.partners-page .where-fits {
		padding: 28px 0;
	}

	.partners-page .where-fits-text h2 {
		font-size: 2rem;
	}

	.partners-page .wf-side {
		width: 130px;
	}

	.partners-page .wf-icon {
		width: 88px;
		height: 88px;
	}

	.partners-page .wf-center-node {
		width: 220px;
	}

	.partners-page .wf-center-ring {
		width: 220px;
		height: 220px;
	}

	.partners-page .wf-center-circle {
		width: 170px;
		height: 170px;
	}

	.partners-page .wf-center-circle img {
		width: 104px;
	}

	
}

.partners-page .aligned {
	background: #fff;
	padding: 36px 0 28px;
	border-bottom: 1px solid rgba(10, 30, 58, .08);
}

.partners-page .aligned .section-title {
	margin: 0 0 28px;
	text-align: center;
	font-size: clamp(1.8rem, 2.8vw, 2.4rem);
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: -.02em;
	color: #10213d;
	position: relative;
}

.partners-page .aligned .section-title::after {
	content: '';
	display: block;
	width: 34px;
	height: 3px;
	border-radius: 999px;
	background: #d8a041;
	margin: 12px auto 0;
}

.partners-page .aligned .institutions-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	align-items: start;
	background: #fff;
	position: relative;
}

.partners-page .aligned .inst-col {
	padding: 0 26px 8px;
	border-left: 1px solid rgba(10, 30, 58, .12);
	min-height: 230px;
}

.partners-page .aligned .inst-col:first-child {
	border-left: 0;
}

.partners-page .aligned .inst-col h3 {
	margin: 0 0 24px;
	font-size: 1.02rem;
	line-height: 1.2;
	font-weight: 700;
	color: #10213d;
	text-align: left;
}

.partners-page .aligned .inst-item,
.partners-page .aligned .phil-item {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 18px;
}

.partners-page .aligned .inst-logo {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	flex: 0 0 44px;
	display: grid;
	place-items: center;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .04em;
	color: #fff;	
}

.partners-page .aligned .inst-name {
	font-size: .98rem;
	line-height: 1.2;
	color: #22314c;
	font-weight: 500;
}

.partners-page .aligned .phil-item {
	align-items: center;
	gap: 14px;
	margin-bottom: 22px;
}


.partners-page .aligned .phil-text {
	font-size: 1rem;
	line-height: 1.1;
	font-weight: 700;
	color: #101828;
	letter-spacing: .01em;
}

.partners-page .aligned .phil-sub {
	font-size: .92rem;
	line-height: 1.1;
	color: #101828;
	letter-spacing: .02em;
}

.partners-page .aligned .inst-note {
    margin: 40px auto 0;
    text-align: center;
    font-size: 18px;
    line-height: 1.45;
    color: rgba(16, 33, 61, .82);
    font-weight: 600;
}



@media (max-width: 991px) {
	.partners-page .aligned .institutions-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.partners-page .aligned .inst-col {
		min-height: 0;
	}

	
}

@media (max-width: 767px) {
	.partners-page .aligned {
		padding: 28px 0 22px;
	}

	.partners-page .aligned .institutions-grid {
		gap: 25px;
	}

	.partners-page .aligned .inst-col {
		padding: 0 0 22px;
		border-left: 0;
		border: 0;
	}

	.partners-page .aligned .inst-col:last-child {
		border-bottom: 0;
		padding-bottom: 0;
	}

	.partners-page .aligned .inst-col h3 {
		text-align: center;
	}
}

/* accountability section */
.partners-page .accountability {
	background: #fff;
	padding: 44px 0 36px;
	text-align: center;
}
.partners-page .accountability .section-title {
	margin: 0 0 8px;
	font-size: clamp(1.6rem, 2.6vw, 2rem);
	line-height: 1.1;
	font-weight: 800;
	color: #10213d;
}
.partners-page .accountability .section-divider {
	width: 46px;
	height: 3px;
	background: #d8a041;
	margin: 12px auto 26px;
	border-radius: 999px;
}
.partners-page .accountability .three-cols {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 18px;
	align-items: start;
}
.partners-page .accountability .acct-card {
	background: #fff;
	border: 1px solid rgba(216, 160, 65, .12);
	border-radius: 10px;
	padding: 22px 20px;
	text-align: left;
	box-shadow: 0 8px 20px rgba(7, 27, 51, .04);
	min-height: 180px;
}
.partners-page .accountability .acct-card-header {
	display: flex;
	gap: 16px;
	margin-bottom: 10px;
}
.partners-page .accountability .acct-icon {
	width: 64px;
	height: 64px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	color: #d49435;
	flex: 0 0 64px;
}
.partners-page .accountability .acct-icon svg {
	width: 34px;
	height: 34px;
	stroke: #d49435;
	fill: none;
}
.partners-page .accountability .acct-num {
    font-weight: 800;
    color: #10213d;
    font-size: 16px;
    margin-bottom: 8px;
}
.partners-page .accountability .acct-title {
	font-weight: 700;
	color: #10213d;
	font-size: .98rem;
	margin-top: 4px;
}
.partners-page .accountability .three-cols p {
	margin: 0;
	color: rgba(16, 33, 61, .8);
	line-height: 1.6;
	font-size: .98rem;
}

@media (max-width: 1100px) {
	.partners-page .accountability .three-cols {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.partners-page .accountability {
		padding: 28px 0 22px;
	}
	.partners-page .accountability .three-cols {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.partners-page .accountability .acct-card {
		padding: 18px;
	}
}

/* How We Work with Partners */
.partners-page .how-we-work {
	background: #fff;
	padding: 44px 0 48px;
	text-align: center;
}
.partners-page .how-we-work .section-title {
	margin: 0 0 8px;
	font-size: clamp(1.6rem, 2.6vw, 2rem);
	line-height: 1.1;
	font-weight: 800;
	color: #10213d;
}
.partners-page .how-we-work .section-title::after {
	content: '';
	display: block;
	width: 34px;
	height: 3px;
	border-radius: 999px;
	background: #d8a041;
	margin: 12px auto 0;
}
.partners-page .how-we-work .hww-grid {
	max-width: 1180px;
	margin: 26px auto 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	align-items: start;
	padding: 0 18px;
}
.partners-page .how-we-work .hww-card {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	padding: 20px 26px;
	text-align: left;
	min-height: 130px;
}
.partners-page .how-we-work .hww-card:nth-child(n+2) {
	border-left: 1px solid rgba(10, 30, 58, .08);
	padding-left: 34px;
}
.partners-page .how-we-work .hww-icon {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	display: grid;
	place-items: center;	
	color: #d49435;
	flex: 0 0 56px;
	
}
.partners-page .how-we-work .hww-icon svg {
	width: 58px;
	height: 58px;
	stroke: #d49435;
	fill: none;
}
.partners-page .how-we-work .hww-title {
	font-weight: 800;
	color: #10213d;
	font-size: 1rem;
	margin-bottom: 8px;
}
.partners-page .how-we-work .hww-card p {
	margin: 0;
	color: rgba(16, 33, 61, .8);
	line-height: 1.6;
	font-size: .98rem;
}

@media (max-width: 1100px) {
	.partners-page .how-we-work .hww-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.partners-page .how-we-work .hww-card:nth-child(n+2) {
		border-left: 0;
		padding-left: 26px;
	}
}

@media (max-width: 767px) {
	.partners-page .how-we-work {
		padding: 28px 0 22px;
	}
	.partners-page .how-we-work .hww-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.partners-page .how-we-work .hww-card {
		padding: 16px 18px;
	}

	.programs-v2 .reason-row-v2 {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
}

/* Systems model / flow diagram */
.partners-page .systems-model {
	background: radial-gradient(circle at 50% 20%, #0b2140 0%, #061227 55%, #031020 100%);
	color: #fff;
	padding: 32px 0 30px;
}
.partners-page .systems-model .section-title {
	color: #fff;
	margin: 0 0 10px;
	font-size: clamp(1.4rem, 2.6vw, 1.9rem);
	font-weight: 800;
}
.partners-page .systems-model .flow-diagram {
	display: flex;
	gap: 18px;
	justify-content: center;
	align-items: center;
	margin: 18px auto 8px;
	max-width: 1100px;
	padding: 12px 18px 18px;
}
.partners-page .systems-model .flow-node {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}
.partners-page .systems-model .flow-circle {
	width: 84px;
	height: 84px;
	border-radius: 50%;
	border: 2px solid rgba(255,255,255,0.12);
	display: grid;
	place-items: center;
	background: rgba(255,255,255,0.02);
}
.partners-page .systems-model .flow-circle svg { width: 36px; height: 36px; stroke: rgba(255,255,255,0.9); }
.partners-page .systems-model .flow-circle-apsr {
	width: 260px;
	height: 84px;
	border-radius: 42px;
	border: 2px dashed rgba(200,168,75,0.45);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	padding: 6px 14px;
	background: transparent;
}
.partners-page .systems-model .flow-apsr-text { font-weight: 900; color: #fff; font-size: 1.4rem; letter-spacing: .04em; }
.partners-page .systems-model .flow-apsr-sub { font-weight: 700; color: rgba(255,255,255,0.85); font-size: .85rem; }
.partners-page .systems-model .flow-apsr-sub.small{ font-size: .78rem; font-weight:600; }
.partners-page .systems-model .flow-label { font-size: .78rem; color: rgba(255,255,255,0.65); text-align: center; line-height: 1.05; }
.partners-page .systems-model .flow-label-gold { color: #d8a041; }
.partners-page .systems-model .flow-arrow-svg { width: 120px; height: 36px; flex: 0 0 120px; }
.partners-page .systems-model .systems-desc {
    max-width: 780px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 991px) {
	.partners-page .systems-model .flow-diagram { flex-wrap: wrap; gap: 20px; }
	.partners-page .systems-model .flow-arrow-svg { display: none; }
	.partners-page .systems-model .flow-circle-apsr { width: 220px; }
}

@media (max-width: 767px) {
	.partners-page .systems-model { padding: 22px 0 18px; }
	.partners-page .systems-model .flow-circle { width: 68px; height: 68px; }
	.partners-page .systems-model .flow-apsr-text { font-size: 1.1rem; }
}

/* Multi-country section */
.partners-page .multi-country {
	background: #fff;
	position: relative;
	overflow: hidden;
	border-top: 1px solid rgba(10, 30, 58, .06);
	border-bottom: 1px solid rgba(10, 30, 58, .06);
}
.partners-page .multi-country::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.92) 44%, rgba(255,255,255,.78) 72%, rgba(255,255,255,.62) 100%);
	pointer-events: none;
}
.partners-page .multi-country-inner {
	position: relative;
	z-index: 1;
	min-height: 132px;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) minmax(280px, .95fr);
	gap: 22px;
	align-items: center;
	padding: 16px 0 14px;
}
.partners-page .mc-icon {
	width: 128px;
	height: 128px;
	flex: 0 0 128px;
	display: grid;
	place-items: center;
}
.partners-page .mc-icon svg {
	width: 126px;
	height: 126px;
	stroke: #c8a84b;
	fill: none;
	stroke-width: 1.35;
}
.partners-page .mc-content {
	position: relative;
	padding-top: 2px;
}
.partners-page .mc-content h2 {
	margin: 0;
	color: #10213d;
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	line-height: 1.08;
	font-weight: 800;
}
.partners-page .mc-divider {
	width: 32px;
	height: 3px;
	border-radius: 999px;
	background: #d8a041;
	margin: 12px 0 10px;
}
.partners-page .mc-content p {
	margin: 0;
	max-width: 820px;
	color: rgba(16, 33, 61, .84);
	font-size: 1.03rem;
	line-height: 1.55;
	font-weight: 500;
}

.partners-page .mc-map img {
	max-width: 100%;
	width: 100%;	
}

@media (max-width: 991px) {
	.partners-page .multi-country-inner {
		grid-template-columns: auto minmax(0, 1fr);
	}
	.partners-page .mc-map {
		grid-column: 1 / -1;
		justify-content: center;
		min-height: 80px;
		opacity: .16;
		margin-top: -8px;
	}
}

@media (max-width: 767px) {
	.partners-page .hero-content{
		max-width: 100%;
	}

	.partners-page .hero h1 {
    font-size: 50px;
}

.partners-page .hero {
    padding-left: 0;
    padding-right: 0;
}
	    .footer-cta {
        text-align: center;
        padding: 30px 0;
    }
	    .partners-page .multi-country-inner {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 18px 0 16px;
        text-align: center;
        place-items: center;
    }
	.partners-page .mc-divider {
    margin: 15px auto;
}
	.partners-page .mc-icon {
		width: 88px;
		height: 88px;
	}
	.partners-page .mc-icon svg {
		width: 88px;
		height: 88px;
	}
	.partners-page .mc-map {
		display: none;
	}
}

/* Programs v2 page */
.programs-v2 {
	background: #fff;
	color: #0c1e33;
}

.programs-v2 .programs-hero-v2 {
	background: url(../img/program-bg.png) no-repeat center center/cover;
	color: #fff;
	padding: 36px 0 26px;
	border-bottom: 1px solid rgba(216, 160, 65, .45);
}

.programs-v2 .hero-grid-v2 {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.programs-v2 .hero-copy-v2 .eyebrow {
	font-size: .95rem;
	font-weight: 800;
	color: #d8a041;
	letter-spacing: .04em;
	margin-bottom: 8px;
}

.programs-v2 .hero-copy-v2 h1 {
	font-size: clamp(2rem, 3.2vw, 3.45rem);
	line-height: .98;
	margin: 0 0 14px;
	font-weight: 900;
	letter-spacing: -.02em;
}

.programs-v2 .hero-copy-v2 h1 span {
	display: block;
	color: #d8a041;
}

.programs-v2 .hero-copy-v2 p {
	margin: 0 0 11px;
	max-width: 720px;
	color: rgba(255, 255, 255, .9);
	font-size: 1rem;
	line-height: 1.45;
}

.programs-v2 .hero-map-v2 {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}


.programs-v2 .hero-metrics-v2 {
    list-style: none;
    display: flex;
    gap: 22px;
    flex-direction: column;
    padding-left: 0;
    width: 210px;
}

.cls-band-content p {
    font-size: 18px;
}

.cls-band-content {
    gap: 20px;
    margin: 10px 0;
}

.programs-v2 .hero-metrics-v2 li img {
    width: 40px;
}

.programs-v2 .hero-metrics-v2 li {
	display: flex;
	gap: 20px;
	align-items: center;
	color: #d8a041;
}

.programs-v2 .hero-metrics-v2 i {
	font-size: 30px;
}

.programs-v2 .hero-metrics-v2 strong {
	display: block;
	font-size: 2rem;
	line-height: .95;
	font-weight: 900;
	color: #d8a041;
}

.programs-v2 .hero-metrics-v2 span {
	font-size: .9rem;
	color: rgba(255, 255, 255, .9);
	font-weight: 600;
}

.programs-v2 .programs-band-v2 {
	padding: 0 0 36px;
	margin-top: -1px;
}

.programs-v2 .band-copy-v2 {
	background: #0a2342;
	border: 1px solid rgba(216, 160, 65, .5);
	border-radius: 8px;
	color: #fff;
	padding: 12px 16px;
	text-align: center;
	font-size: 1.28rem;
	font-weight: 700;
}

.programs-v2 .band-copy-v2 i {
	color: #d8a041;
	margin-right: 8px;
}

.programs-v2 .band-copy-v2 span {
	color: rgb(209 145 50);
}

.cls-band-text {
    font-size: 16px;
    font-weight: 400;
}

article.systems-approach-v2 {
    width: 30%;
}

article.systems-center-v2 {
    width: 40%;
}

.programs-v2 .systems-layout-v2 {
	padding: 0 0 16px;
}

.programs-v2 .systems-grid-v2 {
    display: flex;
    gap: 12px;
}

.programs-v2 .systems-card-v2,
.programs-v2 .systems-center-v2,
.programs-v2 .systems-approach-v2 {
	background: #faf9fb;
	border: 1px solid #dbe4ef;
	border-radius: 10px;
	padding: 30px;
}

.cls-engage-item div {
    border: 0 !important;
    background: transparent !important;
}
.cls-engage-item {
    display: flex;
}

.cls-engage-icon {
    width: 150px;
}

.programs-v2 .systems-card-v2 h3 {
	font-size: 1.18rem;
	font-weight: 900;
	margin: 0 0 8px;
	line-height: 1.12;
}

.programs-v2 .systems-card-v2 p,
.programs-v2 .systems-center-v2 p {
	font-size: .95rem;
	color: #3d5368;
	margin: 0 0 8px;
}

.programs-v2 .systems-card-v2 ul,
.programs-v2 .portfolio-card-v2 ul,
.programs-v2 .portfolio-cta-v2 ul,
.programs-v2 .why-right-v2 ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.programs-v2 .systems-card-v2 li,
.programs-v2 .portfolio-card-v2 li,
.programs-v2 .portfolio-cta-v2 li,
.programs-v2 .why-right-v2 li {
	position: relative;
	padding-left: 23px;
	margin-bottom: 6px;
	font-size: .88rem;
	color: #42586f;
}

.programs-v2 .systems-card-v2 li::before,
.programs-v2 .portfolio-card-v2 li::before,
.programs-v2 .portfolio-cta-v2 li::before,
.programs-v2 .why-right-v2 li::before {
	content: '\f05d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: .05em;
    color: #d29c33;
    font-size: .9rem;
}

.programs-v2 .pillar-row-v2 {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 14px;
	margin-top: 10px;
	flex-wrap: nowrap;
}

.programs-v2 .pillar-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-width: 0;
	flex: 1 1 0;
	text-align: center;
}

.programs-v2 .pillar-icon {
	width: 106px;
	height: 82px;
	display: grid;
	place-items: center;
	color: #c8922f;
}

.programs-v2 .pillar-icon img {
	width: 72px;	
}

.programs-v2 .pillar-row-v2 span {
	display: block;
	font-size: .9rem;
	font-weight: 600;
	color: #2f3b4b;
	line-height: 1.15;
	max-width: 112px;
}

.programs-v2 .pillar-arrow {
	flex: 0 0 auto;
	align-self: flex-start;
	padding-top: 28px;
	font-size: 1.45rem;
	line-height: 1;
	color: #97a3b2;
	font-weight: 600;
}

.programs-v2 .systems-approach-v2 {
	background: linear-gradient(180deg, #0d2847 0%, #061b33 100%);
	color: #fff;
}

.programs-v2 .systems-approach-v2 h4 {
	margin: 0 0 10px;
	color: #d8a041;
	font-size: 1.45rem;
	font-weight: 900;
}

.programs-v2 .systems-approach-v2 p {
	margin: 0 0 10px;
	line-height: 1.45;
	color: rgba(255, 255, 255, .92);
	font-size: 1rem;
}

.programs-v2 .portfolio-v2 {
	padding: 8px 0 16px;
}

.programs-v2 .portfolio-v2 h2,
.programs-v2 .engage-v2 h2,
.programs-v2 .why-left-v2 h2,
.programs-v2 .impact-left-v2 h2 {
	text-align: center;
	font-size: clamp(1.6rem, 2vw, 2.15rem);
	line-height: 1.1;
	margin: 0;
	font-weight: 900;
	color: #0f2239;
}

.programs-v2 .portfolio-sub {
	text-align: center;
	color: #5a6f84;
	margin: 6px 0 14px;
	font-size: .95rem;
}

.programs-v2 .portfolio-grid-v2 {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.programs-v2 .portfolio-card-v2,
.programs-v2 .portfolio-cta-v2 {
	background: #fff;
	border: 1px solid #dbe4ef;
	border-radius: 10px;
	padding: 12px 12px 10px;
}

.programs-v2 .portfolio-card-v2 h3 {
	margin: 0 0 6px;
	font-size: .98rem;
	line-height: 1.2;
	font-weight: 900;
	color: #122942;
}

.portfolio-number span {
	display: inline-grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: #071f3d;
	color: #fff;
	font-size: .78rem;
	margin-right: 6px;
}

.portfolio-flex {
    display: flex;
    gap: 6px;
}


.portfolio-logo li:before,.cls-cross-cutting li:before{
	display: none;
}

.programs-v2 .portfolio-cta-v2 h4 {
    text-align: center;    
}

.cls-cross-cutting li {
    display: flex;
    align-items: center;
    padding-left: 0 !important;
	gap:8px;
}

.portfolio-logo li {
    padding-left: 0 !important;
}
.portfolio-logo {
    display: flex;
    gap: 5px;
	justify-content: center;
}
.port-list {
    padding: 8px 0 !important;
    border-bottom: 1px solid #dbe4ef;
    margin-bottom: 16px !important;
}

.programs-v2 .portfolio-card-v2 .port-list.icon-list-v2 li {
	padding-left: 0;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 6px;
}

.programs-v2 .portfolio-card-v2 .port-list.icon-list-v2 li::before {
	display: none;
}

.programs-v2 .portfolio-card-v2 .port-list.icon-list-v2 .bullet-icon-v2 {
	color: #d29c33;
	font-size: .48rem;
	line-height: 1;
	margin-top: .42rem;
	flex: 0 0 auto;
}

.programs-v2 .portfolio-card-v2 .port-list.icon-list-v2 li span {
	flex: 1;
}

.programs-v2 .portfolio-card-v2 p {
	margin: 0 0 7px;
	font-size: .8rem;
	color: #647a8f;
	font-weight: 600;
}

.programs-v2 .funding-v2 {
	margin-top: 8px;
	font-size: .82rem;
	font-weight: 800;
	color: #b8801e;
	text-transform: uppercase;
}

.programs-v2 .funding-v2.funding-v2-opportunities {
	text-transform: none;
	color: #123353;
	margin-top: 10px;
}

.programs-v2 .funding-v2-opportunities .funding-title-v2 {
	font-size: .9rem;
	font-weight: 900;
	letter-spacing: .04em;
	color: #c08a2c;
	margin-bottom: 8px;
}

.programs-v2 .funding-v2-opportunities .funding-row-v2 {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin-bottom: 8px;
	line-height: 1.2;
}

.programs-v2 .funding-v2-opportunities .funding-row-v2:last-child {
	margin-bottom: 0;
}

.programs-v2 .funding-v2-opportunities .funding-amount-v2 {
	min-width: 88px;
	font-size: 16px;
	font-weight: 900;
	color: #112f4d;
	line-height: 1;
}

.programs-v2 .funding-v2-opportunities .funding-label-v2 {
	font-size: .88rem;
	font-weight: 600;
	color: #35516d;
}

.programs-v2 .portfolio-cta-v2 {
	background: linear-gradient(180deg, #0f2b4b 0%, #071f39 100%);
	border-color: rgba(216, 160, 65, .35);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}

.programs-v2 .portfolio-cta-v2 h4 {
	margin: 0 0 10px;
	font-size: 1.15rem;
	line-height: 1.15;
	font-weight: 900;
	color: #d8a041;
}

.programs-v2 .portfolio-cta-v2 li {
	color: rgba(255, 255, 255, .9);
	margin-bottom: 8px;
}

.programs-v2 .portfolio-cta-v2 a {
	display: inline-block;
	margin-top: 8px;
	padding: 10px 14px;
	border-radius: 6px;
	background: #d8a041;
	color: #0d223c;
	font-size: .84rem;
	font-weight: 900;
	text-decoration: none;
	text-align: center;
}

.programs-v2 .engage-v2 {
	padding: 30px 0;
	background: linear-gradient(180deg, #09284a 0%, #04192f 100%);
}

.programs-v2 .engage-v2 h2 {
	color: #fff;
	margin-bottom: 20px;
}

.programs-v2 .engage-grid-v2 {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 8px;
}

.programs-v2 .engage-grid-v2 div {
	padding: 12px 10px;
	border: 1px solid rgba(216, 160, 65, .35);
	border-radius: 8px;
	background: rgba(2, 13, 25, .5);
}

.programs-v2 .engage-grid-v2 h3 {
	font-size: .74rem;
	margin: 0 0 6px;
	font-weight: 800;
	color: #d8a041;
	line-height: 1.2;
}

.programs-v2 .engage-grid-v2 p {
	margin: 0;
	font-size: .82rem;
	line-height: 1.35;
	color: rgba(255, 255, 255, .9);
}

.programs-v2 .engage-actions-v2 {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 30px;
}

.programs-v2 .engage-actions-v2 a,
.programs-v2 .impact-cta-v2 a {
	display: inline-block;
	text-decoration: none;
	padding: 10px 22px;
	border-radius: 6px;
	background: #d8a041;
	color: #11263f;
	font-weight: 900;
	font-size: .86rem;
}

.programs-v2 .funding-why-v2 {
	padding: 20px 0 12px;
	background: #fff;
}

.programs-v2 .why-grid-v2 {
	display: grid;
	grid-template-columns: 4.3fr 1.9fr;
	gap: 12px;
	align-items: stretch;
	border-bottom: 1px solid #dbe4ef;
    padding-bottom: 20px;
}

.programs-v2 .why-left-v2,
.programs-v2 .why-right-v2 {
	background: #f9fbfc;
	border: 1px solid #dbe4ef;
	border-radius: 10px;
	padding: 20px;
}

.programs-v2 .reason-row-v2 {
	margin-top: 14px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 8px;
	flex-wrap: nowrap;
}

.programs-v2 .reason-item-v2 {
	flex: 1 1 0;
	min-width: 0;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.programs-v2 .reason-icon-v2 {
	width: 92px;
	height: 92px;
	border: 2px solid rgba(216, 160, 65, .55);
	border-radius: 50%;
	display: grid;
	place-items: center;
	margin-bottom: 8px;
	background: #f9fbfc;
}

.programs-v2 .reason-icon-v2 svg {
	width: 52px;
	height: 52px;
	fill: none;
	stroke: #4a5d78;
	stroke-width: 2.3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.programs-v2 .reason-item-v2 span {
	text-align: center;
	font-size: .79rem;
	line-height: 1.2;
	color: #2f3e56;
	font-weight: 700;
	max-width: 136px;
}

.programs-v2 .reason-arrow-v2 {
	flex: 0 0 auto;
	padding-top: 35px;
	color: #bcc5d1;
	font-size: 1.35rem;
	line-height: 1;
	font-weight: 600;
}

.programs-v2 .why-right-v2 h3 {
	margin: 0 0 10px;
	font-size: 1.25rem;
	text-align: center;
	font-weight: 900;
	color: #102540;
}

.programs-v2 .partners-lists-v2 {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 18px;
}

.programs-v2 .partners-lists-v2 ul {
	margin: 0;
}

.programs-v2 .impact-goal-v2 {
	padding: 4px 0 20px;
}

.programs-v2 .impact-grid-v2 {
	display: grid;
	grid-template-columns: 1.45fr .55fr;
	gap: 12px;
	align-items: stretch;
}

.programs-v2 .impact-left-v2 {
	background: #fff;	
	border-radius: 10px;
	padding: 14px;
}

.programs-v2 .impact-metrics-v2 {
	margin-top: 12px;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 8px;
}

.programs-v2 .impact-metrics-v2 div {
	background: #fbfcfe;
	border: 1px solid #e2ebf6;
	border-radius: 8px;
	text-align: center;
	padding: 15px 20px;
}

.programs-v2 .impact-metrics-v2 strong {
	display: block;
	font-size: 1.85rem;
	font-weight: 900;
	line-height: 1;
	color: #c38724;
	margin-bottom: 4px;
}

.programs-v2 .impact-metrics-v2 span {
	font-size: .82rem;
	color: #475e74;
	font-weight: 700;
}

.programs-v2 .impact-cta-v2 {
	background: linear-gradient(180deg, #0d2848 0%, #061a32 100%);
	border: 1px solid rgba(216, 160, 65, .35);
	border-radius: 10px;
	padding: 16px;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px;
    text-align: center;
}

.programs-v2 .impact-cta-v2 h3 {
	margin: 0 0 10px;
	font-size: 1.35rem;
	font-weight: 900;
	color: #d8a041;
}

.programs-v2 .impact-cta-v2 p {
	margin: 0 0 12px;
	font-size: .95rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, .9);
}

@media (max-width: 1200px) {
	.programs-v2 .portfolio-grid-v2 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.programs-v2 .engage-grid-v2 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}


/* Systems layout responsiveness: 2 columns below 1199px, 1 column below 576px */
@media screen and (min-width: 992px) and (max-width: 1199px) {
	.programs-v2 .systems-grid-v2 {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.why-grid-v2 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}

	.programs-v2 .systems-center-v2 {
		width: auto;
	}

	.programs-v2 .systems-approach-v2 {
		width: 100% !important;
	}
}

@media (max-width: 991px) {
	.programs-v2 .systems-grid-v2 {
		display: grid;
		grid-template-columns: 1fr;
	}

	.systems-approach-v2 {
    width: 100% !important;
}

	.programs-v2 .systems-center-v2 {
	width: 100% !important;
}
}

@media (max-width: 576px) {
	.programs-v2 .systems-grid-v2 {
		display: grid;
		grid-template-columns: 1fr;
	}

	.cls-band-text {
    text-align: left;
}



	.programs-v2 .reason-row-v2 {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

	.systems-approach-v2 {
    width: 100% !important;
}

	.programs-v2 .systems-card-v2,
	.programs-v2 .systems-center-v2,
	.programs-v2 .systems-approach-v2 {
		padding: 18px;
	}
}
	.programs-v2 .reason-row-v2 {
		gap: 12px 4px;
	}

	

	.programs-v2 .reason-item-v2 {
		flex: 1 1 calc(33.333% - 8px);
	}



@media (max-width: 991px) {
	.programs-v2 .hero-grid-v2,
	.programs-v2 .systems-grid-v2,
	.programs-v2 .why-grid-v2,
	.programs-v2 .impact-grid-v2 {
		grid-template-columns: 1fr;
	}

	

	.programs-v2 .hero-metrics-v2 {
		position: static;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 14px;
	}

	.programs-v2 .portfolio-grid-v2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.programs-v2 .pillar-row-v2 {
		flex-wrap: wrap;
		gap: 10px 0;
	}

	.programs-v2 .pillar-arrow {
		display: none;
	}

	.programs-v2 .engage-grid-v2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.programs-v2 .impact-metrics-v2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 576px) {
	.programs-v2 .hero-copy-v2 h1 {
		font-size: 2rem;
	}

	.programs-v2 .hero-grid-v2 {
    flex-direction: column;
}

	.programs-v2 .band-copy-v2 {
		font-size: 1.03rem;
	}



	.programs-v2 .engage-grid-v2,
	.programs-v2 .impact-metrics-v2,
	.programs-v2 .pillar-row-v2 {
		grid-template-columns: 1fr;
	}

	.programs-v2 .portfolio-grid-v2 {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}

	.programs-v2 .why-right-v2 h3{
		text-align: left;
	}

	.programs-v2 .reason-row-v2 {
		        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.programs-v2 .reason-item-v2 {
		flex: 1 1 100%;
	}

	.programs-v2 .pillar-item {
		flex: 1 1 50%;
	}

	.cls-band-content p {
    text-align: left;
}

	/* Make hero metrics display 2 per row on small screens */
	.programs-v2 .hero-metrics-v2 {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 12px;
		width: 100%;
		justify-content: center;
	}

	.programs-v2 .hero-metrics-v2 li {
		width: calc(50% - 6px);
		box-sizing: border-box;
		justify-content: flex-start;
	}

	.programs-v2 .hero-metrics-v2 strong {
		font-size: 1.4rem;
	}

	.programs-v2 .partners-lists-v2 {
		grid-template-columns: 1fr;
	}

	.programs-v2 .engage-actions-v2 {
		flex-direction: column;
		align-items: center;
	}
}

.hero-copy-v2 {
    max-width: 500px;
}

/* News page: field intelligence hero */
.news-page .news-intel-hero {
	position: relative;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	background-color: #021225;
	background-image: linear-gradient(90deg, rgba(1, 14, 31, 0.28) 0%, rgba(1, 14, 31, 0.04) 34%, rgba(1, 14, 31, 0) 56%), url('../img/news-bg.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	color: #ffffff;
	overflow: hidden;
}

.news-page .news-intel-content {
	display: flex;
	align-items: center;
	padding-top: 52px;
	padding-bottom: 52px;
}

.news-page .news-intel-copy {
	max-width: 590px;
}

.news-page .news-intel-kicker {
	margin: 0 0 10px;
	text-transform: uppercase;
	
	font-size: 1.08rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	color: #f2b340;
}

.news-page .news-intel-copy h1 {
	margin: 0;
	text-transform: uppercase;
	
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.015em;
	max-width: 620px;
}

.news-page .news-intel-lead {
	margin: 18px 0 0;
	font-size: 1.58rem;
	line-height: 1.35;
	color: rgba(240, 246, 255, 0.96);
	max-width: 700px;
}

.news-page .news-intel-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 32px;
}

.news-page .news-intel-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 13px 24px;
	border-radius: 6px;
	text-transform: uppercase;
	
	font-size: 0.98rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.news-page .news-intel-btn:hover {
	transform: translateY(-1px);
}

.news-page .news-intel-btn-primary {
	background: linear-gradient(180deg, #e8a934 0%, #cb8724 100%);
	color: #ffffff;
	box-shadow: 0 12px 22px rgba(203, 135, 36, 0.28);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.news-page .news-intel-btn-ghost {
	color: #ffffff;
	background: rgba(7, 18, 34, 0.65);
	border: 1px solid rgba(199, 220, 255, 0.58);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.news-page .news-intel-btn-ghost:hover {
	background: rgba(15, 36, 64, 0.75);
	border-color: rgba(255, 255, 255, 0.72);
}

.news-page .news-intel-btn span {
	font-size: 1.07rem;
	line-height: 1;
}

@media (max-width: 1200px) {

	.news-page .news-intel-copy {
		max-width: 520px;
	}
}

@media (max-width: 991px) {
	.news-page .news-intel-hero {
		background-position: 68% center;
	}

	.news-page .news-intel-content {
		padding-top: 46px;
		padding-bottom: 46px;
	}

	.news-page .news-intel-copy {
		max-width: 100%;
	}

	.news-page .news-intel-copy h1 {
		font-size: clamp(1.85rem, 5.2vw, 2.6rem);
		max-width: 520px;
	}

	.news-page .news-intel-lead {
		max-width: 450px;
		font-size: 1.18rem;
	}

	.news-page .news-intel-btn {
		padding: 12px 20px;
		font-size: 0.9rem;
	}
}

@media (max-width: 767px) {
	.news-page .news-intel-hero {
		background-position: 73% center;
	}

	.news-page .news-intel-content {
		min-height: 430px;
		padding-top: 36px;
		padding-bottom: 36px;
	}

	.news-page .news-intel-kicker {
		font-size: 0.88rem;
	}

	.news-page .news-intel-copy h1 {
		font-size: 1.55rem;
		max-width: 390px;
	}

	.news-page .news-intel-lead {
		font-size: 0.98rem;
		line-height: 1.45;
		max-width: 300px;
	}

	.news-page .news-intel-actions {
		gap: 12px;
		margin-top: 24px;
	}

	.news-page .news-intel-btn {
		width: 100%;
		max-width: 290px;
		justify-content: space-between;
	}
}

@media (max-width: 440px) {
	.news-page .news-intel-hero {
		background-position: 76% center;
	}

	.news-page .news-intel-content {
		padding-top: 28px;
		padding-bottom: 28px;
	}

	.news-page .news-intel-copy h1 {
		font-size: 1.32rem;
		line-height: 1.13;
		max-width: 280px;
	}

	.news-page .news-intel-lead {
		font-size: 0.9rem;
		max-width: 250px;
	}
}

/* News page: featured briefing card */
.news-page .news-briefing-section {
	background: #f3f4f7;
	padding: 28px 0 34px;
}

.news-page .news-briefing-card {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
	gap: 26px;
	padding: 20px;
	border: 1px solid #d7dbe3;
	border-radius: 9px;
	background: #f5f6f8;
	box-shadow: 0 10px 22px rgba(8, 18, 36, 0.07);
}

.news-page .news-briefing-media {
	position: relative;
	border-radius: 7px;
	overflow: hidden;
	height: 0;
	padding-top: 53%;
	background: #0d1524;
}

.news-page .news-briefing-video {
	padding-top: 56.25%;
	background: #000000;
}

.news-page .news-briefing-video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.news-page .news-briefing-video::after {
	display: none;
}

.news-page .news-briefing-media > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: saturate(0.86) brightness(0.7);
}

.news-page .news-briefing-media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(5, 10, 18, 0.18) 0%, rgba(5, 10, 18, 0.55) 62%, rgba(5, 10, 18, 0.86) 100%);
	pointer-events: none;
}

.news-page .news-briefing-overlay {
	position: absolute;
	inset: 0;
	padding: 14px 14px 62px;
	z-index: 1;
	color: #ffffff;
}

.news-page .news-briefing-brand img {
	width: 96px;
	height: auto;
	filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.32));
}

.news-page .news-briefing-kicker {
	margin: 20px 0 8px;
	font-size: 1rem;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: #f2c13f;
	display: inline-block;
	padding-bottom: 4px;
	border-bottom: 2px solid rgba(242, 193, 63, 0.78);
}

.news-page .news-briefing-overlay h3 {
	margin: 0;
	max-width: 62%;
	font-size: 2.25rem;
	line-height: 1.16;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.news-page .news-briefing-update {
	margin: 12px 0 0;
	font-size: 1.3rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.95);
}

.news-page .news-briefing-play {
	position: absolute;
	right: 48%;
	top: 47%;
	transform: translate(50%, -50%);
	display: grid;
	place-items: center;
	width: 78px;
	height: 78px;
	border-radius: 999px;
	border: 3px solid rgba(255, 255, 255, 0.75);
	background: rgba(2, 8, 18, 0.28);
	color: #ffffff;
	font-size: 1.72rem;
	padding-left: 4px;
	cursor: pointer;
}

.news-page .news-briefing-controls {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 10px 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	color: #edf3ff;
	font-size: 0.84rem;
	background: rgba(3, 10, 20, 0.86);
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.news-page .news-briefing-controls-left,
.news-page .news-briefing-controls-right {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.news-page .news-briefing-body {
	padding: 8px 6px 6px 0;
	color: #0f1d34;
}

.news-page .news-briefing-tag {
	margin: 0;
	text-transform: uppercase;
	font-size: 0.98rem;
	font-weight: 800;
	letter-spacing: 0.03em;
	color: #cf8e23;
}

.news-page .news-briefing-body h2 {
	margin: 14px 0 0;
	font-size: clamp(1.45rem, 2.1vw, 2.28rem);
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -0.015em;
	max-width: 95%;
}

.news-page .news-briefing-text {
	margin: 16px 0 0;
	font-size: 1.38rem;
	line-height: 1.45;
	color: rgba(15, 29, 52, 0.87);
	max-width: 98%;
}

.news-page .news-briefing-meta {
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
	color: #2a3448;
	font-size: 1.12rem;
	font-weight: 500;
}

.news-page .news-briefing-meta li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.news-page .news-briefing-download {
	margin-top: 20px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 20px;
	background: linear-gradient(180deg, #04224a 0%, #031735 100%);
	color: #ffffff;
	text-transform: uppercase;
	font-size: 1.16rem;
	font-weight: 700;
	line-height: 1;
	border-radius: 6px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 12px 20px rgba(3, 23, 53, 0.3);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-page .news-briefing-download:hover {
	transform: translateY(-1px);
	box-shadow: 0 16px 24px rgba(3, 23, 53, 0.34);
	color: #ffffff;
}

.news-page .news-briefing-note {
    margin: 20px 0 0;
    font-size: 0.93rem;
    font-weight: 500;
    color: #576071;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

@media (max-width: 1300px) {
	.news-page .news-briefing-overlay h3 {
		font-size: 1.78rem;
	}

	.news-page .news-briefing-update {
		font-size: 1.08rem;
	}

	.news-page .news-briefing-text {
		font-size: 1.12rem;
	}

	.news-page .news-briefing-meta {
		font-size: 1rem;
	}

	.news-page .news-briefing-download {
		font-size: 1rem;
	}
}

@media (max-width: 991px) {
	.news-page .news-briefing-card {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 16px;
	}

	.news-page .news-briefing-media {
		padding-top: 58%;
	}

	.news-page .news-briefing-overlay h3 {
		max-width: 66%;
		font-size: 1.62rem;
	}

	.news-page .news-briefing-play {
		width: 66px;
		height: 66px;
		font-size: 1.38rem;
	}

	.news-page .news-briefing-body {
		padding: 0;
	}

	.news-page .news-briefing-body h2,
	.news-page .news-briefing-text {
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.news-page .news-briefing-section {
		padding: 18px 0 22px;
	}

	.news-page .news-briefing-card {
		padding: 12px;
		gap: 14px;
	}

	.news-page .news-briefing-media {
		padding-top: 64%;
	}

	.news-page .news-briefing-brand img {
		width: 78px;
	}

	.news-page .news-briefing-kicker {
		font-size: 0.74rem;
		margin-top: 10px;
	}

	.news-page .news-briefing-overlay {
		padding: 10px 10px 50px;
	}

	.news-page .news-briefing-overlay h3 {
		font-size: 1.02rem;
		max-width: 72%;
	}

	.news-page .news-briefing-update {
		font-size: 0.84rem;
		margin-top: 6px;
	}

	.news-page .news-briefing-play {
		width: 54px;
		height: 54px;
		border-width: 2px;
		font-size: 1.1rem;
	}

	.news-page .news-briefing-controls {
		font-size: 0.7rem;
		padding: 8px 10px;
	}

	.news-page .news-briefing-controls-left,
	.news-page .news-briefing-controls-right {
		gap: 8px;
	}

	.news-page .news-briefing-tag {
		font-size: 0.78rem;
	}

	.news-page .news-briefing-body h2 {
		font-size: 1.22rem;
	}

	.news-page .news-briefing-text {
		font-size: 0.94rem;
		margin-top: 12px;
	}

	.news-page .news-briefing-meta {
		margin-top: 14px;
		gap: 10px 14px;
		font-size: 0.86rem;
	}

	.news-page .news-briefing-download {
		width: 100%;
		justify-content: center;
		font-size: 0.83rem;
		padding: 12px 14px;
	}

	.news-page .news-briefing-note {
		 margin-top: 20px;
	}
}

@media (max-width: 480px) {
	.news-page .news-briefing-overlay h3 {
		font-size: 0.92rem;
		max-width: 68%;
	}

	.news-page .news-briefing-controls-left span {
		display: none;
	}
}

/* News page: real-time updates */
.news-page .news-updates-section {
	padding: 8px 0 28px;
	background: #f3f4f7;
}

.news-page .news-updates-shell {
	border: 1px solid #d9dde4;
	border-radius: 8px;
	background: #f5f6f8;
	padding: 14px;
	box-shadow: 0 8px 18px rgba(16, 28, 46, 0.05);
}

.news-page .news-updates-top {
	display: flex;
	align-items: center;
	gap: 16px;
	border-bottom: 1px solid #e2e6ec;
	padding: 0 6px 12px;
}

.news-page .news-updates-top-left {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	white-space: nowrap;
}

.news-page .news-updates-top-left h2 {
	margin: 0;
	text-transform: uppercase;
	font-size: 2.05rem;
	line-height: 1;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: #19273f;
}

.news-page .news-updates-top-left p {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 500;
	color: #4f5d70;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.news-page .news-live-dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: #27c14d;
	box-shadow: 0 0 0 5px rgba(39, 193, 77, 0.18);
}

.news-page .news-updates-filters {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-left: auto;
	margin-right: 10px;
	flex-wrap: wrap;
}

.news-page .news-updates-filters a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 9px 16px;
	border-radius: 6px;
	border: 1px solid #d0d5de;
	background: #f8f9fb;
	text-transform: none;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
	color: #334057;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.news-page .news-updates-filters a.active {
	background: linear-gradient(180deg, #dda541 0%, #be7f18 100%);
	border-color: #bf8221;
	color: #ffffff;
}

.news-page .news-updates-all {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	white-space: nowrap;
	text-transform: uppercase;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: #cc8a22;
}

.news-page .news-updates-cards-wrap {
	position: relative;
	padding: 12px 26px 0 6px;
}

.news-page .news-updates-cards {
	display: block;
}

.news-page .news-updates-cards .owl-stage {
	display: flex;
}

.news-page .news-updates-cards .owl-item {
	display: flex;
}

.news-page .news-updates-cards .owl-stage-outer {
	padding: 2px 2px 3px;
	margin: 0 -2px;
}

.news-page .news-update-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 292px;
	padding: 18px 20px 14px;
	border: 1px solid #d9dde4;
	border-radius: 8px;
	background: #f8f9fb;
}

.news-page .news-update-region {
	margin: 0;
	text-transform: uppercase;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 0.03em;
	color: #c78017;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.news-page .news-update-region i {
	font-size: 0.92rem;
	color: #d28f27;
}

.news-page .news-update-card h3 {
	margin: 16px 0 0;
	font-size: 2.04rem;
	line-height: 1.17;
	font-weight: 700;
	letter-spacing: -0.015em;
	color: #0f1c34;
}

.news-page .news-update-copy {
	margin: 14px 0 0;
	font-size: 1.08rem;
	line-height: 1.5;
	color: #3d4a5f;
}

.news-page .news-update-footer {
	margin-top: auto;
	padding-top: 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.news-page .news-update-footer span {
	font-size: 0.96rem;
	font-weight: 500;
	color: #515f73;
}

.news-page .news-update-footer a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	white-space: nowrap;
	text-transform: uppercase;
	font-size: 0.86rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: #1e2a41;
}

.news-page .news-updates-next {
	position: absolute;
	right: 4px;
	top: 50%;
	transform: translateY(-36%);
	width: 38px;
	height: 38px;
	border: 1px solid #d4d9e1;
	border-radius: 999px;
	background: #ffffff;
	color: #2c3a52;
	font-size: 1.05rem;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 16px rgba(14, 27, 44, 0.1);
	z-index:9;
}

@media (max-width: 1400px) {
	.news-page .news-updates-top {
		flex-wrap: wrap;
	}

	.news-page .news-updates-top-left h2 {
		font-size: 1.45rem;
	}

	.news-page .news-updates-top-left p {
		font-size: 0.88rem;
	}

	.news-page .news-updates-filters {
		order: 3;
		margin-left: 0;
		margin-right: 0;
	}

	.news-page .news-updates-all {
		margin-left: auto;
	}

	.news-page .news-update-card h3 {
		font-size: 1.48rem;
	}

	.news-page .news-update-copy {
		font-size: 0.95rem;
	}
}

@media (max-width: 991px) {
	.news-page .news-updates-cards-wrap {
		padding-right: 6px;
	}

	.news-page .news-update-card {
		min-height: 250px;
	}

	.news-page .news-updates-next {
		display: none;
	}
}

@media (max-width: 767px) {
	.news-page .news-updates-section {
		padding: 4px 0 18px;
	}

	.news-page .news-updates-shell {
		padding: 20px;
	}

	.news-page .news-updates-top {
		padding: 0 2px 10px;
		gap: 10px;
	}

	    .news-page .news-updates-top-left {
        flex-wrap: wrap;
        gap: 8px;
        flex-direction: column;
        margin-bottom: 15px;
		align-items: baseline;
    }

	.news-page .news-updates-top-left h2 {
		font-size: 1.1rem;
	}

	.news-page .news-updates-top-left p {
		font-size: 0.8rem;
	}

	.news-page .news-updates-filters {
		gap: 8px;
	}

	.news-page .news-updates-filters a {
		font-size: 0.77rem;
		padding: 7px 11px;
	}

	.news-page .news-updates-all {
		font-size: 0.79rem;
	}

	.news-page .news-updates-cards-wrap {
		padding: 12px 2px 0;
	}

	.news-page .news-update-card {
		min-height: 234px;
		padding: 14px;
	}

	.news-page .news-update-region {
		font-size: 0.78rem;
	}

	.news-page .news-update-card h3 {
		font-size: 1.05rem;
		margin-top: 12px;
	}

	.news-page .news-update-copy {
		font-size: 0.83rem;
		margin-top: 10px;
	}

	.news-page .news-update-footer {
		padding-top: 12px;
	}

	.news-page .news-update-footer span {
		font-size: 0.75rem;
	}

	.news-page .news-update-footer a {
		font-size: 0.72rem;
	}
}

/* News page: impact highlights */
.news-page .news-impact-section {
	padding: 0 0 30px;
	background: #f3f4f7;
}

.news-page .news-impact-shell {
	border: 1px solid #d9dde4;
	border-radius: 8px;
	background: #f8f9fb;
	padding: 12px 14px 10px;
	box-shadow: 0 8px 18px rgba(16, 28, 46, 0.05);
}

.news-page .news-impact-head {
	padding: 0 2px 10px;
}

.news-page .news-impact-head h2 {
	margin: 0;
	text-transform: uppercase;
	font-size: 1.05rem;
	font-weight: 900;
	letter-spacing: -0.01em;
	color: #1b2740;
}

.news-page .news-impact-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border: 1px solid #e2e6ec;
	border-radius: 6px;
	overflow: hidden;
	background: #ffffff;
}

.news-page .news-impact-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 16px 18px 14px;
	min-height: 118px;
	background: #ffffff;
	border-left: 1px solid #e2e6ec;
}

.news-page .news-impact-item:first-child {
	border-left: 0;
}

.news-page .news-impact-icon {
	flex: 0 0 auto;
	width: 56px;
	height: 56px;
	display: grid;
	place-items: center;
	margin-top: 2px;
}

.news-page .news-impact-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.news-page .news-impact-copy {
	min-width: 0;
}

.news-page .news-impact-copy strong {
	display: block;
	font-size: 2rem;
	line-height: 1;
	font-weight: 900;
	letter-spacing: -0.03em;
	color: #1f2940;
}

.news-page .news-impact-copy h3 {
	margin: 5px 0 0;
	font-size: 1rem;
	line-height: 1.18;
	font-weight: 800;
	color: #1f2940;
}

.news-page .news-impact-copy p {
	margin: 7px 0 0;
	font-size: 0.9rem;
	line-height: 1.48;
	color: #536072;
}

@media (max-width: 1100px) {
	.news-page .news-impact-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.news-page .news-impact-item {
		min-height: 132px;
	}

	.news-page .news-impact-item:nth-child(2n + 1) {
		border-left: 0;
	}

	.news-page .news-impact-item:nth-child(n + 3) {
		border-top: 1px solid #e2e6ec;
	}
}

@media (max-width: 767px) {
	.news-page .news-impact-section {
		padding-bottom: 18px;
	}

	.news-page .news-impact-shell {
		padding: 20px;
	}

	.news-page .news-impact-head h2 {
		font-size: 0.95rem;
	}

	.news-page .news-impact-grid {
		grid-template-columns: 1fr;
	}

	.news-page .news-impact-item {
		padding: 14px 14px 12px;
		min-height: auto;
		border-left: 0;
		border-top: 1px solid #e2e6ec;
	}

	.news-page .news-impact-item:first-child {
		border-top: 0;
	}

	.news-page .news-impact-icon {
		width: 46px;
		height: 46px;
	}

	.news-page .news-impact-copy strong {
		font-size: 1.55rem;
	}

	.news-page .news-impact-copy h3 {
		font-size: 0.92rem;
	}

	.news-page .news-impact-copy p {
		font-size: 0.8rem;
		margin-top: 6px;
	}
}

/* News page: publications and activity snapshot */
.news-page .news-publications-section {
	padding: 0 0 34px;
	background: #f3f4f7;
}

.news-page .news-publications-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
	gap: 0;
	border: 1px solid #d9dde4;
	border-radius: 8px;
	overflow: hidden;
	background: #f8f9fb;
	box-shadow: 0 8px 18px rgba(16, 28, 46, 0.05);
}

.news-page .news-publications-panel,
.news-page .news-activity-panel {
	padding: 12px 14px 14px;
}

.news-page .news-publications-panel {
	border-right: 1px solid #e2e6ec;
}

.news-page .news-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 0 6px 10px;
	border-bottom: 1px solid #e2e6ec;
}

.news-page .news-section-head h2 {
	margin: 0;
	text-transform: uppercase;
	font-size: 1.08rem;
	line-height: 1.05;
	font-weight: 900;
	letter-spacing: -0.01em;
	color: #1b2740;
}

.news-page .news-section-head a,
.news-page .news-activity-link {
	white-space: nowrap;
	text-transform: uppercase;
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: #c98820;
}

.news-page .news-publications-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	padding: 12px 6px 0;
}

.news-page .news-publication-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 284px;
	padding: 12px;
	border: 1px solid #d9dde4;
	border-radius: 8px;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(3, 10, 20, 0.22) 0%, rgba(3, 10, 20, 0.82) 100%), var(--pub-bg) center / cover no-repeat;
	color: #ffffff;
}

.news-page .news-publication-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(3, 10, 20, 0.06) 0%, rgba(3, 10, 20, 0.5) 50%, rgba(3, 10, 20, 0.9) 100%);
	pointer-events: none;
}

.news-page .news-publication-top,
.news-page .news-publication-copy,
.news-page .news-publication-meta,
.news-page .news-publication-download {
	position: relative;
	z-index: 1;
}

.news-page .news-publication-top img {
	width: 52px;
	height: auto;
	filter: brightness(0) invert(1);
}

.news-page .news-publication-copy {
	margin-top: 26px;
	flex: 1 1 auto;
	display: flex;
	align-items: flex-end;
}

.news-page .news-publication-copy h3 {
	margin: 0;
	max-width: 180px;
	font-size: 1.55rem;
	line-height: 1.06;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: -0.02em;
}

.news-page .news-publication-meta {
	margin-top: 18px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	color: #f0f3f8;
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
}

.news-page .news-publication-meta .type {
	color: #f0b24b;
}

.news-page .news-publication-meta .type-alt {
	color: #f6be69;
}

.news-page .news-publication-meta .type-brief {
	color: #ffd07a;
}

.news-page .news-publication-download {
	margin-top: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 12px;
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.95);
	color: #1c2840;
	font-size: 0.8rem;
	font-weight: 800;
	text-transform: uppercase;
	box-shadow: 0 8px 14px rgba(0, 0, 0, 0.14);
}

.news-page .news-activity-panel {
	background: #f8f9fb;
}

.news-page .news-section-head-right {
	padding-right: 6px;
}

.news-page .news-activity-content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr);
	gap: 18px;
	align-items: center;
	padding: 12px 6px 0;
}

.news-page .news-activity-map {
	display: grid;
	place-items: center;	
	overflow: hidden;
}

.news-page .news-activity-map img {
	max-width: 100%;	
	width:300px;
}

.news-page .news-activity-box {
	padding: 18px 16px 16px;
	border: 1px solid #d9dde4;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 10px 18px rgba(16, 28, 46, 0.05);
}

.news-page .news-activity-box h3 {
	margin: 0;
	font-size: 1rem;
	line-height: 1.2;
	font-weight: 800;
	color: #1b2740;
}

.news-page .news-activity-list {
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 11px;
}

.news-page .news-activity-list li {
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 10px;
	row-gap: 2px;
	align-items: center;
	font-size: 0.88rem;
	color: #334057;
}

.news-page .news-activity-list .dot {
	grid-row: span 2;
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: #d48a17;
	box-shadow: 0 0 0 4px rgba(212, 138, 23, 0.15);
}

.news-page .news-activity-list strong {
	font-weight: 800;
	color: #1f2940;
}

.news-page .news-activity-list em {
	font-style: normal;
	color: #6a7689;
}

.news-page .news-activity-link {
	margin-top: 18px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.news-page .news-media-section {
	padding: 42px 0;
	background: #ffffff;
}

.news-page .news-media-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	padding: 28px 0 20px;
}

.news-page .news-media-mention {
    display: flex;
    flex-direction: column;
    gap: 12px 16px;
    align-items: start;
    padding: 14px;
    border: 1px solid #e2e6ec;
    border-radius: 8px;
    background: #f8f9fb;
    transition: all 0.2s ease;
	justify-content: center;
}

.news-page .news-media-mention:hover {
	border-color: #c98820;
	box-shadow: 0 8px 16px rgba(201, 136, 32, 0.08);
}

.news-page .news-media-logo {
	grid-column: 1;
	grid-row: 1 / span 3;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 72px;
	height: 72px;
	background: #ffffff;
	border: 1px solid #dce0e8;
	border-radius: 6px;
}

.news-page .news-media-logo img {
	max-width: 60px;
	max-height: 50px;
	object-fit: contain;
}

.news-page .news-media-content {
	grid-column: 2;
	grid-row: 1 / span 2;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.news-page .news-media-content h3 {
	margin: 0;
	font-size: 1rem;
	line-height: 1.24;
	font-weight: 800;
	color: #1b2740;
	text-transform: uppercase;
	letter-spacing: -0.01em;
}

.news-page .news-media-date {
    font-size: 0.8rem;
    color: #667182;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
}

.news-page .news-media-link {
	grid-column: 3;
	grid-row: 1 / span 3;
	display: flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
	text-transform: uppercase;
	font-size: 0.82rem;
	font-weight: 800;
	color: #c98820;
	text-decoration: none;
	transition: gap 0.2s ease;
}

.news-page .news-media-link:hover {
	gap: 10px;
}

.news-page .news-media-footer {
	padding-top: 8px;
	text-align: right;
	border-top: 1px solid #e2e6ec;
}

.news-page .news-media-view-all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-transform: uppercase;
	font-size: 0.88rem;
	font-weight: 800;
	color: #c98820;
	text-decoration: none;
	transition: gap 0.2s ease;
}

.news-page .news-media-view-all:hover {
	gap: 12px;
}

@media (max-width: 1199px) {
	.news-page .news-publications-layout {
		grid-template-columns: 1fr;
	}

	.news-page .news-publications-panel {
		border-right: 0;
		border-bottom: 1px solid #e2e6ec;
	}

	.news-page .news-publications-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.news-page .news-activity-content {
		grid-template-columns: minmax(0, 1fr) 320px;
	}

	.news-page .news-media-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
	}
}


.news-media-inner-sec {
    display: flex;
    gap: 20px;
}

/* Donate page styles */
.donate-page {
	background: #f4f6fb;
	color: var(--ink);
}

.donate-page #donate-page {
	background: #f4f6fb;
}

.donate-hero {
	position: relative;
	overflow: hidden;
	background: url('../img/donate-bg.png') center center / cover no-repeat;
	color: #fff;
	min-height: 560px;
}

.donate-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(6, 20, 39, .98) 0%, rgba(6, 20, 39, .92) 34%, rgba(6, 20, 39, .68) 58%, rgba(6, 20, 39, .28) 76%, rgba(6, 20, 39, .12) 100%),
		linear-gradient(180deg, rgba(2, 11, 24, .18) 0%, rgba(2, 11, 24, .3) 100%);
}

.donate-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
	gap: 28px;
	align-items: center;
	min-height: 560px;
	gap: 12px;
	padding: 0 14px 0 12px;
	border-radius: 8px;
	background: transparent;
	font-size: .9rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .02em;
	text-align: left;
	letter-spacing: 0;

.donate-card__actions a span:last-child,
.donate-card__link span:last-child {
	flex: 1;
}

.donate-card__action-icon {
	width: 28px;
	height: 28px;
	border-radius: 6px;
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	background: rgba(20, 60, 109, .08);
	color: #17344f;
	font-size: .9rem;
}
	font-weight: 700;
}

.donate-hero__copy h1 {
	margin: 0 0 16px;
	font-size: clamp(2.45rem, 4.8vw, 4.7rem);
	line-height: .95;
	letter-spacing: -.04em;
	text-transform: none;
	font-weight: 900;
	max-width: 680px;
}

.donate-hero__copy h1 span {
	color: #e4a42e;
}

.donate-hero__copy p {
	margin: 0;
	max-width: 560px;
	font-size: 1.03rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, .86);
}

.donate-hero__highlight {
	margin-top: 14px !important;
	color: #f2c15c !important;
	font-weight: 700;
	max-width: 520px;
}

.donate-hero__actions {
	margin-top: 20px;
}

.donate-hero__actions .btn.secondary {
	border-color: rgba(240, 180, 78, .55);
	background: rgba(9, 25, 46, .22);
}

.donate-hero__rail {
	display: grid;
	gap: 16px;
	justify-self: end;
	width: min(200px, 100%);
}

.donate-hero__rail-card {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 14px;
	align-items: center;
	padding: 14px 16px;
	border-radius: 14px;
	background: rgba(7, 27, 51, .22);
	border: 1px solid rgba(255, 255, 255, .18);
	backdrop-filter: blur(8px);
}

.donate-hero__rail-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(217, 160, 65, .16);
	border: 1px solid rgba(242, 193, 92, .55);
	color: #f2c15c;
	font-size: 1.15rem;
}

.donate-hero__rail-card strong {
	display: block;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: .01em;
	text-transform: uppercase;
}

.donate-hero__rail-card span {
	display: block;
	margin-top: 3px;
	font-size: .9rem;
	color: rgba(255, 255, 255, .82);
}

.donate-impact {
	padding: 20px 0 0;
	background: #f4f6fb;
}

.donate-impact__panel {
	display: grid;
	grid-template-columns: minmax(0, 2.1fr) repeat(4, minmax(0, 1fr)) minmax(220px, 1.15fr);
	background: #fff;
	border: 1px solid rgba(12, 32, 58, .08);
	border-radius: 0;
	box-shadow: none;
	overflow: hidden;
}

.donate-impact__intro {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	align-content: start;
	padding: 34px 28px 26px 36px;
	border-right: 1px solid rgba(12, 32, 58, .08);
}

.donate-impact__intro h2,
.donate-giving__copy h2,
.donate-card h3,
.donate-scale h3,
.donate-form h3,
.donate-framework__item strong {
	margin: 0;
	font-weight: 900;
	letter-spacing: -.03em;
	text-transform: none;
}

.donate-impact__intro h2 {
	font-size: clamp(1.7rem, 2.4vw, 2.35rem);
	line-height: 1.05;
	max-width: 360px;
	position: relative;
	padding-bottom: 14px;
}

.donate-impact__intro h2::after {
	content: '';
	display: block;
	width: 42px;
	height: 3px;
	background: #d8a041;
	margin-top: 14px;
}

.donate-impact__intro p {
	margin: 0;
	max-width: 500px;
	font-size: 1.02rem;
	line-height: 1.7;
	color: rgba(13, 35, 64, .82);
}

.donate-impact__item {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding: 28px 16px 24px;
	border-right: 1px solid rgba(12, 32, 58, .08);
	text-align: center;
}

.donate-impact__item:last-child {
	border-right: 0;
}

.donate-impact__icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 18px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #fff;
	color: #d29132;
	font-size: 1.45rem;
	box-shadow: 0 0 0 1px rgba(210, 145, 50, .26);
}

.donate-impact__item h3 {
	font-size: 1rem;
	line-height: 1.55;
	text-transform: none;
	font-weight: 600;
	max-width: 180px;
	margin: 0 auto;
}

.donate-impact__why {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	align-content: start;
	padding: 28px 24px 24px;
	border-left: 1px solid rgba(12, 32, 58, .08);
	background: #fff;
}

.donate-impact__why-label {
	font-size: 1.02rem;
	font-weight: 800;
	color: #d29132;
	white-space: normal;
}

.donate-impact__why p {
	margin: 0;
	font-size: 1.06rem;
	line-height: 1.55;
	color: rgba(13, 35, 64, .86);
	font-weight: 800;
	max-width: 200px;
}

.donate-giving {
	padding: 26px 0 18px;
}

.donate-giving__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(260px, .9fr) minmax(0, 1.1fr);
	gap: 18px;
	align-items: start;
}

.donate-giving__copy,
.donate-scale,
.donate-form {
	background: #fff;
	border-radius: 18px;
	border: 1px solid rgba(12, 32, 58, .08);
	box-shadow: 0 12px 30px rgba(7, 27, 51, .08);
	padding: 26px;
}

.donate-giving__copy h2 {
	font-size: clamp(1.6rem, 2.6vw, 2.2rem);
	max-width: 460px;
	margin-top: 8px;
}

.donate-giving__copy p {
	margin: 12px 0 0;
	font-size: 1rem;
	line-height: 1.65;
	color: rgba(13, 35, 64, .82);
}

.donate-benefits {
	list-style: none;
	padding: 0;
	margin: 22px 0 0;
	display: grid;
	gap: 22px;
}

.donate-benefits li,
.donate-form__trust li,
.donate-scale li {
	position: relative;
	padding-left: 0;
	line-height: 1.45;
}

.donate-card ul li {
	position: relative;
	padding-left: 20px;
	line-height: 1.45;
}

.mt-15{
	margin-top: 15px !important;
}


.donate-card ul li::before,
.donate-scale li::before {
	content: '\f00c';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 1px;
	color: #d29132;
}

.donate-benefits li {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 8px;
	align-items: center;
}

.donate-benefits li img {
	width: 42px;
	height: 42px;
	object-fit: contain;
	filter: brightness(0) saturate(100%) invert(73%) sepia(63%) saturate(571%) hue-rotate(359deg) brightness(94%) contrast(91%);
}

.donate-benefits li span {
	display: block;
	font-size: 1.02rem;
	line-height: 1.55;
	font-weight: 600;
	color: rgba(13, 35, 64, .9);
}

.donate-scale h3,
.donate-form h3 {
	font-size: 1.33rem;
	margin-bottom: 18px;
}

.donate-scale ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 18px;
}

.donate-scale li {
	display: grid;
	grid-template-columns: 104px 1fr;
	gap: 18px;
	padding-left: 0;
	align-items: start;
	color: rgba(13, 35, 64, .82);
}

.donate-scale li::before {
	display: none;
}

.donate-scale strong {
	color: #0d2340;
	font-size: 1.02rem;
	font-weight: 800;
}

.donate-scale span {
	display: block;
	font-size: .97rem;
	line-height: 1.45;
}

.donate-form {
	background: linear-gradient(180deg, #0a1d35 0%, #071b33 100%);
	color: #fff;
	border-color: rgba(255, 255, 255, .06);
	box-shadow: 0 18px 44px rgba(7, 27, 51, .18);
	position: relative;
	overflow: hidden;
}

.donate-form::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 100% 0%, rgba(242, 193, 92, .14), transparent 34%);
	pointer-events: none;
}

.donate-form > * {
	position: relative;
	z-index: 1;
}

.donate-form h3 {
	font-size: 1.6rem;
	margin-bottom: 16px;
}

.donate-form__section + .donate-form__section {
	margin-top: 18px;
}

.donate-form__label {
	font-size: .98rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: rgba(255, 255, 255, .84);
}

.donate-form__choices {
	display: grid;
	gap: 10px;
}

.donate-form__choices--gift {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.donate-choice {
	display: grid;
	gap: 9px;
	padding: 16px 16px 14px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, .18);
	background: rgba(255, 255, 255, .03);
	color: #fff;
	cursor: pointer;
	position: relative;
}

.donate-choice input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.donate-choice__row {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.donate-choice__marker {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	background: #e2a332;
	color: #fff;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, .18) inset;
}

.donate-choice__marker i {
	font-size: .9rem;
	line-height: 1;
}

.donate-choice__marker--empty {
	background: transparent;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, .9) inset, 0 0 0 1px rgba(255, 255, 255, .25);
}

.donate-choice__title {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-weight: 800;
	font-size: 1.03rem;
	line-height: 1.2;
	min-width: 0;
}

.donate-choice__badge {
	display: inline-flex;
	align-items: center;
	padding: 2px 9px;
	border-radius: 999px;
	background: #e2a332;
	color: #fff;
	font-size: .72rem;
	font-weight: 800;
	line-height: 1.35;
	white-space: nowrap;
}

.donate-choice__subtitle {
	display: block;
	padding-left: 40px;
	font-size: .86rem;
	line-height: 1.25;
	color: rgba(255, 255, 255, .76);
	font-weight: 600;
	margin-top: -1px;
	position: relative;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.donate-choice > span {
	font-weight: 800;
	font-size: 1.03rem;
}

.donate-choice--selected,
.donate-choice:has(input:checked) {
	border-color: rgba(242, 193, 92, .72);
	background: rgba(9, 25, 46, .52);
}

.donate-choice--selected .donate-choice__marker,
.donate-choice:has(input:checked) .donate-choice__marker {
	background: #e2a332;
}

.donate-choice:not(.donate-choice--selected) .donate-choice__badge {
	display: none;
}

.donate-choice:not(.donate-choice--selected) .donate-choice__subtitle {
	padding-left: 40px;
}

.donate-form__choices--amounts {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.donate-form__choices--amounts button {
	min-height: 58px;
	padding: 12px 12px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, .16);
	background: rgba(255, 255, 255, .04);
	color: #fff;
	font-weight: 800;
	font-size: 1.02rem;
	cursor: pointer;
	transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.donate-form__choices--amounts button:hover,
.donate-form__choices--amounts button.is-active {
	background: #e2a332;
	border-color: #e2a332;
	color: #fff;
}

.donate-form__paypal {
	margin-top: 14px;
	min-height: 50px;
}

.donate-form__result {
	display: none;
	margin-top: 14px;
	padding: 14px 16px;
	border-radius: 8px;
	font-size: 0.95rem;
	font-weight: 600;
	text-align: center;
}

.donate-form__result--success {
	display: block;
	background: rgba(46, 204, 64, 0.12);
	border: 1px solid rgba(46, 204, 64, 0.3);
	color: #2ecc40;
}

.donate-form__result--error {
	display: block;
	background: rgba(255, 65, 54, 0.12);
	border: 1px solid rgba(255, 65, 54, 0.3);
	color: #ff4136;
}

.donate-form__result--info {
	display: block;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	color: #fff;
}

.donate-form__result i {
	margin-right: 8px;
}

.donate-form__not-configured {
	margin-top: 14px;
	padding: 14px 16px;
	border-radius: 8px;
	background: rgba(255, 193, 7, 0.12);
	border: 1px solid rgba(255, 193, 7, 0.3);
	color: #ffc107;
	font-size: 0.9rem;
	text-align: center;
}

.donate-form__not-configured code {
	background: rgba(0, 0, 0, 0.2);
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 0.85rem;
}


.donate-form__custom-wrap {
	grid-column: 1 / -1;
	position: relative;
}

.donate-form__custom-prefix {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	font-size: 1.02rem;
	font-weight: 800;
	pointer-events: none;
	z-index: 1;
}

.donate-form__custom-input {
	width: 100%;
	min-height: 58px;
	padding: 12px 16px 12px 32px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, .16);
	background: rgba(255, 255, 255, .04);
	color: #fff;
	font-size: 1.02rem;
	font-weight: 800;
	outline: none;
	transition: border-color .2s ease;
	box-sizing: border-box;
}

.donate-form__custom-input::placeholder {
	color: rgba(255, 255, 255, .4);
	font-weight: 600;
}

.donate-form__custom-input:focus {
	border-color: #e2a332;
}

.donate-form__submit {
	width: 100%;
	margin-top: 14px;
	min-height: 62px;
	border: 0;
	border-radius: 8px;
	background: linear-gradient(180deg, #e4aa4b 0%, #d29132 100%);
	color: #fff;
	font-size: 1.08rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .02em;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	cursor: pointer;
}

.donate-form__trust {
	list-style: none;
	padding: 0;
	margin: 18px 0 0;
	display: grid;
	gap: 10px;
	font-size: .95rem;
	color: rgba(255, 255, 255, .84);
}

.donate-form__trust li {
	display: grid;
	grid-template-columns: 20px 1fr;
	gap: 10px;
	align-items: start;
	line-height: 1.35;
}

.donate-form__trust li::before {
	color: #4db46a;
}

.donate-form__trust-icon {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	margin-top: 2px;
	background: rgba(77, 180, 106, .18);
	color: #4db46a;
	font-size: .72rem;
	flex: 0 0 auto;	
}


.donate-form__trust li span:last-child {
	display: block;
	padding-top: 1px;
	font-weight: 600;
}

.donate-card {
	border-radius: 16px;
	padding: 28px 24px;
	box-shadow: 0 12px 30px rgba(7, 27, 51, .07);
	height: 100%;
}

.donate-card--warm {
	background: linear-gradient(180deg, #fff9ef 0%, #f6efe3 100%);
}

.donate-card--white {
	background: #fff;
	border: 1px solid rgba(12, 32, 58, .08);
}

.donate-card--mint {
	background: linear-gradient(180deg, #f4faf4 0%, #edf5ef 100%);
}

.donate-card__badge {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	margin-bottom: 14px;
	background: #d29132;
	color: #fff;
	font-size: 1.1rem;
}

.donate-card__badge--blue {
	background: #143c6d;
}

.donate-card__badge--green {
	background: #4f7c3c;
}

.donate-card h3 {
	font-size: 1.52rem;
	margin-bottom: 14px;
}

.donate-card p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(13, 35, 64, .82);
}

.donate-card ul {
	list-style: none;
	padding: 0;
	margin: 16px 0 0;
	display: grid;
	gap: 10px;
	color: rgba(13, 35, 64, .84);
}

.donate-card__checks {
	margin-top: 14px !important;
}

.donate-card__actions {
	display: grid;
	gap: 10px;
	margin-top: 18px;
}

.donate-card__actions a,
.donate-card__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 14px;
	border-radius: 8px;
	border: 1px solid #c5d3e3;
	background: transparent;
	font-size: .9rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .02em;
	color: #17344f;
}

.donate-card__actions a {
	display: grid;
	grid-template-columns: 30px 1fr;
	gap: 10px;
	justify-content: start;
	align-items: center;
	padding-left: 12px;
	padding-right: 12px;
	text-align: left;
}

.donate-card__actions a span:last-child {
	line-height: 1.2;
}

.donate-card__action-icon {
	width: 30px;
	height: 30px;
	border-radius: 6px;
	display: grid;
	place-items: center;
	background: rgba(20, 60, 109, .08);
	color: #17344f;
	font-size: .92rem;
	flex: 0 0 auto;
}

.donate-card__link--gold {
    margin-top: 30px;
    border-color: #e1a741;
    background: linear-gradient(180deg, #e4ab4a 0%, #d29132 100%);
    color: #fff;
    width: 100%;
}

.donate-card__footnote {
	margin-top: 14px !important;
	font-size: .94rem;
	color: rgba(13, 35, 64, .8);
}

.donate-cards {
	padding: 4px 0 20px;
}

.donate-cards__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.donate-framework {
	padding: 32px 0 32px;
	background: linear-gradient(180deg, #061a31 0%, #071b33 100%);
	color: #fff;
}

.donate-framework__title {
	margin: 0 0 14px;
	text-align: center;
	font-size: clamp(1.6rem, 2.5vw, 2.25rem);
	font-weight: 900;
	letter-spacing: -.03em;
	color: #fff;
	text-transform: none;
}

.donate-framework__inner {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	background: linear-gradient(180deg, #061a31 0%, #071b33 100%);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 18px 42px rgba(7, 27, 51, .16);
	border: 1px solid rgba(255, 255, 255, .08);
}

.donate-framework__item {
	padding: 24px 20px;
	text-align: left;
	color: #fff;
	border-right: 1px solid rgba(255, 255, 255, .16);
	display: grid;
	grid-template-columns: 74px 1fr;
	gap: 16px;
	align-items: center;
}

.donate-framework__item:last-child {
	border-right: 0;
}

.donate-framework__item i {
	font-size: 2.2rem;
	color: #e1ad4c;
	justify-self: center;
}

.donate-framework__item strong {
	font-size: 1.02rem;
	line-height: 1.45;
	max-width: 220px;
}

@media (max-width: 1100px) {
	.donate-hero__inner,
	.donate-giving__grid {
		grid-template-columns: 1fr;
	}

	.donate-hero__rail {
		justify-self: stretch;
		width: 100%;
	}

	.donate-impact__grid,
	.donate-cards__grid,
	.donate-framework__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.donate-framework__title {
		margin-bottom: 12px;
	}

	.donate-framework__item {
		grid-template-columns: 62px 1fr;
		padding: 22px 18px;
	}

	.donate-impact__panel {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.donate-impact__intro {
		grid-column: 1 / -1;
		border-right: 0;
		border-bottom: 1px solid rgba(12, 32, 58, .08);
	}

	.donate-impact__why {
		grid-column: 1 / -1;
		border-left: 0;
		border-top: 1px solid rgba(12, 32, 58, .08);
	}
}

@media (max-width: 767px) {
	.donate-hero {
		min-height: auto;
		background-position: center center;
	}

	.donate-hero__inner {
		grid-template-columns: 1fr;
		min-height: auto;
		padding-top: 34px;
		padding-bottom: 24px;
	}

	.donate-hero__copy h1 {
		font-size: clamp(2.1rem, 10vw, 3rem);
	}

	.donate-hero__copy p {
		font-size: .95rem;
	}

	.donate-impact__panel,
	.donate-giving__grid,
	.donate-cards__grid,
	.donate-framework__inner {
		grid-template-columns: 1fr;
	}

	.donate-impact__intro {
		padding: 20px 18px 16px;
		border-right: 0;
		border-bottom: 1px solid rgba(12, 32, 58, .08);
	}

	.donate-impact__item {
		padding: 20px 18px;
	}

	.donate-impact__item:last-child {
		border-bottom: 0;
	}

	.donate-impact__why {
		padding: 18px 18px 20px;
		border-left: 0;
		border-top: 1px solid rgba(12, 32, 58, .08);
	}

	.donate-impact__why-label {
		white-space: normal;
	}

	.donate-impact__why p {
		max-width: none;
		font-size: .98rem;
	}

	.donate-benefits {
		gap: 18px;
	}

	.donate-benefits li {
		grid-template-columns: 40px 1fr;
		gap: 12px;
	}

	.donate-benefits li img {
		width: 36px;
		height: 36px;
	}

	.donate-benefits li span {
		font-size: .96rem;
	}

	.donate-giving {
		padding-top: 18px;
	}

	.donate-giving__copy,
	.donate-scale,
	.donate-form,
	.donate-card {
		padding: 20px;
	}

	.donate-form__choices--gift {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
	.donate-form__choices--amounts {
		grid-template-columns: 1fr 1fr;
	}

	.donate-scale li {
		grid-template-columns: 86px 1fr;
	}

	.donate-card h3,
	.donate-form h3,
	.donate-scale h3 {
		font-size: 1.25rem;
	}

	.donate-framework__item {
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, .12);
	}

	.donate-framework__item:last-child {
		border-bottom: 0;
	}

	    .donate-framework__title {
        font-size: 1.35rem;
        text-align: left;
        margin-bottom: 30px;
    }

	.donate-card__actions a,
	.donate-card__link {
		width: 100%;
	}

	.donate-card__actions a,
	.donate-card__link {
		padding-left: 12px;
	}

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

@media (max-width: 767px) {
	.news-page .news-publications-section {
		padding-bottom: 22px;
	}

	.news-page .news-publications-panel,
	.news-page .news-activity-panel {
		padding: 20px;
	}

	.news-page .news-section-head {
		padding: 0 0 8px;
		gap: 10px;
		flex-wrap: wrap;
	}

	.news-page .news-section-head h2 {
		font-size: 0.98rem;
	}

	.news-page .news-section-head a,
	.news-page .news-activity-link {
		font-size: 0.75rem;
	}

	.news-page .news-publications-grid {
		grid-template-columns: 1fr;
		padding: 10px 0 0;
	}

	.news-page .news-publication-card {
		min-height: 240px;
	}

	.news-page .news-publication-copy h3 {
		max-width: 220px;
		font-size: 1.2rem;
	}

	.news-page .news-publication-top img {
		width: 46px;
	}

	.news-page .news-publication-download {
		font-size: 0.72rem;
		padding: 9px 10px;
	}

	.news-page .news-media-section {
		padding: 32px 0;
	}

	.news-page .news-media-grid {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 18px 0 14px;
	}

	.news-page .news-media-mention {
		grid-template-columns: auto 1fr;
		grid-template-rows: auto auto auto;
		gap: 10px 12px;
		padding: 12px;
	}

	.news-page .news-media-logo {
		grid-column: 1;
		grid-row: 1 / span 2;
		min-width: 60px;
		height: 60px;
	}

	.news-page .news-media-logo img {
		max-width: 50px;
		max-height: 42px;
	}

	.news-page .news-media-content {
		grid-column: 2;
		grid-row: 1 / span 2;
	}

	.news-page .news-media-content h3 {
		font-size: 0.9rem;
	}

	.news-page .news-media-link {
		grid-column: 1 / -1;
		justify-self: flex-start;
		font-size: 0.75rem;
	}

	.news-page .news-media-view-all {
		font-size: 0.78rem;
	}

	.news-page .news-activity-content {
		grid-template-columns: 1fr;
		padding: 10px 0 0;
	}

	

	.news-page .news-activity-box {
		padding: 14px;
	}

	.news-page .news-activity-list {
		gap: 10px;
	}

	.news-page .news-activity-list li {
		font-size: 0.8rem;
	}

	.news-page .news-activity-link {
		margin-top: 14px;
	}
}

@media (max-width:576px) {
	

	.news-page .news-media-section {
		padding: 32px 0;
	}

	.news-page .news-media-grid {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 18px 0 14px;
	}

	.news-page .news-media-mention {
		grid-template-columns: auto 1fr;
		grid-template-rows: auto auto auto;
		gap: 10px 12px;
		padding: 12px;
	}

	.news-page .news-media-logo {
		grid-column: 1;
		grid-row: 1 / span 2;
		min-width: 60px;
		height: 60px;
	}

	.news-page .news-media-logo img {
		max-width: 50px;
		max-height: 42px;
	}

	.news-page .news-media-content {
		grid-column: 2;
		grid-row: 1 / span 2;
	}

	.news-page .news-media-content h3 {
		font-size: 0.9rem;
	}

	.news-page .news-media-link {
		grid-column: 1 / -1;
		justify-self: flex-start;
		font-size: 0.75rem;
	}

	.news-page .news-media-view-all {
		font-size: 0.78rem;
	}
}


/* Privacy policy hero/banner (matches supplied screenshot) */
		

		.privacy-hero {
    position: relative;
    padding: 30px 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.privacy-hero__feature-icon i {
    padding: 20px;
    font-size: 26px;
	color:#fff;
}
		.privacy-hero::before {
			content: '';
			position: absolute;
			inset: 0;
			background:#0a213e4f;
			pointer-events: none;
		}

		.privacy-hero .container {
			position: relative;
			z-index: 1;
		}

	.privacy-hero__inner {
    display: flex;
    padding: 24px 18px 18px;
    align-items: end;
}

		.privacy-hero__copy {
			padding-top: 4px;			
		}

	
		.privacy-hero__kicker {
			margin: 0 0 10px;
			font-size: .92rem;
			line-height: 1.2;
			font-weight: 800;
			letter-spacing: .14em;
			text-transform: uppercase;
			color: #f2b800;
		}

		.privacy-hero__copy h1 {
			margin: 0 0 8px;
			
			font-size: clamp(2.45rem, 4.3vw, 4.65rem);
			line-height: .90;
			letter-spacing: -.03em;
			font-weight: 900;
			max-width: 460px;
			color: #ffffff;
		}

		.privacy-hero__copy h2 {
			margin: 6px 0 16px;
			font-size: clamp(1.02rem, 1.75vw, 1.48rem);
			line-height: 1.15;
			font-weight: 700;
			color: #f2b800;
		}

		.privacy-hero__copy p {
			margin: 0 0 16px;
			font-size: clamp(.96rem, 1.1vw, 1.06rem);
			line-height: 1.62;
			color: #ffffff;
		}

		.privacy-hero__note {
			display: inline-flex;
			align-items: center;
			gap: 10px;
			margin-top: 8px;
			padding: 11px 14px;
			border: 1px solid rgba(255, 255, 255, .58);
			border-radius: 3px;
			background: rgba(0, 0, 0, 0);
			font-weight: 500;
			font-size: .99rem;
			color: #ffffff;
		}

		.privacy-hero__note-icon {
			width: 18px;
			height: 18px;
			object-fit: contain;
			flex: 0 0 auto;
		}

		.privacy-hero__features {
			grid-column: 1 / -1;
			grid-row: 2;
			display: grid;
			grid-template-columns: repeat(4, 1fr);
			gap: 16px 14px;
			width: 100%;
			padding-top: 4px;
			margin-top: 0;
		}

		.privacy-hero__feature {
			display: grid;
			grid-template-columns: 1fr;
			justify-items: center;
			align-items: start;
			text-align: center;
			gap: 10px;
			padding: 0;
		}

		.privacy-hero__feature-icon {
			border-radius: 50%;
		}

		.privacy-hero__feature--green .privacy-hero__feature-icon { background: linear-gradient(180deg, #4e8a34 0%, #2d6d25 100%); }
		.privacy-hero__feature--blue .privacy-hero__feature-icon { background: linear-gradient(180deg, #457dc0 0%, #25538d 100%); }
		.privacy-hero__feature--gold .privacy-hero__feature-icon { background: linear-gradient(180deg, #e0a52f 0%, #c88616 100%); }
		.privacy-hero__feature--green-alt .privacy-hero__feature-icon { background: linear-gradient(180deg, #5c9d41 0%, #3f7f2f 100%); }

		.privacy-hero__feature strong {
			display: block;
			font-size: .98rem;
			line-height: 1.12;
			font-weight: 700;
			color: #ffffff;
			margin-bottom: 2px;
		}

		

		@media (max-width: 991px) {
			.privacy-hero {
				background-position: 56% center;
			}

			.privacy-hero__copy p {
   
    width: 420px;
}

			    .privacy-hero__inner {
        row-gap: 18px;
        padding: 28px 18px 22px;
       flex-direction: column;
        align-items: flex-start;
    }


			.privacy-hero__features {
				grid-template-columns: repeat(4, 1fr);
			}
		}

		@media (max-width: 575px) {
			.privacy-hero {
				background-position: 64% center;
			}

			.privacy-hero::before {
				background:#0a213eab;
			}

			.privacy-hero__copy h1 {
				font-size: clamp(2.1rem, 10vw, 3rem);
			}

			.privacy-hero__copy h2 {
				margin-top: 10px;
				font-size: 1.02rem;
			}

			.privacy-hero__copy p {
				max-width: 100%;
				width:100%;
			}			

			.privacy-hero__features {
				grid-template-columns: 1fr 1fr;
				gap: 16px 12px;
			}

			


			.privacy-hero__feature strong,
			.privacy-hero__feature span {
				font-size: .88rem;
			}
		}

/* Privacy policy accordion */
.privacy-accordion {
	padding: 28px 0 48px;
	background: #ffffff;
	color: #05203a;
}
.privacy-accordion__inner {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 26px;
	align-items: start;
}
.privacy-accordion__nav ul {
	list-style: none;
	margin: 0;
	padding: 8px 0;
}
.privacy-accordion__nav li + li { margin-top: 10px; }
.privacy-accordion__nav button {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	background: #f6f9fb;
	border: 1px solid #e6eef6;
	padding: 10px 12px;
	text-align: left;
	color: #05203a;
	font-weight: 700;
	border-radius: 6px;
	cursor: pointer;
}
.privacy-accordion__nav--effective {
	background: #eff7eb;
	border-color: #cfe5c4;
	color: #2d6d25;
}
.privacy-accordion__nav .nav-icon {
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	background: #ffffff;
	border-radius: 6px;
	border: 1px solid #d7e6f3;
	color: #0a4b7a;
}
.privacy-accordion__nav--effective .nav-icon {
	background: #f7fff2;
	border-color: #cfe5c4;
	color: #2d6d25;
}

.privacy-panel { margin-bottom: 12px; border-bottom: 1px solid #e9f0f6; }
.privacy-panel__trigger {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 14px;
	background: transparent;
	border: 0;
	padding: 18px 6px;
	font-size: 1.02rem;
	font-weight: 800;
	text-align: left;
	cursor: pointer;
}
.privacy-panel__trigger:focus { outline: 3px solid rgba(34,128,176,.12); }
.panel-icon {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	    background: #ffffff;
    color: #03152d;
	border-radius: 8px;
	font-size: 1.05rem;
}
.panel-title { flex: 1; }

.privacy-panel__body { padding: 0 6px 16px 64px; color: #214b66; line-height: 1.6; }
.privacy-panel[aria-expanded="true"] .panel-chevron { transform: rotate(180deg); }

.privacy-contact-card__title {
	margin: 0;
	padding: 8px 12px;
	font-size: .95rem;
	font-weight: 800;
	letter-spacing: .03em;
	text-transform: uppercase;
	color: #05203a;
	background: #ffffff;
	border-bottom: 1px solid #dfe7ef;
}
.privacy-contact-card__intro {
	margin: 0;
	padding: 6px 12px 10px;
	font-size: .92rem;
	line-height: 1.45;
	color: #203b56;
}
.privacy-contact-card__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	background: #ffffff;	
}
.privacy-accordion__content {
    border: 1px solid #e9f0f6;
}
.privacy-accordion h2 {
    text-align: center;
    margin-bottom: 30px;
}
.privacy-contact-card__item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 10px 12px 12px;
	    background: #0b284d12;
}
.privacy-contact-card__item + .privacy-contact-card__item {
	border-left: 1px solid #dfe7ef;
}
.privacy-contact-card__icon {
	width: 22px;
	height: 22px;
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	color: #0a4b7a;
	font-size: 1rem;
	margin-top: 1px;
}
.privacy-contact-card__item strong,
.privacy-contact-card__item span {
	display: block;
	line-height: 1.15;
	word-break: break-word;
}
.privacy-contact-card__item strong {
	font-size: .9rem;
	font-weight: 700;
	color: #05203a;
}
.privacy-contact-card__item span i {
    font-size: 27px;
}
.privacy-contact-card__item span {
    font-size: .84rem;
    color: #0b274c;
}
.privacy-accordion__footer {
	margin-top: 16px;
	padding: 16px;
	border: 1px solid #e4edf5;
	border-radius: 10px;
	background: #f8fbfd;
}
.privacy-accordion__footer-note {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}
.privacy-accordion__footer-icon {
	width: 46px;
	height: 46px;
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	border-radius: 10px;
	background: linear-gradient(180deg, #4e8a34 0%, #2d6d25 100%);
	color: #fff;
	font-size: 1.05rem;
}
.privacy-accordion__footer-note strong {
	display: block;
	margin-bottom: 4px;
	font-size: 1rem;
	color: #05203a;
}
.privacy-accordion__footer-note p {
	margin: 0;
	color: #214b66;
	line-height: 1.6;
}

@media (max-width: 991px) {
	.privacy-accordion__inner { grid-template-columns: 1fr; }
	.privacy-accordion__nav { order: 2; }
	.privacy-accordion__content { order: 1; }
	
	.privacy-accordion__footer-note { align-items: flex-start; }
}

@media (max-width: 575px) {
	.privacy-accordion {
		padding: 22px 0 36px;
	}
	.privacy-panel__trigger {
		padding: 16px 0;
		font-size: .98rem;
	}
	.privacy-panel__body {
		font-size: .95rem;
	}
	.privacy-accordion__footer {
		padding: 14px;
	}
	.privacy-accordion__footer-note {
		gap: 12px;
	}
	.privacy-accordion__footer-icon {
		width: 42px;
		height: 42px;
	}
	.privacy-contact-card__grid {
		grid-template-columns: 1fr;
	}
	.privacy-contact-card__item + .privacy-contact-card__item {
		border-left: 0;
		border-top: 1px solid #dfe7ef;
	}
}

.privacy-trust {
	padding: 0;
	background: linear-gradient(90deg, #0a2346 0%, #0c2f58 100%);
	width: 100%;
}

.privacy-trust__feature-icon i {
    padding: 20px;
    font-size: 24px;
}
.privacy-trust__inner {
	display: grid;
	grid-template-columns: minmax(300px, 1.25fr) minmax(420px, 1fr);
	gap: 26px;
	align-items: center;
	padding: 18px 22px;
	border-radius: 0;
	
	box-shadow: none;
	width: 100%;
	margin: 0;
	color: #ffffff;
}
.privacy-trust__lead {
	display: grid;
	grid-template-columns: 92px 1fr;
	gap: 16px;
	align-items: center;
}
.privacy-trust__icon {
	width: 72px;
	height: 72px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	border: 3px solid #2a8bd6;
	color: #ffffff;
	font-size: 2rem;
	box-shadow: inset 0 0 0 2px rgba(255,255,255,.08);
}
.privacy-trust__kicker {
	margin: 0 0 8px;
	font-size: .98rem;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #f2b800;
}
.privacy-trust__copy p:last-child {
	margin: 0;
	font-size: .98rem;
	line-height: 1.55;
	color: rgba(255,255,255,.92);
}
.privacy-trust__features {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}
.privacy-trust__feature {
	display: grid;
	justify-items: center;
	text-align: center;
	color: #ffffff;
}
.privacy-trust__feature-icon {
	border-radius: 50%;	
}
.privacy-trust__feature--green .privacy-trust__feature-icon { background: linear-gradient(180deg, #5a9d40 0%, #39702b 100%); }
.privacy-trust__feature--blue .privacy-trust__feature-icon { background: linear-gradient(180deg, #4a82c8 0%, #29588d 100%); }
.privacy-trust__feature--gold .privacy-trust__feature-icon { background: linear-gradient(180deg, #f0b92f 0%, #cd8a10 100%); }
.privacy-trust__feature--green-alt .privacy-trust__feature-icon { background: linear-gradient(180deg, #6aac4d 0%, #4b7f33 100%); }
.privacy-trust__feature strong,
.privacy-trust__feature span {
	display: block;
	line-height: 1.15;
	color: #ffffff;
}
.privacy-trust__feature strong {
	font-size: .95rem;
	font-weight: 700;
}
.privacy-trust__feature span {
	font-size: .9rem;
	font-weight: 400;
	    margin-bottom: 10px;
}

@media (max-width: 991px) {
	.privacy-trust__inner {
		grid-template-columns: 1fr;
	}
	.privacy-trust__lead {
		grid-template-columns: 72px 1fr;
	}
	.privacy-trust__features {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.privacy-accordion__nav {
    display: none;
}
}

@media (max-width: 575px) {
	.privacy-trust {
		padding-bottom: 0;
	}
	.privacy-trust__inner {
		padding: 16px 14px;
		gap: 18px;
	}
	.privacy-trust__lead {
		grid-template-columns: 62px 1fr;
		gap: 12px;
	}
	.privacy-trust__icon {
		width: 58px;
		height: 58px;
		font-size: 1.6rem;
	}
	.privacy-trust__features {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px 12px;
	}
	
	.privacy-trust__feature strong {
		font-size: .88rem;
	}
	.privacy-trust__feature span {
		font-size: .82rem;
	}
}
