/*
Theme Name: Campus Growth
Theme URI: https://example.com/campus-growth
Author: Scholars Business Consultancy
Description: A custom WordPress theme for dynamic opportunities, guidance resources, and success stories.
Version: 1.5.1
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: campus-growth
*/

:root {
	--navy: #0b132b;
	--navy-mid: #1c2541;
	--navy-light: #3a506b;
	--gold: #c99738;
	--gold-lt: #e3b456;
	--teal: #00a896;
	--teal-lt: #e3f7f5;
	--teal-dk: #028074;
	--slate: #f4f7f6;
	--white: #fff;
	--g100: #f8fafc;
	--g200: #e2e8f0;
	--g300: #cbd5e1;
	--g400: #94a3b8;
	--g600: #475569;
	--g800: #1e293b;
	--ff-display: "Syne", sans-serif;
	--ff-body: "DM Sans", sans-serif;
	--sh-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .04);
	--sh-md: 0 4px 16px rgba(11, 19, 43, .1), 0 2px 8px rgba(11, 19, 43, .06);
	--sh-lg: 0 8px 32px rgba(11, 19, 43, .14), 0 4px 16px rgba(11, 19, 43, .06);
	--sh-glow: 0 0 40px rgba(0, 168, 150, .22);
	--r-sm: 8px;
	--r-md: 14px;
	--r-lg: 20px;
	--r-xl: 28px;
}

*, *::before, *::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--ff-body);
	background: var(--slate);
	color: var(--navy);
	overflow-x: hidden;
}

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

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

button {
	font: inherit;
}

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

.screen-reader-text:focus,
.skip-link:focus {
	z-index: 1000;
	top: 8px;
	left: 8px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	margin: 0;
	clip: auto;
	background: #fff;
	color: #0b132b;
	font-weight: 700;
}

:focus-visible {
	outline: 3px solid var(--gold-lt);
	outline-offset: 3px;
}

.site-header {
	height: 70px;
}

.site-header.is-sticky {
	position: sticky;
	top: 0;
	z-index: 1000;
}

.site-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	height: 70px;
	padding: 0 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(11, 19, 43, .96);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(255, 255, 255, .06);
	transition: box-shadow .18s ease;
}

.site-nav.is-scrolled {
	box-shadow: 0 10px 30px rgba(11, 19, 43, .2);
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.nav-logo.has-custom-logo {
	flex: 0 1 300px;
	width: min(300px, calc(100vw - 96px));
	height: 64px;
	overflow: hidden;
	justify-content: center;
}

.nav-logo img {
	display: block;
	max-height: 58px;
	width: auto;
}

.nav-logo.has-custom-logo img {
	width: 100%;
	height: auto;
	max-width: none;
	max-height: none;
}

.nav-logo-mark {
	width: 38px;
	height: 38px;
	border-radius: var(--r-sm);
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, var(--teal), var(--gold));
	color: var(--white);
	font-family: var(--ff-display);
	font-weight: 800;
	font-size: .8rem;
}

.nav-logo-text {
	font-family: var(--ff-display);
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--white);
	white-space: nowrap;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-links a {
	display: inline-flex;
	color: rgba(255, 255, 255, .68);
	font-size: .875rem;
	font-weight: 500;
	padding: .45rem .875rem;
	border-radius: var(--r-sm);
	transition: all .18s ease;
}

.nav-links a:hover,
.nav-links .current-menu-item > a {
	color: var(--white);
	background: rgba(255, 255, 255, .07);
}

.nav-links .nav-cta {
	background: var(--gold);
	color: var(--white);
	font-weight: 700;
}

