@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');


:root {
	--yellow: #fff212;
	--deep-blue: #18194d;
	--blue: #5668f5;
	--red: #ea4e3b;
	--mint: #6fe9d2;
	--ash: #cae6ff;
	--cream: #ebe3d6;
	--green: #2b7a4b;
	--ink: #111324;
	--muted: #626575;
	--soft: #f7f5ef;
	--white: #ffffff;
	--footer: #070a14;
	--shadow: 0 22px 55px rgba(24, 25, 77, .12);
	--radius: 28px;
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	font-family: "Google Sans", Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	color: var(--ink);
	background: var(--soft);
	line-height: 1.6
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Google Sans", Inter, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}


a {
	color: inherit;
	text-decoration: none
}

img {
	max-width: 100%;
	display: block
}

.container {
	width: min(1180px, calc(100% - 40px));
	margin: auto
}

.topbar {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(247, 245, 239, .86);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(24, 25, 77, .08)
}

.nav {
	height: 82px;
	display: flex;
	align-items: center;
	justify-content: space-between
}

.brand {
	display: flex;
	gap: 14px;
	align-items: center;
	font-weight: 900
}

.mark {
	width: 44px;
	height: 44px;
	border-radius: 13px;
	background: var(--yellow);
	color: var(--deep-blue);
	display: grid;
	place-items: center;
	font-weight: 900
}

.brand small {
	display: block;
	color: var(--muted);
	font-weight: 800;
	margin-top: -4px
}

.links {
	display: flex;
	align-items: center;
	gap: 26px;
	font-weight: 800;
	color: #33364a
}

.links a:hover,
.links .active {
	color: var(--green)
}

.menu {
	display: none;
	border: 0;
	background: var(--deep-blue);
	color: white;
	border-radius: 12px;
	padding: 10px 12px
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border-radius: 999px;
	padding: 14px 22px;
	font-weight: 900;
	border: 1px solid transparent;
	transition: .2s
}

.btn-primary {
	background: var(--yellow);
	color: var(--deep-blue)
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(255, 242, 18, .28)
}

.btn-dark {
	background: var(--deep-blue);
	color: white
}

.btn-light {
	background: white;
	color: var(--deep-blue);
	border-color: rgba(24, 25, 77, .12)
}

.hero {
	padding: 86px 0 58px;
	position: relative;
	overflow: hidden
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.03fr .97fr;
	gap: 46px;
	align-items: center
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--green);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .12em;
	font-size: .82rem
}

.eyebrow:before {
	content: "";
	width: 26px;
	height: 10px;
	background: var(--yellow);
	border-radius: 99px
}

.hero h1,
.page-hero h1 {
	font-size: clamp(2.7rem, 6vw, 5.8rem);
	line-height: .96;
	margin: 20px 0;
	color: var(--deep-blue);
	letter-spacing: -.06em
}

.hero p {
	font-size: 1.18rem;
	color: #4e5265;
	max-width: 680px
}

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

.impact-card {
	background: var(--deep-blue);
	color: white;
	border-radius: 36px;
	padding: 36px;
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden
}

.impact-card:before {
	content: "";
	position: absolute;
	inset: auto -70px -80px auto;
	width: 220px;
	height: 220px;
	background: var(--yellow);
	border-radius: 50%;
	opacity: .95
}

.impact-card h2 {
	font-size: 2rem;
	line-height: 1.05;
	margin: 0 0 18px
}

.impact-card p {
	color: #dfe2ff
}

.stat-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-top: 26px;
	position: relative
}

.stat {
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 22px;
	padding: 18px
}

.stat strong {
	display: block;
	color: var(--yellow);
	font-size: 1.8rem
}

.section {
	padding: 78px 0
}

.section-head {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 30px;
	margin-bottom: 32px
}

.section-head h2,
.cta h2 {
	font-size: clamp(2rem, 4vw, 3.4rem);
	line-height: 1;
	margin: 0;
	color: var(--deep-blue);
	letter-spacing: -.04em
}

.section-head p {
	max-width: 560px;
	color: var(--muted);
	margin: 0
}

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

