/* ZCAS Home Hero — hero, stats bar, accreditation marquee
   Design tokens from the 2026 redesign handoff:
   purple #3B1F63 / #2A1547, gold #D89F2B, pale gold #EFCF8C */

html:has(.zhh-hero) {
	scroll-behavior: smooth;
}

.zhh-hero,
.zhh-trust,
.zhh-section {
	font-family: 'Archivo', system-ui, sans-serif;
	box-sizing: border-box;
	/* True full-bleed. Salient's row-stretch JS leaves ~5px gutters either side
	   (it sizes the row from the container, not the viewport); bleed from
	   whatever width the row ends up at. html/body clip the overflow. */
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}
.zhh-hero *,
.zhh-trust *,
.zhh-section * {
	box-sizing: border-box;
}

/* ------------------------------ Hero ------------------------------ */

.zhh-hero {
	position: relative;
	min-height: 720px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
}

/* !important guards: Salient applies `.row .col img { max-width:100%;
   height:auto; margin-bottom:15px }` after this sheet. */
img.zhh-hero__bg {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	object-fit: cover;
	object-position: center 35%;
}

.zhh-hero__grad {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.zhh-hero__grad--side {
	background: linear-gradient(76deg, rgba(30,14,53,.88) 0%, rgba(43,22,74,.62) 44%, rgba(43,22,74,.12) 75%, rgba(43,22,74,0) 100%);
}
.zhh-hero__grad--base {
	background: linear-gradient(180deg, rgba(30,14,53,0) 55%, rgba(30,14,53,.55) 100%);
}

.zhh-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #D89F2B;
	box-shadow: 0 0 0 3px rgba(216,159,43,.3);
	flex: none;
	display: inline-block;
}

.zhh-badge {
	position: absolute;
	top: 28px;
	left: 56px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: rgba(255,255,255,.12);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255,255,255,.25);
	color: #fff;
	font-size: 12.5px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 22px;
	letter-spacing: .04em;
	line-height: 1.4;
}

.zhh-body {
	position: relative;
	z-index: 2;
	flex: 1;
	display: flex;
	align-items: flex-end;
}

.zhh-copy {
	padding: 140px 56px 56px;
	max-width: 720px;
}

.zhh-eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 22px;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: #EFCF8C;
}
.zhh-eyebrow__rule {
	width: 34px;
	height: 2px;
	background: #D89F2B;
	flex: none;
}

h1.zhh-title {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	font-size: clamp(36px, 4.5vw, 58px);
	line-height: 1.07;
	letter-spacing: -.01em;
	color: #fff;
	text-shadow: 0 2px 24px rgba(30,14,53,.4);
	margin: 0;
	padding: 0;
}
h1.zhh-title em {
	/* Salient has a theme-wide `body i, body em { font-family: Raleway }`
	   rule; since we never contested font-family here, it won by default
	   despite our higher selector specificity — explicitly restate it. */
	font-family: inherit;
	font-style: italic;
	color: #D89F2B;
}

p.zhh-sub {
	font-size: 17.5px;
	line-height: 1.6;
	color: rgba(255,255,255,.85);
	max-width: 520px;
	margin: 20px 0 0;
	padding: 0;
}

.zhh-ctas {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 32px;
	flex-wrap: wrap;
}

a.zhh-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	border-radius: 6px;
	line-height: 1.2;
	text-decoration: none;
}
a.zhh-btn--solid {
	background: #D89F2B;
	color: #2A1547;
	font-weight: 700;
	padding: 15px 28px;
	border: none;
	transition: transform .2s ease, box-shadow .2s ease;
}
a.zhh-btn--solid:hover,
a.zhh-btn--solid:focus {
	color: #2A1547;
	transform: translateY(-2px);
	box-shadow: 0 14px 28px -12px rgba(59,31,99,.55);
}
a.zhh-btn--outline {
	border: 1.5px solid rgba(255,255,255,.55);
	color: #fff;
	font-weight: 600;
	padding: 14px 26px;
	transition: background .2s ease;
}
a.zhh-btn--outline:hover,
a.zhh-btn--outline:focus {
	background: rgba(255,255,255,.14);
	color: #fff;
}