.nav-header-action {
	background: var(--gold);
	color: var(--navy);
	font-family: "Syne", sans-serif;
	font-size: 13px;
	font-weight: 700;
	padding: 10px 14px;
	text-decoration: none;
	white-space: nowrap;
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 4px;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.hamburger span:not(.screen-reader-text) {
	display: block;
	width: 22px;
	height: 2px;
	background: rgba(255, 255, 255, .75);
	border-radius: 2px;
}

.mobile-nav {
	display: none;
	position: fixed;
	top: 70px;
	left: 0;
	right: 0;
	z-index: 199;
	background: var(--navy);
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	padding: .75rem 1rem;
}

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

.mobile-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-nav a {
	display: block;
	padding: .7rem 1rem;
	color: rgba(255, 255, 255, .75);
	font-size: .9375rem;
	border-radius: var(--r-sm);
}

.mobile-nav a:hover {
	background: rgba(255, 255, 255, .07);
	color: var(--white);
}

.wrap {
	max-width: 1200px;
	margin: 0 auto;
}

.sec {
	padding: 5rem 2rem;
}

.sec-white {
	background: var(--white);
}

.sec-slate {
	background: var(--slate);
}

.sec-navy {
	background: var(--navy);
	position: relative;
	overflow: hidden;
}

.sec-navy::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 55%;
	height: 100%;
	background: radial-gradient(ellipse at right, rgba(0, 168, 150, .1) 0%, transparent 70%);
	pointer-events: none;
}

.sec-navy > .wrap {
	position: relative;
	z-index: 1;
}

.eyebrow {
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: var(--teal);
	margin-bottom: .6rem;
}

.sec-title {
	font-family: var(--ff-display);
	font-size: clamp(1.6rem, 2.5vw, 2.25rem);
	font-weight: 700;
	color: var(--navy);
	margin: 0 0 .6rem;
	line-height: 1.15;
}

.sec-navy .sec-title {
	color: var(--white);
}

.sec-sub {
	color: var(--g600);
	font-size: 1rem;
	line-height: 1.65;
	max-width: 560px;
	margin: 0;
}

.sec-navy .sec-sub {
	color: rgba(255, 255, 255, .58);
}

.sec-head-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 2.25rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.see-all {
	display: inline-flex;
	align-items: center;
	color: var(--teal);
	font-size: .875rem;
	font-weight: 700;
	white-space: nowrap;
}

.see-all:hover {
	color: var(--teal-dk);
}

.sec-navy .see-all {
	color: var(--gold);
}

.btn-primary,
.btn-outline,
.btn-dark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .45rem;
	font-weight: 700;
	font-size: .9375rem;
	padding: .8rem 1.875rem;
	border-radius: var(--r-md);
	transition: all .2s ease;
}

.btn-primary {
	background: var(--gold);
	color: var(--white);
}

.btn-primary:hover {
	background: var(--gold-lt);
	transform: translateY(-1px);
	box-shadow: var(--sh-md);
}

.btn-outline {
	color: rgba(255, 255, 255, .9);
	border: 1.5px solid rgba(255, 255, 255, .22);
}

.btn-outline:hover {
	border-color: rgba(255, 255, 255, .55);
	background: rgba(255, 255, 255, .06);
}

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

.btn-dark:hover {
	background: var(--navy-mid);
}

.home-hero {
	background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #052421 100%);
	padding: 5rem 2rem 4rem;
	position: relative;
	overflow: hidden;
	min-height: 78vh;
	display: flex;
	align-items: center;
}

.home-hero::before {
	content: "";
	position: absolute;
	top: -40%;
	right: -18%;
	width: 65%;
	height: 200%;
	background: radial-gradient(ellipse, rgba(0, 168, 150, .13) 0%, transparent 68%);
	pointer-events: none;
}

.hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
	gap: 4rem;
	align-items: center;
}

.hero-pill {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--teal);
	border: 1px solid rgba(0, 168, 150, .3);
	border-radius: 100px;
	padding: .35rem .875rem;
	margin-bottom: 1.25rem;
}

.hero-pill .dot {
	width: 6px;
	height: 6px;
	background: var(--teal);
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: .5;
		transform: scale(1.4);
	}
}

.home-hero h1 {
	font-family: var(--ff-display);
	font-size: clamp(2.1rem, 3.8vw, 3.5rem);
	font-weight: 800;
	color: var(--white);
	line-height: 1.1;
	margin: 0 0 1.25rem;
	max-width: 720px;
}

.hero-desc {
	color: rgba(255, 255, 255, .68);
	font-size: 1.05rem;
	line-height: 1.7;
	margin: 0 0 2rem;
	max-width: 510px;
}

.hero-actions {
	display: flex;
	gap: .875rem;
	flex-wrap: wrap;
}

.hero-stats {
	display: flex;
	gap: 2rem;
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, .1);
	flex-wrap: wrap;
}

