:root {
	--pact-blue: #004a87;
	--pact-blue-dark: #001e38;
	--pact-green: #8ec641;
	--pact-green-dark: #7db138;
	--pact-peach: #d97757;
	--pact-ink: #1f2937;
	--pact-muted: #4b5563;
	--pact-border: #e5e7eb;
	--pact-surface: #ffffff;
	--pact-soft: #ffffff;
	--pact-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	--pact-radius: 0.5rem;
	--pact-container: 80rem; /* matches Tailwind container ~ max-w-7xl */
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: #ffffff;
	color: var(--pact-ink);
	font-family: "Sora", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 200ms ease;
}

img {
	height: auto;
	max-width: 100%;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.screen-reader-text:focus {
	clip: auto;
	background: var(--pact-blue);
	color: #fff;
	height: auto;
	left: 1rem;
	padding: 0.75rem 1rem;
	top: 1rem;
	width: auto;
	z-index: 100000;
}

/* ---------- Header ---------- */

.site-header {
	background: #ffffff;
	box-shadow: var(--pact-shadow);
	position: sticky;
	top: 0;
	z-index: 50;
}

.site-header__inner {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin: 0 auto;
	max-width: var(--pact-container);
	padding: 0.75rem 1rem;
}

.site-branding {
	align-items: center;
	display: flex;
	flex-shrink: 0;
}

.site-logo,
.custom-logo-link {
	align-items: center;
	display: inline-flex;
}

.site-logo img,
.custom-logo {
	display: block;
	height: 40px;
	width: auto;
}

@media (min-width: 640px) {
	.site-logo img,
	.custom-logo {
		height: 48px;
	}
}

@media (min-width: 1024px) {
	.site-header__inner {
		min-height: 5rem;
		padding: 0 1rem;
	}

	.site-logo img,
	.custom-logo {
		height: 64px;
	}
}

/* Primary navigation - desktop only */
.primary-navigation {
	display: none;
}

@media (min-width: 1120px) {
	.primary-navigation {
		align-items: center;
		display: flex;
		flex: 1 1 auto;
		justify-content: center;
	}
}

.primary-menu,
.footer-menu,
.mobile-menu__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-menu {
	align-items: center;
	display: flex;
	gap: 1.5rem;
}

.primary-menu > .menu-item {
	position: relative;
}

.primary-menu > .menu-item > a {
	align-items: center;
	color: var(--pact-ink);
	display: inline-flex;
	font-size: 0.875rem;
	font-weight: 500;
	gap: 0.25rem;
	letter-spacing: 0.02em;
	padding: 0.5rem 0;
	text-transform: uppercase;
	white-space: nowrap;
}

.primary-menu > .menu-item > a:hover,
.primary-menu > .menu-item > a:focus,
.primary-menu > .menu-item.menu-item-has-children:hover > a {
	color: var(--pact-peach);
}

.primary-menu .menu-item-has-children > a::after {
	background: currentColor;
	content: "";
	display: inline-block;
	height: 0.65rem;
	width: 0.65rem;
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>") no-repeat center / contain;
	        mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>") no-repeat center / contain;
}

/* Desktop dropdown */
.primary-menu .sub-menu {
	background: #fff;
	border: 1px solid #f3f4f6;
	border-radius: 0.5rem;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	left: 0;
	list-style: none;
	margin: 0;
	min-width: 16rem;
	opacity: 0;
	padding: 0.5rem 0;
	pointer-events: none;
	position: absolute;
	top: 100%;
	transform: translateY(0.25rem);
	transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
	visibility: hidden;
	z-index: 60;
}

.primary-menu .menu-item-has-children:hover > .sub-menu,
.primary-menu .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	visibility: visible;
}

.primary-menu .sub-menu a {
	color: #374151;
	display: block;
	font-size: 0.875rem;
	padding: 0.5rem 1rem;
	transition: background 150ms ease, color 150ms ease;
}

.primary-menu .sub-menu a:hover,
.primary-menu .sub-menu a:focus {
	background: #f9fafb;
	color: var(--pact-peach);
}

/* Site actions */
.site-actions {
	align-items: center;
	display: flex;
	flex-shrink: 0;
	gap: 0.75rem;
}

.site-actions--desktop {
	display: none;
}

.site-actions--mobile {
	display: flex;
	gap: 0.5rem;
}

@media (min-width: 1120px) {
	.site-actions--desktop {
		display: flex;
		gap: 1rem;
	}

	.site-actions--mobile {
		display: none;
	}
}

/* Buttons */
.button {
	align-items: center;
	border: 0;
	border-radius: 9999px;
	cursor: pointer;
	display: inline-flex;
	font-family: "Sora", system-ui, -apple-system, sans-serif;
	font-weight: 700;
	gap: 0.5rem;
	justify-content: center;
	letter-spacing: 0.05em;
	line-height: 1;
	text-transform: uppercase;
	transition: background 300ms ease, color 300ms ease, border-color 300ms ease, transform 300ms ease, box-shadow 300ms ease;
	white-space: nowrap;
}

.button--donate {
	background: var(--pact-green);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	color: #fff;
	font-size: 0.875rem;
	padding: 0.75rem 2rem;
}

.button--donate:hover,
.button--donate:focus {
	background: var(--pact-green-dark);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
	color: #fff;
	transform: translateY(-2px);
}

.button--outline {
	background: transparent;
	border: 2px solid var(--pact-blue);
	color: var(--pact-blue);
	font-size: 0.875rem;
	padding: 0.625rem 1.5rem;
}

.button--outline:hover,
.button--outline:focus {
	background: var(--pact-blue);
	color: #fff;
}

.button--compact {
	font-size: 0.625rem;
	gap: 0.375rem;
	letter-spacing: 0.1em;
	padding: 0.375rem 0.75rem;
}

.button--compact.button--outline {
	padding: 0.3125rem 0.75rem;
}

.button__icon {
	flex-shrink: 0;
}