.card {
	background: white;
	border-radius: var(--radius);
	padding: 30px;
	box-shadow: var(--shadow);
	border: 1px solid rgba(24, 25, 77, .06)
}

.icon {
	width: 64px;
	height: 64px;
	border-radius: 22px;
	background: var(--yellow);
	display: grid;
	place-items: center;
	color: var(--deep-blue);
	font-size: 1.5rem;
	font-weight: 900;
	margin-bottom: 18px
}

.card h3 {
	font-size: 1.35rem;
	color: var(--deep-blue);
	margin: 0 0 10px
}

.card p {
	color: var(--muted);
	margin: 0
}

.split {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 34px;
	align-items: center
}

.panel {
	background: white;
	border-radius: 36px;
	padding: 42px;
	box-shadow: var(--shadow)
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px
}

.value {
	text-align: center;
	padding: 34px 26px
}

.value .icon {
	margin: 0 auto 18px;
	border-radius: 50%;
	background: var(--yellow)
}

.page-hero {
	padding: 72px 0 44px;
	background: linear-gradient(135deg, var(--cream), #fff)
}

.page-hero p {
	font-size: 1.15rem;
	color: var(--muted);
	max-width: 780px
}

.program-list {
	display: grid;
	gap: 18px
}

.program {
	display: grid;
	grid-template-columns: 88px 1fr;
	gap: 22px;
	align-items: start;
	background: white;
	border-radius: 28px;
	padding: 24px;
	border: 1px solid rgba(24, 25, 77, .07);
	box-shadow: 0 14px 35px rgba(24, 25, 77, .07)
}

.program .icon {
	margin: 0
}

.leader {
	display: flex;
	gap: 18px;
	align-items: center
}

.avatar {
	width: 72px;
	height: 72px;
	border-radius: 24px;
	background: linear-gradient(135deg, var(--yellow), var(--mint));
	display: grid;
	place-items: center;
	font-weight: 900;
	color: var(--deep-blue)
}

form {
	display: grid;
	gap: 14px
}

input,
textarea,
select {
	width: 100%;
	border: 1px solid rgba(24, 25, 77, .14);
	border-radius: 18px;
	padding: 15px 16px;
	font: inherit;
	background: white
}

textarea {
	min-height: 140px
}

.cta {
	background: var(--deep-blue);
	color: white;
	border-radius: 36px;
	padding: 44px;
	display: grid;
	grid-template-columns: 1fr .9fr;
	gap: 28px;
	align-items: center
}

.cta h2 {
	color: white
}

.cta p {
	color: #d8dbff
}

.signup {
	display: flex;
	gap: 10px;
	background: white;
	padding: 8px;
	border-radius: 999px
}

.signup input {
	border: 0;
	border-radius: 999px
}

.footer {
	background: var(--footer);
	color: white;
	padding: 52px 0 28px
}

.footer-top {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
	padding-bottom: 30px
}

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

.social a {
	width: 46px;
	height: 46px;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-weight: 900
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	padding: 34px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.footer h4 {
	margin: 0 0 16px
}

.footer a,
.footer p {
	display: block;
	color: rgba(255, 255, 255, .68);
	/* font-weight: 750; */
	margin: 0 0 12px
}

.footer a:hover,
.yellow {
	color: var(--yellow)
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	color: rgba(255, 255, 255, .55);
	font-weight: 800;
	padding-top: 24px
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: .55s
}

.reveal.visible {
	opacity: 1;
	transform: none
}

@media (max-width:900px) {
	.links {
		display: none;
		position: absolute;
		top: 82px;
		left: 20px;
		right: 20px;
		background: white;
		border-radius: 22px;
		padding: 18px;
		box-shadow: var(--shadow);
		flex-direction: column;
		align-items: flex-start
	}

	.links.open {
		display: flex
	}

	.menu {
		display: block
	}

	.hero-grid,
	.split,
	.cta {
		grid-template-columns: 1fr
	}

	.cards,
	.values-grid,
	.footer-grid {
		grid-template-columns: 1fr 1fr
	}

	.section-head {
		display: block
	}

	.footer-top,
	.footer-bottom {
		display: block
	}

	.signup {
		border-radius: 24px;
		display: grid
	}

	.program {
		grid-template-columns: 1fr
	}
}

@media (max-width:560px) {

	.cards,
	.values-grid,
	.footer-grid,
	.stat-grid {
		grid-template-columns: 1fr
	}

	.hero h1,
	.page-hero h1 {
		font-size: 2.6rem
	}

	.container {
		width: min(100% - 28px, 1180px)
	}
}

/* Home page: SDGs, events, and news */
.center {
	justify-content: center;
	text-align: center
}

.center .eyebrow {
	justify-content: center
}

.center h2 {
	max-width: 760px;
	margin: 12px auto 0
}

.sdg-section {
	background: #fff
}

.sdg-grid {
	display: grid;
	grid-template-columns: repeat(9, 1fr);
	gap: 14px
}

.sdg-card {
	min-height: 142px;
	border-radius: 18px;
	color: white;
	padding: 18px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-shadow: 0 16px 35px rgba(24, 25, 77, .12);
	position: relative;
	overflow: hidden
}

.sdg-card:after {
	content: "";
	position: absolute;
	width: 92px;
	height: 92px;
	border: 10px solid rgba(255, 255, 255, .22);
	border-radius: 50%;
	right: -28px;
	bottom: -28px
}

.sdg-card strong {
	font-size: 2.1rem;
	line-height: 1;
	font-weight: 900
}

.sdg-card span {
	text-transform: uppercase;
	font-size: .82rem;
	font-weight: 900;
	line-height: 1.15;
	letter-spacing: .02em
}

.sdg-1 {
	background: #e5243b
}

.sdg-2 {
	background: #dda63a
}

.sdg-3 {
	background: #4c9f38
}

.sdg-4 {
	background: #c5192d
}

.sdg-5 {
	background: #ff3a21
}

.sdg-6 {
	background: #26bde2
}

.sdg-10 {
	background: #dd1367
}

.sdg-13 {
	background: #3f7e44
}

.sdg-17 {
	background: #19486a
}

.event-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 26px;
	align-items: stretch
}

.event-feature,
.mini-event,
.news-card {
	background: white;
	border-radius: 20px;
	box-shadow: var(--shadow);
	border: 1px solid rgba(24, 25, 77, .06);
	overflow: hidden;
	position: relative
}

.event-art {
	height: 280px;
	background: linear-gradient(135deg, rgba(24, 25, 77, .72), rgba(43, 122, 75, .5)), url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&w=1200&q=80');
	background-size: cover;
	background-position: center;
	color: white;
	font-weight: 900;
	display: flex;
	align-items: end;
	padding: 24px;
	font-size: 1.6rem
}

.event-body {
	padding: 28px
}

.tag {
	color: var(--red);
	font-weight: 900;
	font-size: .84rem
}

.event-feature h3,
.mini-event h3,
.news-card h3 {
	color: var(--deep-blue);
	font-size: 1.45rem;
	line-height: 1.2;
	margin: 8px 0 10px
}

.event-meta,
.news-meta {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
	color: var(--muted);
	font-size: .88rem;
	font-weight: 800;
	margin: 18px 0
}

.event-feature time,
.mini-event time {
	position: absolute;
	right: 22px;
	top: 22px;
	width: 66px;
	height: 66px;
	border-radius: 50%;
	background: var(--red);
	color: white;
	display: grid;
	place-items: center;
	text-align: center;
	font-weight: 900;
	line-height: 1;
	box-shadow: 0 0 0 9px rgba(255, 242, 18, .78)
}

.event-feature time small,
.mini-event time small {
	font-size: .72rem
}

.event-list {
	display: grid;
	gap: 20px
}

.mini-event {
	padding: 26px 110px 24px 28px
}

.mini-event p,
.news-card p {
	color: var(--muted);
	margin: 0
}

.news-section {
	background: #eef5f8
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px
}

.news-img {
	height: 210px;
	background-size: cover;
	background-position: center
}

.img-1 {
	background-image: linear-gradient(rgba(24, 25, 77, .05), rgba(24, 25, 77, .1)), url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&w=900&q=80')
}

.img-2 {
	background-image: linear-gradient(rgba(24, 25, 77, .05), rgba(24, 25, 77, .1)), url('https://images.unsplash.com/photo-1497633762265-9d179a990aa6?auto=format&fit=crop&w=900&q=80')
}

.img-3 {
	background-image: linear-gradient(rgba(24, 25, 77, .05), rgba(24, 25, 77, .1)), url('https://images.unsplash.com/photo-1541544181051-e46607bc22a4?auto=format&fit=crop&w=900&q=80')
}

.news-body {
	padding: 24px
}

@media (max-width:1050px) {
	.sdg-grid {
		grid-template-columns: repeat(3, 1fr)
	}
}

@media (max-width:900px) {

	.event-layout,
	.news-grid {
		grid-template-columns: 1fr
	}

	.mini-event {
		padding-right: 96px
	}
}

@media (max-width:560px) {
	.sdg-grid {
		grid-template-columns: repeat(2, 1fr)
	}

	.sdg-card {
		min-height: 120px
	}

	.event-art {
		height: 220px
	}
}

/* Dedicated SDG goal pages */
.sdg-card {
	transition: transform .2s, box-shadow .2s
}

.sdg-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 50px rgba(24, 25, 77, .18)
}