.hero-stat .num {
	font-family: var(--ff-display);
	font-size: 1.875rem;
	font-weight: 700;
	color: var(--gold);
}

.hero-stat .lbl {
	font-size: .8rem;
	color: rgba(255, 255, 255, .5);
	margin-top: .1rem;
}

.orbit-wrap {
	position: relative;
	height: 360px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.orbit-center {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--teal), #008073);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--sh-glow), 0 0 0 14px rgba(0, 168, 150, .08), 0 0 0 28px rgba(0, 168, 150, .04);
	position: relative;
	z-index: 2;
	color: var(--white);
	font-family: var(--ff-display);
	font-weight: 800;
}

.orbit-ring {
	position: absolute;
	border: 1.5px solid;
	border-radius: 50%;
	animation: rspin 28s linear infinite;
}

.orbit-ring-1 {
	width: 195px;
	height: 195px;
	border-color: rgba(0, 168, 150, .22);
}

.orbit-ring-2 {
	width: 290px;
	height: 290px;
	border-color: rgba(201, 151, 56, .16);
	animation-direction: reverse;
}

.orbit-ring-3 {
	width: 358px;
	height: 358px;
	border-color: rgba(255, 255, 255, .06);
	animation-duration: 42s;
}

@keyframes rspin {
	from { transform: rotate(0); }
	to { transform: rotate(360deg); }
}

.orbit-node {
	position: absolute;
	width: 40px;
	height: 40px;
	border-radius: var(--r-sm);
	background: var(--navy-mid);
	border: 1.5px solid rgba(255, 255, 255, .1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, .82);
	font-size: .8rem;
	font-weight: 800;
}

.orbit-ring .n1 { top: -20px; left: 50%; transform: translateX(-50%); }
.orbit-ring .n2 { bottom: -20px; left: 50%; transform: translateX(-50%); }
.orbit-ring .n3 { left: -20px; top: 50%; transform: translateY(-50%); }
.orbit-ring-3 .n2 { right: -20px; left: auto; top: 50%; bottom: auto; transform: translateY(-50%); }

.cards-grid,
.guide-grid,
.stories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.25rem;
}

.intro-section {
	position: relative;
}

.intro-wrap {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: 5rem;
	align-items: center;
}

.intro-lead {
	font-size: 1.1rem;
	line-height: 1.75;
	color: var(--g800);
	margin: 0 0 1.25rem;
}

.intro-p {
	color: var(--g600);
	line-height: 1.7;
	font-size: .95rem;
	margin: 0;
}

.dynamic-feature-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.dynamic-feature {
	display: flex;
	align-items: flex-start;
	gap: .875rem;
	padding: 1.125rem;
	background: var(--g100);
	border: 1px solid var(--g200);
	border-radius: var(--r-md);
	transition: all .2s ease;
}

.dynamic-feature:hover {
	border-color: rgba(0, 168, 150, .35);
	background: var(--teal-lt);
}

.feat-icon {
	width: 52px;
	min-width: 52px;
	height: 52px;
	border-radius: var(--r-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--navy);
	color: var(--gold);
	font-family: var(--ff-display);
	font-size: .95rem;
	font-weight: 800;
}

.dynamic-feature h3 {
	font-family: var(--ff-display);
	font-size: .95rem;
	line-height: 1.25;
	margin: 0 0 .25rem;
}

.dynamic-feature p {
	font-size: .82rem;
	color: var(--g600);
	line-height: 1.5;
	margin: 0;
}

.compact-section {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.cat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 1.1rem;
}

.cat-card {
	background: var(--white);
	border: 1px solid var(--g200);
	border-radius: var(--r-xl);
	padding: 1.875rem 1.375rem;
	text-align: center;
	transition: all .22s ease;
	box-shadow: var(--sh-sm);
}

.cat-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--sh-lg);
	border-color: transparent;
}

.cat-icon {
	width: 66px;
	height: 66px;
	border-radius: var(--r-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.1rem;
	background: var(--teal-lt);
	color: var(--teal-dk);
	font-family: var(--ff-display);
	font-size: 1.15rem;
	font-weight: 800;
}

.cat-card h3 {
	font-family: var(--ff-display);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--navy);
	margin: 0 0 .45rem;
}

.cat-card p {
	font-size: .8rem;
	color: var(--g600);
	line-height: 1.5;
	margin: 0;
}

