/*
 * Our Projects page — hero + "Bennelongia Expertise" band + the wrapper
 * around the [bn_projects] shortcode module. The module's own card
 * (heading, filter, list, map) is styled by bn_projects_enqueue_assets()
 * in inc/projects/bn-projects-shortcode.php — untouched, not duplicated here.
 *
 * Deliberately independent of about.css/reports.css/publications.css —
 * same design language (fonts, colours, radii) as the rest of the site,
 * but no shared selectors, so this page can never collide with those.
 */

.projects-hero,
.projects-listing {
	--pj-font: "Sora", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	--pj-heading: #030712;
	--pj-body: #364153;
	--pj-max-width: 1704px;
}

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

.projects-hero {
	position: relative;
	max-width: 1880px;
	height: 400px;
	margin: 0 auto;
	border-radius: 20px;
	overflow: hidden;
	background-color: #1B250E;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
}

.projects-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.45) 100%);
}

.projects-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: var(--pj-max-width);
	margin: 0 auto;
	padding: 0 40px;
}

.projects-hero__title {
	margin: 0;
	font-family: var(--pj-font);
	font-size: 52px;
	font-weight: 600;
	line-height: 60px;
	color: #FFFFFF;
}

/* "Bennelongia Expertise" now reuses the shared global/expertise-band.php
   component (same .about-section--band classes/CSS as the About/Policy/
   Blog pages, see assets/css/about.css) — no longer this page's own
   .projects-expertise* rules. */

/* =============================================================================
   Projects listing (the [bn_projects] module — its heading/description are
   rendered by the shortcode itself, see .bn-projects-head in
   inc/projects/bn-projects-shortcode.php)
   ============================================================================= */

.projects-listing {
	max-width: var(--pj-max-width);
	margin: 60px auto 0;
	padding: 0 24px 100px;
}

/* =============================================================================
   Responsive
   ============================================================================= */

@media (max-width: 1400px) {
	.projects-hero {
		height: 320px;
	}

	.projects-hero__title {
		font-size: 40px;
		line-height: 48px;
	}
}

@media (max-width: 1024px) {
	.projects-hero {
		height: 260px;
		border-radius: 16px;
		margin-left: 24px;
		margin-right: 24px;
	}

	.projects-hero__title {
		font-size: 32px;
		line-height: 40px;
	}

	.projects-listing {
		padding-bottom: 60px;
	}
}

@media (max-width: 640px) {
	.projects-hero {
		margin-left: 16px;
		margin-right: 16px;
		height: 200px;
		border-radius: 12px;
	}

	.projects-hero__inner {
		padding: 0 20px;
	}

	.projects-hero__title {
		font-size: 26px;
		line-height: 32px;
	}

	.projects-listing {
		margin-top: 40px;
		padding: 0 16px 40px;
	}
}