.goal-hero {
	padding: 88px 0 68px;
	background: linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(235, 227, 214, .72));
	position: relative;
	overflow: hidden
}

.goal-hero:after {
	content: "";
	position: absolute;
	right: -120px;
	top: -120px;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	background: var(--goal-color);
	opacity: .16
}

.goal-hero-grid {
	display: grid;
	grid-template-columns: 1.1fr .55fr;
	gap: 44px;
	align-items: center
}

.goal-hero h1 {
	font-size: clamp(3.2rem, 8vw, 7rem);
	line-height: .9;
	margin: 16px 0;
	color: var(--deep-blue);
	letter-spacing: -.07em
}

.goal-hero p {
	font-size: 1.2rem;
	color: #565a69;
	max-width: 760px
}

.back-link {
	display: inline-flex;
	margin-bottom: 18px;
	font-weight: 900;
	color: var(--green)
}

.goal-badge {
	min-height: 330px;
	border-radius: 38px;
	background: var(--goal-color);
	color: white;
	padding: 34px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden
}

.goal-badge:after {
	content: "";
	position: absolute;
	width: 210px;
	height: 210px;
	border: 22px solid rgba(255, 255, 255, .22);
	border-radius: 50%;
	right: -70px;
	bottom: -70px
}

.goal-badge strong {
	font-size: 6rem;
	line-height: 1;
	font-weight: 900
}