.cat-count {
	display: inline-block;
	margin-top: .875rem;
	font-size: .72rem;
	font-weight: 700;
	padding: .28rem .7rem;
	border-radius: 100px;
	background: var(--teal-lt);
	color: var(--teal-dk);
}

.opp-card,
.guide-card,
.story-card {
	background: var(--white);
	border: 1px solid var(--g200);
	border-radius: var(--r-lg);
	overflow: hidden;
	transition: all .22s ease;
	box-shadow: var(--sh-sm);
}

.opp-card {
	padding: 1.5rem;
}

.opp-card:hover,
.guide-card:hover,
.story-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--sh-lg);
	border-color: transparent;
}

.opp-top {
	display: flex;
	gap: .875rem;
	margin-bottom: 1rem;
	align-items: flex-start;
}

.org-logo,
.guide-icon {
	width: 52px;
	height: 52px;
	border-radius: var(--r-sm);
	flex: 0 0 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--ff-display);
	font-size: 1rem;
	font-weight: 800;
	color: var(--white);
	background: linear-gradient(135deg, var(--teal), var(--navy-light));
}

.badge-row {
	display: flex;
	gap: .4rem;
	flex-wrap: wrap;
	margin-bottom: .4rem;
}

.badge {
	font-size: .6875rem;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	padding: .28rem .6rem;
	border-radius: 100px;
}

.badge-sch,
.badge-sho {
	background: rgba(0, 168, 150, .12);
	color: #028074;
}

.badge-fel {
	background: rgba(201, 151, 56, .14);
	color: #8a6214;
}

.badge-int {
	background: rgba(99, 102, 241, .12);
	color: #4338ca;
}

.badge-job {
	background: rgba(16, 185, 129, .12);
	color: #047857;
}

.badge-con,
.badge-gra {
	background: rgba(239, 68, 68, .12);
	color: #b91c1c;
}

.badge-new {
	background: var(--navy);
	color: var(--white);
}

.badge-hot {
	background: var(--gold);
	color: var(--white);
}

.badge-status {
	background: rgba(11, 19, 43, .08);
	color: var(--navy);
}

.opp-card h3,
.guide-card h3,
.story-card h3 {
	font-family: var(--ff-display);
	font-weight: 700;
	color: var(--navy);
	line-height: 1.3;
	margin: 0;
}

.opp-card h3 {
	font-size: .9875rem;
}

.org-name,
.guide-topic {
	font-size: .8rem;
	color: var(--g600);
}

.opp-card .desc {
	font-size: .845rem;
	color: var(--g600);
	line-height: 1.55;
	margin: 0 0 .875rem;
}

.opp-meta {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	padding-top: .875rem;
	border-top: 1px solid var(--g200);
}

.meta-it {
	font-size: .8125rem;
	color: var(--g600);
}

.guide-card a,
.story-card a {
	display: block;
	height: 100%;
}

.guide-top {
	padding: 1.375rem 1.5rem 0;
	display: flex;
	align-items: center;
	gap: .875rem;
}

.guide-icon {
	background: rgba(0, 168, 150, .12);
	color: var(--teal-dk);
}

.guide-body {
	padding: .875rem 1.5rem 1.5rem;
}

.guide-body p {
	font-size: .845rem;
	color: var(--g600);
	line-height: 1.58;
	margin: 0 0 .875rem;
}

.tag-row {
	display: flex;
	gap: .375rem;
	flex-wrap: wrap;
}

.gtag {
	font-size: .72rem;
	font-weight: 600;
	padding: .22rem .6rem;
	background: var(--g100);
	color: var(--g600);
	border-radius: 100px;
}

.gtag-download {
	background: var(--navy);
	color: var(--white);
}

.stats-bar {
	background: var(--teal);
	padding: 2.25rem 2rem;
}

.stats-bar-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	text-align: center;
}

.stat-b .num {
	font-family: var(--ff-display);
	font-size: 2.1rem;
	font-weight: 800;
	color: var(--navy);
	line-height: 1;
}

.stat-b .lbl {
	font-size: .85rem;
	color: rgba(11, 19, 43, .68);
	margin-top: .45rem;
}

.resource-split {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 4rem;
	align-items: start;
}