/* Hamburger */
.menu-toggle {
	align-items: center;
	background: #f9fafb;
	border: 1px solid #f3f4f6;
	border-radius: 0.5rem;
	color: var(--pact-blue);
	cursor: pointer;
	display: inline-flex;
	justify-content: center;
	margin-left: 0.25rem;
	padding: 0.375rem;
	transition: background 200ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus {
	background: #f3f4f6;
}

@media (min-width: 1120px) {
	.menu-toggle {
		display: none;
	}
}

/* Mobile menu drawer */
.mobile-menu {
	background: #fff;
	border-top: 1px solid var(--pact-border);
}

.mobile-menu[hidden] {
	display: none;
}

@media (min-width: 1120px) {
	.mobile-menu {
		display: none !important;
	}
}

@media (min-width: 1120px) and (max-width: 1279px) {
	.site-header__inner {
		gap: 0.75rem;
		padding-left: 0.75rem;
		padding-right: 0.75rem;
	}

	.primary-menu {
		gap: 0.75rem;
	}

	.site-actions--desktop {
		gap: 0.5rem;
	}

	.site-actions--desktop .button--donate {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	.site-actions--desktop .button--outline {
		padding-left: 1.125rem;
		padding-right: 1.125rem;
	}
}

.mobile-menu__list {
	margin: 0 auto;
	max-width: var(--pact-container);
	padding: 1rem;
}

.mobile-menu__list .menu-item > a {
	border-radius: 0.375rem;
	color: var(--pact-ink);
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	padding: 0.75rem 1rem;
	text-transform: uppercase;
	transition: background 150ms ease;
}

.mobile-menu__list .menu-item > a:hover,
.mobile-menu__list .menu-item > a:focus {
	background: #f3f4f6;
}

.mobile-menu__list .sub-menu {
	list-style: none;
	margin: 0.25rem 0 0.5rem 1rem;
	padding: 0;
}

.mobile-menu__list .sub-menu a {
	color: #4b5563;
	display: block;
	font-size: 0.875rem;
	padding: 0.5rem 1rem;
}

.mobile-menu__list .sub-menu a:hover,
.mobile-menu__list .sub-menu a:focus {
	color: var(--pact-peach);
}

/* ---------- Main / fallback content ---------- */

.site-main {
	min-height: 60vh;
}

.content-shell {
	margin: 0 auto;
	max-width: 64rem;
	padding: 4rem 1rem;
}

.content-entry {
	background: #fff;
	border: 1px solid var(--pact-border);
	border-radius: var(--pact-radius);
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
	padding: clamp(1.5rem, 4vw, 3rem);
}

.entry-title {
	color: var(--pact-blue);
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 1.25rem;
}

.entry-content {
	color: var(--pact-muted);
	font-family: "Rubik", system-ui, -apple-system, sans-serif;
	font-size: 1rem;
}

.entry-content > *:first-child { margin-top: 0; }
.entry-content > *:last-child { margin-bottom: 0; }

/* ---------- Error pages ---------- */

.error-page {
	align-items: center;
	background:
		radial-gradient(circle at 12% 18%, rgba(142, 198, 65, 0.12), transparent 26rem),
		linear-gradient(135deg, #f8fafc 0%, #ffffff 48%, #fff9ea 100%);
	display: flex;
	min-height: calc(100vh - 96px);
	padding: clamp(3rem, 7vw, 6rem) 1rem;
	text-align: center;
}

.error-page--server {
	background:
		radial-gradient(circle at 12% 18%, rgba(217, 119, 87, 0.14), transparent 26rem),
		linear-gradient(135deg, #fff7ed 0%, #ffffff 50%, #f8fafc 100%);
}

.error-page__inner {
	margin: 0 auto;
	max-width: 48rem;
	width: 100%;
}

.error-page__brand {
	display: flex;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.error-page__brand .site-logo img,
.error-page__brand .custom-logo {
	height: clamp(4.5rem, 10vw, 6rem);
	width: auto;
}

.error-page__eyebrow {
	color: var(--pact-blue);
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	margin: 0 0 0.5rem;
	text-transform: uppercase;
}

.error-page--server .error-page__eyebrow {
	color: var(--pact-peach);
}

.error-page__code {
	color: rgba(142, 198, 65, 0.22);
	font-size: clamp(6rem, 19vw, 12rem);
	font-weight: 800;
	line-height: 0.85;
	margin-bottom: 1.25rem;
}

.error-page--server .error-page__code {
	color: rgba(217, 119, 87, 0.22);
}

.error-page__message h1 {
	color: #0f172a;
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	line-height: 1.12;
	margin: 0;
}

.error-page__message p {
	color: #4b5563;
	font-family: "Rubik", system-ui, -apple-system, sans-serif;
	font-size: clamp(1rem, 2.5vw, 1.125rem);
	line-height: 1.75;
	margin: 1rem auto 0;
	max-width: 39rem;
}

.error-page__icon {
	color: var(--pact-green);
	display: flex;
	justify-content: center;
	margin: 2rem 0;
}

.error-page--server .error-page__icon {
	color: var(--pact-peach);
}

.error-page__icon svg {
	height: clamp(5rem, 14vw, 8rem);
	width: clamp(5rem, 14vw, 8rem);
}

.error-page__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

.error-page__support {
	background: #ffffff;
	border: 1px solid var(--pact-border);
	border-radius: var(--pact-radius);
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.06);
	margin: 2.5rem auto 0;
	max-width: 28rem;
	padding: 1.25rem;
}

.error-page__support p {
	color: #4b5563;
	font-family: "Rubik", system-ui, -apple-system, sans-serif;
	font-size: 0.9375rem;
	margin: 0 0 0.35rem;
}

.error-page__support a {
	color: var(--pact-blue);
	font-weight: 800;
}

.error-page__support a:hover,
.error-page__support a:focus {
	color: var(--pact-green-dark);
}

@media (max-width: 639px) {
	.error-page {
		min-height: calc(100vh - 72px);
	}

	.error-page__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.error-page__actions .button {
		white-space: normal;
		width: 100%;
	}
}

.legal-page {
	color: #4b5563;
	line-height: 1.75;
}

.legal-page .legal-page__lead {
	color: #4b5563;
	font-size: 1.125rem;
	line-height: 1.7;
	margin-bottom: 2.25rem;
}

@media (min-width: 640px) {
	.legal-page .legal-page__lead {
		font-size: 1.25rem;
	}
}

.legal-page h2 {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 1.25;
	margin: 2.5rem 0 1rem;
}

.legal-page p {
	margin-bottom: 1rem;
}

.legal-page a {
	color: var(--pact-blue);
	font-weight: 800;
}

.legal-page a:hover,
.legal-page a:focus {
	text-decoration: underline;
}

.legal-page__callout {
	background: #f9fafb;
	border: 1px solid #eef2f7;
	border-radius: var(--pact-radius);
	margin-top: 3rem;
	padding: 1.5rem;
}

@media (min-width: 640px) {
	.legal-page__callout {
		padding: 2rem;
	}
}

.legal-page__callout p {
	color: #111827;
	font-weight: 600;
	margin: 0;
}

.legal-page__notice {
	background: #fef2f2;
	border: 1px solid #fee2e2;
	border-radius: 1rem;
	margin-bottom: 2rem;
	padding: 1.25rem;
}

@media (min-width: 640px) {
	.legal-page__notice {
		padding: 1.5rem;
	}
}

.legal-page__notice p {
	color: #111827;
	font-weight: 800;
	margin: 0;
}

body.page-id-18 .content-entry,
body.page-id-19 .content-entry,
body.page-id-20 .content-entry,
body.page-id-21 .content-entry {
	background: transparent;
	border: 0;
	box-shadow: none;
	padding-left: 0;
	padding-right: 0;
}

body.page-id-18 .entry-title,
body.page-id-19 .entry-title,
body.page-id-20 .entry-title,
body.page-id-21 .entry-title {
	color: #111827;
	font-weight: 800;
	margin-bottom: 1.75rem;
}

@media (max-width: 639px) {
	body.page-id-18 .entry-title,
	body.page-id-19 .entry-title,
	body.page-id-20 .entry-title,
	body.page-id-21 .entry-title,
	body.page-id-18 .legal-page__lead,
	body.page-id-19 .legal-page__lead,
	body.page-id-20 .legal-page__lead,
	body.page-id-21 .legal-page__lead {
		text-align: center;
	}
}

/* ---------- Footer ---------- */

.site-footer {
	background: var(--pact-blue);
	color: #fff;
}

.site-footer__main {
	padding: 4rem 1rem;
}

.site-footer__inner {
	margin: 0 auto;
	max-width: var(--pact-container);
}

.site-footer__columns {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
	margin-bottom: 3rem;
}

@media (min-width: 640px) {
	.site-footer__columns {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.site-footer__columns {
		gap: 3rem;
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.site-footer__brand {
	text-align: center;
}

@media (min-width: 640px) {
	.site-footer__brand {
		text-align: left;
	}
}

.site-footer .site-logo img,
.site-footer .custom-logo {
	display: inline-block;
	filter: brightness(0) invert(1);
	height: 48px;
	margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
	.site-footer .site-logo img,
	.site-footer .custom-logo {
		height: 64px;
	}
}

.site-footer__brand p {
	color: rgba(255, 255, 255, 0.8);
	font-family: "Rubik", system-ui, sans-serif;
	font-size: 0.875rem;
	line-height: 1.625;
	margin: 0 0 1.5rem;
}

.site-social {
	display: flex;
	gap: 1rem;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (min-width: 640px) {
	.site-social {
		justify-content: flex-start;
	}
}

.site-social a {
	align-items: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 9999px;
	color: #fff;
	display: inline-flex;
	height: 2.5rem;
	justify-content: center;
	transition: background 200ms ease;
	width: 2.5rem;
}

.site-social a:hover,
.site-social a:focus {
	background: var(--pact-green);
	color: #fff;
}

.site-footer__column {
	text-align: center;
}

@media (min-width: 640px) {
	.site-footer__column {
		text-align: left;
	}
}

.site-footer__column h2 {
	color: #fff;
	font-family: "Sora", system-ui, sans-serif;
	font-size: 1.125rem;
	font-weight: 600;
	margin: 0 0 1.5rem;
}

.site-footer__column ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__column li + li {
	margin-top: 0.75rem;
}

.site-footer__column a {
	color: rgba(255, 255, 255, 0.8);
	font-family: "Rubik", system-ui, sans-serif;
	font-size: 0.875rem;
}

.site-footer__column a:hover,
.site-footer__column a:focus {
	color: var(--pact-green);
}

.site-footer__newsletter p {
	color: rgba(255, 255, 255, 0.8);
	font-family: "Rubik", system-ui, sans-serif;
	font-size: 0.875rem;
	margin: 0 0 1.5rem;
}

.newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.newsletter-form input[type="email"] {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 0.5rem;
	color: #fff;
	font-family: "Rubik", system-ui, sans-serif;
	font-size: 0.875rem;
	padding: 0.625rem 1rem;
	transition: background 200ms ease, border-color 200ms ease;
	width: 100%;
}

.newsletter-form input[type="email"]::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input[type="email"]:focus {
	background: rgba(255, 255, 255, 0.2);
	border-color: var(--pact-green);
	outline: none;
}

.newsletter-form__honeypot {
	display: none;
}

.newsletter-form__submit {
	background: var(--pact-green);
	border: 0;
	border-radius: 0.5rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	color: #fff;
	cursor: pointer;
	font-family: "Rubik", system-ui, sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	padding: 0.625rem 1.5rem;
	transition: background 200ms ease, box-shadow 200ms ease;
	width: 100%;
}

.newsletter-form__submit:hover,
.newsletter-form__submit:focus {
	background: var(--pact-green-dark);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Contact info bar */
.site-footer__contact-bar {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: grid;
	font-family: "Rubik", system-ui, sans-serif;
	gap: 2.5rem;
	grid-template-columns: 1fr;
	padding-top: 3rem;
}

@media (min-width: 640px) {
	.site-footer__contact-bar {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.site-footer__contact-bar {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.contact-card {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	text-align: center;
}

@media (min-width: 640px) {
	.contact-card {
		align-items: flex-start;
		flex-direction: row;
		text-align: left;
	}
}

.contact-card__icon {
	align-items: center;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 9999px;
	color: #fff;
	display: inline-flex;
	flex-shrink: 0;
	height: 3rem;
	justify-content: center;
	width: 3rem;
}

.contact-card__label {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.625rem;
	letter-spacing: 0.2em;
	margin: 0 0 0.25rem;
	text-transform: uppercase;
}

.contact-card__value {
	color: #fff;
	font-size: 1rem;
	font-weight: 500;
	margin: 0;
}

.contact-card__value a {
	color: #fff;
}

.contact-card__value a:hover,
.contact-card__value a:focus {
	color: var(--pact-green);
}

/* Bottom bar */
.site-footer__bottom {
	background: var(--pact-blue-dark);
	padding: 1.5rem 1rem;
}

.site-footer__bottom-inner {
	align-items: center;
	color: rgba(255, 255, 255, 0.7);
	display: flex;
	flex-direction: column;
	font-family: "Rubik", system-ui, sans-serif;
	font-size: 0.875rem;
	gap: 1rem;
	justify-content: space-between;
	margin: 0 auto;
	max-width: var(--pact-container);
}

@media (min-width: 768px) {
	.site-footer__bottom-inner {
		flex-direction: row;
	}
}

.site-footer__bottom-inner p {
	margin: 0;
}

.footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
	justify-content: center;
}

@media (min-width: 768px) {
	.footer-menu {
		justify-content: flex-end;
	}
}

.footer-menu a {
	color: rgba(255, 255, 255, 0.7);
}

.footer-menu a:hover,
.footer-menu a:focus {
	color: var(--pact-green);
}

/* ==========================================================================
   Hero Slider
   ========================================================================== */

.hero-slider {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.hero-slider__slide {
	position: relative;
	height: 450px;
	width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

@media (min-width: 1024px) {
	.hero-slider__slide {
		height: 550px;
	}
}

.hero-slider__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.hero-slider__content {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-slider__inner {
	max-width: 56rem; /* ~max-w-4xl */
	padding: 0 1rem;
	text-align: center;
	color: #ffffff;
}

.hero-slider__title {
	font-family: 'Sora', sans-serif;
	font-size: 2.25rem;    /* 36px */
	font-weight: 600;
	line-height: 1.22;
	margin: 0 0 1rem;
	color: #ffffff;
}

@media (min-width: 1024px) {
	.hero-slider__title {
		font-size: 3.3125rem; /* 53px */
		line-height: 1.226;
	}
}

/* Non-h1 slides use a <p> styled identically */
.hero-slider__title--h2 {
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1.22;
	margin: 0 0 1rem;
}

@media (min-width: 1024px) {
	.hero-slider__title--h2 {
		font-size: 3.3125rem;
		line-height: 1.226;
	}
}

.hero-slider__subtitle {
	font-family: 'Rubik', sans-serif;
	font-size: 1.125rem; /* text-lg */
	font-weight: 300;
	line-height: 1.6;
	margin: 0;
	color: #ffffff;
}

@media (min-width: 768px) {
	.hero-slider__subtitle {
		font-size: 1.25rem; /* text-xl */
	}
}

@media (min-width: 1024px) {
	.hero-slider__subtitle {
		font-size: 1.5rem; /* text-2xl */
	}
}

/* Swiper nav arrow overrides */
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
	color: #ffffff;
	width: 50px;
	height: 50px;
	background: transparent;
	border: none;
	cursor: pointer;
	--swiper-navigation-size: 20px;
}

.hero-slider .swiper-button-prev:hover,
.hero-slider .swiper-button-next:hover {
	background: transparent;
}

/* Swiper pagination overrides */
.hero-slider .swiper-pagination {
	bottom: 30px !important;
}

.hero-slider .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: #ffffff;
	opacity: 0.5;
	transition: all 0.3s ease;
	border-radius: 6px;
}

.hero-slider .swiper-pagination-bullet-active {
	opacity: 1;
	background: #ffffff;
	width: 30px;
	border-radius: 6px;
}

/* ==========================================================================
   Three Pillars
   ========================================================================== */

.three-pillars {
	display: grid;
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.three-pillars {
		grid-template-columns: repeat(3, 1fr);
	}
}

.pillar {
	position: relative;
	overflow: hidden;
	min-height: 350px;
	display: flex;
	align-items: center;
	color: #ffffff;
}

/* Background image — zooms on hover */
.pillar__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: transform 700ms ease;
}

.pillar:hover .pillar__bg {
	transform: scale(1.1);
}

/* Coloured overlay at ~92% opacity */
.pillar__overlay {
	position: absolute;
	inset: 0;
	opacity: 0.92;
}

/* Content sits above bg + overlay */
.pillar__body {
	position: relative;
	z-index: 10;
	padding: 1.5rem;
}

@media (min-width: 640px) {
	.pillar__body {
		padding: 2rem;
	}
}

@media (min-width: 1024px) {
	.pillar__body {
		padding: 3rem;
	}
}

.pillar__icon {
	width: 2.5rem;  /* 40px */
	height: 2.5rem;
	display: block;
	margin-bottom: 1rem;
}

.pillar__heading {
	font-family: 'Sora', sans-serif;
	font-size: 1.625rem;  /* 26px */
	line-height: 2rem;    /* 32px */
	font-weight: 600;
	margin: 0 0 0.75rem;
	color: #ffffff;
}

.pillar__text {
	font-family: 'Rubik', sans-serif;
	font-size: 0.9375rem; /* 15px */
	line-height: 1.25rem; /* 20px */
	font-weight: 400;
	margin: 0 0 1.5rem;
	color: #ffffff;
}

.pillar__cta {
	display: inline-block;
	background: #ffffff;
	color: #000000;
	padding: 0.5rem 1.5rem;
	border-radius: 9999px;
	font-family: 'Sora', sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	transition: background-color 200ms ease;
	text-decoration: none;
}

.pillar__cta:hover,
.pillar__cta:focus {
	background: #f3f4f6;
	color: #000000;
}

/* ==========================================================================
   Scholarship Feature
   ========================================================================== */

.schol-feature {
	background: #fff9ea;
	padding: 3rem 1rem;
}

@media (min-width: 1024px) {
	.schol-feature {
		padding: 5rem 1rem;
	}
}

.schol-feature__inner {
	max-width: var(--pact-container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem 3rem;
}

@media (min-width: 1024px) {
	.schol-feature__inner {
		grid-template-columns: 1fr 1fr;
		gap: 3rem;
	}
}

/* --- Left column --- */

.schol-feature__left {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

@media (min-width: 1024px) {
	.schol-feature__left {
		align-items: flex-start;
		text-align: left;
	}
}

.schol-feature__logos {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem 1.5rem;
	margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
	.schol-feature__logos {
		justify-content: flex-start;
		gap: 1rem 1.5rem;
		margin-bottom: 2rem;
	}
}

.schol-feature__logo {
	height: 5rem;
	width: auto;
	object-fit: contain;
}

@media (min-width: 1024px) {
	.schol-feature__logo {
		height: 7rem;
	}
}

.schol-feature__eyebrow {
	font-family: 'Rubik', sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #6b7280;
	margin: 0 0 0.5rem;
}

.schol-feature__hashtag {
	font-family: 'Sora', sans-serif;
	font-size: 1.875rem;
	font-weight: 700;
	color: #F7941D;
	margin: 0 0 1rem;
	line-height: 1.2;
}

@media (min-width: 1024px) {
	.schol-feature__hashtag {
		font-size: 3rem;
	}
}

.schol-feature__subtitle {
	font-family: 'Sora', sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--pact-peach);
	margin: 0 0 1rem;
	line-height: 1.3;
}

@media (min-width: 1024px) {
	.schol-feature__subtitle {
		font-size: 1.875rem;
	}
}

.schol-feature__tagline {
	font-family: 'Rubik', sans-serif;
	font-size: 1rem;
	font-weight: 500;
	color: #4b5563;
	margin: 0;
}

/* --- Right column --- */

.schol-feature__right {
	display: flex;
	flex-direction: column;
	text-align: center;
}

@media (min-width: 1024px) {
	.schol-feature__right {
		text-align: left;
	}
}

.schol-feature__label {
	font-family: 'Rubik', sans-serif;
	font-size: 1.125rem;
	line-height: 1.3125rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #252525;
	margin: 0 0 1rem;
}

.schol-feature__heading {
	font-family: 'Sora', sans-serif;
	font-size: 2rem;
	line-height: 2.5rem;
	font-weight: 600;
	margin: 0 0 1.5rem;
}

@media (min-width: 1024px) {
	.schol-feature__heading {
		font-size: 2.5rem;
		line-height: 3.125rem;
	}
}

.schol-feature__heading-black {
	color: #252525;
}

.schol-feature__heading-peach {
	color: var(--pact-peach);
}

.schol-feature__body {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 2rem;
}

.schol-feature__body p {
	font-family: 'Rubik', sans-serif;
	font-size: 1rem;
	line-height: 1.375rem;
	color: #7a7a7a;
	margin: 0;
}

.schol-feature__callout {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	background: rgba(217, 119, 87, 0.1);
	border: 1px solid rgba(217, 119, 87, 0.3);
	border-radius: 0.75rem;
	padding: 0.75rem 1rem;
}

.schol-feature__callout p {
	font-size: 0.9375rem !important;
	font-weight: 600 !important;
	color: var(--pact-peach) !important;
	margin: 0;
}

.schol-feature__callout-icon {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--pact-peach);
	flex-shrink: 0;
	margin-top: 0.125rem;
}

.schol-feature__cta-wrap {
	display: flex;
	justify-content: center;
}

@media (min-width: 1024px) {
	.schol-feature__cta-wrap {
		justify-content: flex-start;
	}
}

.schol-feature__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--pact-green);
	color: #ffffff;
	padding: 0.75rem 2rem;
	border-radius: 9999px;
	font-family: 'Sora', sans-serif;
	font-weight: 700;
	box-shadow: 0 4px 14px rgba(0,0,0,0.15);
	transition: background-color 200ms ease;
	width: 100%;
	justify-content: center;
}

@media (min-width: 640px) {
	.schol-feature__cta {
		width: auto;
	}
}

.schol-feature__cta:hover,
.schol-feature__cta:focus {
	background: var(--pact-green-dark);
	color: #ffffff;
}

.schol-feature__cta-arrow {
	width: 1.25rem;
	height: 1.25rem;
}

/* ==========================================================================
   Vision Feature
   ========================================================================== */

.vision-feature {
	background: #f4f9ed;
	display: grid;
	grid-template-columns: 1fr;
	overflow: hidden;
}

@media (min-width: 1024px) {
	.vision-feature {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.vision-feature__media {
	min-height: 20rem;
}

@media (min-width: 1024px) {
	.vision-feature__media {
		min-height: 34rem;
	}
}

.vision-feature__image {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.vision-feature__content {
	align-items: center;
	display: flex;
	padding: 3rem 1.5rem;
}

@media (min-width: 768px) {
	.vision-feature__content {
		padding: 4rem 3rem;
	}
}

@media (min-width: 1024px) {
	.vision-feature__content {
		padding: 5rem;
	}
}

.vision-feature__body {
	margin: 0 auto;
	max-width: 36rem;
	width: 100%;
}

.vision-feature__eyebrow {
	color: #252525;
	font-family: 'Rubik', sans-serif;
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.3125rem;
	margin: 0 0 1rem;
	text-transform: uppercase;
}

.vision-feature__heading {
	color: #252525;
	font-family: 'Sora', sans-serif;
	font-size: 1.75rem;
	font-weight: 600;
	line-height: 2.25rem;
	margin: 0 0 1.5rem;
}

.vision-feature__heading span {
	color: var(--pact-green);
}

@media (min-width: 1024px) {
	.vision-feature__heading {
		font-size: 2.5rem;
		line-height: 3.125rem;
	}
}

.vision-feature__text {
	color: #7a7a7a;
	font-family: 'Rubik', sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.375rem;
	margin: 0 0 2rem;
}

.vision-feature__cta {
	background: var(--pact-green);
	border-radius: 9999px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
	color: #ffffff;
	display: inline-block;
	font-family: 'Rubik', sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.0625rem;
	padding: 0.75rem 2rem;
	text-align: center;
	text-transform: uppercase;
	transition: background-color 200ms ease;
	width: 100%;
}

@media (min-width: 640px) {
	.vision-feature__cta {
		width: auto;
	}
}

.vision-feature__cta:hover,
.vision-feature__cta:focus {
	background: var(--pact-green-dark);
	color: #ffffff;
}

/* ==========================================================================
   Impact Pillars
   ========================================================================== */

.impact-pillars {
	background: #ffffff;
	padding: 3rem 1rem;
}

@media (min-width: 1024px) {
	.impact-pillars {
		padding: 5rem 1rem;
	}
}

.impact-pillars__inner {
	margin: 0 auto;
	max-width: 72rem;
}

.impact-pillars__header {
	margin: 0 auto 3rem;
	max-width: 46rem;
	text-align: center;
}

@media (min-width: 1024px) {
	.impact-pillars__header {
		margin-bottom: 4rem;
	}
}

.impact-pillars__eyebrow {
	color: #252525;
	font-family: 'Rubik', sans-serif;
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.3125rem;
	margin: 0 0 1rem;
	text-transform: uppercase;
}

.impact-pillars__heading {
	color: #252525;
	font-family: 'Sora', sans-serif;
	font-size: 2rem;
	font-weight: 600;
	line-height: 2.5rem;
	margin: 0;
}

@media (min-width: 1024px) {
	.impact-pillars__heading {
		font-size: 2.5rem;
		line-height: 3.125rem;
	}
}

.impact-pillars__heading span {
	color: var(--pact-peach);
}

.impact-pillars__grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
	.impact-pillars__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.impact-pillars__grid {
		gap: 3rem;
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
}

.impact-pillars__item {
	align-items: center;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.impact-pillars__icon-wrap {
	align-items: center;
	background: var(--pact-peach);
	border-radius: 9999px;
	color: #ffffff;
	display: flex;
	height: 5rem;
	justify-content: center;
	margin-bottom: 1rem;
	transition: transform 300ms ease;
	width: 5rem;
}

.impact-pillars__item:hover .impact-pillars__icon-wrap {
	transform: scale(1.1);
}

.impact-pillars__icon {
	display: block;
	height: 2.5rem;
	width: 2.5rem;
}

.impact-pillars__item-title {
	color: #252525;
	font-family: 'Sora', sans-serif;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.5rem;
	margin: 0 0 0.5rem;
}

.impact-pillars__item-text {
	color: #4b5563;
	font-family: 'Rubik', sans-serif;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.25rem;
	margin: 0;
}

/* ==========================================================================
   Collaborative Approach
   ========================================================================== */

.collab-feature {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 3rem 1rem;
}

@media (min-width: 1024px) {
	.collab-feature {
		padding: 5rem 1rem;
	}
}

.collab-feature__inner {
	margin: 0 auto;
	max-width: var(--pact-container);
}

.collab-feature__header {
	margin: 0 auto 3rem;
	max-width: 56rem;
	text-align: center;
}

.collab-feature__eyebrow {
	color: #252525;
	font-family: 'Rubik', sans-serif;
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.3125rem;
	margin: 0 0 1rem;
	text-transform: uppercase;
}

.collab-feature__heading {
	color: #252525;
	font-family: 'Sora', sans-serif;
	font-size: 1.75rem;
	font-weight: 600;
	line-height: 2.25rem;
	margin: 0 0 1rem;
}

@media (min-width: 1024px) {
	.collab-feature__heading {
		font-size: 2.5rem;
		line-height: 3.125rem;
	}
}

.collab-feature__heading span {
	color: #1a5f6f;
}

.collab-feature__intro {
	color: #4b5563;
	font-family: 'Rubik', sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5rem;
	margin: 0 auto;
	max-width: 56rem;
}

.collab-feature__slider {
	background: #111827;
	border-radius: var(--pact-radius);
	box-shadow: 0 25px 50px rgba(15, 23, 42, 0.22);
	overflow: hidden;
	position: relative;
}

.collab-feature__slide {
	height: 22rem;
	position: relative;
	width: 100%;
}

@media (min-width: 768px) {
	.collab-feature__slide {
		height: 28rem;
	}
}

@media (min-width: 1024px) {
	.collab-feature__slide {
		height: 31.25rem;
	}
}

.collab-feature__image {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.collab-feature__overlay {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
	inset: 0;
	position: absolute;
}

.collab-feature__caption {
	bottom: 0;
	color: #ffffff;
	left: 0;
	padding: 1.5rem;
	position: absolute;
	right: 0;
}

@media (min-width: 768px) {
	.collab-feature__caption {
		padding: 2rem;
	}
}

.collab-feature__slide-title {
	color: #ffffff;
	font-family: 'Sora', sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 2rem;
	margin: 0 0 0.5rem;
}

.collab-feature__slide-text {
	color: rgba(255, 255, 255, 0.9);
	font-family: 'Rubik', sans-serif;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.25rem;
	margin: 0;
}

.collab-feature__nav {
	align-items: center;
	background: rgba(255, 255, 255, 0.92);
	border: 0;
	border-radius: 9999px;
	box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
	color: #1f2937;
	cursor: pointer;
	display: flex;
	height: 2.75rem;
	justify-content: center;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: background-color 200ms ease, transform 200ms ease;
	width: 2.75rem;
	z-index: 10;
}

@media (min-width: 768px) {
	.collab-feature__nav {
		height: 3rem;
		width: 3rem;
	}
}

.collab-feature__nav--prev {
	left: 0.75rem;
}

.collab-feature__nav--next {
	right: 0.75rem;
}

@media (min-width: 768px) {
	.collab-feature__nav--prev {
		left: 1rem;
	}

	.collab-feature__nav--next {
		right: 1rem;
	}
}

.collab-feature__nav:hover,
.collab-feature__nav:focus {
	background: #ffffff;
	color: #1f2937;
	transform: translateY(-50%) scale(1.08);
}

.collab-feature__nav svg {
	display: block;
	height: 1.5rem;
	width: 1.5rem;
}

/* ==========================================================================
   Projects Showcase
   ========================================================================== */

.projects-showcase {
	background: #ffffff;
	padding: 3rem 1rem;
}

@media (min-width: 1024px) {
	.projects-showcase {
		padding: 5rem 1rem;
	}
}

.projects-showcase__inner {
	margin: 0 auto;
	max-width: var(--pact-container);
}

.projects-showcase__header {
	margin: 0 auto 3rem;
	text-align: center;
}

@media (min-width: 1024px) {
	.projects-showcase__header {
		margin-bottom: 4rem;
	}
}

.projects-showcase__eyebrow {
	color: #252525;
	font-family: 'Rubik', sans-serif;
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.3125rem;
	margin: 0 0 1rem;
	text-transform: uppercase;
}

.projects-showcase__heading {
	color: #252525;
	font-family: 'Sora', sans-serif;
	font-size: 1.75rem;
	font-weight: 600;
	line-height: 2.25rem;
	margin: 0;
}

@media (min-width: 1024px) {
	.projects-showcase__heading {
		font-size: 2.5rem;
		line-height: 3.125rem;
	}
}

.projects-showcase__heading span {
	color: var(--pact-green);
}

.projects-showcase__list {
	display: grid;
	gap: 3rem;
}

.projects-showcase__project {
	background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
	border-radius: var(--pact-radius);
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	overflow: hidden;
	transition: box-shadow 300ms ease, transform 300ms ease;
}

.projects-showcase__project:hover {
	box-shadow: 0 25px 50px rgba(15, 23, 42, 0.18);
	transform: translateY(-2px);
}

@media (min-width: 1024px) {
	.projects-showcase__project {
		align-items: center;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.projects-showcase__media {
	height: 21.875rem;
	overflow: hidden;
	position: relative;
}

@media (min-width: 1024px) {
	.projects-showcase__media {
		height: 28.125rem;
		order: 2;
	}

	.projects-showcase__project--media-first .projects-showcase__media {
		order: 1;
	}
}

.projects-showcase__image {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms ease;
	width: 100%;
}

.projects-showcase__project:hover .projects-showcase__image {
	transform: scale(1.05);
}

.projects-showcase__image-overlay {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
	inset: 0;
	position: absolute;
}

.projects-showcase__content {
	padding: 2rem;
}

@media (min-width: 1024px) {
	.projects-showcase__content {
		order: 1;
		padding: 3rem;
	}

	.projects-showcase__project--media-first .projects-showcase__content {
		order: 2;
	}
}

.projects-showcase__title {
	color: #252525;
	font-family: 'Sora', sans-serif;
	font-size: 1.375rem;
	font-weight: 600;
	line-height: 1.75rem;
	margin: 0 0 1rem;
}

@media (min-width: 1024px) {
	.projects-showcase__title {
		font-size: 1.75rem;
		line-height: 2.25rem;
	}
}

.projects-showcase__description {
	color: #4b5563;
	font-family: 'Rubik', sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5rem;
	margin: 0 0 1.5rem;
}

.projects-showcase__cta {
	align-items: center;
	background: var(--pact-green);
	border-radius: 9999px;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.14);
	color: #ffffff;
	display: inline-flex;
	font-family: 'Rubik', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	gap: 0.5rem;
	line-height: 1.25rem;
	padding: 0.75rem 2rem;
	transition: background-color 200ms ease, box-shadow 200ms ease;
}

.projects-showcase__cta:hover,
.projects-showcase__cta:focus {
	background: var(--pact-green-dark);
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
	color: #ffffff;
}

.projects-showcase__cta svg {
	display: block;
	height: 1.25rem;
	transition: transform 200ms ease;
	width: 1.25rem;
}

.projects-showcase__cta:hover svg,
.projects-showcase__cta:focus svg {
	transform: translateX(0.25rem);
}

/* ==========================================================================
   Projects Landing Page
   ========================================================================== */

.projects-landing-hero {
	background: var(--pact-blue);
	color: #ffffff;
	min-height: 34rem;
	overflow: hidden;
	padding: 5rem 1rem;
	position: relative;
}

@media (min-width: 1024px) {
	.projects-landing-hero {
		min-height: 40rem;
		padding: 7rem 1rem;
	}
}

.projects-landing-hero__background {
	display: block;
	height: 100%;
	inset: 0;
	object-fit: cover;
	opacity: 0.12;
	position: absolute;
	width: 100%;
}

.projects-landing-hero__overlay {
	background: rgba(0, 74, 135, 0.42);
	inset: 0;
	position: absolute;
}

.projects-landing-hero__inner {
	margin: 0 auto;
	max-width: 58rem;
	position: relative;
	text-align: center;
	z-index: 1;
}

.projects-landing-hero__eyebrow {
	color: var(--pact-green);
	font-family: 'Rubik', sans-serif;
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	line-height: 1.4;
	margin: 0 0 1.25rem;
	text-transform: uppercase;
}

.projects-landing-hero__heading {
	color: #ffffff;
	font-family: 'Sora', sans-serif;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.12;
	margin: 0;
}

@media (min-width: 1024px) {
	.projects-landing-hero__heading {
		font-size: 3.75rem;
	}
}

.projects-landing-hero__heading span {
	color: var(--pact-green);
	display: inline;
}

.projects-landing-hero__body {
	color: rgba(255, 255, 255, 0.9);
	font-family: 'Rubik', sans-serif;
	font-size: 1.0625rem;
	font-weight: 300;
	line-height: 1.75;
	margin: 1.75rem auto 0;
	max-width: 50rem;
}

@media (min-width: 1024px) {
	.projects-landing-hero__body {
		font-size: 1.25rem;
	}
}

.projects-landing-grid {
	background: #f9fafb;
	padding: 4rem 1rem;
}

@media (min-width: 1024px) {
	.projects-landing-grid {
		padding: 6rem 1rem;
	}
}

.projects-landing-grid__inner {
	margin: 0 auto;
	max-width: var(--pact-container);
}

.projects-landing-grid__heading {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 3rem;
	text-align: center;
}

@media (min-width: 1024px) {
	.projects-landing-grid__heading {
		font-size: 2.5rem;
	}
}

.projects-landing-grid__cards {
	display: grid;
	gap: 1.75rem;
}

@media (min-width: 1024px) {
	.projects-landing-grid__cards {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.projects-landing-card {
	background: #ffffff;
	border: 1px solid #eef2f7;
	border-radius: var(--pact-radius);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: box-shadow 250ms ease, transform 250ms ease;
}

.projects-landing-card:hover {
	box-shadow: 0 26px 52px rgba(15, 23, 42, 0.18);
	transform: translateY(-0.25rem);
}

.projects-landing-card__media-link {
	display: block;
	overflow: hidden;
	position: relative;
}

.projects-landing-card__image {
	aspect-ratio: 16 / 10;
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 650ms ease;
	width: 100%;
}

.projects-landing-card:hover .projects-landing-card__image {
	transform: scale(1.05);
}

.projects-landing-card__overlay {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
	inset: 0;
	position: absolute;
}

.projects-landing-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 1.75rem;
}

.projects-landing-card__title {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 1.45rem;
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 0.5rem;
}

.projects-landing-card__subtitle {
	color: var(--project-accent);
	font-family: 'Rubik', sans-serif;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 1rem;
}

.projects-landing-card__rule {
	background: var(--project-accent);
	border-radius: 9999px;
	display: block;
	height: 0.25rem;
	margin: 0 0 1.25rem;
	width: 3rem;
}

.projects-landing-card__description {
	color: #4b5563;
	flex: 1 1 auto;
	font-family: 'Rubik', sans-serif;
	font-size: 1rem;
	line-height: 1.65;
	margin: 0 0 1.75rem;
}

.projects-landing-card__cta {
	align-items: center;
	color: var(--project-accent);
	display: inline-flex;
	font-family: 'Rubik', sans-serif;
	font-size: 0.875rem;
	font-weight: 700;
	gap: 0.65rem;
	letter-spacing: 0.05em;
	margin-top: auto;
	text-transform: uppercase;
}

.projects-landing-card__cta span {
	align-items: center;
	background: color-mix(in srgb, var(--project-accent) 12%, transparent);
	border-radius: 9999px;
	display: inline-flex;
	height: 2rem;
	justify-content: center;
	transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
	width: 2rem;
}

.projects-landing-card__cta svg {
	display: block;
	height: 1rem;
	width: 1rem;
}

.projects-landing-card__cta:hover,
.projects-landing-card__cta:focus {
	color: var(--project-accent);
}

.projects-landing-card__cta:hover span,
.projects-landing-card__cta:focus span {
	background: var(--project-accent);
	color: #ffffff;
	transform: translateX(0.125rem);
}

.projects-landing-connected {
	background: #ffffff;
	overflow: hidden;
	padding: 4rem 1rem;
}

@media (min-width: 1024px) {
	.projects-landing-connected {
		padding: 6rem 1rem;
	}
}

.projects-landing-connected__inner {
	align-items: center;
	display: grid;
	gap: 3rem;
	margin: 0 auto;
	max-width: var(--pact-container);
}

@media (min-width: 1024px) {
	.projects-landing-connected__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.projects-landing-connected__media {
	border-radius: var(--pact-radius);
	box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
	overflow: hidden;
	position: relative;
}

@media (min-width: 1024px) {
	.projects-landing-connected__media {
		order: 1;
	}

	.projects-landing-connected__content {
		order: 2;
	}
}

.projects-landing-connected__image {
	display: block;
	width: 100%;
}

.projects-landing-connected__overlay {
	background: linear-gradient(35deg, rgba(0, 74, 135, 0.35), rgba(0, 74, 135, 0));
	inset: 0;
	position: absolute;
}

.projects-landing-connected__eyebrow {
	color: var(--pact-blue);
	font-family: 'Rubik', sans-serif;
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 1.4;
	margin: 0 0 0.75rem;
	text-transform: uppercase;
}

.projects-landing-connected__heading {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 1.5rem;
}

@media (min-width: 1024px) {
	.projects-landing-connected__heading {
		font-size: 2.5rem;
	}
}

.projects-landing-connected__copy p {
	color: #4b5563;
	font-family: 'Rubik', sans-serif;
	font-size: 1.0625rem;
	line-height: 1.7;
	margin: 0 0 1.25rem;
}

.projects-landing-connected__copy .projects-landing-connected__quote {
	color: #111827;
	font-weight: 500;
	font-style: italic;
	margin-bottom: 0;
}

.projects-landing-cta {
	background: var(--pact-blue);
	color: #ffffff;
	overflow: hidden;
	padding: 4rem 1rem;
	position: relative;
}

.projects-landing-cta::before {
	background: linear-gradient(120deg, rgba(142, 198, 65, 0.2), rgba(255, 255, 255, 0));
	content: "";
	inset: 0;
	position: absolute;
}

@media (min-width: 1024px) {
	.projects-landing-cta {
		padding: 6rem 1rem;
	}
}

.projects-landing-cta__inner {
	margin: 0 auto;
	max-width: 48rem;
	position: relative;
	text-align: center;
	z-index: 1;
}

.projects-landing-cta__heading {
	color: #ffffff;
	font-family: 'Sora', sans-serif;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 1.25rem;
}

@media (min-width: 1024px) {
	.projects-landing-cta__heading {
		font-size: 2.5rem;
	}
}

.projects-landing-cta__body {
	color: rgba(255, 255, 255, 0.9);
	font-family: 'Rubik', sans-serif;
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 1.7;
	margin: 0 auto 2rem;
	max-width: 42rem;
}

.projects-landing-cta__actions {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
}

@media (min-width: 640px) {
	.projects-landing-cta__actions {
		flex-direction: row;
	}
}

.projects-landing-cta__button {
	align-items: center;
	border-radius: 9999px;
	display: inline-flex;
	font-family: 'Rubik', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	gap: 0.5rem;
	justify-content: center;
	min-width: 12.5rem;
	padding: 0.875rem 1.75rem;
	transition: background-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.projects-landing-cta__button--primary {
	background: var(--pact-green);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
	color: #ffffff;
}

.projects-landing-cta__button--secondary {
	background: #ffffff;
	color: var(--pact-blue);
}

.projects-landing-cta__button:hover,
.projects-landing-cta__button:focus {
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
	transform: translateY(-0.125rem);
}

.projects-landing-cta__button--primary:hover,
.projects-landing-cta__button--primary:focus {
	background: var(--pact-green-dark);
	color: #ffffff;
}

.projects-landing-cta__button--secondary:hover,
.projects-landing-cta__button--secondary:focus {
	background: #f3f4f6;
	color: var(--pact-blue);
}

.projects-landing-cta__button svg {
	display: block;
	height: 1.25rem;
	width: 1.25rem;
}

/* ==========================================================================
   Make a Difference Landing Page
   ========================================================================== */

.make-difference-hero {
	background: var(--pact-blue);
	color: #ffffff;
	overflow: hidden;
	padding: 5rem 1rem;
	position: relative;
}

@media (min-width: 1024px) {
	.make-difference-hero {
		padding: 7rem 1rem;
	}
}

.make-difference-hero__background {
	display: block;
	height: 100%;
	inset: 0;
	object-fit: cover;
	opacity: 0.1;
	position: absolute;
	width: 100%;
}

.make-difference-hero__overlay {
	background: linear-gradient(180deg, rgba(0, 74, 135, 0.62), rgba(0, 74, 135, 0.94));
	inset: 0;
	position: absolute;
}

.make-difference-hero__inner {
	margin: 0 auto;
	max-width: 54rem;
	position: relative;
	text-align: center;
	z-index: 1;
}

.make-difference-hero__eyebrow,
.make-difference-section__eyebrow {
	font-family: 'Rubik', sans-serif;
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.4;
	margin: 0 0 1rem;
	text-transform: uppercase;
}

.make-difference-hero__eyebrow {
	color: var(--pact-green);
	margin-bottom: 1.25rem;
}

.make-difference-hero__heading {
	color: #ffffff;
	font-family: 'Sora', sans-serif;
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.08;
	margin: 0;
}

@media (min-width: 1024px) {
	.make-difference-hero__heading {
		font-size: 4rem;
	}
}

.make-difference-hero__heading span {
	color: var(--pact-green);
}

.make-difference-hero__body {
	color: rgba(255, 255, 255, 0.9);
	font-family: 'Rubik', sans-serif;
	font-size: 1.0625rem;
	font-weight: 300;
	line-height: 1.75;
	margin: 1.75rem auto 2rem;
	max-width: 48rem;
}

@media (min-width: 1024px) {
	.make-difference-hero__body {
		font-size: 1.25rem;
	}
}

.make-difference-hero__actions {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
}

@media (min-width: 640px) {
	.make-difference-hero__actions {
		flex-direction: row;
		flex-wrap: wrap;
	}
}

.make-difference-button,
.make-difference-donate__button,
.make-difference-volunteer__cta a,
.make-difference-cta a {
	align-items: center;
	border-radius: 9999px;
	display: inline-flex;
	font-family: 'Rubik', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	gap: 0.5rem;
	justify-content: center;
	min-width: 12rem;
	padding: 0.875rem 1.75rem;
	transition: background-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.make-difference-button:hover,
.make-difference-button:focus,
.make-difference-donate__button:hover,
.make-difference-donate__button:focus,
.make-difference-volunteer__cta a:hover,
.make-difference-volunteer__cta a:focus,
.make-difference-cta a:hover,
.make-difference-cta a:focus {
	transform: translateY(-0.125rem);
}

.make-difference-button--green,
.make-difference-donate__button,
.make-difference-cta a {
	background: var(--pact-green);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
	color: #ffffff;
}

.make-difference-button--green:hover,
.make-difference-button--green:focus,
.make-difference-donate__button:hover,
.make-difference-donate__button:focus,
.make-difference-cta a:hover,
.make-difference-cta a:focus {
	background: var(--pact-green-dark);
	color: #ffffff;
}

.make-difference-button--glass {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #ffffff;
}

.make-difference-button--glass:hover,
.make-difference-button--glass:focus {
	background: rgba(255, 255, 255, 0.18);
	color: #ffffff;
}

.make-difference-donate,
.make-difference-volunteer {
	background: #ffffff;
	padding: 4rem 1rem;
}

.make-difference-partnerships {
	background: #f9fafb;
	padding: 4rem 1rem;
	scroll-margin-top: 5rem;
}

@media (min-width: 1024px) {
	.make-difference-donate,
	.make-difference-partnerships,
	.make-difference-volunteer {
		padding: 6rem 1rem;
	}
}

.make-difference-section__inner,
.make-difference-donate__inner,
.make-difference-volunteer__inner {
	margin: 0 auto;
	max-width: var(--pact-container);
}

.make-difference-section__header {
	margin: 0 auto 3rem;
	max-width: 56rem;
	text-align: center;
}

.make-difference-section__eyebrow--blue {
	color: var(--pact-blue);
}

.make-difference-section__eyebrow--peach {
	color: var(--pact-peach);
}

.make-difference-section__heading {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 1.25rem;
}

@media (min-width: 1024px) {
	.make-difference-section__heading {
		font-size: 3rem;
	}
}

.make-difference-section__intro {
	color: #4b5563;
	font-family: 'Rubik', sans-serif;
	font-size: 1.0625rem;
	line-height: 1.75;
	margin: 0;
}

.make-difference-donate__inner {
	background: #f4f9ed;
	border: 1px solid rgba(142, 198, 65, 0.22);
	border-radius: var(--pact-radius);
	box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
	display: grid;
	overflow: hidden;
}

@media (min-width: 1024px) {
	.make-difference-donate__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 64rem;
	}
}

.make-difference-donate__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2rem;
}

@media (min-width: 768px) {
	.make-difference-donate__content {
		padding: 3rem;
	}
}

@media (min-width: 1024px) {
	.make-difference-donate__content {
		padding: 4rem;
	}
}

.make-difference-donate__content h2,
.make-difference-why h3,
.make-difference-engage h3,
.make-difference-volunteer__heading,
.make-difference-cta h2 {
	font-family: 'Sora', sans-serif;
	font-weight: 800;
	line-height: 1.2;
	margin: 0;
}

.make-difference-donate__content h2 {
	color: #111827;
	font-size: 2rem;
	margin-bottom: 1.25rem;
}

@media (min-width: 1024px) {
	.make-difference-donate__content h2 {
		font-size: 2.5rem;
	}
}

.make-difference-donate__content p,
.make-difference-benefit p,
.make-difference-why__item p,
.make-difference-engage__item p,
.make-difference-volunteer__body,
.make-difference-volunteer__role p,
.make-difference-volunteer__cta p {
	color: #4b5563;
	font-family: 'Rubik', sans-serif;
	font-size: 1rem;
	line-height: 1.7;
	margin: 0;
}

.make-difference-donate__trust {
	align-items: center;
	display: flex;
	gap: 1rem;
	margin: 2rem 0;
}

.make-difference-donate__trust-icon {
	align-items: center;
	background: #ffffff;
	border-radius: var(--pact-radius);
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
	color: var(--pact-green);
	display: inline-flex;
	flex: 0 0 auto;
	height: 3rem;
	justify-content: center;
	width: 3rem;
}

.make-difference-donate__trust-icon svg,
.make-difference-benefit__icon svg,
.make-difference-volunteer__check svg {
	display: block;
	height: 1.5rem;
	width: 1.5rem;
}

.make-difference-donate__trust strong {
	color: #111827;
	font-family: 'Rubik', sans-serif;
	font-weight: 700;
}

.make-difference-donate__button {
	align-self: flex-start;
}

.make-difference-donate__button svg,
.make-difference-volunteer__cta a svg {
	display: block;
	height: 1.125rem;
	width: 1.125rem;
}

.make-difference-donate__media {
	min-height: 20rem;
	overflow: hidden;
}

.make-difference-donate__media img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.make-difference-benefits {
	display: grid;
	gap: 1.5rem;
	margin: 0 0 3.5rem;
}

@media (min-width: 900px) {
	.make-difference-benefits {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.make-difference-benefit {
	background: #ffffff;
	border: 1px solid #eef2f7;
	border-radius: var(--pact-radius);
	box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
	padding: 2rem;
	text-align: center;
	transition: box-shadow 250ms ease, transform 250ms ease;
}

@media (min-width: 768px) {
	.make-difference-benefit {
		text-align: left;
	}
}

.make-difference-benefit:hover {
	box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
	transform: translateY(-0.125rem);
}

.make-difference-benefit__icon {
	align-items: center;
	background: rgba(0, 74, 135, 0.06);
	border-radius: var(--pact-radius);
	color: var(--pact-blue);
	display: inline-flex;
	height: 4rem;
	justify-content: center;
	margin: 0 0 1.5rem;
	transition: background-color 200ms ease, color 200ms ease;
	width: 4rem;
}

.make-difference-benefit:hover .make-difference-benefit__icon {
	background: var(--pact-blue);
	color: #ffffff;
}

.make-difference-benefit h3 {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 1.35rem;
	font-weight: 800;
	line-height: 1.3;
	margin: 0 0 1rem;
}

.make-difference-partnerships__grid {
	display: grid;
	gap: 2rem;
}

@media (min-width: 1024px) {
	.make-difference-partnerships__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.make-difference-why,
.make-difference-engage {
	border-radius: var(--pact-radius);
	box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
	overflow: hidden;
	padding: 2rem;
}

@media (min-width: 768px) {
	.make-difference-why,
	.make-difference-engage {
		padding: 3rem;
	}
}

.make-difference-why {
	background: #ffffff;
	position: relative;
}

.make-difference-why::before {
	background: rgba(142, 198, 65, 0.08);
	border-radius: 9999px;
	content: "";
	height: 8rem;
	position: absolute;
	right: -4rem;
	top: -4rem;
	width: 8rem;
}

.make-difference-why h3,
.make-difference-engage h3 {
	font-size: 1.75rem;
	margin-bottom: 2rem;
	position: relative;
}

.make-difference-why__items {
	display: grid;
	gap: 1.5rem;
	position: relative;
}

.make-difference-why__item h4 {
	color: var(--pact-green);
	font-family: 'Sora', sans-serif;
	font-size: 1rem;
	font-weight: 800;
	margin: 0 0 0.5rem;
}

.make-difference-engage {
	background: var(--pact-blue);
	color: #ffffff;
}

.make-difference-engage h3,
.make-difference-engage__item h4 {
	color: #ffffff;
}

.make-difference-engage__grid {
	display: grid;
	gap: 1rem;
}

@media (min-width: 640px) {
	.make-difference-engage__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.make-difference-engage__item {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--pact-radius);
	padding: 1.25rem;
}

.make-difference-engage__item h4 {
	font-family: 'Sora', sans-serif;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.35;
	margin: 0 0 0.5rem;
}

.make-difference-engage__item p,
.make-difference-engage__contact p {
	color: rgba(255, 255, 255, 0.82);
}

.make-difference-engage__contact {
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	margin-top: 2rem;
	padding-top: 1.75rem;
}

.make-difference-engage__contact p {
	font-family: 'Rubik', sans-serif;
	margin: 0 0 0.5rem;
}

.make-difference-engage__contact a {
	color: var(--pact-green);
	font-family: 'Rubik', sans-serif;
	font-size: 1.125rem;
	font-weight: 800;
	word-break: break-word;
}

.make-difference-engage__contact a:hover,
.make-difference-engage__contact a:focus {
	color: #b9ec7a;
}

.make-difference-volunteer {
	scroll-margin-top: 5rem;
}

.make-difference-volunteer__inner {
	align-items: center;
	display: grid;
	gap: 3rem;
}

@media (min-width: 1024px) {
	.make-difference-volunteer__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.make-difference-volunteer__slider {
	border-radius: var(--pact-radius);
	box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
	overflow: hidden;
	position: relative;
}

.make-difference-volunteer__slides {
	display: flex;
	transition: transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
	width: 100%;
	will-change: transform;
}

.make-difference-volunteer__slide {
	aspect-ratio: 4 / 3;
	display: block;
	flex: 0 0 100%;
	object-fit: cover;
	width: 100%;
}

.make-difference-volunteer__shade {
	background: linear-gradient(45deg, rgba(0, 74, 135, 0.42), rgba(0, 74, 135, 0));
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.make-difference-volunteer__dots {
	bottom: 1rem;
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	left: 0;
	position: absolute;
	right: 0;
	z-index: 2;
}

.make-difference-volunteer__dot {
	background: #ffffff;
	border: 0;
	border-radius: 9999px;
	cursor: pointer;
	height: 0.65rem;
	opacity: 0.42;
	padding: 0;
	transition: opacity 200ms ease, transform 200ms ease;
	width: 0.65rem;
}

.make-difference-volunteer__dot.is-active {
	opacity: 1;
	transform: scale(1.1);
}

.make-difference-volunteer__heading {
	color: #111827;
	font-size: 2rem;
	margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
	.make-difference-volunteer__heading {
		font-size: 3rem;
	}
}

.make-difference-volunteer__body {
	font-size: 1.0625rem;
	margin-bottom: 2rem;
}

.make-difference-volunteer__roles {
	display: grid;
	gap: 1.5rem;
	margin: 0 0 2.5rem;
}

@media (min-width: 640px) {
	.make-difference-volunteer__roles {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.make-difference-volunteer__role {
	align-items: flex-start;
	display: flex;
	gap: 1rem;
}

.make-difference-volunteer__check {
	align-items: center;
	background: rgba(217, 119, 87, 0.1);
	border-radius: 9999px;
	color: var(--pact-peach);
	display: inline-flex;
	flex: 0 0 auto;
	height: 2.5rem;
	justify-content: center;
	width: 2.5rem;
}

.make-difference-volunteer__role h3 {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.3;
	margin: 0 0 0.35rem;
}

.make-difference-volunteer__role p {
	font-size: 0.9375rem;
	line-height: 1.55;
}

.make-difference-volunteer__cta {
	align-items: center;
	background: #f9fafb;
	border: 1px solid #eef2f7;
	border-radius: var(--pact-radius);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	justify-content: space-between;
	padding: 1.5rem;
	text-align: center;
}

@media (min-width: 640px) {
	.make-difference-volunteer__cta {
		flex-direction: row;
		text-align: left;
	}
}

.make-difference-volunteer__cta h3 {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 1.25rem;
	font-weight: 800;
	margin: 0 0 0.4rem;
}

.make-difference-volunteer__cta a {
	background: var(--pact-blue);
	color: #ffffff;
	flex: 0 0 auto;
	min-width: 0;
	padding: 0.75rem 1.5rem;
}

.make-difference-volunteer__cta a:hover,
.make-difference-volunteer__cta a:focus {
	background: #003865;
	color: #ffffff;
}

.make-difference-cta {
	background: var(--pact-blue);
	color: #ffffff;
	overflow: hidden;
	padding: 4rem 1rem;
	position: relative;
}

@media (min-width: 1024px) {
	.make-difference-cta {
		padding: 5rem 1rem;
	}
}

.make-difference-cta__inner {
	margin: 0 auto;
	max-width: 44rem;
	position: relative;
	text-align: center;
	z-index: 1;
}

.make-difference-cta h2 {
	color: #ffffff;
	font-size: 2rem;
	margin-bottom: 1.25rem;
}

@media (min-width: 1024px) {
	.make-difference-cta h2 {
		font-size: 2.5rem;
	}
}

.make-difference-cta p {
	color: rgba(255, 255, 255, 0.82);
	font-family: 'Rubik', sans-serif;
	font-size: 1.0625rem;
	line-height: 1.7;
	margin: 0 auto 2rem;
	max-width: 40rem;
}

@media (max-width: 639px) {
	.make-difference-button,
	.make-difference-donate__button,
	.make-difference-volunteer__cta a,
	.make-difference-cta a {
		width: 100%;
	}

	.make-difference-donate__trust {
		align-items: flex-start;
	}
}

/* ==========================================================================
   Corporate Partnerships Page
   ========================================================================== */

.corporate-partnerships-hero {
	background: var(--pact-blue);
	color: #ffffff;
	overflow: hidden;
	padding: 5rem 1rem;
	position: relative;
}

@media (min-width: 1024px) {
	.corporate-partnerships-hero {
		padding: 7rem 1rem;
	}
}

.corporate-partnerships-hero__background {
	display: block;
	height: 100%;
	inset: 0;
	object-fit: cover;
	opacity: 0.2;
	position: absolute;
	width: 100%;
}

.corporate-partnerships-hero__overlay {
	background: linear-gradient(180deg, rgba(0, 74, 135, 0.64), rgba(0, 74, 135, 0.92));
	inset: 0;
	position: absolute;
}

.corporate-partnerships-hero__inner,
.corporate-partnerships-section__inner,
.corporate-partnerships-why__inner,
.corporate-partnerships-form__inner {
	margin: 0 auto;
	max-width: var(--pact-container);
	position: relative;
	z-index: 1;
}

.corporate-partnerships-hero__inner,
.corporate-partnerships-section__header,
.corporate-partnerships-section__inner--narrow,
.corporate-partnerships-form__inner {
	text-align: center;
}

.corporate-partnerships-hero__inner {
	max-width: 54rem;
}

.corporate-partnerships-section__inner--narrow {
	max-width: 56rem;
}

.corporate-partnerships-section__eyebrow {
	color: var(--pact-green);
	font-family: 'Rubik', sans-serif;
	font-size: 0.875rem;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.4;
	margin: 0 0 1rem;
	text-transform: uppercase;
}

.corporate-partnerships-section__eyebrow--blue {
	color: var(--pact-blue);
}

.corporate-partnerships-hero__heading {
	color: #ffffff;
	font-family: 'Sora', sans-serif;
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.08;
	margin: 0;
}

@media (min-width: 1024px) {
	.corporate-partnerships-hero__heading {
		font-size: 4rem;
	}
}

.corporate-partnerships-hero__heading span {
	color: var(--pact-green);
}

.corporate-partnerships-hero__body {
	color: rgba(255, 255, 255, 0.9);
	font-family: 'Rubik', sans-serif;
	font-size: 1.0625rem;
	font-weight: 300;
	line-height: 1.75;
	margin: 1.75rem auto 2rem;
	max-width: 48rem;
}

@media (min-width: 1024px) {
	.corporate-partnerships-hero__body {
		font-size: 1.25rem;
	}
}

.corporate-partnerships-button {
	align-items: center;
	border-radius: 9999px;
	display: inline-flex;
	font-family: 'Rubik', sans-serif;
	font-size: 1rem;
	font-weight: 800;
	gap: 0.5rem;
	justify-content: center;
	min-width: 11rem;
	padding: 0.875rem 1.75rem;
	transition: background-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.corporate-partnerships-button:hover,
.corporate-partnerships-button:focus {
	transform: translateY(-0.125rem);
}

.corporate-partnerships-button--green {
	background: var(--pact-green);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
	color: #ffffff;
}

.corporate-partnerships-button--green:hover,
.corporate-partnerships-button--green:focus {
	background: var(--pact-green-dark);
	color: #ffffff;
}

.corporate-partnerships-button svg {
	display: block;
	height: 1.125rem;
	width: 1.125rem;
}

.corporate-partnerships-intro,
.corporate-partnerships-why {
	background: #ffffff;
	padding: 4rem 1rem;
}

.corporate-partnerships-mission,
.corporate-partnerships-engagement {
	background: #f9fafb;
	padding: 4rem 1rem;
}

@media (min-width: 1024px) {
	.corporate-partnerships-intro,
	.corporate-partnerships-mission,
	.corporate-partnerships-why,
	.corporate-partnerships-engagement {
		padding: 6rem 1rem;
	}
}

.corporate-partnerships-section__header {
	margin: 0 auto 3rem;
	max-width: 54rem;
}

.corporate-partnerships-section__heading,
.corporate-partnerships-why__heading,
.corporate-partnerships-form h2 {
	font-family: 'Sora', sans-serif;
	font-weight: 800;
	line-height: 1.18;
	margin: 0;
}

.corporate-partnerships-section__heading {
	color: #111827;
	font-size: 2rem;
	margin-bottom: 1.25rem;
}

@media (min-width: 1024px) {
	.corporate-partnerships-section__heading {
		font-size: 2.75rem;
	}
}

.corporate-partnerships-section__intro,
.corporate-partnerships-intro__copy p,
.corporate-partnerships-goal p,
.corporate-partnerships-why__item p,
.corporate-partnerships-engagement__item p {
	color: #4b5563;
	font-family: 'Rubik', sans-serif;
	font-size: 1rem;
	line-height: 1.7;
	margin: 0;
}

.corporate-partnerships-section__intro {
	font-size: 1.0625rem;
	margin: 0 auto;
	max-width: 45rem;
}

.corporate-partnerships-intro__copy {
	display: grid;
	gap: 1.25rem;
}

.corporate-partnerships-intro__copy p {
	font-size: 1.0625rem;
}

.corporate-partnerships-goals,
.corporate-partnerships-engagement__grid {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 900px) {
	.corporate-partnerships-goals {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 768px) {
	.corporate-partnerships-engagement__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.corporate-partnerships-goal,
.corporate-partnerships-engagement__item {
	background: #ffffff;
	border: 1px solid #eef2f7;
	border-radius: var(--pact-radius);
	box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 2rem;
	transition: box-shadow 250ms ease, transform 250ms ease;
}

.corporate-partnerships-goal {
	align-items: center;
	text-align: center;
}

@media (min-width: 768px) {
	.corporate-partnerships-goal {
		align-items: flex-start;
		text-align: left;
	}
}

.corporate-partnerships-goal:hover,
.corporate-partnerships-engagement__item:hover {
	box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
	transform: translateY(-0.125rem);
}

.corporate-partnerships-goal__icon {
	align-items: center;
	background: rgba(0, 74, 135, 0.06);
	border-radius: var(--pact-radius);
	color: var(--pact-blue);
	display: inline-flex;
	height: 4rem;
	justify-content: center;
	margin: 0 0 1.5rem;
	transition: background-color 200ms ease, color 200ms ease;
	width: 4rem;
}

.corporate-partnerships-goal:hover .corporate-partnerships-goal__icon {
	background: var(--pact-blue);
	color: #ffffff;
}

.corporate-partnerships-goal__icon svg,
.corporate-partnerships-why__icon svg {
	display: block;
	height: 1.5rem;
	width: 1.5rem;
}

.corporate-partnerships-goal h3,
.corporate-partnerships-why__item h3,
.corporate-partnerships-engagement__item h3 {
	font-family: 'Sora', sans-serif;
	font-weight: 800;
	line-height: 1.3;
	margin: 0 0 0.75rem;
}

.corporate-partnerships-goal h3 {
	color: #111827;
	font-size: 1.35rem;
}

.corporate-partnerships-quote {
	background: var(--pact-blue);
	border-radius: var(--pact-radius);
	box-shadow: 0 18px 38px rgba(15, 23, 42, 0.16);
	color: #ffffff;
	margin: 3rem auto 0;
	max-width: 56rem;
	padding: 2rem;
	text-align: center;
}

.corporate-partnerships-quote p {
	color: #ffffff;
	font-family: 'Rubik', sans-serif;
	font-size: 1.0625rem;
	font-style: italic;
	line-height: 1.7;
	margin: 0;
}

.corporate-partnerships-why__inner {
	align-items: center;
	display: grid;
	gap: 3rem;
}

@media (min-width: 1024px) {
	.corporate-partnerships-why__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.corporate-partnerships-why__heading {
	color: #111827;
	font-size: 2rem;
	margin-bottom: 2rem;
}

@media (min-width: 1024px) {
	.corporate-partnerships-why__heading {
		font-size: 3rem;
	}
}

.corporate-partnerships-why__items {
	display: grid;
	gap: 1.5rem;
}

.corporate-partnerships-why__item {
	align-items: flex-start;
	display: flex;
	gap: 1rem;
}

.corporate-partnerships-why__icon {
	align-items: center;
	background: rgba(142, 198, 65, 0.12);
	border-radius: var(--pact-radius);
	color: var(--pact-green);
	display: inline-flex;
	flex: 0 0 auto;
	height: 3.25rem;
	justify-content: center;
	width: 3.25rem;
}

.corporate-partnerships-why__item h3 {
	color: #111827;
	font-size: 1.15rem;
}

.corporate-partnerships-why__media {
	border-radius: var(--pact-radius);
	box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
	overflow: hidden;
}

.corporate-partnerships-why__media img {
	aspect-ratio: 4 / 3;
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms ease;
	width: 100%;
}

.corporate-partnerships-why__media:hover img {
	transform: scale(1.03);
}

.corporate-partnerships-engagement__item h3 {
	color: var(--pact-blue);
	font-size: 1.35rem;
}

.corporate-partnerships-form {
	background: var(--pact-blue);
	color: #ffffff;
	overflow: hidden;
	padding: 4rem 1rem;
	position: relative;
}

@media (min-width: 1024px) {
	.corporate-partnerships-form {
		padding: 6rem 1rem;
	}
}

.corporate-partnerships-form__inner {
	max-width: 56rem;
}

.corporate-partnerships-form h2 {
	color: #ffffff;
	font-size: 2rem;
	margin-bottom: 1.25rem;
}

@media (min-width: 1024px) {
	.corporate-partnerships-form h2 {
		font-size: 3rem;
	}
}

.corporate-partnerships-form__inner > p {
	color: rgba(255, 255, 255, 0.82);
	font-family: 'Rubik', sans-serif;
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 1.7;
	margin: 0 auto 2.5rem;
	max-width: 42rem;
}

.corporate-partnerships-form__shell {
	background: #ffffff;
	border-radius: var(--pact-radius);
	box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24);
	margin: 0 auto;
	max-width: 46rem;
	padding: 0.5rem;
	text-align: left;
}

.corporate-partnerships-form__frame {
	background: #f9fafb;
	border-radius: calc(var(--pact-radius) - 0.35rem);
	min-height: 31.25rem;
	padding: 1.5rem;
}

@media (min-width: 768px) {
	.corporate-partnerships-form__frame {
		padding: 3rem;
	}
}

.corporate-partnerships-form__loading {
	align-items: center;
	color: #6b7280;
	display: flex;
	font-family: 'Rubik', sans-serif;
	font-style: italic;
	gap: 0.75rem;
	justify-content: center;
	min-height: 12rem;
	text-align: center;
}

.corporate-partnerships-form__spinner {
	animation: corporate-partnerships-spin 900ms linear infinite;
	border: 3px solid rgba(107, 114, 128, 0.22);
	border-top-color: var(--pact-green);
	border-radius: 9999px;
	display: inline-block;
	height: 1.5rem;
	width: 1.5rem;
}

@keyframes corporate-partnerships-spin {
	to {
		transform: rotate(360deg);
	}
}

.corporate-partnerships-form__links {
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	margin: 3rem auto 0;
	max-width: 28rem;
	padding-top: 2rem;
}

.corporate-partnerships-form__links a,
.corporate-partnerships-form__links span {
	color: rgba(255, 255, 255, 0.64);
	font-family: 'Rubik', sans-serif;
	font-size: 0.9375rem;
	font-weight: 600;
}

.corporate-partnerships-form__links a:hover,
.corporate-partnerships-form__links a:focus {
	color: var(--pact-green);
}

@media (max-width: 639px) {
	.corporate-partnerships-button {
		width: 100%;
	}

	.corporate-partnerships-why__item {
		flex-direction: column;
		text-align: center;
	}

	.corporate-partnerships-why__icon {
		margin: 0 auto;
	}
}

/* ==========================================================================
   Volunteer With Us Page
   ========================================================================== */

.volunteer-hero {
	background: var(--pact-blue);
	color: #ffffff;
	overflow: hidden;
	padding: 5rem 1rem;
	position: relative;
}

@media (min-width: 1024px) {
	.volunteer-hero {
		padding: 7rem 1rem;
	}
}

.volunteer-hero__background {
	display: block;
	height: 100%;
	inset: 0;
	object-fit: cover;
	opacity: 0.2;
	position: absolute;
	width: 100%;
}

.volunteer-hero__overlay {
	background: linear-gradient(180deg, rgba(0, 74, 135, 0.64), rgba(0, 74, 135, 0.92));
	inset: 0;
	position: absolute;
}

.volunteer-hero__inner,
.volunteer-section__inner,
.volunteer-why__inner,
.volunteer-form__inner {
	margin: 0 auto;
	max-width: var(--pact-container);
	position: relative;
	z-index: 1;
}

.volunteer-hero__inner,
.volunteer-section__header,
.volunteer-section__inner--narrow,
.volunteer-form__inner {
	text-align: center;
}

.volunteer-hero__inner {
	max-width: 54rem;
}

.volunteer-section__inner--narrow {
	max-width: 56rem;
}

.volunteer-section__eyebrow {
	color: var(--pact-green);
	font-family: 'Rubik', sans-serif;
	font-size: 0.875rem;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.4;
	margin: 0 0 1rem;
	text-transform: uppercase;
}

.volunteer-section__eyebrow--blue {
	color: var(--pact-blue);
}

.volunteer-hero__heading {
	color: #ffffff;
	font-family: 'Sora', sans-serif;
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.08;
	margin: 0;
}

@media (min-width: 1024px) {
	.volunteer-hero__heading {
		font-size: 4rem;
	}
}

.volunteer-hero__heading span {
	color: var(--pact-green);
}

.volunteer-hero__body {
	color: rgba(255, 255, 255, 0.92);
	font-family: 'Rubik', sans-serif;
	font-size: 1.0625rem;
	font-weight: 300;
	line-height: 1.75;
	margin: 1.75rem auto 2rem;
	max-width: 48rem;
}

@media (min-width: 1024px) {
	.volunteer-hero__body {
		font-size: 1.25rem;
	}
}

.volunteer-button {
	align-items: center;
	border-radius: 9999px;
	display: inline-flex;
	font-family: 'Rubik', sans-serif;
	font-size: 1rem;
	font-weight: 800;
	gap: 0.5rem;
	justify-content: center;
	min-width: 11rem;
	padding: 0.875rem 1.75rem;
	transition: background-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.volunteer-button:hover,
.volunteer-button:focus {
	transform: translateY(-0.125rem);
}

.volunteer-button--green {
	background: var(--pact-green);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
	color: #ffffff;
}

.volunteer-button--green:hover,
.volunteer-button--green:focus {
	background: var(--pact-green-dark);
	color: #ffffff;
}

.volunteer-button svg {
	display: block;
	height: 1.125rem;
	width: 1.125rem;
}

.volunteer-intro,
.volunteer-why {
	background: #ffffff;
	padding: 4rem 1rem;
}

.volunteer-opportunities {
	background: #f9fafb;
	padding: 4rem 1rem;
}

@media (min-width: 1024px) {
	.volunteer-intro,
	.volunteer-opportunities,
	.volunteer-why {
		padding: 6rem 1rem;
	}
}

.volunteer-section__header {
	margin: 0 auto 3rem;
	max-width: 54rem;
}

.volunteer-section__heading,
.volunteer-why__heading,
.volunteer-form h2 {
	font-family: 'Sora', sans-serif;
	font-weight: 800;
	line-height: 1.18;
	margin: 0;
}

.volunteer-section__heading {
	color: #111827;
	font-size: 2rem;
	margin-bottom: 1.25rem;
}

@media (min-width: 1024px) {
	.volunteer-section__heading {
		font-size: 2.75rem;
	}
}

.volunteer-section__intro,
.volunteer-intro__copy,
.volunteer-opportunity p,
.volunteer-why__item p {
	color: #4b5563;
	font-family: 'Rubik', sans-serif;
	font-size: 1rem;
	line-height: 1.7;
	margin: 0;
}

.volunteer-section__intro,
.volunteer-intro__copy {
	font-size: 1.0625rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 45rem;
}

.volunteer-opportunities__grid {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.volunteer-opportunities__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.volunteer-opportunity {
	align-items: center;
	background: #ffffff;
	border: 1px solid #eef2f7;
	border-radius: var(--pact-radius);
	box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	min-height: 100%;
	padding: 2rem;
	text-align: center;
	transition: box-shadow 250ms ease, transform 250ms ease;
}

@media (min-width: 640px) {
	.volunteer-opportunity {
		align-items: flex-start;
		flex-direction: row;
		text-align: left;
	}
}

.volunteer-opportunity:hover {
	box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
	transform: translateY(-0.125rem);
}

.volunteer-opportunity__icon {
	align-items: center;
	background: rgba(0, 74, 135, 0.06);
	border-radius: var(--pact-radius);
	color: var(--pact-blue);
	display: inline-flex;
	flex: 0 0 auto;
	height: 3.5rem;
	justify-content: center;
	transition: background-color 200ms ease, color 200ms ease;
	width: 3.5rem;
}

.volunteer-opportunity:hover .volunteer-opportunity__icon {
	background: var(--pact-blue);
	color: #ffffff;
}

.volunteer-opportunity__icon svg {
	display: block;
	height: 1.5rem;
	width: 1.5rem;
}

.volunteer-opportunity h3,
.volunteer-why__item h3 {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.3;
	margin: 0 0 0.75rem;
}

.volunteer-why__inner {
	align-items: center;
	display: grid;
	gap: 3rem;
}

@media (min-width: 1024px) {
	.volunteer-why__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.volunteer-why__media {
	border-radius: var(--pact-radius);
	box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
	overflow: hidden;
}

.volunteer-why__media img {
	aspect-ratio: 4 / 3;
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms ease;
	width: 100%;
}

.volunteer-why__media:hover img {
	transform: scale(1.03);
}

.volunteer-why__heading {
	color: #111827;
	font-size: 2rem;
	margin-bottom: 2rem;
	text-align: center;
}

@media (min-width: 1024px) {
	.volunteer-why__heading {
		font-size: 3rem;
		text-align: left;
	}
}

.volunteer-why__items {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 640px) {
	.volunteer-why__items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.volunteer-why__item {
	border-left: 4px solid var(--pact-green);
	padding-left: 1.25rem;
}

.volunteer-form {
	background: var(--pact-blue);
	color: #ffffff;
	overflow: hidden;
	padding: 4rem 1rem;
	position: relative;
}

@media (min-width: 1024px) {
	.volunteer-form {
		padding: 6rem 1rem;
	}
}

.volunteer-form__inner {
	max-width: 56rem;
}

.volunteer-form h2 {
	color: #ffffff;
	font-size: 2rem;
	margin-bottom: 1.25rem;
}

@media (min-width: 1024px) {
	.volunteer-form h2 {
		font-size: 3rem;
	}
}

.volunteer-form__inner > p {
	color: rgba(255, 255, 255, 0.9);
	font-family: 'Rubik', sans-serif;
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 1.7;
	margin: 0 auto 2.5rem;
	max-width: 42rem;
}

.volunteer-form__shell {
	background: #ffffff;
	border-radius: var(--pact-radius);
	box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24);
	margin: 0 auto;
	max-width: 46rem;
	padding: 0.5rem;
	text-align: left;
}

.volunteer-form__frame {
	background: #f9fafb;
	border-radius: calc(var(--pact-radius) - 0.35rem);
	min-height: 31.25rem;
	padding: 1.5rem;
}

@media (min-width: 768px) {
	.volunteer-form__frame {
		padding: 3rem;
	}
}

.volunteer-form__loading {
	align-items: center;
	color: #6b7280;
	display: flex;
	font-family: 'Rubik', sans-serif;
	font-style: italic;
	gap: 0.75rem;
	justify-content: center;
	min-height: 12rem;
	text-align: center;
}

.volunteer-form__spinner {
	animation: volunteer-spin 900ms linear infinite;
	border: 3px solid rgba(107, 114, 128, 0.22);
	border-top-color: var(--pact-green);
	border-radius: 9999px;
	display: inline-block;
	height: 1.5rem;
	width: 1.5rem;
}

@keyframes volunteer-spin {
	to {
		transform: rotate(360deg);
	}
}

.volunteer-form__links {
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	margin: 3rem auto 0;
	max-width: 28rem;
	padding-top: 2rem;
}

.volunteer-form__links a,
.volunteer-form__links span {
	color: rgba(255, 255, 255, 0.64);
	font-family: 'Rubik', sans-serif;
	font-size: 0.9375rem;
	font-weight: 600;
}

.volunteer-form__links a:hover,
.volunteer-form__links a:focus {
	color: var(--pact-green);
}

@media (max-width: 639px) {
	.volunteer-button {
		width: 100%;
	}
}

/* ==========================================================================
   Happy Schools Project Page
   ========================================================================== */

.happy-schools-hero {
	background: #1a5f6f;
	color: #ffffff;
	overflow: hidden;
	padding: 5rem 1rem;
	position: relative;
}

@media (min-width: 1024px) {
	.happy-schools-hero {
		padding: 7rem 1rem;
	}
}

.happy-schools-hero__background {
	display: block;
	height: 100%;
	inset: 0;
	object-fit: cover;
	opacity: 0.14;
	position: absolute;
	width: 100%;
}

.happy-schools-hero__overlay {
	background: linear-gradient(180deg, rgba(26, 95, 111, 0.72), rgba(26, 95, 111, 0.94));
	inset: 0;
	position: absolute;
}

.happy-schools-hero__inner {
	margin: 0 auto;
	max-width: 54rem;
	position: relative;
	text-align: center;
	z-index: 1;
}

.happy-schools-hero__eyebrow,
.happy-schools-section-header__eyebrow {
	color: #d97757;
	font-family: 'Rubik', sans-serif;
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.4;
	margin: 0 0 0.875rem;
	text-transform: uppercase;
}

.happy-schools-hero__eyebrow {
	color: var(--pact-green);
	margin-bottom: 1.25rem;
}

.happy-schools-hero__heading {
	color: #ffffff;
	font-family: 'Sora', sans-serif;
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.08;
	margin: 0;
}

@media (min-width: 1024px) {
	.happy-schools-hero__heading {
		font-size: 4rem;
	}
}

.happy-schools-hero__heading span {
	color: var(--pact-green);
}

.happy-schools-hero__body {
	color: rgba(255, 255, 255, 0.92);
	font-family: 'Rubik', sans-serif;
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 1.7;
	margin: 1.5rem auto 2rem;
	max-width: 46rem;
}

@media (min-width: 1024px) {
	.happy-schools-hero__body {
		font-size: 1.25rem;
	}
}

.happy-schools-hero__cta {
	background: var(--pact-green);
	border-radius: 9999px;
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
	color: #ffffff;
	display: inline-flex;
	font-family: 'Rubik', sans-serif;
	font-weight: 700;
	justify-content: center;
	min-width: 12rem;
	padding: 0.875rem 1.75rem;
	transition: background-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.happy-schools-hero__cta:hover,
.happy-schools-hero__cta:focus {
	background: var(--pact-green-dark);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
	color: #ffffff;
	transform: translateY(-0.125rem);
}

.happy-schools-intro,
.happy-schools-approach {
	background: #ffffff;
	padding: 4rem 1rem;
}

@media (min-width: 1024px) {
	.happy-schools-intro,
	.happy-schools-approach {
		padding: 5rem 1rem;
	}
}

.happy-schools-intro__inner {
	margin: 0 auto;
	max-width: 48rem;
	text-align: center;
}

.happy-schools-intro__heading {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 1.75rem;
	font-weight: 800;
	line-height: 1.25;
	margin: 0 0 1.5rem;
}

@media (min-width: 768px) {
	.happy-schools-intro__heading {
		font-size: 2.25rem;
	}
}

.happy-schools-intro p {
	color: #4b5563;
	font-family: 'Rubik', sans-serif;
	font-size: 1.0625rem;
	line-height: 1.75;
	margin: 0 0 1.25rem;
}

.happy-schools-intro p:last-child {
	margin-bottom: 0;
}

.happy-schools-section-header {
	margin: 0 auto 2.75rem;
	max-width: 48rem;
	text-align: center;
}

.happy-schools-section-header__heading {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.2;
	margin: 0;
}

@media (min-width: 1024px) {
	.happy-schools-section-header__heading {
		font-size: 2.5rem;
	}
}

.happy-schools-section-header__heading span {
	color: #d97757;
}

.happy-schools-section-header__intro {
	color: #4b5563;
	font-family: 'Rubik', sans-serif;
	font-size: 1.0625rem;
	line-height: 1.7;
	margin: 1rem auto 0;
	max-width: 44rem;
}

.happy-schools-work,
.happy-schools-cases,
.happy-schools-impact {
	background: #f9fafb;
	padding: 4rem 1rem;
}

@media (min-width: 1024px) {
	.happy-schools-work,
	.happy-schools-cases,
	.happy-schools-impact {
		padding: 5.5rem 1rem;
	}
}

.happy-schools-work__inner,
.happy-schools-approach__inner,
.happy-schools-cases__inner,
.happy-schools-impact__inner {
	margin: 0 auto;
	max-width: var(--pact-container);
}

.happy-schools-work__grid {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 900px) {
	.happy-schools-work__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.happy-schools-work__card {
	background: #ffffff;
	border: 1px solid #eef2f7;
	border-radius: var(--pact-radius);
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
	overflow: hidden;
	padding: 1.75rem;
	position: relative;
	transition: box-shadow 250ms ease, transform 250ms ease;
}

.happy-schools-work__card::before {
	background: linear-gradient(135deg, rgba(217, 119, 87, 0.12), rgba(217, 119, 87, 0));
	content: "";
	inset: 0;
	opacity: 0;
	position: absolute;
	transition: opacity 250ms ease;
}

.happy-schools-work__card:hover {
	box-shadow: 0 22px 44px rgba(15, 23, 42, 0.14);
	transform: translateY(-0.125rem);
}

.happy-schools-work__card:hover::before {
	opacity: 1;
}

.happy-schools-work__title {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.3;
	margin: 0 0 1.25rem;
	position: relative;
}

.happy-schools-work__list {
	display: grid;
	gap: 0.875rem;
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}

.happy-schools-work__list li {
	align-items: flex-start;
	color: #4b5563;
	display: flex;
	font-family: 'Rubik', sans-serif;
	font-size: 0.9375rem;
	gap: 0.75rem;
	line-height: 1.55;
}

.happy-schools-work__list svg {
	color: #d97757;
	flex: 0 0 auto;
	height: 1.125rem;
	margin-top: 0.1875rem;
	width: 1.125rem;
}

.happy-schools-why {
	background: var(--pact-blue);
	color: #ffffff;
	overflow: hidden;
	padding: 4rem 1rem;
	position: relative;
}

@media (min-width: 1024px) {
	.happy-schools-why {
		padding: 5.5rem 1rem;
	}
}

.happy-schools-why__background {
	display: block;
	height: 100%;
	inset: 0;
	object-fit: cover;
	opacity: 0.13;
	position: absolute;
	width: 100%;
}

.happy-schools-why__overlay {
	background: rgba(0, 74, 135, 0.88);
	inset: 0;
	position: absolute;
}

.happy-schools-why__inner {
	margin: 0 auto;
	max-width: 64rem;
	position: relative;
	text-align: center;
	z-index: 1;
}

.happy-schools-why__heading {
	color: #ffffff;
	font-family: 'Sora', sans-serif;
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 2rem;
}

@media (min-width: 1024px) {
	.happy-schools-why__heading {
		font-size: 2.5rem;
	}
}

.happy-schools-why__grid {
	display: grid;
	gap: 1.5rem;
	text-align: left;
}

@media (min-width: 768px) {
	.happy-schools-why__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.happy-schools-why__grid p {
	color: rgba(255, 255, 255, 0.9);
	font-family: 'Rubik', sans-serif;
	font-size: 1.0625rem;
	line-height: 1.75;
	margin: 0;
}

.happy-schools-approach__grid {
	display: grid;
	gap: 1rem;
}

@media (min-width: 768px) {
	.happy-schools-approach__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1180px) {
	.happy-schools-approach__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.happy-schools-approach__step {
	background: #f9fafb;
	border-radius: var(--pact-radius);
	min-height: 13rem;
	overflow: hidden;
	padding: 1.5rem;
	position: relative;
	transition: background-color 250ms ease;
}

.happy-schools-approach__step:hover {
	background: rgba(217, 119, 87, 0.08);
}

.happy-schools-approach__number {
	color: rgba(217, 119, 87, 0.15);
	font-family: 'Sora', sans-serif;
	font-size: 4rem;
	font-weight: 800;
	line-height: 1;
	position: absolute;
	right: 1rem;
	top: 1rem;
}

.happy-schools-approach__step h3 {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 1.125rem;
	font-weight: 800;
	line-height: 1.3;
	margin: 0 0 0.75rem;
	padding-right: 2rem;
	position: relative;
}

.happy-schools-approach__step p {
	color: #4b5563;
	font-family: 'Rubik', sans-serif;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin: 0;
	position: relative;
}

.happy-schools-cases__list {
	display: grid;
	gap: 4rem;
}

.happy-schools-case {
	align-items: center;
	display: grid;
	gap: 2rem;
	min-width: 0;
}

@media (min-width: 1024px) {
	.happy-schools-case {
		gap: 3rem;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.happy-schools-case--reverse .happy-schools-case__media {
		order: 2;
	}

	.happy-schools-case--reverse .happy-schools-case__content {
		order: 1;
	}
}

.happy-schools-case__media {
	max-width: 100%;
	min-width: 0;
	width: 100%;
}

.happy-schools-case__gallery {
	border-radius: var(--pact-radius);
	box-shadow: 0 24px 48px rgba(15, 23, 42, 0.16);
	height: 18.75rem;
	max-width: 100%;
	min-width: 0;
	overflow: hidden;
	position: relative;
	width: 100%;
}

@media (min-width: 640px) {
	.happy-schools-case__gallery {
		height: 25rem;
	}
}

.happy-schools-case-swiper,
.happy-schools-case-swiper .swiper-wrapper,
.happy-schools-case__slide {
	height: 100%;
	min-width: 0;
}

.happy-schools-case__image {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.happy-schools-case__nav {
	align-items: center;
	background: rgba(255, 255, 255, 0.9);
	border: 0;
	border-radius: 9999px;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.2);
	color: #1f2937;
	cursor: pointer;
	display: none;
	height: 2.5rem;
	justify-content: center;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: opacity 180ms ease, background-color 180ms ease;
	width: 2.5rem;
	z-index: 4;
}

@media (min-width: 640px) {
	.happy-schools-case__nav {
		display: flex;
	}
}

.happy-schools-case__gallery:hover .happy-schools-case__nav,
.happy-schools-case__gallery:focus-within .happy-schools-case__nav {
	opacity: 1;
}

.happy-schools-case__nav:hover,
.happy-schools-case__nav:focus {
	background: #ffffff;
}

.happy-schools-case__nav svg {
	height: 1.25rem;
	width: 1.25rem;
}

.happy-schools-case__nav--prev {
	left: 1rem;
}

.happy-schools-case__nav--next {
	right: 1rem;
}

.happy-schools-case__pagination {
	bottom: 1rem !important;
	position: absolute;
	text-align: center;
	z-index: 4;
}

.happy-schools-case__pagination .swiper-pagination-bullet {
	background: #ffffff;
	opacity: 0.7;
}

.happy-schools-case__pagination .swiper-pagination-bullet-active {
	opacity: 1;
}

.happy-schools-case__overlay {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
	inset: 0;
	opacity: 0.6;
	pointer-events: none;
	position: absolute;
	z-index: 2;
}

.happy-schools-case__caption {
	bottom: 0;
	color: #ffffff;
	left: 0;
	padding: 4rem 1.5rem 1.5rem;
	position: absolute;
	right: 0;
	z-index: 3;
}

.happy-schools-case__caption h3 {
	color: #ffffff;
	font-family: 'Sora', sans-serif;
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 1.25;
	margin: 0;
}

.happy-schools-case__caption p {
	color: rgba(255, 255, 255, 0.82);
	font-family: 'Rubik', sans-serif;
	margin: 0.25rem 0 0;
}

.happy-schools-case__content {
	background: #ffffff;
	border: 1px solid #eef2f7;
	border-radius: var(--pact-radius);
	box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
	min-width: 0;
	padding: 1.5rem;
}

@media (min-width: 768px) {
	.happy-schools-case__content {
		padding: 2rem;
	}
}

.happy-schools-case__note {
	margin: 0 0 1.5rem;
}

.happy-schools-case__note:last-child {
	margin-bottom: 0;
}

.happy-schools-case__note--challenge {
	color: #d97757;
}

.happy-schools-case__note--solution {
	color: var(--pact-blue);
}

.happy-schools-case__note--impact {
	color: var(--pact-green);
}

.happy-schools-case__note h4 {
	color: currentColor;
	font-family: 'Rubik', sans-serif;
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	margin: 0 0 0.4rem;
	text-transform: uppercase;
}

.happy-schools-case__note-heading {
	align-items: center;
	display: flex;
	gap: 0.5rem;
	margin: 0 0 0.5rem;
}

.happy-schools-case__note-heading h4 {
	margin: 0;
}

.happy-schools-case__note-icon {
	flex: 0 0 auto;
	height: 1.25rem;
	width: 1.25rem;
}

.happy-schools-case__note p {
	color: #4b5563;
	font-family: 'Rubik', sans-serif;
	font-size: 0.9375rem;
	line-height: 1.65;
	margin: 0;
}

.happy-schools-impact__metrics {
	display: grid;
	gap: 1rem;
	margin: 0 0 3rem;
}

@media (min-width: 768px) {
	.happy-schools-impact__metrics {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.happy-schools-impact__metric {
	background: #ffffff;
	border-radius: var(--pact-radius);
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
	padding: 1.5rem;
}

.happy-schools-impact__metric-icon {
	align-items: center;
	background: rgba(142, 198, 65, 0.1);
	border-radius: 0.75rem;
	color: var(--pact-green);
	display: flex;
	height: 3rem;
	justify-content: center;
	margin: 0 0 1rem;
	width: 3rem;
}

.happy-schools-impact__metric--feedback .happy-schools-impact__metric-icon {
	background: rgba(34, 130, 180, 0.1);
	color: #2282b4;
}

.happy-schools-impact__metric--learning .happy-schools-impact__metric-icon {
	background: rgba(247, 148, 29, 0.1);
	color: #f7941d;
}

.happy-schools-impact__metric-icon svg {
	height: 1.5rem;
	width: 1.5rem;
}

.happy-schools-impact__metric h3 {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 1.125rem;
	font-weight: 800;
	line-height: 1.3;
	margin: 0 0 0.5rem;
}

.happy-schools-impact__metric p {
	color: #4b5563;
	font-family: 'Rubik', sans-serif;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin: 0;
}

.happy-schools-impact__road {
	background: linear-gradient(135deg, #d97757, #b85c3f);
	border-radius: var(--pact-radius);
	color: #ffffff;
	overflow: hidden;
	padding: 2rem;
	position: relative;
	text-align: center;
}

@media (min-width: 768px) {
	.happy-schools-impact__road {
		padding: 3.5rem;
	}
}

.happy-schools-impact__road::before,
.happy-schools-impact__road::after {
	background: rgba(255, 255, 255, 0.08);
	border-radius: 9999px;
	content: "";
	position: absolute;
}

.happy-schools-impact__road::before {
	height: 16rem;
	right: -8rem;
	top: -8rem;
	width: 16rem;
}

.happy-schools-impact__road::after {
	bottom: -6rem;
	height: 12rem;
	left: -6rem;
	width: 12rem;
}

.happy-schools-impact__road-label,
.happy-schools-impact__road h3,
.happy-schools-impact__road p {
	position: relative;
	z-index: 1;
}

.happy-schools-impact__road-label {
	background: rgba(255, 255, 255, 0.18);
	border-radius: 9999px;
	display: inline-flex;
	font-family: 'Rubik', sans-serif;
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	margin: 0 0 1.25rem;
	padding: 0.45rem 1rem;
	text-transform: uppercase;
}

.happy-schools-impact__road h3 {
	color: #ffffff;
	font-family: 'Sora', sans-serif;
	font-size: 1.75rem;
	font-weight: 800;
	line-height: 1.25;
	margin: 0 0 1.25rem;
}

.happy-schools-impact__road p {
	color: rgba(255, 255, 255, 0.92);
	font-family: 'Rubik', sans-serif;
	font-size: 1.0625rem;
	line-height: 1.7;
	margin: 0 auto 1rem;
	max-width: 54rem;
}

.happy-schools-impact__road p:last-child {
	margin-bottom: 0;
}

.happy-schools-cta {
	background: #ffffff;
	border-top: 1px solid #eef2f7;
	padding: 4rem 1rem;
}

.happy-schools-cta__inner {
	align-items: center;
	background: #f9fafb;
	border: 1px solid #eef2f7;
	border-radius: var(--pact-radius);
	display: grid;
	gap: 2rem;
	margin: 0 auto;
	max-width: 64rem;
	padding: 2rem;
}

@media (min-width: 900px) {
	.happy-schools-cta__inner {
		grid-template-columns: minmax(0, 1fr) auto;
		padding: 3rem;
	}
}

.happy-schools-cta__copy h2 {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 1.75rem;
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 0.75rem;
}

.happy-schools-cta__copy p {
	color: #4b5563;
	font-family: 'Rubik', sans-serif;
	line-height: 1.7;
	margin: 0;
}

.happy-schools-cta__actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

@media (min-width: 560px) {
	.happy-schools-cta__actions {
		flex-direction: row;
	}
}

.happy-schools-cta__button {
	border-radius: 9999px;
	box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
	display: inline-flex;
	font-family: 'Rubik', sans-serif;
	font-weight: 800;
	justify-content: center;
	min-width: 10.5rem;
	padding: 0.875rem 1.5rem;
	transition: background-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.happy-schools-cta__button:hover,
.happy-schools-cta__button:focus {
	box-shadow: 0 16px 32px rgba(15, 23, 42, 0.16);
	transform: translateY(-0.125rem);
}

.happy-schools-cta__button--primary {
	background: #d97757;
	color: #ffffff;
}

.happy-schools-cta__button--primary:hover,
.happy-schools-cta__button--primary:focus {
	background: #c4663e;
	color: #ffffff;
}

.happy-schools-cta__button--secondary {
	background: var(--pact-green);
	color: #ffffff;
}

.happy-schools-cta__button--secondary:hover,
.happy-schools-cta__button--secondary:focus {
	background: var(--pact-green-dark);
	color: #ffffff;
}

.happy-schools-cta__back {
	align-items: center;
	color: #6b7280;
	display: inline-flex;
	font-family: 'Rubik', sans-serif;
	font-weight: 600;
	gap: 0.5rem;
	justify-content: center;
	margin: 2rem auto 0;
	transition: color 200ms ease;
	width: 100%;
}

.happy-schools-cta__back:hover,
.happy-schools-cta__back:focus {
	color: #d97757;
}

.happy-schools-cta__back svg {
	height: 1rem;
	width: 1rem;
}

/* ==========================================================================
   Goa Super 100 Project Page
   ========================================================================== */

.goa-super-100-hero {
	background: #fff9ea;
	overflow: hidden;
	padding: 4rem 1rem 5rem;
}

.goa-super-100-hero__inner {
	align-items: center;
	display: grid;
	gap: 3rem;
	margin: 0 auto;
	max-width: var(--pact-container);
}

@media (min-width: 1024px) {
	.goa-super-100-hero {
		padding: 6rem 1rem;
	}

	.goa-super-100-hero__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.goa-super-100-hero__brand {
	text-align: center;
}

@media (min-width: 1024px) {
	.goa-super-100-hero__brand {
		text-align: left;
	}
}

.goa-super-100-hero__logos {
	align-items: center;
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	margin: 0 0 2rem;
}

@media (min-width: 1024px) {
	.goa-super-100-hero__logos {
		justify-content: flex-start;
	}
}

.goa-super-100-hero__logos img {
	height: 5rem;
	object-fit: contain;
	width: auto;
}

@media (min-width: 1024px) {
	.goa-super-100-hero__logos img {
		height: 7rem;
	}
}

.goa-super-100-hero__announcement,
.goa-super-100-hero__eyebrow {
	color: #6b7280;
	font-family: 'Rubik', sans-serif;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	margin: 0 0 0.5rem;
	text-transform: uppercase;
}

.goa-super-100-hero__hashtag {
	color: #f7941d;
	font-family: 'Sora', sans-serif;
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.1;
	margin: 0 0 0.75rem;
}

@media (min-width: 1024px) {
	.goa-super-100-hero__hashtag {
		font-size: 3rem;
	}
}

.goa-super-100-hero__subtitle {
	color: #d97757;
	font-family: 'Sora', sans-serif;
	font-size: 1.35rem;
	font-weight: 800;
	line-height: 1.3;
	margin: 0 0 1rem;
}

@media (min-width: 1024px) {
	.goa-super-100-hero__subtitle {
		font-size: 1.85rem;
	}
}

.goa-super-100-hero__tagline {
	color: #4b5563;
	font-family: 'Rubik', sans-serif;
	font-weight: 600;
	line-height: 1.6;
	margin: 0 auto;
	max-width: 34rem;
}

@media (min-width: 1024px) {
	.goa-super-100-hero__tagline {
		margin-left: 0;
	}
}

.goa-super-100-hero__copy {
	text-align: center;
}

@media (min-width: 1024px) {
	.goa-super-100-hero__copy {
		text-align: left;
	}
}

.goa-super-100-hero__eyebrow {
	color: #252525;
	font-size: 1rem;
	margin-bottom: 1rem;
}

.goa-super-100-hero__heading {
	color: #252525;
	font-family: 'Sora', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.18;
	margin: 0 0 1.5rem;
}

@media (min-width: 1024px) {
	.goa-super-100-hero__heading {
		font-size: 3rem;
	}
}

.goa-super-100-hero__heading span {
	color: #d97757;
	display: block;
}

.goa-super-100-hero__body p {
	color: #6b7280;
	font-family: 'Rubik', sans-serif;
	font-size: 1rem;
	line-height: 1.75;
	margin: 0 0 1rem;
}

@media (min-width: 1024px) {
	.goa-super-100-hero__body p {
		font-size: 1.125rem;
	}
}

.goa-super-100-stats {
	background: #ffffff;
	margin-top: -2.5rem;
	padding: 3rem 1rem 4rem;
	position: relative;
	z-index: 2;
}

.goa-super-100-stats__grid {
	display: grid;
	gap: 1rem;
	margin: 0 auto;
	max-width: 72rem;
}

@media (min-width: 640px) {
	.goa-super-100-stats__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 900px) {
	.goa-super-100-stats__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.goa-super-100-stats__card {
	background: #ffffff;
	border: 1px solid #f3f4f6;
	border-radius: var(--pact-radius);
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
	padding: 1.5rem;
	text-align: center;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.goa-super-100-stats__card:hover {
	box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
	transform: translateY(-0.125rem);
}

.goa-super-100-stats__card p {
	color: var(--pact-green);
	font-family: 'Rubik', sans-serif;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	margin: 0 0 0.5rem;
	text-transform: uppercase;
}

.goa-super-100-stats__card strong {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 1rem;
	line-height: 1.4;
}

.goa-super-100-benefits,
.goa-super-100-support {
	background: #f9fafb;
	padding: 4rem 1rem;
}

.goa-super-100-support,
.goa-super-100-vision,
.goa-super-100-cta {
	background: #ffffff;
}

@media (min-width: 768px) {
	.goa-super-100-benefits,
	.goa-super-100-support,
	.goa-super-100-vision,
	.goa-super-100-eligibility {
		padding: 5rem 1rem;
	}
}

.goa-super-100-section__inner,
.goa-super-100-eligibility__inner,
.goa-super-100-apply__inner,
.goa-super-100-vision__inner {
	margin: 0 auto;
	max-width: var(--pact-container);
}

.goa-super-100-section__header {
	margin: 0 auto 3rem;
	max-width: 48rem;
	text-align: center;
}

.goa-super-100-section__eyebrow {
	color: var(--pact-green);
	font-family: 'Rubik', sans-serif;
	font-size: 0.875rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	margin: 0 0 0.75rem;
	text-transform: uppercase;
}

.goa-super-100-section__heading,
.goa-super-100-eligibility h2,
.goa-super-100-vision h2 {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 1rem;
}

@media (min-width: 1024px) {
	.goa-super-100-section__heading,
	.goa-super-100-eligibility h2,
	.goa-super-100-vision h2 {
		font-size: 2.5rem;
	}
}

.goa-super-100-section__intro {
	color: #4b5563;
	font-family: 'Rubik', sans-serif;
	font-size: 1.0625rem;
	line-height: 1.7;
	margin: 0;
}

.goa-super-100-card-grid {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.goa-super-100-card-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.goa-super-100-card {
	background: #ffffff;
	border: 1px solid #eef2f7;
	border-radius: var(--pact-radius);
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
	padding: 2rem;
	text-align: center;
	transition: box-shadow 180ms ease, transform 180ms ease;
}

.goa-super-100-support .goa-super-100-card {
	background: #f9fafb;
}

.goa-super-100-card:hover {
	box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
	transform: translateY(-0.125rem);
}

.goa-super-100-card__icon {
	align-items: center;
	background: rgba(142, 198, 65, 0.1);
	border-radius: 1rem;
	color: var(--pact-green);
	display: flex;
	height: 4rem;
	justify-content: center;
	margin: 0 auto 1.5rem;
	transition: background-color 180ms ease, color 180ms ease;
	width: 4rem;
}

.goa-super-100-card:hover .goa-super-100-card__icon {
	background: var(--pact-green);
	color: #ffffff;
}

.goa-super-100-card__icon svg {
	height: 2rem;
	width: 2rem;
}

.goa-super-100-card h3 {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.3;
	margin: 0 0 0.75rem;
}

.goa-super-100-card p {
	color: #4b5563;
	font-family: 'Rubik', sans-serif;
	line-height: 1.65;
	margin: 0;
}

.goa-super-100-eligibility {
	background: #ffffff;
	padding: 4rem 1rem;
}

.goa-super-100-eligibility__inner,
.goa-super-100-vision__inner {
	align-items: center;
	display: grid;
	gap: 3rem;
}

@media (min-width: 1024px) {
	.goa-super-100-eligibility__inner,
	.goa-super-100-vision__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.goa-super-100-eligibility__list {
	display: grid;
	gap: 1rem;
}

.goa-super-100-eligibility__item {
	align-items: flex-start;
	background: #f9fafb;
	border: 1px solid #eef2f7;
	border-radius: var(--pact-radius);
	display: flex;
	gap: 1rem;
	padding: 1.25rem;
}

.goa-super-100-eligibility__item span {
	align-items: center;
	background: rgba(142, 198, 65, 0.1);
	border-radius: 9999px;
	color: var(--pact-green);
	display: flex;
	flex: 0 0 auto;
	height: 2.75rem;
	justify-content: center;
	width: 2.75rem;
}

.goa-super-100-eligibility__item svg {
	height: 1.25rem;
	width: 1.25rem;
}

.goa-super-100-eligibility__item h3 {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 1rem;
	font-weight: 800;
	margin: 0 0 0.25rem;
}

.goa-super-100-eligibility__item p,
.goa-super-100-eligibility__note,
.goa-super-100-eligibility__why p,
.goa-super-100-vision__copy p {
	color: #4b5563;
	font-family: 'Rubik', sans-serif;
	line-height: 1.7;
	margin: 0;
}

.goa-super-100-eligibility__note {
	font-style: italic;
	margin-top: 1.5rem;
}

.goa-super-100-eligibility__why {
	background: #f9fafb;
	border: 1px solid #eef2f7;
	border-radius: var(--pact-radius);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
	padding: 2rem;
}

@media (min-width: 768px) {
	.goa-super-100-eligibility__why {
		padding: 3rem;
	}
}

.goa-super-100-eligibility__why h3 {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 1.5rem;
	font-weight: 800;
	margin: 0 0 1.25rem;
}

.goa-super-100-eligibility__why p {
	margin-bottom: 1rem;
}

.goa-super-100-eligibility__why p:last-child {
	margin-bottom: 0;
}

.goa-super-100-apply {
	background: var(--pact-green);
	color: #ffffff;
	overflow: hidden;
	padding: 4rem 1rem;
}

@media (min-width: 768px) {
	.goa-super-100-apply {
		padding: 5rem 1rem;
	}
}

.goa-super-100-apply__header {
	margin: 0 auto 3rem;
	max-width: 56rem;
	text-align: center;
}

.goa-super-100-apply__header h2 {
	color: #ffffff;
	font-family: 'Sora', sans-serif;
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 1rem;
}

@media (min-width: 1024px) {
	.goa-super-100-apply__header h2 {
		font-size: 2.5rem;
	}
}

.goa-super-100-apply__header p {
	color: rgba(255, 255, 255, 0.95);
	font-family: 'Rubik', sans-serif;
	font-size: 1.0625rem;
	line-height: 1.7;
	margin: 0 0 1.5rem;
}

.goa-super-100-apply__callout {
	align-items: center;
	background: rgba(255, 255, 255, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: var(--pact-radius);
	display: inline-flex;
	gap: 0.75rem;
	max-width: 54rem;
	padding: 1rem 1.5rem;
	text-align: left;
}

.goa-super-100-apply__callout svg {
	flex: 0 0 auto;
	height: 1.5rem;
	width: 1.5rem;
}

.goa-super-100-apply__callout span {
	font-family: 'Rubik', sans-serif;
	font-weight: 700;
	line-height: 1.55;
}

.goa-super-100-apply__form {
	background: #ffffff;
	border-radius: var(--pact-radius);
	box-shadow: 0 20px 48px rgba(15, 23, 42, 0.18);
	color: #111827;
	font-family: 'Rubik', sans-serif;
	margin: 0 auto 3rem;
	max-width: 56rem;
	min-height: 12rem;
	overflow: hidden;
	padding: 1.5rem;
}

.goa-super-100-apply__form iframe {
	width: 100%;
}

.goa-super-100-apply__form a {
	color: var(--pact-blue);
	font-weight: 700;
	text-decoration: underline;
}

.goa-super-100-apply__steps {
	display: grid;
	gap: 1rem;
}

@media (min-width: 640px) {
	.goa-super-100-apply__steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.goa-super-100-apply__steps {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.goa-super-100-apply__step {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--pact-radius);
	padding: 1.5rem;
}

.goa-super-100-apply__step span {
	color: rgba(255, 255, 255, 0.5);
	display: block;
	font-family: 'Sora', sans-serif;
	font-size: 2rem;
	font-weight: 800;
	line-height: 1;
	margin: 0 0 0.875rem;
}

.goa-super-100-apply__step h3 {
	color: #ffffff;
	font-family: 'Sora', sans-serif;
	font-size: 1.2rem;
	font-weight: 800;
	margin: 0 0 0.5rem;
}

.goa-super-100-apply__step p {
	color: rgba(255, 255, 255, 0.9);
	font-family: 'Rubik', sans-serif;
	line-height: 1.6;
	margin: 0;
}

.goa-super-100-vision {
	padding: 4rem 1rem;
}

.goa-super-100-vision__media {
	border-radius: var(--pact-radius);
	box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
	overflow: hidden;
}

@media (min-width: 1024px) {
	.goa-super-100-vision__media {
		order: 1;
	}

	.goa-super-100-vision__copy {
		order: 2;
	}
}

.goa-super-100-vision__media img {
	display: block;
	height: auto;
	transition: transform 700ms ease;
	width: 100%;
}

.goa-super-100-vision__media:hover img {
	transform: scale(1.04);
}

.goa-super-100-vision__copy p {
	font-size: 1.0625rem;
	margin-bottom: 1rem;
}

.goa-super-100-vision__emphasis {
	font-style: italic;
	font-weight: 600;
}

.goa-super-100-cta {
	border-top: 1px solid #eef2f7;
	padding: 4rem 1rem;
}

.goa-super-100-cta__inner {
	align-items: center;
	background: #f9fafb;
	border: 1px solid #eef2f7;
	border-radius: var(--pact-radius);
	display: grid;
	gap: 2rem;
	margin: 0 auto;
	max-width: 64rem;
	padding: 2rem;
}

@media (min-width: 900px) {
	.goa-super-100-cta__inner {
		grid-template-columns: minmax(0, 1fr) auto;
		padding: 3rem;
	}
}

.goa-super-100-cta__copy h2 {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 1.75rem;
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 0.75rem;
}

.goa-super-100-cta__copy p {
	color: #4b5563;
	font-family: 'Rubik', sans-serif;
	line-height: 1.7;
	margin: 0;
}

.goa-super-100-cta__actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

@media (min-width: 560px) {
	.goa-super-100-cta__actions {
		flex-direction: row;
	}
}

.goa-super-100-cta__button {
	border-radius: 9999px;
	box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
	display: inline-flex;
	font-family: 'Rubik', sans-serif;
	font-weight: 800;
	justify-content: center;
	min-width: 10.5rem;
	padding: 0.875rem 1.5rem;
	transition: background-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.goa-super-100-cta__button:hover,
.goa-super-100-cta__button:focus {
	box-shadow: 0 16px 32px rgba(15, 23, 42, 0.16);
	transform: translateY(-0.125rem);
}

.goa-super-100-cta__button--primary {
	background: #d97757;
	color: #ffffff;
}

.goa-super-100-cta__button--primary:hover,
.goa-super-100-cta__button--primary:focus {
	background: #c4663e;
	color: #ffffff;
}

.goa-super-100-cta__button--secondary {
	background: var(--pact-green);
	color: #ffffff;
}

.goa-super-100-cta__button--secondary:hover,
.goa-super-100-cta__button--secondary:focus {
	background: var(--pact-green-dark);
	color: #ffffff;
}

.goa-super-100-cta__back {
	align-items: center;
	color: #6b7280;
	display: inline-flex;
	font-family: 'Rubik', sans-serif;
	font-weight: 600;
	gap: 0.5rem;
	justify-content: center;
	margin: 2rem auto 0;
	transition: color 200ms ease;
	width: 100%;
}

.goa-super-100-cta__back:hover,
.goa-super-100-cta__back:focus {
	color: var(--pact-green);
}

.goa-super-100-cta__back svg {
	height: 1rem;
	width: 1rem;
}

.goa-super-100-editor {
	background: #fff9ea;
	border: 1px solid #f3e2c4;
	border-radius: 8px;
	padding: 1.5rem;
}

.goa-super-100-editor__label {
	color: #8a4f2f;
	font-family: 'Rubik', sans-serif;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	margin: 0 0 1rem;
	text-transform: uppercase;
}

.goa-super-100-editor__field {
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid #f3e2c4;
	border-radius: 6px;
	color: #334155;
	font-family: 'Rubik', sans-serif;
	margin: 0 0 0.75rem;
	padding: 0.625rem 0.75rem;
}

.goa-super-100-editor__media,
.happy-schools-editor__media {
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-radius: 8px;
	margin: 0 0 1rem;
	padding: 1rem;
	text-align: left;
}

.goa-super-100-editor__media-label,
.happy-schools-editor__media-label {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 0.95rem;
	font-weight: 800;
	margin: 0 0 0.75rem;
}

.goa-super-100-editor__media img,
.happy-schools-editor__media img {
	border-radius: 6px;
	display: block;
	height: auto;
	margin: 0 0 0.75rem;
	max-width: 22rem;
	width: 100%;
}

.goa-super-100-editor__media-actions,
.happy-schools-editor__media-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.goa-super-100-editor__media-help,
.happy-schools-editor__media-help {
	color: #64748b;
	font-family: 'Rubik', sans-serif;
	font-size: 0.8125rem;
	line-height: 1.5;
	margin: 0.75rem 0 0;
}

.goa-super-100-editor__field--heading {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 1.1rem;
	font-weight: 800;
}

/* ==========================================================================
   QS ImpACT Youth Scholarship Project Page
   ========================================================================== */

.qs-impact-hero {
	background: var(--pact-blue);
	color: #ffffff;
	overflow: hidden;
	padding: 5rem 1rem;
	position: relative;
	text-align: center;
}

@media (min-width: 1024px) {
	.qs-impact-hero {
		padding: 8rem 1rem;
	}
}

.qs-impact-hero__image,
.qs-impact-why__image {
	display: block;
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	width: 100%;
}

.qs-impact-hero__image {
	opacity: 0.1;
}

.qs-impact-hero__overlay {
	background: linear-gradient(180deg, rgba(0, 74, 135, 0.6), rgba(0, 74, 135, 0.92));
	inset: 0;
	position: absolute;
}

.qs-impact-hero__inner,
.qs-impact-section__inner,
.qs-impact-why__inner,
.qs-impact-partnership__inner {
	margin: 0 auto;
	max-width: var(--pact-container);
	position: relative;
	z-index: 1;
}

.qs-impact-hero__inner {
	max-width: 56rem;
}

.qs-impact-hero__eyebrow,
.qs-impact-section__eyebrow {
	color: var(--pact-green);
	font-family: 'Rubik', sans-serif;
	font-size: 0.875rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	margin: 0 0 1.5rem;
	text-transform: uppercase;
}

.qs-impact-hero__heading {
	color: #ffffff;
	font-family: 'Sora', sans-serif;
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.12;
	margin: 0 0 2rem;
}

@media (min-width: 1024px) {
	.qs-impact-hero__heading {
		font-size: 4rem;
	}
}

.qs-impact-hero__heading span {
	color: var(--pact-green);
	display: inline;
}

.qs-impact-hero__intro {
	color: rgba(255, 255, 255, 0.9);
	font-family: 'Rubik', sans-serif;
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 1.7;
	margin: 0 auto 2.5rem;
	max-width: 48rem;
}

@media (min-width: 1024px) {
	.qs-impact-hero__intro {
		font-size: 1.25rem;
	}
}

.qs-impact-hero__button,
.qs-impact-cta__button {
	align-items: center;
	background: var(--pact-green);
	border-radius: 9999px;
	box-shadow: 0 18px 36px rgba(15, 23, 42, 0.22);
	color: #ffffff;
	display: inline-flex;
	font-family: 'Rubik', sans-serif;
	font-weight: 800;
	justify-content: center;
	min-width: 11rem;
	padding: 1rem 2.5rem;
	text-align: center;
	transition: background-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.qs-impact-hero__button:hover,
.qs-impact-hero__button:focus,
.qs-impact-cta__button:hover,
.qs-impact-cta__button:focus {
	background: var(--pact-green-dark);
	box-shadow: 0 22px 44px rgba(15, 23, 42, 0.28);
	color: #ffffff;
	transform: translateY(-0.125rem);
}

.qs-impact-intro,
.qs-impact-partnership,
.qs-impact-cta {
	background: #ffffff;
	padding: 4rem 1rem;
}

@media (min-width: 768px) {
	.qs-impact-intro,
	.qs-impact-partnership {
		padding: 5rem 1rem;
	}
}

.qs-impact-intro__inner {
	margin: 0 auto;
	max-width: 48rem;
	text-align: center;
}

.qs-impact-intro__inner h2,
.qs-impact-section__heading,
.qs-impact-why__inner h2,
.qs-impact-partnership__panel h2,
.qs-impact-cta__copy h2 {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 1.5rem;
}

@media (min-width: 1024px) {
	.qs-impact-section__heading,
	.qs-impact-why__inner h2 {
		font-size: 2.5rem;
	}
}

.qs-impact-intro__inner p,
.qs-impact-section__intro,
.qs-impact-card p,
.qs-impact-offers__footer,
.qs-impact-partnership__panel p,
.qs-impact-cta__copy p {
	color: #4b5563;
	font-family: 'Rubik', sans-serif;
	line-height: 1.7;
	margin: 0;
}

.qs-impact-intro__inner p {
	font-size: 1.0625rem;
	margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
	.qs-impact-intro__inner p {
		font-size: 1.125rem;
	}
}

.qs-impact-intro__inner p:last-child {
	margin-bottom: 0;
}

.qs-impact-offers {
	background: #f9fafb;
	padding: 4rem 1rem;
}

@media (min-width: 768px) {
	.qs-impact-offers {
		padding: 5rem 1rem;
	}
}

.qs-impact-section__header {
	margin: 0 auto 3rem;
	max-width: 48rem;
	text-align: center;
}

.qs-impact-section__eyebrow {
	color: var(--pact-blue);
	margin-bottom: 0.75rem;
}

.qs-impact-section__heading {
	margin-bottom: 1rem;
}

.qs-impact-section__intro {
	font-size: 1.0625rem;
}

.qs-impact-offers__grid {
	display: grid;
	gap: 1.5rem;
	margin: 0 auto;
	max-width: var(--pact-container);
}

@media (min-width: 768px) {
	.qs-impact-offers__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.qs-impact-card {
	background: #ffffff;
	border: 1px solid #eef2f7;
	border-radius: var(--pact-radius);
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
	padding: 2rem;
	text-align: center;
	transition: box-shadow 200ms ease, transform 200ms ease;
}

.qs-impact-card:hover {
	box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
	transform: translateY(-0.125rem);
}

.qs-impact-card__icon {
	align-items: center;
	background: rgba(0, 74, 135, 0.1);
	border-radius: 1rem;
	color: var(--pact-blue);
	display: flex;
	height: 4rem;
	justify-content: center;
	margin: 0 auto 1.5rem;
	transition: background-color 200ms ease, color 200ms ease;
	width: 4rem;
}

.qs-impact-card:hover .qs-impact-card__icon {
	background: var(--pact-blue);
	color: #ffffff;
}

.qs-impact-card__icon svg {
	height: 2rem;
	width: 2rem;
}

.qs-impact-card h3 {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.3;
	margin: 0 0 0.875rem;
}

.qs-impact-offers__footer {
	font-size: 1.0625rem;
	font-style: italic;
	margin: 3rem auto 0;
	max-width: 48rem;
	text-align: center;
}

.qs-impact-why {
	background: var(--pact-blue);
	color: #ffffff;
	overflow: hidden;
	padding: 4rem 1rem;
	position: relative;
}

@media (min-width: 768px) {
	.qs-impact-why {
		padding: 5rem 1rem;
	}
}

.qs-impact-why__image {
	opacity: 0.1;
}

.qs-impact-why__overlay {
	background: rgba(0, 74, 135, 0.9);
	inset: 0;
	position: absolute;
}

.qs-impact-why__inner {
	max-width: 56rem;
	text-align: center;
}

.qs-impact-why__inner h2 {
	color: #ffffff;
}

.qs-impact-why__grid {
	display: grid;
	gap: 2rem;
	text-align: left;
}

@media (min-width: 768px) {
	.qs-impact-why__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 3rem;
	}
}

.qs-impact-why__grid p {
	color: rgba(255, 255, 255, 0.9);
	font-family: 'Rubik', sans-serif;
	font-size: 1.0625rem;
	line-height: 1.75;
	margin: 0 0 1.5rem;
}

.qs-impact-why__grid p:last-child {
	margin-bottom: 0;
}

.qs-impact-partnership__inner {
	align-items: center;
	display: grid;
	gap: 2rem;
}

@media (min-width: 1024px) {
	.qs-impact-partnership__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 4rem;
	}
}

.qs-impact-partnership__media {
	border-radius: var(--pact-radius);
	box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
	overflow: hidden;
	position: relative;
}

.qs-impact-partnership__media img {
	display: block;
	height: auto;
	transition: transform 700ms ease;
	width: 100%;
}

.qs-impact-partnership__media:hover img {
	transform: scale(1.04);
}

.qs-impact-partnership__media span {
	background: linear-gradient(45deg, rgba(0, 74, 135, 0.22), transparent);
	inset: 0;
	position: absolute;
}

.qs-impact-partnership__panel {
	background: #f9fafb;
	border: 1px solid #eef2f7;
	border-radius: var(--pact-radius);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
	padding: 2rem;
}

@media (min-width: 768px) {
	.qs-impact-partnership__panel {
		padding: 3rem;
	}
}

.qs-impact-partnership__panel h2 {
	font-size: 1.75rem;
	margin-bottom: 1.25rem;
}

@media (min-width: 1024px) {
	.qs-impact-partnership__panel h2 {
		font-size: 2rem;
	}
}

.qs-impact-partnership__panel p {
	margin-bottom: 1rem;
}

.qs-impact-partnership__panel p:last-child {
	margin-bottom: 0;
}

.qs-impact-cta {
	border-top: 1px solid #eef2f7;
}

.qs-impact-cta__inner {
	align-items: center;
	background: #f9fafb;
	border: 1px solid #eef2f7;
	border-radius: var(--pact-radius);
	display: grid;
	gap: 2rem;
	margin: 0 auto;
	max-width: 64rem;
	padding: 2rem;
}

@media (min-width: 900px) {
	.qs-impact-cta__inner {
		grid-template-columns: minmax(0, 1fr) auto;
		padding: 3rem;
	}
}

.qs-impact-cta__copy {
	text-align: center;
}

@media (min-width: 900px) {
	.qs-impact-cta__copy {
		text-align: left;
	}
}

.qs-impact-cta__copy h2 {
	font-size: 1.75rem;
	margin-bottom: 0.75rem;
}

.qs-impact-cta__button {
	box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
	width: 100%;
}

@media (min-width: 560px) {
	.qs-impact-cta__button {
		width: auto;
	}
}

.qs-impact-cta__back {
	align-items: center;
	color: #6b7280;
	display: inline-flex;
	font-family: 'Rubik', sans-serif;
	font-weight: 600;
	gap: 0.5rem;
	justify-content: center;
	margin: 2rem auto 0;
	transition: color 200ms ease;
	width: 100%;
}

.qs-impact-cta__back:hover,
.qs-impact-cta__back:focus {
	color: var(--pact-blue);
}

.qs-impact-cta__back svg {
	height: 1rem;
	width: 1rem;
}

.qs-impact-editor {
	background: #f8fbff;
	border: 1px solid rgba(0, 74, 135, 0.2);
	border-radius: 8px;
	padding: 1.5rem;
}

.qs-impact-editor__label {
	color: var(--pact-blue);
	font-family: 'Rubik', sans-serif;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	margin: 0 0 1rem;
	text-transform: uppercase;
}

.qs-impact-editor__field {
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(0, 74, 135, 0.18);
	border-radius: 6px;
	color: #334155;
	font-family: 'Rubik', sans-serif;
	margin: 0 0 0.75rem;
	padding: 0.625rem 0.75rem;
}

.qs-impact-editor__media {
	background: #ffffff;
	border: 1px solid rgba(0, 74, 135, 0.18);
	border-radius: 8px;
	margin: 0 0 1rem;
	padding: 1rem;
}

.qs-impact-editor__media-label {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 0.95rem;
	font-weight: 800;
	margin: 0 0 0.75rem;
}

.qs-impact-editor__media img {
	border-radius: 6px;
	display: block;
	height: auto;
	margin: 0 0 0.75rem;
	max-width: 22rem;
	width: 100%;
}

.qs-impact-editor__media-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.qs-impact-editor__media-help {
	color: #64748b;
	font-family: 'Rubik', sans-serif;
	font-size: 0.8125rem;
	line-height: 1.5;
	margin: 0.75rem 0 0;
}

.qs-impact-editor__field--heading {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 1.1rem;
	font-weight: 800;
}

/* ==========================================================================
   Success Stories
   ========================================================================== */

.success-stories {
	background: #f8fbf4;
	color: var(--pact-ink);
	overflow: hidden;
	padding: 4rem 1rem;
	position: relative;
}

.success-stories__inner {
	margin: 0 auto;
	max-width: var(--pact-container);
	position: relative;
	z-index: 1;
}

.success-stories__header {
	margin: 0 auto 2.5rem;
	max-width: 48rem;
	text-align: center;
}

.success-stories__eyebrow {
	color: #6b7280;
	font-family: 'Rubik', sans-serif;
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.3125rem;
	margin: 0 0 1rem;
	text-transform: uppercase;
}

.success-stories__heading {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 1.875rem;
	font-weight: 600;
	line-height: 2.375rem;
	margin: 0 0 1rem;
}

@media (min-width: 1024px) {
	.success-stories__heading {
		font-size: 2.5rem;
		line-height: 3.125rem;
	}
}

.success-stories__heading span {
	color: var(--pact-green);
}

.success-stories__intro {
	color: #4b5563;
	font-family: 'Rubik', sans-serif;
	font-size: 1.0625rem;
	font-weight: 400;
	line-height: 1.625rem;
	margin: 0 auto;
}

.success-stories__grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 1024px) {
	.success-stories__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.success-stories__card {
	background: #ffffff;
	border: 1px solid #f3f4f6;
	border-radius: var(--pact-radius);
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
	overflow: hidden;
	transition: border-color 300ms ease, box-shadow 300ms ease, transform 300ms ease;
}

.success-stories__card:hover {
	border-color: rgba(142, 198, 65, 0.35);
	box-shadow: 0 24px 48px rgba(15, 23, 42, 0.16);
	transform: translateY(-2px);
}

.success-stories__video-trigger {
	aspect-ratio: 16 / 9;
	background: #111827;
	border: 0;
	cursor: pointer;
	display: block;
	overflow: hidden;
	padding: 0;
	position: relative;
	width: 100%;
}

.success-stories__thumbnail {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms ease;
	width: 100%;
}

.success-stories__card:hover .success-stories__thumbnail {
	transform: scale(1.05);
}

.success-stories__thumbnail-overlay {
	background: rgba(0, 0, 0, 0.22);
	inset: 0;
	position: absolute;
	transition: background-color 200ms ease;
}

.success-stories__card:hover .success-stories__thumbnail-overlay {
	background: rgba(0, 0, 0, 0.14);
}

.success-stories__play {
	align-items: center;
	background: rgba(255, 255, 255, 0.22);
	border: 2px solid rgba(255, 255, 255, 0.55);
	border-radius: 9999px;
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
	color: #ffffff;
	display: flex;
	height: 4.5rem;
	justify-content: center;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: transform 200ms ease;
	width: 4.5rem;
}

@media (min-width: 768px) {
	.success-stories__play {
		height: 5rem;
		width: 5rem;
	}
}

.success-stories__card:hover .success-stories__play,
.success-stories__video-trigger:focus .success-stories__play {
	transform: translate(-50%, -50%) scale(1.08);
}

.success-stories__play svg {
	display: block;
	height: 2.5rem;
	margin-left: 0.25rem;
	width: 2.5rem;
}

.success-stories__card-body {
	padding: 1.25rem;
}

.success-stories__title {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 1.1875rem;
	font-weight: 600;
	line-height: 1.5rem;
	margin: 0 0 0.25rem;
	transition: color 200ms ease;
}

.success-stories__card:hover .success-stories__title {
	color: var(--pact-peach);
}

.success-stories__text {
	color: #4b5563;
	font-family: 'Rubik', sans-serif;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.25rem;
	margin: 0;
}

.success-stories__modal {
	align-items: center;
	background: rgba(0, 0, 0, 0.9);
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 1rem;
	position: fixed;
	z-index: 1000;
}

.success-stories__modal[hidden] {
	display: none;
}

.success-stories__modal-inner {
	max-width: 64rem;
	position: relative;
	width: 100%;
}

.success-stories__modal-close {
	background: transparent;
	border: 0;
	color: #ffffff;
	cursor: pointer;
	padding: 0;
	position: absolute;
	right: 0;
	top: -3rem;
	transition: color 200ms ease;
}

.success-stories__modal-close:hover,
.success-stories__modal-close:focus {
	color: var(--pact-peach);
}

.success-stories__modal-close svg {
	display: block;
	height: 2.5rem;
	width: 2.5rem;
}

.success-stories__video-frame {
	aspect-ratio: 16 / 9;
	background: #000000;
	border-radius: var(--pact-radius);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
	overflow: hidden;
	width: 100%;
}

.success-stories__iframe {
	border: 0;
	display: block;
	height: 100%;
	width: 100%;
}

/* ==========================================================================
   Donation CTA
   ========================================================================== */

.donation-cta {
	color: #ffffff;
	overflow: hidden;
	padding: 4rem 1rem;
	position: relative;
	text-align: center;
}

@media (min-width: 1024px) {
	.donation-cta {
		padding: 6rem 1rem;
	}
}

.donation-cta__background {
	display: block;
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	width: 100%;
}

.donation-cta__overlay {
	background: rgba(142, 198, 65, 0.95);
	inset: 0;
	position: absolute;
}

.donation-cta__inner {
	margin: 0 auto;
	max-width: 56rem;
	position: relative;
	z-index: 1;
}

.donation-cta__heading {
	color: #ffffff;
	font-family: 'Sora', sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 2.25rem;
	margin: 0 0 1.5rem;
}

@media (min-width: 1024px) {
	.donation-cta__heading {
		font-size: 2.625rem;
		line-height: 3.25rem;
	}
}

.donation-cta__copy {
	display: grid;
	gap: 1.5rem;
	margin: 0 auto 2.5rem;
}

.donation-cta__copy p {
	color: rgba(255, 255, 255, 0.95);
	font-family: 'Rubik', sans-serif;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.75rem;
	margin: 0;
}

.donation-cta__copy .donation-cta__emphasis {
	color: #ffffff;
	font-family: 'Sora', sans-serif;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.625rem;
}

@media (min-width: 1024px) {
	.donation-cta__copy .donation-cta__emphasis {
		font-size: 1.25rem;
		line-height: 1.875rem;
	}
}

.donation-cta__button {
	align-items: center;
	background: #ffffff;
	border-radius: 9999px;
	box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
	color: var(--pact-green);
	display: inline-flex;
	font-family: 'Sora', sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
	gap: 0.75rem;
	line-height: 1.5rem;
	padding: 1rem 2.5rem;
	transition: background-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.donation-cta__button:hover,
.donation-cta__button:focus {
	background: #f9fafb;
	box-shadow: 0 14px 28px rgba(15, 23, 42, 0.2);
	color: var(--pact-green);
	transform: scale(1.04);
}

.donation-cta__button svg {
	display: block;
	height: 1.5rem;
	transition: transform 200ms ease;
	width: 1.5rem;
}

.donation-cta__button:hover svg,
.donation-cta__button:focus svg {
	transform: translateX(0.25rem);
}

.donation-cta__indicators {
	align-items: center;
	color: rgba(255, 255, 255, 0.84);
	display: flex;
	flex-wrap: wrap;
	font-family: 'Rubik', sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	gap: 1rem 2rem;
	justify-content: center;
	margin-top: 3rem;
}

.donation-cta__indicator {
	align-items: center;
	display: inline-flex;
	gap: 0.5rem;
}

.donation-cta__indicator-icon {
	display: block;
	height: 1.25rem;
	width: 1.25rem;
}

/* ==========================================================================
   About Page
   ========================================================================== */

.about-section__inner,
.about-why__grid,
.about-audience__inner,
.about-story__inner,
.about-report__inner,
.about-cta__inner {
	margin: 0 auto;
	max-width: var(--pact-container);
	padding-left: 1rem;
	padding-right: 1rem;
}

.about-section__header {
	margin: 0 auto 3rem;
	max-width: 48rem;
	text-align: center;
}

.about-section__eyebrow {
	color: var(--pact-blue);
	font-family: 'Rubik', sans-serif;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.4;
	margin: 0 0 0.75rem;
	text-transform: uppercase;
}

.about-section__eyebrow--green {
	color: var(--pact-green);
}

.about-section__eyebrow--peach {
	color: var(--pact-peach);
}

.about-section__heading {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.16;
	margin: 0;
}

@media (min-width: 1024px) {
	.about-section__heading {
		font-size: 2.5rem;
	}
}

.about-section__heading--light {
	color: #ffffff;
}

.about-button {
	align-items: center;
	border-radius: 9999px;
	display: inline-flex;
	font-family: 'Rubik', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	gap: 0.625rem;
	justify-content: center;
	line-height: 1.25;
	min-height: 3rem;
	padding: 0.875rem 1.5rem;
	transition: background-color 200ms ease, color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.about-button:hover,
.about-button:focus {
	transform: translateY(-2px);
}

.about-button svg {
	height: 1.25rem;
	width: 1.25rem;
}

.about-button--green,
.about-hero__button {
	background: var(--pact-green);
	box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
	color: #ffffff;
}

.about-button--green:hover,
.about-button--green:focus,
.about-hero__button:hover,
.about-hero__button:focus {
	background: var(--pact-green-dark);
	color: #ffffff;
}

.about-button--blue {
	background: var(--pact-blue);
	box-shadow: 0 16px 32px rgba(0, 74, 135, 0.18);
	color: #ffffff;
}

.about-button--blue:hover,
.about-button--blue:focus {
	background: #003a6b;
	color: #ffffff;
}

.about-button--white {
	background: #ffffff;
	color: var(--pact-blue);
}

.about-button--white:hover,
.about-button--white:focus {
	background: #f3f4f6;
	color: var(--pact-blue);
}

.about-card-icon {
	align-items: center;
	background: color-mix(in srgb, var(--about-accent, var(--pact-blue)) 12%, #ffffff);
	border-radius: 9999px;
	color: var(--about-accent, var(--pact-blue));
	display: inline-flex;
	height: 3rem;
	justify-content: center;
	margin-bottom: 1.5rem;
	width: 3rem;
}

.about-card-icon svg {
	height: 1.5rem;
	width: 1.5rem;
}

.about-hero {
	background: var(--pact-blue);
	color: #ffffff;
	min-height: 38rem;
	overflow: hidden;
	padding: 6rem 1rem;
	position: relative;
	text-align: center;
}

@media (min-width: 1024px) {
	.about-hero {
		min-height: 43rem;
		padding: 8rem 1rem;
	}
}

.about-hero__background {
	height: 100%;
	inset: 0;
	object-fit: cover;
	opacity: 0.16;
	position: absolute;
	width: 100%;
}

.about-hero__overlay {
	background: rgba(0, 74, 135, 0.55);
	inset: 0;
	position: absolute;
}

.about-hero__inner {
	margin: 0 auto;
	max-width: 58rem;
	position: relative;
	z-index: 1;
}

.about-hero__heading {
	color: #ffffff;
	font-family: 'Sora', sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.12;
	margin: 0 0 1.5rem;
}

@media (min-width: 768px) {
	.about-hero__heading {
		font-size: 3.5rem;
	}
}

@media (min-width: 1024px) {
	.about-hero__heading {
		font-size: 4rem;
	}
}

.about-hero__heading span {
	color: var(--pact-green);
	display: block;
}

.about-hero__body {
	color: rgba(255, 255, 255, 0.9);
	font-family: 'Rubik', sans-serif;
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 1.75;
	margin: 0 auto 2.25rem;
	max-width: 49rem;
}

.about-hero__button {
	align-items: center;
	border: 0;
	border-radius: 9999px;
	cursor: pointer;
	display: inline-flex;
	font-family: 'Rubik', sans-serif;
	font-size: 1.0625rem;
	font-weight: 700;
	gap: 0.625rem;
	justify-content: center;
	line-height: 1.25;
	min-height: 3.25rem;
	padding: 0.875rem 1.5rem;
}

.about-hero__button svg {
	height: 1.25rem;
	width: 1.25rem;
}

.about-video-modal {
	align-items: center;
	background: rgba(0, 0, 0, 0.84);
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 1rem;
	position: fixed;
	z-index: 1000;
}

.about-video-modal[hidden] {
	display: none;
}

.about-video-modal__inner {
	max-width: 64rem;
	position: relative;
	width: 100%;
}

.about-video-modal__close {
	background: transparent;
	border: 0;
	color: #ffffff;
	cursor: pointer;
	padding: 0;
	position: absolute;
	right: 0;
	top: -3rem;
}

.about-video-modal__close svg {
	height: 2.25rem;
	width: 2.25rem;
}

.about-video-modal__frame {
	aspect-ratio: 16 / 9;
	background: #000000;
	border-radius: var(--pact-radius);
	overflow: hidden;
}

.about-video-modal__frame iframe {
	border: 0;
	display: block;
	height: 100%;
	width: 100%;
}

.about-why {
	background: #f9fafb;
	padding: 5rem 0;
}

@media (min-width: 1024px) {
	.about-why {
		padding: 6rem 0;
	}
}

.about-why__grid,
.about-principles__grid,
.about-values__grid,
.about-team__grid {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.about-why__grid,
	.about-principles__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.about-values__grid,
	.about-team__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.about-why__card {
	background: #ffffff;
	border-radius: var(--pact-radius);
	border-top: 4px solid var(--about-accent);
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
	padding: 2rem;
}

.about-why__card h2,
.about-mission__card h3,
.about-principles__card h3,
.about-values__card h3,
.about-team__body h3,
.about-leader__content h3 {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.25;
	margin: 0;
}

.about-why__card h2 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.about-why__card p,
.about-mission__card p,
.about-principles__card p,
.about-values__card p,
.about-story__copy p,
.about-leader__bio p,
.about-report__inner p,
.about-cta__inner p {
	color: #4b5563;
	font-family: 'Rubik', sans-serif;
	font-size: 1rem;
	line-height: 1.7;
	margin: 0;
}

.about-mission,
.about-principles,
.about-values,
.about-report {
	background: #ffffff;
	padding: 5rem 0;
}

@media (min-width: 1024px) {
	.about-mission,
	.about-principles,
	.about-values,
	.about-report {
		padding: 6rem 0;
	}
}

.about-mission__grid {
	display: grid;
	gap: 1.5rem;
	margin: 0 auto;
	max-width: 72rem;
}

@media (min-width: 768px) {
	.about-mission__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.about-mission__card {
	border-radius: var(--pact-radius);
	overflow: hidden;
	padding: 2rem;
}

@media (min-width: 768px) {
	.about-mission__card {
		padding: 2.5rem;
	}
}

.about-mission__card--mission {
	--about-accent: var(--pact-green);
	background: #f4f9ed;
}

.about-mission__card--vision {
	--about-accent: var(--pact-blue);
	background: #e6f0f7;
}

.about-mission__card h3 {
	font-size: 1.875rem;
	margin-bottom: 1rem;
}

.about-principles__card {
	background: #f9fafb;
	border-radius: var(--pact-radius);
	min-height: 17rem;
	overflow: hidden;
	padding: 2rem;
	position: relative;
}

.about-principles__number {
	bottom: -1.5rem;
	color: #e5e7eb;
	font-family: 'Sora', sans-serif;
	font-size: 7rem;
	font-weight: 800;
	line-height: 1;
	position: absolute;
	right: -0.25rem;
}

.about-principles__card h3,
.about-values__card h3 {
	font-size: 1.375rem;
	margin-bottom: 1rem;
	position: relative;
	z-index: 1;
}

.about-principles__rule {
	background: var(--pact-peach);
	display: block;
	height: 3px;
	margin-bottom: 1.25rem;
	position: relative;
	width: 3rem;
	z-index: 1;
}

.about-principles__card p {
	position: relative;
	z-index: 1;
}

.about-audience,
.about-cta {
	background: var(--pact-blue);
	color: #ffffff;
	padding: 5rem 0;
}

@media (min-width: 1024px) {
	.about-audience,
	.about-cta {
		padding: 6rem 0;
	}
}

.about-audience__inner {
	align-items: center;
	display: grid;
	gap: 3rem;
}

@media (min-width: 1024px) {
	.about-audience__inner {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}
}

.about-audience__items {
	display: grid;
	gap: 1.5rem;
	margin: 2rem 0;
}

.about-audience__item {
	align-items: flex-start;
	display: flex;
	gap: 1rem;
}

.about-audience__icon {
	align-items: center;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 9999px;
	color: var(--pact-green);
	display: inline-flex;
	flex: 0 0 3rem;
	height: 3rem;
	justify-content: center;
	width: 3rem;
}

.about-audience__icon svg {
	height: 1.5rem;
	width: 1.5rem;
}

.about-audience__item h3 {
	color: #ffffff;
	font-family: 'Sora', sans-serif;
	font-size: 1.25rem;
	line-height: 1.3;
	margin: 0 0 0.375rem;
}

.about-audience__item p {
	color: rgba(255, 255, 255, 0.82);
	font-family: 'Rubik', sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
}

.about-audience__media,
.about-story__media {
	border-radius: var(--pact-radius);
	overflow: hidden;
}

.about-leader__media,
.about-team__media {
	overflow: hidden;
}

.about-audience__media {
	border: 4px solid rgba(255, 255, 255, 0.14);
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
}

.about-audience__media img,
.about-story__media img,
.about-leader__media img,
.about-team__media img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.about-audience__media img {
	aspect-ratio: 4 / 5;
}

.about-values__card {
	background: var(--about-soft-bg);
	border-radius: var(--pact-radius);
	padding: 2rem;
}

.about-values__card .about-card-icon {
	background: #ffffff;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
	color: var(--about-accent);
}

.about-story {
	background: #f4f9ed;
	padding: 5rem 0;
}

@media (min-width: 1024px) {
	.about-story {
		padding: 6rem 0;
	}
}

.about-story__inner {
	align-items: center;
	display: grid;
	gap: 3rem;
}

@media (min-width: 1024px) {
	.about-story__inner {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	}
}

.about-story__media {
	box-shadow: 0 24px 48px rgba(15, 23, 42, 0.16);
}

.about-story__media img {
	aspect-ratio: 6 / 5;
}

.about-story__copy {
	display: grid;
	gap: 1.25rem;
	margin-top: 1.5rem;
}

.about-story__copy .about-story__closing {
	color: #111827;
	font-weight: 600;
	font-style: italic;
}

.about-leadership,
.about-team {
	background: #f9fafb;
	padding: 5rem 0;
}

@media (min-width: 1024px) {
	.about-leadership,
	.about-team {
		padding: 6rem 0;
	}
}

.about-leadership__list {
	display: grid;
	gap: 2rem;
	margin: 0 auto;
	max-width: 64rem;
}

.about-leader {
	background: #ffffff;
	border-radius: var(--pact-radius);
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
	display: grid;
	overflow: hidden;
}

@media (min-width: 768px) {
	.about-leader {
		grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
	}
}

.about-leader__media {
	background: #e5e7eb;
	border-radius: 0;
	min-height: 24rem;
}

.about-leader__content {
	padding: 2rem;
}

@media (min-width: 1024px) {
	.about-leader__content {
		padding: 3rem;
	}
}

.about-leader__content h3 {
	font-size: 1.625rem;
	margin-bottom: 0.25rem;
}

.about-leader__role {
	color: var(--pact-green);
	font-family: 'Rubik', sans-serif;
	font-weight: 700;
	margin: 0 0 1.5rem;
}

.about-leader__bio {
	display: grid;
	gap: 1rem;
}

.about-leader__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.about-leader__socials a {
	align-items: center;
	background: #f3f4f6;
	border-radius: 9999px;
	color: #4b5563;
	display: inline-flex;
	height: 2.5rem;
	justify-content: center;
	width: 2.5rem;
}

.about-leader__socials a:hover,
.about-leader__socials a:focus {
	background: var(--pact-blue);
	color: #ffffff;
}

.about-leader__socials svg {
	height: 1.125rem;
	width: 1.125rem;
}

.about-team {
	padding-top: 0;
}

.about-team__grid {
	margin: 0 auto;
	max-width: 64rem;
}

.about-team__card {
	background: #ffffff;
	border-radius: var(--pact-radius);
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
	overflow: hidden;
	text-align: center;
}

.about-team__media {
	background: #eef2f7;
	border-radius: 0;
	height: 16rem;
}

.about-team__media--iram img {
	object-fit: contain;
	padding: 1.25rem;
}

.about-team__body {
	padding: 1.5rem;
}

.about-team__body h3 {
	font-size: 1.25rem;
	margin-bottom: 0.25rem;
}

.about-team__body p {
	color: var(--pact-green);
	font-family: 'Rubik', sans-serif;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.4;
	margin: 0;
}

.about-report__inner {
	max-width: 48rem;
	text-align: center;
}

.about-report__inner .about-section__heading {
	margin-bottom: 1rem;
}

.about-report__inner p {
	font-size: 1.125rem;
	margin: 0 auto 2rem;
	max-width: 43rem;
}

.about-cta {
	text-align: center;
}

.about-cta__inner {
	max-width: 54rem;
}

.about-cta__inner h2 {
	color: #ffffff;
	font-family: 'Sora', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.16;
	margin: 0 0 1rem;
}

@media (min-width: 1024px) {
	.about-cta__inner h2 {
		font-size: 2.5rem;
	}
}

.about-cta__inner p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.125rem;
	margin: 0 auto 2rem;
	max-width: 48rem;
}

.about-cta__actions {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
}

@media (min-width: 640px) {
	.about-cta__actions {
		flex-direction: row;
	}
}

@media (max-width: 767px) {
	.about-section__header {
		margin-bottom: 2rem;
	}

	.about-hero {
		min-height: auto;
		padding: 4.5rem 1rem;
	}

	.about-hero__body,
	.about-report__inner p,
	.about-cta__inner p {
		font-size: 1rem;
	}

	.about-why__card,
	.about-mission__card,
	.about-principles__card,
	.about-values__card,
	.about-leader__content {
		padding: 1.5rem;
	}

	.about-button {
		width: 100%;
	}
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-page-hero {
	background: var(--pact-blue);
	color: #ffffff;
	overflow: hidden;
	padding: 5rem 1rem;
	position: relative;
	text-align: center;
}

@media (min-width: 1024px) {
	.contact-page-hero {
		padding: 7rem 1rem;
	}
}

.contact-page-hero__background {
	display: block;
	height: 100%;
	inset: 0;
	object-fit: cover;
	opacity: 0.18;
	position: absolute;
	width: 100%;
}

.contact-page-hero__overlay {
	background: rgba(0, 74, 135, 0.72);
	inset: 0;
	position: absolute;
}

.contact-page-hero__inner,
.contact-page-main__inner {
	margin: 0 auto;
	max-width: var(--pact-container);
	position: relative;
	z-index: 1;
}

.contact-page-hero__inner {
	max-width: 50rem;
}

.contact-page-hero__eyebrow {
	color: var(--pact-green);
	font-family: 'Rubik', sans-serif;
	font-size: 0.875rem;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.4;
	margin: 0 0 1.5rem;
	text-transform: uppercase;
}

.contact-page-hero__heading {
	color: #ffffff;
	font-family: 'Sora', sans-serif;
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.1;
	margin: 0;
}

@media (min-width: 1024px) {
	.contact-page-hero__heading {
		font-size: 4rem;
	}
}

.contact-page-hero__heading span {
	color: var(--pact-green);
}

.contact-page-hero__body {
	color: rgba(255, 255, 255, 0.92);
	font-family: 'Rubik', sans-serif;
	font-size: 1.0625rem;
	font-weight: 300;
	line-height: 1.75;
	margin: 1.75rem auto 0;
	max-width: 44rem;
}

@media (min-width: 1024px) {
	.contact-page-hero__body {
		font-size: 1.25rem;
	}
}

.contact-page-main {
	background: #ffffff;
	padding: 4rem 1rem;
}

@media (min-width: 1024px) {
	.contact-page-main {
		padding: 6rem 1rem;
	}
}

.contact-page-main__inner {
	display: grid;
	gap: 4rem;
}

@media (min-width: 1024px) {
	.contact-page-main__inner {
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.65fr);
	}
}

.contact-page-info h2,
.contact-page-form h2 {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.18;
	margin: 0;
}

.contact-page-info h2 {
	font-size: 2rem;
	margin-bottom: 2.5rem;
}

.contact-page-form h2 {
	font-size: 1.875rem;
	margin-bottom: 2rem;
	position: relative;
	z-index: 1;
}

@media (min-width: 1024px) {
	.contact-page-info h2,
	.contact-page-form h2 {
		font-size: 2.25rem;
	}
}

.contact-page-info__list {
	display: grid;
	gap: 2.5rem;
}

.contact-page-info__item {
	align-items: flex-start;
	display: flex;
	gap: 1.5rem;
}

.contact-page-info__icon {
	align-items: center;
	background: rgba(0, 74, 135, 0.06);
	border-radius: var(--pact-radius);
	color: var(--pact-blue);
	display: inline-flex;
	flex: 0 0 auto;
	height: 3.5rem;
	justify-content: center;
	width: 3.5rem;
}

.contact-page-info__icon svg {
	display: block;
	height: 1.75rem;
	width: 1.75rem;
}

.contact-page-info__item h3 {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.3;
	margin: 0 0 0.75rem;
}

.contact-page-info__item p {
	color: #4b5563;
	font-family: 'Rubik', sans-serif;
	font-size: 1rem;
	line-height: 1.65;
	margin: 0 0 0.25rem;
}

.contact-page-info__item a {
	color: inherit;
	text-decoration: none;
}

.contact-page-info__item a:hover,
.contact-page-info__item a:focus {
	color: var(--pact-blue);
}

.contact-page-form__card {
	background: #ffffff;
	border: 1px solid #eef2f7;
	border-radius: var(--pact-radius);
	box-shadow: 0 30px 60px rgba(15, 23, 42, 0.14);
	overflow: hidden;
	padding: 2rem;
	position: relative;
}

@media (min-width: 640px) {
	.contact-page-form__card {
		padding: 3rem;
	}
}

.contact-page-form__accent {
	background: rgba(142, 198, 65, 0.08);
	border-radius: 9999px;
	height: 8rem;
	position: absolute;
	right: -4rem;
	top: -4rem;
	width: 8rem;
}

.contact-page-form__frame {
	min-height: 500px;
	position: relative;
	z-index: 1;
}

.contact-page-form__embed,
.contact-page-form__embed iframe {
	max-width: 100%;
	width: 100%;
}

.contact-page-form__loading {
	align-items: center;
	color: #9ca3af;
	display: flex;
	font-family: 'Rubik', sans-serif;
	font-size: 1rem;
	font-style: italic;
	justify-content: center;
	min-height: 18rem;
	padding: 3rem 1rem;
	text-align: center;
}

.contact-page-form__spinner {
	animation: contact-page-spin 900ms linear infinite;
	border: 3px solid rgba(156, 163, 175, 0.3);
	border-top-color: #9ca3af;
	border-radius: 9999px;
	display: inline-block;
	height: 1.5rem;
	margin-right: 0.75rem;
	width: 1.5rem;
}

@keyframes contact-page-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 767px) {
	.contact-page-hero {
		padding: 4.5rem 1rem;
	}

	.contact-page-hero__heading {
		font-size: 2.375rem;
	}

	.contact-page-hero__body {
		font-size: 1rem;
	}

	.contact-page-info__item {
		gap: 1rem;
	}

	.contact-page-info__icon {
		border-radius: 1rem;
		height: 3rem;
		width: 3rem;
	}

	.contact-page-info__icon svg {
		height: 1.5rem;
		width: 1.5rem;
	}

	.contact-page-form__card {
		padding: 1.5rem;
	}
}

/* ==========================================================================
   Get Help Page
   ========================================================================== */

.get-help-hero {
	background: var(--pact-blue);
	color: #ffffff;
	overflow: hidden;
	padding: 5rem 1rem;
	position: relative;
	text-align: center;
}

@media (min-width: 1024px) {
	.get-help-hero {
		padding: 7rem 1rem;
	}
}

.get-help-hero__background {
	display: block;
	height: 100%;
	inset: 0;
	object-fit: cover;
	opacity: 0.18;
	position: absolute;
	width: 100%;
}

.get-help-hero__overlay {
	background: rgba(0, 74, 135, 0.72);
	inset: 0;
	position: absolute;
}

.get-help-hero__inner,
.get-help-main__inner {
	margin: 0 auto;
	max-width: var(--pact-container);
	position: relative;
	z-index: 1;
}

.get-help-hero__inner {
	max-width: 50rem;
}

.get-help-hero__eyebrow {
	color: var(--pact-green);
	font-family: 'Rubik', sans-serif;
	font-size: 0.875rem;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.4;
	margin: 0 0 1.5rem;
	text-transform: uppercase;
}

.get-help-hero__heading {
	color: #ffffff;
	font-family: 'Sora', sans-serif;
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.1;
	margin: 0;
}

@media (min-width: 1024px) {
	.get-help-hero__heading {
		font-size: 4rem;
	}
}

.get-help-hero__heading span {
	color: var(--pact-green);
}

.get-help-hero__body {
	color: rgba(255, 255, 255, 0.92);
	font-family: 'Rubik', sans-serif;
	font-size: 1.0625rem;
	font-weight: 300;
	line-height: 1.75;
	margin: 1.75rem auto 0;
	max-width: 44rem;
}

@media (min-width: 1024px) {
	.get-help-hero__body {
		font-size: 1.25rem;
	}
}

.get-help-main {
	background: #ffffff;
	padding: 4rem 1rem;
}

@media (min-width: 1024px) {
	.get-help-main {
		padding: 6rem 1rem;
	}
}

.get-help-main__inner {
	display: grid;
	gap: 4rem;
}

@media (min-width: 1024px) {
	.get-help-main__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.get-help-support h2,
.get-help-form h2 {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.18;
	margin: 0;
}

.get-help-support h2 {
	font-size: 2rem;
	margin-bottom: 2.5rem;
}

.get-help-form h2 {
	font-size: 1.875rem;
	margin-bottom: 2rem;
	position: relative;
	z-index: 1;
}

@media (min-width: 1024px) {
	.get-help-support h2,
	.get-help-form h2 {
		font-size: 2.25rem;
	}
}

.get-help-support__items {
	display: grid;
	gap: 2rem;
	margin-bottom: 3rem;
}

.get-help-support__item {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	text-align: center;
}

@media (min-width: 640px) {
	.get-help-support__item {
		align-items: flex-start;
		flex-direction: row;
		gap: 1.5rem;
		text-align: left;
	}
}

.get-help-support__icon {
	align-items: center;
	background: rgba(0, 74, 135, 0.06);
	border-radius: var(--pact-radius);
	color: var(--pact-blue);
	display: inline-flex;
	flex: 0 0 auto;
	height: 3.5rem;
	justify-content: center;
	transition: background-color 200ms ease, color 200ms ease;
	width: 3.5rem;
}

.get-help-support__icon--green {
	background: rgba(142, 198, 65, 0.08);
	color: var(--pact-green);
}

.get-help-support__item:hover .get-help-support__icon {
	background: var(--pact-blue);
	color: #ffffff;
}

.get-help-support__item:hover .get-help-support__icon--green {
	background: var(--pact-green);
	color: #ffffff;
}

.get-help-support__icon svg {
	display: block;
	height: 1.75rem;
	width: 1.75rem;
}

.get-help-support__item h3 {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.3;
	margin: 0 0 0.75rem;
}

.get-help-support__item p,
.get-help-reasons p {
	color: #4b5563;
	font-family: 'Rubik', sans-serif;
	font-size: 1rem;
	line-height: 1.65;
	margin: 0;
}

.get-help-reasons {
	background: #f9fafb;
	border: 1px solid #eef2f7;
	border-radius: var(--pact-radius);
	box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
	overflow: hidden;
	padding: 2rem;
	position: relative;
}

@media (min-width: 640px) {
	.get-help-reasons {
		padding: 2.5rem;
	}
}

.get-help-reasons__accent {
	background: rgba(142, 198, 65, 0.08);
	border-radius: 9999px;
	height: 8rem;
	position: absolute;
	right: -4rem;
	top: -4rem;
	width: 8rem;
}

.get-help-reasons h3 {
	color: #111827;
	font-family: 'Sora', sans-serif;
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 1.25;
	margin: 0 0 1.5rem;
	position: relative;
	z-index: 1;
}

.get-help-reasons ul {
	display: grid;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
	z-index: 1;
}

.get-help-reasons li {
	align-items: flex-start;
	display: flex;
	gap: 0.75rem;
}

.get-help-reasons li > span {
	color: var(--pact-green);
	font-family: 'Rubik', sans-serif;
	font-weight: 800;
	line-height: 1.65;
}

.get-help-reasons strong {
	color: #374151;
	font-weight: 800;
}

.get-help-form__card {
	background: #ffffff;
	border: 1px solid #eef2f7;
	border-radius: var(--pact-radius);
	box-shadow: 0 30px 60px rgba(15, 23, 42, 0.14);
	overflow: hidden;
	padding: 2rem;
	position: relative;
}

@media (min-width: 640px) {
	.get-help-form__card {
		padding: 3rem;
	}
}

.get-help-form__accent {
	background: rgba(142, 198, 65, 0.08);
	border-radius: 9999px;
	height: 8rem;
	position: absolute;
	right: -4rem;
	top: -4rem;
	width: 8rem;
}

.get-help-form__frame {
	min-height: 500px;
	position: relative;
	z-index: 1;
}

.get-help-form__embed,
.get-help-form__embed iframe {
	max-width: 100%;
	width: 100%;
}

.get-help-form__loading {
	align-items: center;
	color: #9ca3af;
	display: flex;
	font-family: 'Rubik', sans-serif;
	font-size: 1rem;
	font-style: italic;
	justify-content: center;
	min-height: 18rem;
	padding: 3rem 1rem;
	text-align: center;
}

.get-help-form__spinner {
	animation: get-help-spin 900ms linear infinite;
	border: 3px solid rgba(156, 163, 175, 0.3);
	border-top-color: #9ca3af;
	border-radius: 9999px;
	display: inline-block;
	height: 1.5rem;
	margin-right: 0.75rem;
	width: 1.5rem;
}

@keyframes get-help-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 767px) {
	.get-help-hero {
		padding: 4.5rem 1rem;
	}

	.get-help-hero__heading {
		font-size: 2.375rem;
	}

	.get-help-hero__body {
		font-size: 1rem;
	}

	.get-help-form__card,
	.get-help-reasons {
		padding: 1.5rem;
	}
}

/* ==========================================================================
   Scroll To Top
   ========================================================================== */

.scroll-to-top {
	align-items: center;
	background: #1a5f6f;
	border: 0;
	border-radius: 9999px;
	bottom: 1.5rem;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.24);
	color: #ffffff;
	cursor: pointer;
	display: flex;
	height: 3rem;
	justify-content: center;
	opacity: 0;
	padding: 0;
	pointer-events: none;
	position: fixed;
	right: 1.5rem;
	transform: translateY(0.5rem);
	transition: background-color 200ms ease, opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
	visibility: hidden;
	width: 3rem;
	z-index: 60;
}

.scroll-to-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	visibility: visible;
}

.scroll-to-top:hover,
.scroll-to-top:focus {
	background: #145666;
}

.scroll-to-top svg {
	display: block;
	height: 1.5rem;
	width: 1.5rem;
}

@media (max-width: 639px) {
	.scroll-to-top {
		bottom: 1rem;
		right: 1rem;
	}
}

/* ==========================================================================
   Stories & News
   ========================================================================== */

.stories-hero {
	background: linear-gradient(180deg, rgba(0, 74, 135, 0.88), var(--pact-blue)), url("../images/transforming-lives.webp") center/cover;
	color: #ffffff;
	overflow: hidden;
	padding: 6rem 1rem;
	text-align: center;
}

.stories-hero__inner {
	margin: 0 auto;
	max-width: 52rem;
}

.stories-hero__eyebrow {
	color: var(--pact-green);
	font-size: 0.875rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	margin: 0 0 1.5rem;
	text-transform: uppercase;
}

.stories-hero h1 {
	color: #ffffff;
	font-size: clamp(2.5rem, 7vw, 4.5rem);
	font-weight: 800;
	line-height: 1;
	margin: 0 0 1.5rem;
}

.stories-hero h1 span {
	color: var(--pact-green);
}

.stories-hero p:last-child {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.125rem;
	line-height: 1.8;
	margin: 0;
}

.stories-featured {
	background: #ffffff;
	padding: 5rem 1rem;
}

.stories-featured__inner {
	align-items: center;
	display: grid;
	gap: 3rem;
	margin: 0 auto;
	max-width: var(--pact-container);
}

@media (min-width: 1024px) {
	.stories-featured__inner {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}
}

.stories-featured__media a,
.stories-card__media,
.story-related-card__media {
	display: block;
	overflow: hidden;
	position: relative;
}

.stories-featured__media a {
	border-radius: 1.5rem;
	box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
	height: 300px;
}

@media (min-width: 640px) {
	.stories-featured__media a {
		border-radius: 3rem;
		height: 400px;
	}
}

@media (min-width: 1024px) {
	.stories-featured__media a {
		height: 500px;
	}
}

.stories-featured__media img,
.stories-card__media img,
.story-related-card__media img {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
	width: 100%;
}

.stories-featured__media a:hover img,
.stories-card:hover .stories-card__media img,
.story-related-card:hover img {
	transform: scale(1.04);
}

.stories-featured__media span,
.stories-card__media span {
	background: var(--pact-green);
	border-radius: 9999px;
	color: #ffffff;
	font-size: 0.6875rem;
	font-weight: 800;
	left: 1rem;
	letter-spacing: 0.12em;
	padding: 0.45rem 0.85rem;
	position: absolute;
	text-transform: uppercase;
	top: 1rem;
}

.stories-card__meta {
	align-items: center;
	color: #6b7280;
	display: flex;
	flex-wrap: wrap;
	font-size: 0.875rem;
	font-weight: 600;
	gap: 0.75rem;
}

.story-article__meta {
	align-items: center;
	color: #9ca3af;
	display: flex;
	flex-wrap: wrap;
	font-family: "Rubik", system-ui, -apple-system, sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	gap: 1rem;
}

.stories-card__meta span {
	color: var(--pact-blue);
	font-weight: 800;
}

.story-article__meta > span:not(.story-pill) {
	color: var(--pact-blue);
	font-weight: 700;
}

.stories-featured__content h2 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	line-height: 1.08;
	margin: 1rem 0 1.5rem;
}

.stories-featured__content h2 a,
.stories-card h3 a,
.story-related-card {
	color: #111827;
}

.stories-featured__content h2 a:hover,
.stories-card h3 a:hover,
.story-related-card:hover {
	color: var(--pact-blue);
}

.stories-featured__content p {
	color: #4b5563;
	font-size: 1.125rem;
	line-height: 1.8;
	margin: 0 0 2rem;
}

.stories-read-more {
	background: var(--pact-blue);
	border-radius: 9999px;
	box-shadow: 0 14px 32px rgba(0, 74, 135, 0.24);
	color: #ffffff;
	display: inline-flex;
	font-weight: 800;
	padding: 0.95rem 1.5rem;
}

.stories-read-more:hover,
.stories-read-more:focus {
	background: var(--pact-blue-dark);
	color: #ffffff;
}

.stories-listing {
	background: #f9fafb;
	border-top: 1px solid #eef2f7;
	padding: 4.5rem 1rem;
}

.stories-listing__inner {
	margin: 0 auto;
	max-width: var(--pact-container);
}

.stories-filter {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: 0.75rem;
	margin-bottom: 2.5rem;
	overflow-x: auto;
	padding-bottom: 0.75rem;
}

@media (min-width: 1024px) {
	.stories-filter {
		flex-wrap: wrap;
	}
}

.stories-filter span {
	color: #6b7280;
	flex-shrink: 0;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.stories-filter button {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 9999px;
	color: #4b5563;
	cursor: pointer;
	flex-shrink: 0;
	font-family: "Rubik", system-ui, sans-serif;
	font-size: 0.875rem;
	font-weight: 800;
	padding: 0.6rem 1rem;
}

.stories-filter button.is-active,
.stories-filter button:hover,
.stories-filter button:focus {
	background: var(--pact-blue);
	border-color: var(--pact-blue);
	color: #ffffff;
}

.stories-grid {
	display: grid;
	gap: 2rem;
}

@media (min-width: 768px) {
	.stories-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1100px) {
	.stories-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.stories-card {
	background: #ffffff;
	border: 1px solid #eef2f7;
	border-radius: 1rem;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.stories-card[hidden] {
	display: none !important;
}

.stories-card__media {
	height: 12rem;
}

@media (min-width: 640px) {
	.stories-card {
		border-radius: 2rem;
	}

	.stories-card__media {
		height: 16rem;
	}
}

.stories-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1.5rem;
}

.stories-card h3 {
	font-size: 1.25rem;
	line-height: 1.25;
	margin: 1rem 0;
}

.stories-card p {
	color: #4b5563;
	line-height: 1.7;
	margin: 0 0 1.5rem;
}

.stories-card__link {
	color: var(--pact-blue);
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	margin-top: auto;
	text-transform: uppercase;
}

.stories-listing__empty,
.story-related__empty {
	color: #4b5563;
	font-weight: 600;
	margin: 0;
	text-align: center;
}

.story-article {
	background: #ffffff;
}

.story-article__header {
	background: #f9fafb;
	border-bottom: 1px solid #eef2f7;
	padding: 3rem 1rem 2rem;
}

.story-article__header-inner,
.story-article__body-wrap,
.story-related__inner {
	margin: 0 auto;
	max-width: 56rem;
}

.story-article__back {
	align-items: center;
	color: var(--pact-blue);
	display: inline-flex;
	font-family: "Rubik", system-ui, -apple-system, sans-serif;
	font-size: 0.875rem;
	font-weight: 700;
	gap: 0.75rem;
	letter-spacing: 0.1em;
	margin-bottom: 2rem;
	text-transform: uppercase;
}

.story-article__back span {
	align-items: center;
	background: rgba(0, 74, 135, 0.06);
	border-radius: 9999px;
	display: inline-flex;
	height: 2rem;
	justify-content: center;
	width: 2rem;
}

.story-pill {
	background: var(--pact-green);
	border-radius: 9999px;
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	padding: 0.25rem 1rem;
	text-transform: uppercase;
}

.story-pill:hover,
.story-pill:focus {
	color: #ffffff;
}

.story-article__title {
	color: #111827;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.25;
	margin: 1.5rem 0 2rem;
}

@media (min-width: 640px) {
	.story-article__header {
		padding: 4rem 1rem 3rem;
	}
}

@media (min-width: 1024px) {
	.story-article__title {
		font-size: 3rem;
	}
}

.story-article__byline {
	align-items: center;
	border-top: 1px solid #e5e7eb;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	justify-content: space-between;
	padding-top: 2rem;
}

@media (min-width: 700px) {
	.story-article__byline {
		flex-direction: row;
	}
}

.story-article__author {
	align-items: center;
	display: flex;
	gap: 1rem;
}

.story-article__avatar {
	align-items: center;
	background: var(--pact-blue);
	border-radius: 9999px;
	color: #ffffff;
	display: inline-flex;
	font-family: "Rubik", system-ui, -apple-system, sans-serif;
	font-weight: 700;
	height: 3rem;
	justify-content: center;
	width: 3rem;
}

.story-article__author strong,
.story-article__author small {
	display: block;
}

.story-article__author strong {
	color: #111827;
	font-family: "Rubik", system-ui, -apple-system, sans-serif;
	font-size: 1rem;
	font-weight: 700;
}

.story-article__author small {
	color: #6b7280;
	font-family: "Rubik", system-ui, -apple-system, sans-serif;
	font-size: 0.875rem;
	margin-top: 0.2rem;
}

.story-share {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.story-share a {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 9999px;
	color: var(--pact-blue);
	font-family: "Rubik", system-ui, -apple-system, sans-serif;
	font-size: 0.8125rem;
	font-weight: 700;
	padding: 0.5rem 0.85rem;
}

.story-share a:hover,
.story-share a:focus {
	background: var(--pact-blue);
	color: #ffffff;
}

.story-article__body-wrap {
	padding: 2.5rem 1rem 6rem;
}

.story-article__featured-image {
	margin: 0 0 4rem;
}

.story-article__featured-image .story-article__image {
	border: 1px solid #eef2f7;
	border-radius: 1rem;
	box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
	display: block;
	height: auto;
	width: 100%;
}

.story-article__featured-image figcaption,
.story-article__content figcaption {
	color: #6b7280;
	font-family: "Rubik", system-ui, -apple-system, sans-serif;
	font-size: 0.875rem;
	font-style: italic;
	margin-top: 1rem;
	text-align: center;
}

@media (min-width: 640px) {
	.story-article__body-wrap {
		padding-top: 4rem;
	}

	.story-article__featured-image .story-article__image {
		border-radius: 3rem;
	}
}

.story-article__content {
	color: #374151;
	font-family: "Rubik", system-ui, -apple-system, sans-serif;
	font-size: 1.125rem;
	line-height: 1.625;
}

.story-article__content > * {
	margin-left: auto;
	margin-right: auto;
	max-width: 56rem;
}

.story-article__content p {
	margin: 0;
}

.story-article__content > * + * {
	margin-top: 2rem;
}

.story-article__content > * + p {
	margin-top: 2rem;
}

.story-article__lead {
	border-left: 4px solid var(--pact-green);
	color: #111827;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.625;
	padding: 0.5rem 0 0.5rem 1.5rem;
}

.story-article__content > p:first-of-type::first-letter {
	color: var(--pact-blue);
	float: left;
	font-family: "Sora", system-ui, sans-serif;
	font-size: 4rem;
	font-weight: 700;
	line-height: 3.5rem;
	padding-left: 3px;
	padding-right: 8px;
	padding-top: 4px;
}

.story-article__content figure {
	margin-bottom: 3rem;
	margin-top: 3rem;
}

.story-article__content .story-inline-image {
	max-width: 42rem;
}

.story-article__content figure img {
	border-radius: 1.5rem;
	box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
}

.story-article__content blockquote {
	background: #f4f9ed;
	border: 1px solid rgba(142, 198, 65, 0.22);
	border-radius: 2.5rem;
	color: #111827;
	margin: 4rem auto;
	overflow: hidden;
	padding: 2.5rem;
	position: relative;
}

.story-article__content blockquote::before {
	color: rgba(142, 198, 65, 0.12);
	content: "\201D";
	font-family: "Sora", system-ui, sans-serif;
	font-size: 9rem;
	font-weight: 700;
	line-height: 1;
	position: absolute;
	right: 1.5rem;
	top: -2.25rem;
}

.story-article__content blockquote p {
	font-family: "Sora", system-ui, sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.625;
	margin: 0;
	position: relative;
	z-index: 1;
}

.story-article__content blockquote cite {
	color: var(--pact-blue);
	display: block;
	font-style: normal;
	font-weight: 700;
	line-height: 1.5;
	margin-top: 1.5rem;
	position: relative;
	z-index: 1;
}

.story-callout {
	background: #f9fafb;
	border: 1px solid #eef2f7;
	border-radius: 1.5rem;
	box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
	margin: 4rem auto;
	padding: 2.5rem;
}

.story-callout p {
	color: #1f2937;
	font-size: 1.125rem;
	line-height: 1.625;
	margin: 0;
}

.story-callout p + p {
	margin-top: 1rem;
}

.story-callout p:last-child {
	color: var(--pact-blue);
	font-weight: 700;
}

.story-article__content h2,
.story-article__content h3,
.story-article__content h4 {
	color: #111827;
	font-family: "Sora", system-ui, sans-serif;
	line-height: 1.25;
	margin: 0;
}

.story-article__content h2 {
	font-size: clamp(1.875rem, 4vw, 2.25rem);
	margin-top: 4rem;
}

.story-article__content h3 {
	font-size: 1.5rem;
}

.story-article__content h4 {
	color: var(--pact-blue);
	font-size: 1.125rem;
}

.story-article__content strong {
	color: #111827;
	font-weight: 700;
}

.story-article__content .story-text-blue {
	color: var(--pact-blue);
}

.story-article__content .story-text-green {
	color: var(--pact-green);
}

.story-info-box,
.story-reflection-card {
	background: #f9fafb;
	border: 1px solid #eef2f7;
	border-radius: 1.5rem;
	margin: 3rem auto;
	padding: 2.5rem;
}

.story-info-box > * + *,
.story-reflection-card > * + * {
	margin-top: 1rem;
}

.story-list {
	display: grid;
	gap: 1rem;
	margin: 0;
	padding-left: 1.25rem;
}

.story-list li {
	padding-left: 0.25rem;
}

.story-list strong {
	color: var(--pact-blue);
	display: inline-block;
	min-width: 5rem;
}

.story-feature-row {
	border-bottom: 1px solid #eef2f7;
	border-top: 1px solid #eef2f7;
	display: grid;
	gap: 3rem;
	margin: 4rem auto;
	padding: 3rem 0;
}

.story-feature-row .story-info-box {
	background: transparent;
	border: 0;
	border-radius: 0;
	margin: 0;
	padding: 0;
}

.story-feature-row .story-inline-image {
	margin: 0;
	max-width: 100%;
}

.story-reflections {
	display: grid;
	gap: 2.5rem;
	margin: 2.5rem auto 0;
}

.story-reflection-card {
	background: #ffffff;
	box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
	margin: 0;
	padding: 2rem;
}

.story-reflection-card p {
	color: #374151;
	font-style: italic;
}

@media (min-width: 768px) {
	.story-feature-row {
		grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.9fr);
	}
}

.story-article__tags {
	border-top: 1px solid #eef2f7;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 4rem;
	padding-top: 2rem;
}

.story-article__tag {
	background: #f9fafb;
	border-radius: 9999px;
	color: #4b5563;
	font-family: "Rubik", system-ui, -apple-system, sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.5rem 1rem;
}

.story-article__tags-label {
	background: transparent;
	color: #9ca3af;
	font-family: "Rubik", system-ui, -apple-system, sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	padding: 0.5rem 0.85rem 0.5rem 0;
	text-transform: uppercase;
}

.story-related {
	background: #f9fafb;
	border-top: 1px solid #eef2f7;
	padding: 4rem 1rem;
}

.story-related__header {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin-bottom: 2rem;
}

.story-related__header h2 {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	margin: 0;
}

.story-related__header a {
	color: var(--pact-blue);
	font-weight: 800;
}

.story-related__grid {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 700px) {
	.story-related__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.story-related-card {
	background: #ffffff;
	border: 1px solid #eef2f7;
	border-radius: 1.25rem;
	box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
	display: block;
	overflow: hidden;
	padding: 1rem;
}

.story-related-card__media {
	aspect-ratio: 16 / 10;
	border-radius: 1rem;
	margin-bottom: 1rem;
}

.story-related-card strong,
.story-related-card small {
	display: block;
}

.story-related-card strong {
	line-height: 1.35;
}

.story-related-card small {
	color: #6b7280;
	margin-top: 0.5rem;
}

@media (max-width: 639px) {
	.stories-hero {
		padding: 4.5rem 1rem;
	}

	.stories-featured,
	.stories-listing,
	.story-article__body-wrap,
	.story-related {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.story-article__header {
		padding-bottom: 2rem;
		padding-top: 3rem;
	}

	.story-article__content blockquote,
	.story-info-box,
	.story-reflection-card,
	.story-callout {
		padding: 1.5rem;
	}
}