.goal-badge span {
	text-transform: uppercase;
	font-size: 1.45rem;
	font-weight: 900;
	line-height: 1.05;
	max-width: 260px
}

.goal-note {
	background: var(--deep-blue);
	color: white;
	border-radius: 32px;
	padding: 34px;
	box-shadow: var(--shadow)
}

.goal-note h3 {
	font-size: 1.7rem;
	margin: 0 0 12px
}

.goal-note p {
	color: #dfe2ff;
	margin: 0
}

.soft-section {
	background: #fff
}

.milestone-grid,
.goal-list {
	background: white;
	border-radius: 30px;
	padding: 34px;
	box-shadow: var(--shadow);
	border: 1px solid rgba(24, 25, 77, .06)
}

.milestone-grid ul,
.goal-list ul {
	margin: 0;
	padding-left: 20px;
	color: var(--muted);
	font-weight: 750
}

.milestone-grid li,
.goal-list li {
	margin: 12px 0
}

.work-grid {
	display: grid;
	grid-template-columns: 1fr .8fr;
	gap: 24px;
	align-items: stretch
}

.goal-image-card {
	border-radius: 30px;
	background: linear-gradient(135deg, var(--deep-blue), var(--goal-color));
	color: white;
	padding: 34px;
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
	justify-content: end;
	min-height: 280px;
	position: relative;
	overflow: hidden
}