.res-list {
	display: flex;
	flex-direction: column;
	gap: .875rem;
}

.res-item {
	display: flex;
	align-items: center;
	gap: 1.1rem;
	padding: 1.125rem 1.375rem;
	background: var(--g100);
	border: 1px solid var(--g200);
	border-radius: var(--r-md);
	transition: all .18s ease;
}

.res-item:hover {
	background: var(--teal-lt);
	border-color: rgba(0, 168, 150, .3);
}

.res-num {
	font-family: var(--ff-display);
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--teal);
	min-width: 1.875rem;
}

.res-item h3 {
	font-family: var(--ff-display);
	font-size: .95rem;
	line-height: 1.25;
	font-weight: 700;
	color: var(--navy);
	margin: 0 0 .2rem;
}

.res-item p {
	font-size: .8125rem;
	color: var(--g600);
	margin: 0;
}

.res-arr {
	margin-left: auto;
	color: var(--g400);
	font-size: 1rem;
	font-weight: 800;
}

.story-feat {
	margin-bottom: 1.25rem;
}

.story-feat a {
	display: grid;
	grid-template-columns: minmax(260px, .8fr) 1.2fr;
}

.story-banner {
	min-height: 190px;
	background: linear-gradient(135deg, #052421, var(--navy-mid));
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

.prog-tag-feat,
.prog-tag {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	border-radius: 100px;
	font-weight: 700;
}

.prog-tag-feat {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: var(--gold);
	color: var(--white);
	padding: .32rem .7rem;
	font-size: .72rem;
}

.story-av {
	width: 74px;
	height: 74px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--white);
	color: var(--navy);
	font-family: var(--ff-display);
	font-weight: 800;
	border: 4px solid var(--gold);
}

.story-body {
	padding: 1.75rem;
	background: var(--white);
}

.prog-tag {
	background: var(--teal-lt);
	color: var(--teal-dk);
	padding: .28rem .65rem;
	font-size: .72rem;
	margin-bottom: .75rem;
}

.story-card h3 {
	font-size: 1.1rem;
	margin-bottom: .4rem;
}

.story-pos {
	color: var(--g600);
	font-size: .85rem;
	margin-bottom: .85rem;
}

.story-quote {
	color: var(--g600);
	font-size: .9rem;
	line-height: 1.65;
	margin: 0 0 1.1rem;
}

.story-foot {
	border-top: 1px solid var(--g200);
	padding-top: .875rem;
	color: var(--navy);
	font-size: .82rem;
	font-weight: 700;
}

.empty-state {
	border: 1px dashed var(--g300);
	background: var(--g100);
	border-radius: var(--r-lg);
	padding: 2rem;
	color: var(--g600);
	text-align: center;
}

.empty-state.dark {
	background: rgba(255, 255, 255, .05);
	border-color: rgba(255, 255, 255, .16);
	color: rgba(255, 255, 255, .7);
}

.site-footer {
	background: var(--navy);
	padding: 3.25rem 2rem 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, .06);
	color: rgba(255, 255, 255, .42);
}

.foot-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	padding-bottom: 2.25rem;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	margin-bottom: 1.5rem;
}

.foot-logo {
	display: inline-flex;
	align-items: center;
	gap: .75rem;
	margin-bottom: 1rem;
}

.foot-logo.has-custom-logo {
	width: min(280px, 100%);
	height: 58px;
	overflow: hidden;
	justify-content: center;
}

.foot-logo img {
	max-height: 34px;
	width: auto;
}

.foot-logo.has-custom-logo img {
	width: 100%;
	height: auto;
	max-width: none;
	max-height: none;
}

.foot-logo-mark {
	width: 42px;
	height: 34px;
	display: grid;
	place-items: center;
	border-radius: var(--r-sm);
	background: linear-gradient(135deg, var(--teal), var(--gold));
	color: var(--white);
	font-family: var(--ff-display);
	font-size: .8rem;
	font-weight: 800;
}

.foot-logo-text {
	font-family: var(--ff-display);
	color: var(--white);
	font-weight: 800;
	font-size: 1rem;
}

.foot-brand p {
	font-size: .855rem;
	color: rgba(255, 255, 255, .4);
	line-height: 1.6;
	margin: 0;
	max-width: 330px;
}