/* ---------------------------- News card --------------------------- */

.zhh-news {
	position: absolute;
	right: 56px;
	bottom: 30px;
	z-index: 3;
	width: 360px;
	background: rgba(30,14,53,.6);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 26px 55px -22px rgba(20,8,40,.6);
}

.zhh-news__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 13px 20px;
	border-bottom: 1px solid rgba(255,255,255,.14);
}
.zhh-news__label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #EFCF8C;
}
.zhh-news__date {
	font-size: 11.5px;
	color: rgba(255,255,255,.6);
}

.zhh-news__inner {
	padding: 18px 20px 20px;
}
.zhh-news__title {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	font-size: 20px;
	color: #fff;
	line-height: 1.25;
	margin: 0;
	padding: 0;
}
.zhh-news__excerpt {
	font-size: 13px;
	color: rgba(255,255,255,.75);
	line-height: 1.55;
	margin: 8px 0 0;
	padding: 0;
}
.zhh-news__links {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 14px;
}
a.zhh-news__more {
	font-size: 13px;
	font-weight: 600;
	color: #EFCF8C;
	border-bottom: 1.5px solid rgba(216,159,43,.6);
	padding-bottom: 2px;
	text-decoration: none;
}
a.zhh-news__more:hover { color: #fff; }
a.zhh-news__all {
	font-size: 12px;
	color: rgba(255,255,255,.6);
	text-decoration: none;
}
a.zhh-news__all:hover { color: #fff; }

/* ---------------------------- Stats bar --------------------------- */

.zhh-statbar {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding: 18px 56px;
	background: rgba(30,14,53,.55);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border-top: 1px solid rgba(255,255,255,.14);
	flex-wrap: wrap;
}
.zhh-stats {
	display: flex;
	align-items: center;
	gap: 34px;
	flex-wrap: wrap;
}
.zhh-stat {
	display: flex;
	align-items: baseline;
	gap: 9px;
}
.zhh-stat__value {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	font-size: 24px;
	color: #fff;
	line-height: 1.1;
}
.zhh-stat__label {
	font-size: 12px;
	color: rgba(255,255,255,.7);
}
.zhh-stat__sep {
	width: 1px;
	height: 26px;
	background: rgba(255,255,255,.2);
}

a.zhh-explore {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(255,255,255,.85);
	text-decoration: none;
	white-space: nowrap;
}
a.zhh-explore:hover { color: #fff; }
.zhh-explore__circle {
	width: 26px;
	height: 26px;
	border: 1.5px solid rgba(255,255,255,.4);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
}

/* --------------------------- Trust strip -------------------------- */

.zhh-trust {
	background: #fff;
	border-bottom: 1px solid #EEEAF4;
	padding: 26px 56px;
	display: flex;
	align-items: center;
	gap: 36px;
}
.zhh-trust__label {
	font-size: 11.5px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: #9A8FB0;
	font-weight: 600;
	line-height: 1.5;
	white-space: nowrap;
}
.zhh-trust__label span { display: block; }
.zhh-trust__sep {
	width: 1px;
	height: 44px;
	background: #EEEAF4;
	flex: none;
}
.zhh-trust__viewport {
	position: relative;
	flex: 1;
	overflow: hidden;
}

@keyframes zhh-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}
.zhh-marquee {
	display: flex;
	align-items: center;
	gap: 64px;
	width: max-content;
	animation: zhh-marquee 32s linear infinite;
}
.zhh-marquee:hover { animation-play-state: paused; }

img.zhh-logo {
	height: 46px !important;
	width: auto !important;
	max-width: 160px !important;
	object-fit: contain;
	display: block;
	margin: 0 !important;
}
img.zhh-logo--tile { border-radius: 8px; }

.zhh-trust__fade {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 70px;
	pointer-events: none;
}
.zhh-trust__fade--l { left: 0;  background: linear-gradient(90deg,  #fff 0%, rgba(255,255,255,0) 100%); }
.zhh-trust__fade--r { right: 0; background: linear-gradient(270deg, #fff 0%, rgba(255,255,255,0) 100%); }

@media (prefers-reduced-motion: reduce) {
	html:has(.zhh-hero) { scroll-behavior: auto; }
	.zhh-marquee { animation: none; }
	.zhh-trust__viewport { overflow-x: auto; }
}

/* ------------------------- Builder resets ------------------------- */

.wpb_text_column .zhh-hero,
.wpb_text_column .zhh-trust {
	margin-bottom: 0;
}

/* --------------------------- Responsive --------------------------- */

@media (max-width: 1280px) {
	.zhh-news { width: 330px; right: 40px; }
	.zhh-copy { padding-left: 40px; padding-right: 40px; }
	.zhh-badge { left: 40px; }
	.zhh-statbar, .zhh-trust { padding-left: 40px; padding-right: 40px; }
}

@media (max-width: 1024px) {
	.zhh-hero { min-height: 0; }
	.zhh-body {
		flex-direction: column;
		align-items: stretch;
	}
	.zhh-copy { padding: 120px 28px 0; }
	.zhh-news {
		position: static;
		width: auto;
		max-width: 480px;
		margin: 32px 28px 40px;
	}
	.zhh-copy:has(+ .zhh-news) { padding-bottom: 0; }
	.zhh-body:not(:has(.zhh-news)) .zhh-copy { padding-bottom: 48px; }
	.zhh-badge { left: 28px; top: 22px; }
	.zhh-statbar { padding: 16px 28px; gap: 18px; }
	.zhh-explore { display: none; }
	.zhh-trust {
		padding: 22px 28px;
		gap: 20px;
		flex-wrap: wrap;
	}
	.zhh-trust__sep { display: none; }
	.zhh-trust__label span { display: inline; }
	/* Side gradient is tuned for wide screens; darken uniformly so copy
	   stays legible over the photo on small screens. */
	.zhh-hero__grad--side {
		background: linear-gradient(180deg, rgba(30,14,53,.78) 0%, rgba(30,14,53,.62) 60%, rgba(30,14,53,.5) 100%);
	}
	.zhh-trust__viewport { flex-basis: 100%; }
}

@media (max-width: 600px) {
	p.zhh-sub { font-size: 16px; }
	.zhh-stats { gap: 20px; }
	.zhh-stat__sep { display: none; }
	.zhh-stat { flex-direction: column; gap: 2px; }
	img.zhh-logo { height: 38px !important; }
	.zhh-marquee { gap: 44px; }
}

/* ========================= Homepage sections ======================= */

.zhh-section {
	padding: 88px 56px;
	background: #FCFBFA;
	scroll-margin-top: 180px;
}
.zhh-section--offwhite { background: #FCFBFA; }
.zhh-container {
	max-width: 1328px;
	margin: 0 auto;
}

.zhh-sechead {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
.zhh-eyebrow--section {
	color: #8A7EA0;
	letter-spacing: .18em;
	margin-bottom: 14px;
}
h2.zhh-h2 {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	font-size: clamp(30px, 3vw, 42px);
	line-height: 1.08;
	color: #3B1F63;
	margin: 0;
	padding: 0;
}
h2.zhh-h2--light { color: #fff; }

a.zhh-viewall {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	font-size: 14.5px;
	color: #3B1F63;
	border-bottom: 2px solid #D89F2B;
	padding-bottom: 6px;
	text-decoration: none;
}
a.zhh-viewall:hover { color: #D89F2B; }

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

a.zhh-card {
	background: #fff;
	border: 1px solid #EDE8F2;
	border-radius: 12px;
	padding: 28px;
	display: flex;
	flex-direction: column;
	box-shadow: 0 1px 2px rgba(59,31,99,.04);
	text-decoration: none;
	transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease;
}
a.zhh-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 22px 44px -22px rgba(59,31,99,.35);
	border-color: #DCCFEA;
}

.zhh-pill {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	padding: 5px 11px;
	border-radius: 14px;
}
.zhh-pill--gold   { color: #D89F2B; background: #FBF4E3; }
.zhh-pill--purple { color: #3B1F63; background: #EFEAF8; }

h3.zhh-h3 {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	color: #3B1F63;
	line-height: 1.25;
	margin: 0;
	padding: 0;
}
p.zhh-cardtext {
	font-size: 14.5px;
	color: #6E6484;
	line-height: 1.6;
	margin: 10px 0 0;
	padding: 0;
	flex: 1;
}
.zhh-cardlink {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-weight: 600;
	font-size: 14px;
	color: #3B1F63;
	margin-top: 18px;
}

/* --- News grid --- */
.zhh-news-grid { background: #F6F4FA; }
.zhh-newscard__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
}
.zhh-newscard__date { font-size: 12.5px; color: #9A8FB0; }
h3.zhh-newscard__title { font-size: 22px; flex: 1; }

/* --- Programme cards --- */
a.zhh-progcard { padding: 30px; }
.zhh-progcard__rule {
	width: 38px;
	height: 3px;
	background: #D89F2B;
	margin-bottom: 22px;
}
.zhh-progcard__tag {
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #D89F2B;
}
h3.zhh-progcard__title { font-size: 26px; margin: 14px 0 12px; }
a.zhh-progcard--featured {
	background: #3B1F63;
	border-color: #3B1F63;
	box-shadow: 0 12px 30px -16px rgba(59,31,99,.5);
}
a.zhh-progcard--featured:hover {
	box-shadow: 0 28px 54px -22px rgba(59,31,99,.65);
	border-color: #3B1F63;
}
a.zhh-progcard--featured .zhh-progcard__tag { color: #EFCF8C; }
a.zhh-progcard--featured .zhh-progcard__title { color: #fff; }
a.zhh-progcard--featured .zhh-cardtext { color: #CFC5DE; }
a.zhh-progcard--featured .zhh-cardlink { color: #EFCF8C; }

/* --- Enrolment path --- */
.zhh-enrol { background: #3B1F63; }
.zhh-enrol__head {
	text-align: center;
	margin-bottom: 56px;
}
.zhh-eyebrow--centered {
	justify-content: center;
	color: #EFCF8C;
	letter-spacing: .22em;
	margin-bottom: 16px;
}
.zhh-enrol__steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 56px;
	max-width: 1120px;
	margin: 0 auto;
}
.zhh-step { text-align: center; }
.zhh-step__num {
	font-family: 'Playfair Display', serif;
	font-weight: 800;
	font-size: 52px;
	color: #D89F2B;
	line-height: 1;
}
h3.zhh-step__title {
	font-family: 'Archivo', system-ui, sans-serif;
	font-size: 19px;
	font-weight: 600;
	color: #fff;
	margin: 16px 0 12px;
	padding: 0;
	line-height: 1.3;
}
p.zhh-step__body {
	font-size: 14.5px;
	line-height: 1.65;
	color: #CFC5DE;
	margin: 0;
	padding: 0;
}
.zhh-enrol__ctas {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 56px;
	flex-wrap: wrap;
}

/* --- About --- */
.zhh-about__cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}
.zhh-about__media { position: relative; }
.zhh-about__imgwrap {
	border-radius: 14px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	border: 1px solid #E5DEEE;
}
.zhh-about__imgwrap img {
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	object-fit: cover;
	display: block;
}
.zhh-about__badge {
	position: absolute;
	bottom: -20px;
	right: -18px;
	background: #3B1F63;
	color: #fff;
	border-radius: 12px;
	padding: 18px 24px;
	box-shadow: 0 20px 45px -18px rgba(59,31,99,.55);
	max-width: 240px;
}
.zhh-about__badge-num {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	font-size: 28px;
	line-height: 1.1;
}
.zhh-about__badge-label {
	font-size: 12px;
	color: #CFC5DE;
	margin-top: 2px;
}
p.zhh-bodytext {
	font-size: 16px;
	line-height: 1.7;
	color: #5C5270;
	margin: 22px 0 0;
	padding: 0;
}
p.zhh-bodytext + p.zhh-bodytext { margin-top: 14px; }
a.zhh-about__more {
	margin-top: 28px;
}

/* --- Organisations banner --- */
/* Homepage-only: zero top padding because it directly follows the About
   section, which already carries its own generous bottom padding. Don't
   reuse this class on standalone CTA banners — see .zhh-cta-banner below. */
.zhh-orgs-outer { padding-top: 0; }

/* Reusable [zcas_cta_banner] wrapper (same boxed-card look via .zhh-orgs,
   but a section of its own, not glued to a specific preceding section) —
   symmetric padding, slightly tighter than the 88px default since it's
   typically the last thing before the footer. */
.zhh-cta-banner { padding-top: 64px; padding-bottom: 64px; }

/* [zcas_cta_banner image="..."] — photo + purple panel variant, same
   rounded-photo treatment as the homepage About section. */
.zhh-cta-split__cols {
	display: grid;
	grid-template-columns: 5fr 7fr;
	gap: 0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 1px 2px rgba(59,31,99,.04);
}
.zhh-cta-split__media { position: relative; }
.zhh-cta-split__media img {
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	min-height: 280px;
	object-fit: cover;
	display: block;
}
.zhh-cta-split__panel {
	background: #3B1F63;
	color: #fff;
	padding: 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.zhh-cta-split__tag {
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #EFCF8C;
	margin-bottom: 10px;
}
h3.zhh-cta-split__title {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	font-size: clamp(24px, 2.6vw, 30px);
	line-height: 1.25;
	color: #fff;
	margin: 0;
	padding: 0;
}
p.zhh-cta-split__body {
	font-size: 15px;
	line-height: 1.65;
	color: #CFC5DE;
	margin: 14px 0 0;
	padding: 0;
	max-width: 480px;
}
.zhh-cta-split__panel .zhh-ctas { margin-top: 26px; }

@media (max-width: 768px) {
	.zhh-cta-split__cols { grid-template-columns: 1fr; }
	.zhh-cta-split__media img { min-height: 220px; }
	.zhh-cta-split__panel { padding: 32px 28px; }
}
.zhh-orgs {
	background: #F6F4FA;
	border: 1px solid #EAE4F2;
	border-radius: 16px;
	padding: 44px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}
.zhh-orgs__copy { max-width: 620px; }
.zhh-orgs__tag {
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #D89F2B;
	margin-bottom: 10px;
}
h3.zhh-orgs__title {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	font-size: 28px;
	color: #3B1F63;
	line-height: 1.2;
	margin: 0;
	padding: 0;
}
.zhh-orgs__copy .zhh-cardtext { flex: none; }
.zhh-orgs__ctas {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}
a.zhh-btn--purple {
	background: #3B1F63;
	color: #fff;
	font-weight: 600;
	font-size: 14.5px;
	padding: 14px 25px;
	transition: transform .2s ease, box-shadow .2s ease;
}
a.zhh-btn--purple:hover,
a.zhh-btn--purple:focus {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 14px 28px -12px rgba(59,31,99,.55);
}
a.zhh-btn--outline-purple {
	border: 1.5px solid #3B1F63;
	color: #3B1F63;
	font-weight: 600;
	font-size: 14.5px;
	padding: 13px 24px;
	transition: background .2s ease, color .2s ease;
}
a.zhh-btn--outline-purple:hover,
a.zhh-btn--outline-purple:focus {
	background: #3B1F63;
	color: #fff;
}

/* --- Student resources --- */
.zhh-resources {
	background: #fff;
	border-top: 1px solid #EEEAF4;
	padding-top: 64px;
	padding-bottom: 64px;
}
.zhh-resources .zhh-eyebrow--section { margin-bottom: 28px; }
a.zhh-rescard {
	border-radius: 10px;
	padding: 22px;
	gap: 6px;
	box-shadow: none;
}
a.zhh-rescard:hover { box-shadow: 0 14px 30px -18px rgba(59,31,99,.35); }
.zhh-rescard__title {
	font-weight: 700;
	font-size: 15px;
	color: #3B1F63;
}
.zhh-rescard__sub {
	font-size: 12.5px;
	color: #9A8FB0;
}

/* --- Sections responsive --- */
@media (max-width: 1280px) {
	.zhh-section { padding-left: 40px; padding-right: 40px; }
	.zhh-grid--5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
	.zhh-section { padding: 64px 28px; }
	.zhh-grid--3 { grid-template-columns: repeat(2, 1fr); }
	.zhh-about__cols { grid-template-columns: 1fr; gap: 48px; }
	.zhh-about__badge { right: 12px; }
	.zhh-enrol__steps { gap: 36px; }
}

@media (max-width: 768px) {
	.zhh-grid--3, .zhh-grid--5 { grid-template-columns: 1fr; }
	.zhh-enrol__steps { grid-template-columns: 1fr; gap: 40px; }
	.zhh-orgs { padding: 32px 26px; }
	.zhh-section { scroll-margin-top: 120px; }
}

/* ========================= Interior page header ===================== */

.zhh-pageheader {
	background: #F6F4FA;
	padding-top: 64px;
	padding-bottom: 24px;
}
.zhh-pageheader .zhh-eyebrow--section { margin-bottom: 16px; }

/* Whatever immediately follows a page header shares its background, so the
   two sections' default paddings (56px + 88px) stacked into an oversized
   144px gap. zhh-news-archive tightens the archive grid's share of that. */
.zhh-news-archive { padding-top: 40px; }
.zhh-proglist-group--first { padding-top: 40px; }

/* All Programmes: two grouped lists share the same off-white background —
   tighten the gap between them so it doesn't stack into a redundant void. */
.zhh-proglist-group + .zhh-proglist-group { padding-top: 40px; }

/* --- Programme list (All Programmes page) --- */
ul.zhh-proglist {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 48px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.zhh-proglist li {
	border-bottom: 1px solid #EDE8F2;
}
.zhh-proglist a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 2px;
	font-family: 'Archivo', system-ui, sans-serif;
	font-size: 16.5px;
	font-weight: 600;
	color: #3B1F63;
	text-decoration: none;
}
.zhh-proglist a span {
	flex: none;
	color: #D89F2B;
	transition: transform .2s ease;
}
.zhh-proglist a:hover { color: #D89F2B; }
.zhh-proglist a:hover span { transform: translateX(4px); }

/* Breadcrumbs — folded into the header rather than a separate row.
   Overrides AIOSEO's default (unstyled) link colours to match brand. */
.zhh-breadcrumbs {
	margin-bottom: 20px;
	font-family: 'Archivo', system-ui, sans-serif;
	font-size: 13px;
}
.zhh-breadcrumbs .aioseo-breadcrumbs { display: inline; }
.zhh-breadcrumbs .aioseo-breadcrumb,
.zhh-breadcrumbs .aioseo-breadcrumb a {
	color: #8A7EA0;
	text-decoration: none;
}
.zhh-breadcrumbs .aioseo-breadcrumb a:hover {
	color: #3B1F63;
	text-decoration: underline;
}
.zhh-breadcrumbs .aioseo-breadcrumb-separator {
	color: #D89F2B;
	margin: 0 8px;
}
h1.zhh-h1-page {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	font-size: clamp(34px, 4vw, 48px);
	line-height: 1.08;
	color: #3B1F63;
	margin: 0;
	padding: 0;
}
p.zhh-pageheader__subtitle {
	font-size: 16px;
	line-height: 1.65;
	color: #5C5270;
	max-width: 680px;
	margin: 16px 0 0;
	padding: 0;
}

/* ============================ Pagination ============================ */

.zhh-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 48px;
	flex-wrap: wrap;
}
.zhh-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 8px;
	border-radius: 6px;
	font-family: 'Archivo', system-ui, sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #3B1F63;
	background: #fff;
	border: 1px solid #EDE8F2;
	text-decoration: none;
	transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.zhh-pagination a.page-numbers:hover {
	border-color: #D89F2B;
	color: #D89F2B;
}
.zhh-pagination .page-numbers.current {
	background: #3B1F63;
	border-color: #3B1F63;
	color: #fff;
}
.zhh-pagination .page-numbers.dots {
	border: none;
	background: none;
	color: #9A8FB0;
}

@media (max-width: 768px) {
	.zhh-pageheader { padding-top: 48px; padding-bottom: 24px; }
	.zhh-news-archive { padding-top: 24px; }
	.zhh-proglist-group--first,
	.zhh-proglist-group + .zhh-proglist-group { padding-top: 24px; }
	ul.zhh-proglist { grid-template-columns: 1fr; }
}