.goal-image-card:before {
	content: "";
	position: absolute;
	top: 28px;
	right: 28px;
	width: 92px;
	height: 92px;
	border-radius: 50%;
	background: var(--yellow)
}

.goal-image-card span {
	font-weight: 900;
	color: var(--yellow);
	text-transform: uppercase;
	letter-spacing: .12em
}

.goal-image-card h3 {
	font-size: 2.2rem;
	line-height: 1;
	margin: 12px 0;
	color: white
}

.goal-image-card p {
	color: #eef0ff;
	margin: 0
}

.partner-strip {
	padding-top: 30px
}

@media (max-width:900px) {

	.goal-hero-grid,
	.work-grid {
		grid-template-columns: 1fr
	}

	.goal-badge {
		min-height: 230px
	}

	.goal-badge strong {
		font-size: 4.5rem
	}
}

/* Resource, legal, impact, press and media kit pages */
.rich-hero {
	background: radial-gradient(circle at 10% 20%, rgba(255, 242, 18, .25), transparent 30%), linear-gradient(135deg, #fff, var(--cream));
}

.toolbox {
	display: grid;
	grid-template-columns: 1fr 220px 220px;
	gap: 14px;
	margin-bottom: 26px;
	background: white;
	border: 1px solid rgba(24, 25, 77, .08);
	box-shadow: var(--shadow);
	padding: 14px;
	border-radius: 26px
}

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

.resource-card,
.press-card,
.kit-card,
.video-card,
blockquote {
	display: block;
	background: white;
	border-radius: 28px;
	padding: 28px;
	box-shadow: var(--shadow);
	border: 1px solid rgba(24, 25, 77, .06);
	color: inherit
}

.resource-card h3,
.press-card h3,
.kit-card h3,
.video-card h3 {
	color: var(--deep-blue);
	font-size: 1.35rem;
	margin: 10px 0
}

.resource-card p,
.press-card p,
.kit-card p,
.video-card p,
blockquote {
	color: var(--muted)
}

.pill {
	display: inline-flex;
	border-radius: 99px;
	background: var(--ash);
	padding: 8px 12px;
	font-weight: 900;
	color: var(--deep-blue);
	margin-right: 8px
}

.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	margin-top: 28px
}

.pagination button:disabled {
	opacity: .45;
	cursor: not-allowed
}

.event-detail-hero {
	background: linear-gradient(135deg, var(--deep-blue), #0b1028);
	color: white
}

.event-detail-hero h1,
.event-detail-hero p {
	color: white
}

.event-facts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 24px
}

.event-facts span {
	background: var(--cream);
	border-radius: 18px;
	padding: 16px;
	font-weight: 800
}

.event-facts b {
	display: block;
	color: var(--green);
	margin-bottom: 4px
}

.video-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 24px
}

.video-card.featured {
	grid-row: span 2
}

.video-frame {
	height: 330px;
	border-radius: 24px;
	background: linear-gradient(135deg, rgba(24, 25, 77, .75), rgba(43, 122, 75, .55)), url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&w=1200&q=80');
	background-size: cover;
	background-position: center;
	display: grid;
	place-items: center;
	margin-bottom: 22px
}

.video-frame.small {
	height: 170px
}

.video-frame span {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: var(--yellow);
	display: grid;
	place-items: center;
	color: var(--deep-blue);
	font-weight: 900;
	font-size: 1.4rem
}

.soft-bg {
	background: #f4f8fa
}

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

blockquote {
	font-size: 1.05rem;
	font-weight: 750;
	margin: 0
}

blockquote cite {
	display: block;
	margin-top: 18px;
	color: var(--deep-blue);
	font-style: normal
}

.press-grid,
.kit-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px
}

.press-grid {
	grid-template-columns: repeat(4, 1fr)
}