.foot-col h4 {
	font-family: var(--ff-display);
	font-size: .8rem;
	font-weight: 700;
	color: rgba(255, 255, 255, .65);
	text-transform: uppercase;
	letter-spacing: .1em;
	margin: 0 0 .875rem;
}

.foot-col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: .45rem;
	margin: 0;
	padding: 0;
}

.foot-col a,
.foot-col span {
	color: rgba(255, 255, 255, .42);
	font-size: .855rem;
	line-height: 1.45;
	transition: color .15s ease;
}

.foot-col a:hover {
	color: var(--teal);
}

.foot-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.foot-bottom p {
	color: rgba(255, 255, 255, .28);
	font-size: .8rem;
	margin: 0;
}

.footer-legal-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-legal-menu a {
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	text-decoration: none;
}

.socials {
	display: flex;
	gap: .625rem;
}

.soc {
	width: 32px;
	height: 32px;
	border-radius: var(--r-sm);
	border: 1px solid rgba(255, 255, 255, .12);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, .4);
	font-size: .8rem;
	font-weight: 700;
	transition: all .18s ease;
}

.soc:hover {
	border-color: var(--teal);
	color: var(--teal);
}

.archive-hero {
	background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 100%);
	padding: 4rem 2rem;
	color: var(--white);
}

.opp-hero,
.career-hero,
.stories-hero {
	position: relative;
	overflow: hidden;
	text-align: center;
	color: var(--white);
	padding: 4.25rem 2rem;
}

.opp-hero {
	background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.career-hero {
	background: linear-gradient(140deg, #15072b 0%, #111c36 100%);
}

.stories-hero {
	background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 58%, #052421 100%);
}

.opp-hero::after,
.career-hero::after,
.stories-hero::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: min(720px, 90vw);
	height: 160px;
	background: radial-gradient(ellipse, rgba(0, 168, 150, .12) 0%, transparent 70%);
	pointer-events: none;
}

.career-hero::after {
	background: radial-gradient(ellipse, rgba(201, 151, 56, .14) 0%, transparent 70%);
}

.opp-hero .wrap,
.career-hero .wrap,
.stories-hero .wrap {
	position: relative;
	z-index: 1;
}

.opp-hero h1,
.career-hero h1,
.stories-hero h1 {
	font-family: var(--ff-display);
	font-size: clamp(2rem, 4vw, 2.9rem);
	font-weight: 800;
	line-height: 1.1;
	margin: 0 0 .875rem;
}

.opp-hero p,
.career-hero p,
.stories-hero p {
	color: rgba(255, 255, 255, .62);
	font-size: 1.0625rem;
	line-height: 1.65;
	max-width: 620px;
	margin: 0 auto;
}

.stories-hero .hero-pill {
	margin-bottom: 1rem;
}

.hero-counts {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.hero-count {
	min-width: 160px;
	padding: 1rem 1.25rem;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: var(--r-md);
	background: rgba(255, 255, 255, .06);
}

.hero-count .n {
	font-family: var(--ff-display);
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--gold);
	line-height: 1;
}

.hero-count .l {
	margin-top: .45rem;
	color: rgba(255, 255, 255, .55);
	font-size: .8rem;
}

.search-bar-wrap {
	position: sticky;
	top: 70px;
	z-index: 50;
	padding: 1.5rem 2rem;
	background: var(--white);
	border-bottom: 1px solid var(--g200);
	box-shadow: var(--sh-sm);
}

.search-bar-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	gap: .625rem;
	flex-wrap: wrap;
	align-items: center;
}

.srch-input,
.filter-select {
	min-height: 44px;
	padding: .7rem 1rem;
	border: 1.5px solid var(--g200);
	border-radius: var(--r-md);
	background: var(--white);
	font-family: var(--ff-body);
	font-size: .9375rem;
	color: var(--navy);
	outline: none;
	transition: border-color .18s ease;
}

.srch-input {
	flex: 1;
	min-width: 220px;
}

.filter-select {
	min-width: 190px;
}

.srch-input:focus,
.filter-select:focus {
	border-color: var(--teal);
}

.filter-btn,
.ftab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: .65rem 1.1rem;
	border: 1.5px solid var(--g200);
	border-radius: var(--r-md);
	background: var(--white);
	font-family: var(--ff-body);
	font-size: .855rem;
	font-weight: 700;
	color: var(--g600);
	cursor: pointer;
	transition: all .18s ease;
}

.filter-btn:hover,
.filter-btn.active,
.ftab:hover,
.ftab.active {
	border-color: var(--teal);
	color: var(--teal);
	background: var(--teal-lt);
}

.filter-tabs {
	display: flex;
	justify-content: center;
	gap: .625rem;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}

.archive-centered-head {
	text-align: center;
	max-width: 620px;
	margin-bottom: 2.5rem;
}

.archive-centered-head .sec-sub,
.archive-centered-head .sec-title {
	margin-left: auto;
	margin-right: auto;
}

.archive-hero h1 {
	font-family: var(--ff-display);
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.1;
	margin: 0 0 .75rem;
}

.archive-hero p,
.archive-desc {
	color: rgba(255, 255, 255, .65);
	font-size: 1rem;
	line-height: 1.65;
	max-width: 680px;
}

.content-list {
	display: grid;
	gap: 1rem;
}

.list-card {
	background: var(--white);
	border: 1px solid var(--g200);
	border-radius: var(--r-lg);
	padding: 1.5rem;
	box-shadow: var(--sh-sm);
}

.list-card h2 {
	font-family: var(--ff-display);
	font-size: 1.25rem;
	line-height: 1.25;
	margin: 0 0 .6rem;
}

.list-card p {
	color: var(--g600);
	line-height: 1.65;
	margin: 0;
}

.single-content {
	max-width: 780px;
	color: var(--g800);
	font-size: 1.05rem;
	line-height: 1.75;
}

.single-content > *:first-child {
	margin-top: 0;
}

.single-content a {
	color: var(--teal-dk);
	text-decoration: underline;
}

.elementor-content-wrap,
.elementor-full-width-template {
	background: var(--white);
}

.elementor-page-content .elementor {
	width: 100%;
}

.cgm-member-page-heading {
	margin: 64px auto 12px;
	max-width: 1200px;
	padding: 0 24px;
}

.cgm-member-page-heading .elementor-heading-title {
	color: var(--navy);
	font-family: "Syne", sans-serif;
	font-size: 42px;
	font-weight: 700;
	line-height: 1.15;
}

@media (max-width: 700px) {
	.cgm-member-page-heading {
		margin-top: 40px;
	}

	.cgm-member-page-heading .elementor-heading-title {
		font-size: 32px;
	}
}

.single-opportunity-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 3rem;
	align-items: start;
}

.opp-detail-panel {
	position: sticky;
	top: 96px;
	background: var(--g100);
	border: 1px solid var(--g200);
	border-radius: var(--r-lg);
	padding: 1.5rem;
	box-shadow: var(--sh-sm);
}

.opp-detail-panel h2 {
	font-family: var(--ff-display);
	font-size: 1.05rem;
	margin: 0 0 1rem;
	color: var(--navy);
}

.opportunity-apply-button {
	display: flex;
	justify-content: center;
	margin-top: 1.25rem;
	text-align: center;
	width: 100%;
}

.opportunity-source-note {
	color: var(--g600);
	font-size: .75rem;
	line-height: 1.55;
	margin: .875rem 0 0;
}

.opportunity-source-note a {
	display: block;
	font-weight: 700;
	margin-top: .25rem;
	text-decoration: underline;
}

.detail-row {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: .875rem 0;
	border-top: 1px solid var(--g200);
	font-size: .88rem;
}

.detail-row span {
	color: var(--g600);
}

.detail-row strong {
	color: var(--navy);
	text-align: right;
}

.navigation.pagination {
	margin-top: 2.5rem;
}

.pagination .nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .45rem;
	flex-wrap: wrap;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 .75rem;
	border-radius: var(--r-sm);
	border: 1px solid var(--g200);
	background: var(--white);
	color: var(--g600);
	font-size: .85rem;
	font-weight: 700;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	background: var(--navy);
	color: var(--white);
	border-color: var(--navy);
}

.impact-head {
	text-align: center;
	margin: 0 auto 3rem;
	max-width: 650px;
}

.impact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.25rem;
}

.impact-card {
	background: var(--g100);
	border: 1px solid var(--g200);
	border-radius: var(--r-lg);
	padding: 1.875rem;
	text-align: center;
}