.press-thumb,
.kit-preview {
	height: 190px;
	border-radius: 24px;
	background: linear-gradient(135deg, var(--deep-blue), var(--green));
	color: white;
	display: grid;
	place-items: center;
	font-size: 2.4rem;
	font-weight: 900;
	margin-bottom: 18px
}

.press-thumb.alt {
	background: linear-gradient(135deg, var(--red), var(--yellow));
	color: var(--deep-blue)
}

.logo-preview {
	display: flex;
	gap: 14px;
	align-items: center;
	justify-content: center;
	background: var(--cream);
	color: var(--deep-blue)
}

.palette-preview {
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
	padding: 16px;
	background: white
}

.palette-preview span {
	height: 100%;
	border-radius: 16px
}

.palette-preview span:nth-child(1) {
	background: var(--yellow)
}

.palette-preview span:nth-child(2) {
	background: var(--deep-blue)
}

.palette-preview span:nth-child(3) {
	background: var(--red)
}

.palette-preview span:nth-child(4) {
	background: var(--mint)
}

.facts-preview {
	background: var(--deep-blue)
}

.media-contact {
	margin-top: 28px
}

.legal {
	max-width: 900px;
	background: white;
	border-radius: 32px;
	padding: 42px;
	box-shadow: var(--shadow);
	border: 1px solid rgba(24, 25, 77, .06)
}

.legal h2 {
	color: var(--deep-blue);
	margin-top: 28px
}

.legal h2:first-child {
	margin-top: 0
}

.legal p {
	color: var(--muted);
	font-weight: 650;
	line-height: 1.8
}

@media(max-width:1050px) {

	.resource-grid,
	.press-grid,
	.kit-grid,
	.video-grid,
	.testimonial-grid {
		grid-template-columns: 1fr 1fr
	}

	.toolbox {
		grid-template-columns: 1fr
	}
}

@media(max-width:650px) {

	.resource-grid,
	.press-grid,
	.kit-grid,
	.video-grid,
	.testimonial-grid,
	.event-facts {
		grid-template-columns: 1fr
	}

	.video-card.featured {
		grid-row: auto
	}
}

/* Mobile responsiveness refinement pass */
html,
body {
	max-width: 100%;
	overflow-x: hidden
}

button,
a,
input,
select,
textarea {
	touch-action: manipulation
}

.topbar {
	width: 100%
}

.nav {
	gap: 16px
}

.brand {
	min-width: 0
}

.brand span:last-child {
	line-height: 1.15
}

.links a {
	white-space: nowrap
}

.menu {
	font-weight: 900;
	cursor: pointer
}

@media (max-width:1180px) {
	.container {
		width: min(100% - 36px, 1080px)
	}

	.links {
		gap: 16px;
		font-size: .92rem
	}

	.sdg-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr))
	}

	.press-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr))
	}
}

@media (max-width:980px) {
	.nav {
		height: 74px
	}

	.links {
		top: 74px;
		max-height: calc(100vh - 92px);
		overflow: auto
	}

	.hero {
		padding: 58px 0 38px
	}

	.section {
		padding: 56px 0
	}

	.page-hero,
	.goal-hero {
		padding: 56px 0 36px
	}

	.hero-grid,
	.split,
	.goal-hero-grid,
	.work-grid,
	.cta {
		grid-template-columns: 1fr;
		gap: 26px
	}

	.hero h1,
	.page-hero h1,
	.goal-hero h1 {
		letter-spacing: -.045em
	}

	.cards,
	.values-grid,
	.resource-grid,
	.news-grid,
	.kit-grid,
	.testimonial-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr))
	}

	.event-layout,
	.video-grid {
		grid-template-columns: 1fr
	}

	.video-card.featured {
		grid-row: auto
	}

	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important
	}

	.footer-top,
	.footer-bottom {
		display: flex;
		align-items: flex-start;
		flex-wrap: wrap
	}

	.toolbox {
		grid-template-columns: 1fr 1fr
	}

	.toolbox input {
		grid-column: 1/-1
	}
}