.impact-num {
	font-family: var(--ff-display);
	font-size: 2.25rem;
	font-weight: 800;
	color: var(--teal);
	line-height: 1;
}

.impact-label {
	font-size: .875rem;
	color: var(--g600);
	margin-top: .55rem;
	line-height: 1.45;
}

.resource-archive-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.25rem;
}

.resource-archive-card {
	display: flex;
	flex-direction: column;
	background: var(--white);
	border: 1px solid var(--g200);
	border-radius: var(--r-lg);
	padding: 0 1.5rem 1.5rem;
	box-shadow: var(--sh-sm);
	overflow: hidden;
}

.resource-cover {
	display: block;
	margin: 0 -1.5rem 1.25rem;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--navy);
}

.resource-cover img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: transform .25s ease;
}

.resource-cover:hover img {
	transform: scale(1.025);
}

.resource-card-top,
.resource-card-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .75rem;
}

.resource-format {
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	border-radius: var(--r-sm);
	background: var(--teal-lt);
	color: var(--teal-dk);
	font-family: var(--ff-display);
	font-size: .72rem;
	font-weight: 800;
}

.resource-archive-card h2 {
	font-family: var(--ff-display);
	font-size: 1.05rem;
	line-height: 1.3;
	margin: 1rem 0 .6rem;
}

.resource-archive-card > p {
	color: var(--g600);
	font-size: .86rem;
	line-height: 1.6;
	margin: 0 0 1rem;
}

.resource-pack-meta {
	display: flex;
	flex-wrap: wrap;
	gap: .4rem;
	margin: 0 0 1rem;
}

.resource-pack-meta span {
	background: var(--g100);
	border: 1px solid var(--g200);
	border-radius: var(--r-sm);
	color: var(--g600);
	font-size: .7rem;
	font-weight: 700;
	padding: .35rem .5rem;
}

.resource-single-cover {
	aspect-ratio: 16 / 10;
	margin-bottom: 2rem;
	overflow: hidden;
	border: 1px solid var(--g200);
	border-radius: var(--r-lg);
	box-shadow: var(--sh-md);
}

.resource-single-cover img {
	display: block;
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: top center;
}

.resource-card-foot {
	margin-top: auto;
	padding-top: .875rem;
	border-top: 1px solid var(--g200);
	color: var(--g600);
	font-size: .75rem;
}

.resource-download-link,
.resource-single-download {
	margin-top: 1rem;
	text-align: center;
}

@media (max-width: 900px) {
	.nav-links {
		display: none;
	}

	.hamburger {
		position: absolute;
		top: 14px;
		right: 1rem;
		z-index: 2;
	}

	.nav-logo.has-custom-logo {
		width: min(300px, calc(100vw - 90px));
	}

	.nav-header-action {
		margin-left: auto;
	}

	.hamburger {
		display: flex;
	}

	.hero-inner,
	.story-feat a,
	.intro-wrap,
	.resource-split,
	.single-opportunity-layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.opp-detail-panel {
		position: static;
	}

	.orbit-wrap {
		height: 300px;
	}

	.orbit-ring-3 {
		width: 300px;
		height: 300px;
	}

	.stats-bar-inner {
		grid-template-columns: repeat(2, 1fr);
	}

	.search-bar-wrap {
		position: static;
	}
}

@media (max-width: 640px) {
	.site-nav {
		padding: 0 1rem;
	}

	.nav-logo.has-custom-logo {
		height: 58px;
	}

	.nav-logo-text {
		font-size: .95rem;
	}

	.nav-header-action {
		display: none;
	}

	.home-hero,
	.sec {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.hero-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.hero-stats {
		gap: 1.25rem;
	}

	.cards-grid,
	.guide-grid,
	.stories-grid,
	.cat-grid,
	.impact-grid {
		grid-template-columns: 1fr;
	}

	.stats-bar {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.stats-bar-inner {
		grid-template-columns: 1fr;
		text-align: left;
	}

	.search-bar-inner,
	.srch-input,
	.filter-select,
	.filter-btn {
		width: 100%;
	}

	.hero-count {
		width: 100%;
	}

	.foot-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.foot-bottom {
		align-items: flex-start;
		flex-direction: column;
	}
}