@media (max-width:760px) {
	.container {
		width: min(100% - 28px, 1180px)
	}

	.nav {
		height: 68px
	}

	.links {
		top: 68px;
		left: 14px;
		right: 14px
	}

	.brand {
		font-size: .95rem
	}

	.brand small {
		font-size: .72rem
	}

	.mark {
		width: 40px;
		height: 40px;
		border-radius: 12px
	}

	.hero h1,
	.page-hero h1 {
		font-size: clamp(2.35rem, 12vw, 3.6rem);
		line-height: .98
	}

	.goal-hero h1 {
		font-size: clamp(2.4rem, 13vw, 4rem)
	}

	.hero p,
	.page-hero p,
	.goal-hero p {
		font-size: 1rem
	}

	.section-head {
		margin-bottom: 24px
	}

	.section-head h2,
	.cta h2 {
		font-size: clamp(1.9rem, 9vw, 2.7rem);
		line-height: 1.05
	}

	.section-head p {
		margin-top: 14px
	}

	.cards,
	.values-grid,
	.resource-grid,
	.press-grid,
	.kit-grid,
	.testimonial-grid,
	.event-facts {
		grid-template-columns: 1fr
	}

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

	.sdg-card {
		min-height: 128px;
		border-radius: 16px;
		padding: 16px
	}

	.sdg-card strong {
		font-size: 1.9rem
	}

	.sdg-card span {
		font-size: .72rem
	}

	.card,
	.panel,
	.legal,
	.resource-card,
	.press-card,
	.kit-card,
	.video-card,
	blockquote {
		border-radius: 22px;
		padding: 22px
	}

	.impact-card,
	.cta {
		border-radius: 26px;
		padding: 28px
	}

	.stat-grid {
		grid-template-columns: 1fr 1fr
	}

	.event-feature time,
	.mini-event time {
		width: 56px;
		height: 56px;
		right: 14px;
		top: 14px;
		box-shadow: 0 0 0 6px rgba(255, 242, 18, .75)
	}

	.mini-event {
		padding: 24px 84px 22px 22px
	}

	.event-body {
		padding: 22px
	}

	.event-art {
		height: 220px;
		font-size: 1.3rem
	}

	.event-meta,
	.news-meta {
		gap: 8px;
		display: grid
	}

	.signup {
		display: grid;
		border-radius: 22px
	}

	.signup input {
		border: 1px solid rgba(24, 25, 77, .1)
	}

	.signup .btn,
	.hero-actions .btn {
		width: 100%
	}

	.hero-actions {
		display: grid
	}

	.footer {
		padding-top: 40px
	}

	.footer-top {
		gap: 22px
	}

	.social {
		flex-wrap: wrap
	}

	.footer-grid {
		grid-template-columns: 1fr !important;
		gap: 22px
	}

	.footer-bottom {
		display: grid;
		gap: 10px
	}
}

@media (max-width:480px) {
	.container {
		width: min(100% - 22px, 1180px)
	}

	.hero {
		padding-top: 44px
	}

	.section {
		padding: 44px 0
	}

	.sdg-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr))
	}

	.sdg-card {
		min-height: 116px
	}

	.sdg-card:after {
		width: 70px;
		height: 70px;
		border-width: 8px
	}

	.stat-grid {
		grid-template-columns: 1fr
	}

	.program {
		grid-template-columns: 1fr;
		padding: 20px
	}

	.leader {
		align-items: flex-start
	}

	.avatar {
		flex: 0 0 62px;
		width: 62px;
		height: 62px
	}

	.goal-badge {
		min-height: 210px;
		border-radius: 26px;
		padding: 24px
	}

	.goal-badge strong {
		font-size: 4rem
	}

	.goal-badge span {
		font-size: 1.1rem
	}

	.toolbox {
		grid-template-columns: 1fr
	}

	.pagination {
		gap: 8px;
		flex-wrap: wrap
	}

	.press-thumb,
	.kit-preview {
		height: 150px
	}

	.video-frame {
		height: 230px
	}

	.video-frame.small {
		height: 170px
	}

	input,
	textarea,
	select {
		font-size: 16px
	}

	.btn {
		padding: 13px 18px
	}

	.menu {
		padding: 9px 11px
	}
}