/**
 * YouthConnectHub homepage components.
 *
 * Component order follows the homepage document flow so the cascade remains
 * predictable without additional network requests.
 */

/**
 * Let the homepage shortcode fill the available canvas while its component
 * containers continue to control readable content widths.
 *
 * This override is deliberately limited to the front-page Elementor wrapper.
 */
body.home .elementor > .e-con.e-con-boxed {
	padding-inline: 0;
}

body.home .elementor > .e-con.e-con-boxed > .e-con-inner {
	width: 100%;
	max-width: none;
	padding: 0;
}


/* ========================================================================
 * hero
 * ===================================================================== */

/**
 * YouthConnectHub editorial homepage hero.
 */

.ych-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	width: 100%;
	background: var(--ych-bg-primary);
	color: var(--ych-text-primary);
	font-family: var(--ych-font-body);
}

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

.ych-hero__glow {
	display: none;
}

.ych-hero__inner {
	width: 100%;
	margin-inline: auto;
	padding: 0;
}

.ych-hero__grid {
	position: relative;
	isolation: isolate;
	display: grid;
	min-height: clamp(46rem, 82vh, 58rem);
	grid-template-columns: minmax(0, 1fr);
	gap: 0;
	align-items: center;
}

.ych-hero__content {
	position: relative;
	z-index: 3;
	grid-area: 1 / 1;
	padding-block: clamp(4.75rem, 7vw, 7rem);
	pointer-events: none;
}

.ych-hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0 0 1.15rem;
	color: var(--ych-accent-blue);
	font-size: 0.6875rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.ych-hero__eyebrow::before {
	width: 2.5rem;
	height: 0.125rem;
	background: var(--ych-accent-gradient);
	content: "";
	flex: 0 0 auto;
}

.ych-hero__heading {
	max-width: 18ch;
	margin: 0;
	color: var(--ych-text-primary);
	font-family: var(--ych-font-heading);
	font-size: clamp(2.9rem, 4.8vw, 4.75rem);
	font-weight: 700;
	letter-spacing: -0.048em;
	line-height: 0.98;
	text-wrap: balance;
	word-break: normal;
	overflow-wrap: normal;
}

.ych-hero__heading span {
	background: var(--ych-accent-gradient);
	background-clip: text;
	font-style: italic;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.ych-hero__tagline {
	max-width: 34rem;
	margin: 1.75rem 0 0;
	color: var(--ych-text-primary);
	font-size: clamp(1.05rem, 1.6vw, 1.3rem);
	font-weight: 700;
	line-height: 1.45;
	text-wrap: balance;
}

.ych-hero__description {
	max-width: 48rem;
	margin: 1.25rem 0 0;
	color: rgba(244, 246, 251, 0.88);
	font-size: clamp(0.925rem, 1vw, 1.025rem);
	line-height: 1.62;
}

.ych-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1.5rem;
}

.ych-hero__button {
	display: inline-flex;
	min-height: 3.35rem;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.5rem;
	border: 0.0625rem solid transparent;
	border-radius: var(--ych-radius-button);
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: box-shadow var(--ych-transition), color var(--ych-transition), background var(--ych-transition), transform var(--ych-transition);
}

.ych-hero__button--primary {
	background: var(--ych-accent-gradient);
	box-shadow: var(--ych-shadow-small);
	color: #07111f;
}

.ych-hero__button--secondary {
	border-color: var(--ych-border-strong);
	background: rgba(16, 32, 51, 0.66);
	color: var(--ych-text-primary);
}

.ych-hero__button:hover {
	box-shadow: var(--ych-shadow-medium);
	transform: translateY(-0.125rem);
}

.ych-hero__button--secondary:hover {
	border-color: rgba(154, 114, 208, 0.5);
	background: var(--ych-bg-card-hover);
	color: #fff;
}

.ych-hero__button:focus-visible,
.ych-hero__slider-arrow:focus-visible,
.ych-hero__slider-dot:focus-visible,
.ych-hero__slider:focus-visible {
	outline: 0.1875rem solid var(--ych-focus);
	outline-offset: 0.25rem;
}

.ych-hero__media {
	position: relative;
	z-index: 0;
	grid-area: 1 / 1;
	align-self: stretch;
	width: 100%;
	height: 100%;
	min-height: inherit;
	aspect-ratio: auto;
	min-width: 0;
	margin: 0;
	background: var(--ych-bg-card);
	box-shadow: none;
}

.ych-hero__media::before {
	position: absolute;
	z-index: 2;
	inset: 0;
	width: 100%;
	background:
		linear-gradient(90deg, rgba(5, 12, 22, 0.98) 0%, rgba(5, 12, 22, 0.9) 34%, rgba(5, 12, 22, 0.54) 63%, rgba(5, 12, 22, 0.12) 100%),
		linear-gradient(0deg, rgba(5, 12, 22, 0.76) 0%, transparent 48%);
	content: "";
	pointer-events: none;
}

.ych-hero__slider,
.ych-hero__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
}

.ych-hero__slider {
	position: relative;
	overflow: hidden;
	background: var(--ych-bg-card);
	touch-action: pan-y;
}

.ych-hero__slides,
.ych-hero__slide { width: 100%; height: 100%; }

.ych-hero__slide { display: none; }
.ych-hero__slide:first-child { display: block; }

.ych-hero__slider.is-ready .ych-hero__slide {
	position: absolute;
	inset: 0;
	display: block;
	opacity: 0;
	transition: opacity 600ms ease;
}

.ych-hero__slider.is-ready .ych-hero__slide.is-active {
	z-index: 1;
	opacity: 1;
}

.ych-hero__slide .ych-hero__image {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center;
	transform: scale(1);
	transform-origin: center;
	transition: transform 6000ms linear;
	will-change: transform;
}

.ych-hero__slider.is-ready .ych-hero__slide.is-active .ych-hero__image { transform: scale(1.05); }

.ych-hero__slider-controls {
	position: absolute;
	z-index: 4;
	inset: 0;
	pointer-events: none;
}

.ych-hero__slider-arrow,
.ych-hero__slider-dot {
	border: 0;
	font: inherit;
	pointer-events: auto;
}

.ych-hero__slider-arrow {
	position: absolute;
	top: 50%;
	display: inline-grid;
	width: 3rem;
	height: 3rem;
	padding: 0;
	border: 0.0625rem solid rgba(255, 255, 255, 0.36);
	border-radius: 50%;
	background: rgba(9, 19, 34, 0.78);
	color: #fff;
	cursor: pointer;
	place-items: center;
	transform: translateY(-50%);
	transition: background var(--ych-transition), transform var(--ych-transition);
	-webkit-backdrop-filter: blur(0.5rem);
	backdrop-filter: blur(0.5rem);
}

.ych-hero__slider-arrow--previous { right: 5.25rem; left: auto; }
.ych-hero__slider-arrow--next { right: 1.5rem; }

.ych-hero__slider-arrow:hover {
	background: rgba(9, 19, 34, 0.96);
	transform: translateY(-50%) scale(1.04);
}

.ych-hero__slider-dots {
	position: absolute;
	right: 9rem;
	bottom: 1.7rem;
	left: auto;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.75rem;
	border-radius: 999px;
	background: rgba(9, 19, 34, 0.72);
	transform: none;
	-webkit-backdrop-filter: blur(0.5rem);
	backdrop-filter: blur(0.5rem);
}

.ych-hero__slider-dot {
	width: 0.625rem;
	height: 0.625rem;
	padding: 0;
	border: 0.0625rem solid #fff;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	transition: background var(--ych-transition), transform var(--ych-transition);
}

.ych-hero__slider-dot:hover,
.ych-hero__slider-dot[aria-current="true"] {
	background: #fff;
	transform: scale(1.15);
}

.ych-hero__placeholder {
	display: grid;
	place-items: center;
	padding: 2rem;
	background: var(--ych-bg-card);
	color: var(--ych-text-secondary);
}

.ych-hero__impact {
	position: relative;
	z-index: 6;
	margin: -2rem 0 -3.5rem;
	padding: 1.5rem 1.25rem;
	border: 0.0625rem solid var(--ych-border);
	border-radius: var(--ych-radius-panel);
	background: rgba(16, 32, 51, 0.9);
	box-shadow: var(--ych-shadow-large);
	-webkit-backdrop-filter: blur(1rem);
	backdrop-filter: blur(1rem);
}

.ych-hero__impact-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ych-hero__impact-item {
	min-width: 0;
	padding-inline: clamp(1rem, 2.5vw, 2rem);
	border-left: 0.0625rem solid var(--ych-border);
}

.ych-hero__impact-item:first-child { border-left: 0; }

.ych-hero__impact-value,
.ych-hero__impact-label { display: block; }

.ych-hero__impact-value {
	color: var(--ych-text-primary);
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.25;
}

.ych-hero__impact-label {
	margin-top: 0.35rem;
	color: var(--ych-text-secondary);
	font-size: 0.6875rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.055em;
	text-transform: uppercase;
}

@media (max-width: 64rem) {
	.ych-hero__grid { min-height: clamp(48rem, 86vh, 56rem); }
	.ych-hero__heading { max-width: 17ch; font-size: clamp(2.75rem, 6.25vw, 4.25rem); }

	.ych-hero__impact-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ych-hero__impact-item:nth-child(3) { border-left: 0; }
	.ych-hero__impact-item:nth-child(n + 3) { margin-top: 1rem; padding-top: 1rem; border-top: 0.0625rem solid var(--ych-border); }
}

@media (min-width: 48.01rem) {
	.ych-hero__heading span { white-space: nowrap; }
}

@media (min-width: 48.01rem) and (max-height: 48rem) {
	.ych-hero__grid { min-height: 36rem; }

	.ych-hero__content {
		padding-block: 3rem;
	}

	.ych-hero__heading {
		max-width: 19ch;
		font-size: clamp(2.75rem, 4.2vw, 4rem);
	}

	.ych-hero__tagline { margin-top: 1.25rem; }

	.ych-hero__description {
		max-width: 48rem;
		margin-top: 1rem;
		font-size: 0.95rem;
		line-height: 1.55;
	}

	.ych-hero__actions { margin-top: 1.5rem; }
}

@media (max-width: 48rem) {
	.ych-hero__inner {
		width: 100%;
		padding: 0;
	}

	.ych-hero__grid {
		min-height: 54rem;
		grid-template-columns: minmax(0, 1fr);
		gap: 0;
	}

	.ych-hero__content {
		width: calc(100% - 2.5rem);
		max-width: calc(100% - 2.5rem);
		min-width: 0;
		margin-inline: auto;
		padding-block: 4.5rem 6.75rem;
	}

	.ych-hero__heading {
		width: 100%;
		max-width: 15ch;
		font-size: clamp(2.15rem, 9.5vw, 3.25rem);
		line-height: 1;
		overflow-wrap: break-word;
	}

	.ych-hero__eyebrow { margin-bottom: 0.9rem; }

	.ych-hero__description {
		width: 100%;
		max-width: 40rem;
		margin-top: 1rem;
		font-size: clamp(0.875rem, 2.8vw, 0.95rem);
		line-height: 1.55;
	}

	.ych-hero__actions {
		width: 100%;
		max-width: 100%;
		margin-top: 1.25rem;
	}

	.ych-hero__media {
		width: 100%;
		height: 100%;
		aspect-ratio: auto;
		max-width: none;
		margin: 0;
	}

	.ych-hero__media::before {
		display: block;
		background:
			linear-gradient(90deg, rgba(5, 12, 22, 0.9), rgba(5, 12, 22, 0.68)),
			linear-gradient(0deg, rgba(5, 12, 22, 0.98) 12%, rgba(5, 12, 22, 0.52) 100%);
	}

	.ych-hero__image { object-position: 62% center; }

	.ych-hero__slider,
	.ych-hero__placeholder { min-height: inherit; }

	.ych-hero__slider-arrow {
		top: auto;
		bottom: 1.35rem;
		transform: none;
	}

	.ych-hero__slider-arrow--previous { right: 4.75rem; }
	.ych-hero__slider-arrow--next { right: 1.25rem; }

	.ych-hero__slider-arrow:hover { transform: scale(1.04); }

	.ych-hero__slider-dots {
		right: auto;
		bottom: 1.55rem;
		left: 1.25rem;
	}

	.ych-hero__impact { margin: 1.5rem 0 -3rem; }
}

@media (max-width: 32rem) {
	.ych-hero__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.ych-hero__button { width: 100%; }
	.ych-hero__slider,
	.ych-hero__placeholder { min-height: inherit; }

	.ych-hero__impact {
		margin-bottom: -2.5rem;
		padding: 0.5rem 1.25rem;
	}

	.ych-hero__impact-list { grid-template-columns: minmax(0, 1fr); }

	.ych-hero__impact-item,
	.ych-hero__impact-item:nth-child(3),
	.ych-hero__impact-item:nth-child(n + 3) {
		margin: 0;
		padding: 1rem 0;
		border-top: 0.0625rem solid var(--ych-border);
		border-left: 0;
	}

	.ych-hero__impact-item:first-child { border-top: 0; }
}

@keyframes ych-hero-content-reveal {
	from {
		opacity: 0;
		transform: translateY(1rem);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.ych-hero__content > * {
	animation: ych-hero-content-reveal 720ms ease both;
	pointer-events: auto;
}

.ych-hero__content > :nth-child(2) { animation-delay: 90ms; }
.ych-hero__content > :nth-child(3) { animation-delay: 160ms; }
.ych-hero__content > :nth-child(4) { animation-delay: 230ms; }

@media (prefers-reduced-motion: reduce) {
	.ych-hero__content > * { animation: none; }

	.ych-hero__button,
	.ych-hero__slider.is-ready .ych-hero__slide,
	.ych-hero__slider .ych-hero__image,
	.ych-hero__slider-arrow,
	.ych-hero__slider-dot { transition: none; }

	.ych-hero__slider .ych-hero__image,
	.ych-hero__slider.is-ready .ych-hero__slide.is-active .ych-hero__image { transform: none; }

	.ych-hero__button:hover { transform: none; }
	.ych-hero__slider-arrow,
	.ych-hero__slider-arrow:hover { transform: translateY(-50%); }

}

@media (max-width: 48rem) and (prefers-reduced-motion: reduce) {
	.ych-hero__slider-arrow,
	.ych-hero__slider-arrow:hover { transform: none; }
}

@media (forced-colors: active) {
	.ych-hero__button,
	.ych-hero__media,
	.ych-hero__impact { border: 0.125rem solid CanvasText; }
}


/* ========================================================================
 * programmes
 * ===================================================================== */

/**
 * YouthConnectHub dynamic Programme cards.
 */

.ych-programmes {
	width: 100%;
	background: var(--ych-bg-primary);
	color: var(--ych-text-primary);
	font-family: var(--ych-font-body);
}

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

.ych-programmes__inner {
	padding-block: var(--ych-section-space-compact);
}

.ych-programmes__header {
	display: grid;
	grid-template-columns: minmax(17rem, 0.78fr) minmax(0, 1.22fr);
	max-width: none;
	align-items: center;
	gap: clamp(2.5rem, 4vw, 4rem);
	margin-bottom: var(--ych-space-5);
}

.ych-programmes__header-copy {
	display: grid;
	min-width: 0;
	align-content: center;
	gap: var(--ych-space-3);
}

.ych-programmes__header-copy::before {
	display: block;
	width: 3.5rem;
	height: 0.125rem;
	border-radius: 999px;
	background: var(--ych-accent-gradient);
	content: "";
}

.ych-programmes__heading {
	max-width: 11ch;
	margin: 0;
	color: var(--ych-text-primary);
	font-family: var(--ych-font-heading);
	font-size: var(--ych-type-h2);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: var(--ych-leading-heading);
}

.ych-programmes__header-feature {
	min-width: 0;
}

.ych-programmes__header-media {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: 0;
	height: clamp(17rem, 27vw, 22rem);
	border: 0.0625rem solid var(--ych-border);
	border-radius: var(--ych-radius-card);
	background: var(--ych-bg-card);
	box-shadow: var(--ych-shadow-large);
}

.ych-programmes__header-media::after {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(10, 18, 32, 0.06), transparent 48%, rgba(120, 82, 168, 0.1));
	content: "";
	pointer-events: none;
}

.ych-programmes__header-media .ych-programmes__header-image {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center 48%;
}

.ych-programmes__subtitle {
	max-width: 31rem;
	margin: 0;
	color: var(--ych-text-secondary);
	font-size: clamp(1rem, 1.35vw, 1.125rem);
	line-height: 1.75;
	text-align: left;
}

.ych-programmes__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	grid-auto-rows: 1fr;
	gap: var(--ych-space-3);
	align-items: stretch;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ych-programmes__item { min-width: 0; }

.ych-programmes__card {
	display: flex;
	overflow: hidden;
	height: 100%;
	flex-direction: column;
	border: 0.0625rem solid rgba(255, 255, 255, 0.11);
	border-radius: var(--ych-radius-card);
	background: linear-gradient(155deg, rgba(23, 43, 65, 0.98), rgba(12, 28, 46, 0.99));
	box-shadow: var(--ych-shadow-small);
	transition: border-color var(--ych-transition), box-shadow var(--ych-transition), transform var(--ych-transition);
}

.ych-programmes__card:hover,
.ych-programmes__card:focus-within {
	border-color: rgba(154, 114, 208, 0.56);
	box-shadow: var(--ych-shadow-medium);
	transform: translateY(-0.25rem);
}

.ych-programmes__media {
	position: relative;
	display: grid;
	overflow: hidden;
	width: 100%;
	height: clamp(12.5rem, 16vw, 15rem);
	min-height: 12.5rem;
	flex: 0 0 auto;
	place-items: center;
	border-radius: var(--ych-radius-card) var(--ych-radius-card) 0 0;
	background: linear-gradient(135deg, rgba(100, 152, 208, 0.24), rgba(120, 82, 168, 0.3));
}

.ych-programmes__media::after {
	position: absolute;
	z-index: 1;
	inset: 0;
	background: linear-gradient(180deg, transparent 48%, rgba(5, 15, 28, 0.7) 100%);
	content: "";
	pointer-events: none;
}

.ych-programmes__item--1 .ych-programmes__media { background: linear-gradient(135deg, rgba(69, 154, 114, 0.3), rgba(15, 42, 52, 0.92)); }
.ych-programmes__item--2 .ych-programmes__media { background: linear-gradient(135deg, rgba(120, 82, 168, 0.36), rgba(18, 31, 56, 0.94)); }
.ych-programmes__item--3 .ych-programmes__media { background: linear-gradient(135deg, rgba(218, 134, 57, 0.3), rgba(43, 33, 42, 0.94)); }
.ych-programmes__item--4 .ych-programmes__media { background: linear-gradient(135deg, rgba(76, 145, 218, 0.32), rgba(15, 35, 58, 0.94)); }

.ych-programmes__media .ych-programmes__image {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100% !important;
	max-width: none;
	border-radius: 0;
	object-fit: cover;
	transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.ych-programmes__card:hover .ych-programmes__image,
.ych-programmes__card:focus-within .ych-programmes__image {
	transform: scale(1.04);
}

.ych-programmes__icon {
	position: relative;
	z-index: 2;
	display: grid;
	width: 4rem;
	height: 4rem;
	place-items: center;
	border: 0.0625rem solid rgba(255, 255, 255, 0.18);
	border-radius: 1rem;
	background: rgba(8, 22, 39, 0.52);
	color: var(--ych-accent-blue);
	box-shadow: var(--ych-shadow-small);
}

.ych-programmes__icon-mark {
	position: relative;
	display: block;
	width: 1.2rem;
	height: 1.2rem;
	border: 0.125rem solid currentColor;
	border-radius: 50%;
}

.ych-programmes__card-body {
	display: flex;
	height: 100%;
	min-width: 0;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: flex-start;
	padding: clamp(1.5rem, 2.5vw, 2rem);
}

.ych-programmes__card-title {
	max-width: 19ch;
	margin: 0;
	color: var(--ych-text-primary);
	font-family: var(--ych-font-heading);
	font-size: clamp(1.45rem, 2vw, 1.75rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.16;
	overflow-wrap: break-word;
	text-wrap: balance;
}

.ych-programmes__metadata {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin: 0 0 0.75rem;
	color: var(--ych-accent-blue);
	font-size: 0.6875rem;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.ych-programmes__metadata-item:not(:first-child),
.ych-programmes__metadata dt { display: none; }

.ych-programmes__metadata dd { margin: 0; }

.ych-programmes__description {
	display: -webkit-box;
	overflow: hidden;
	margin: 1rem 0 var(--ych-space-4);
	color: var(--ych-text-secondary);
	font-size: 0.9375rem;
	line-height: var(--ych-leading-body);
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
}

.ych-programmes__link {
	display: inline-flex;
	min-height: 2.75rem;
	align-items: center;
	gap: 0.55rem;
	margin-top: auto;
	padding: 0;
	border-radius: 0.3rem;
	background: var(--ych-accent-gradient);
	background-clip: text;
	color: var(--ych-accent-blue);
	font-size: 0.8125rem;
	font-weight: 700;
	text-decoration: none;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: opacity var(--ych-transition);
}

.ych-programmes__link:hover { opacity: 0.82; }

.ych-programmes__link-arrow {
	display: inline-block;
	transition: transform var(--ych-transition);
}

.ych-programmes__card:hover .ych-programmes__link-arrow,
.ych-programmes__card:focus-within .ych-programmes__link-arrow,
.ych-programmes__link:hover .ych-programmes__link-arrow { transform: translateX(0.35rem); }

.ych-programmes__link:focus-visible {
	outline: 0.1875rem solid var(--ych-focus);
	outline-offset: 0.25rem;
}

.ych-programmes__empty {
	max-width: 42rem;
	margin-inline: auto;
	padding: var(--ych-space-4);
	border: 0.0625rem solid var(--ych-border);
	border-radius: var(--ych-radius-card);
	background: var(--ych-bg-card);
	box-shadow: var(--ych-shadow-small);
	text-align: center;
}

.ych-programmes__empty p {
	margin: 0;
	color: var(--ych-text-secondary);
	line-height: 1.7;
}

@media (min-width: 42rem) {
	.ych-programmes__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 70rem) {
	.ych-programmes__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 75rem) {
	.ych-programmes__grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
	.ych-programmes__media {
		height: 9.5rem;
		min-height: 9.5rem;
	}
	.ych-programmes__card-body { padding: 1.25rem; }
	.ych-programmes__card-title { font-size: 1.25rem; }
	.ych-programmes__description {
		margin-block: 0.75rem var(--ych-space-3);
		font-size: 0.8125rem;
	}
}

/* ========================================================================
 * homepage grid
 * ===================================================================== */

/**
 * Shared homepage foundation and information grid.
 */

.ych-homepage {
	position: relative;
	isolation: isolate;
	display: flex;
	width: 100%;
	flex-direction: column;
	background: var(--ych-bg-primary);
	color: var(--ych-text-primary);
}

.ych-homepage::before {
	position: absolute;
	z-index: -1;
	inset: 0 calc((100vw - 100%) / -2);
	background: var(--ych-bg-primary);
	content: "";
	pointer-events: none;
}

.ych-homepage > .ych-hero { order: 1; }
.ych-homepage > .ych-programmes { order: 2; }
.ych-homepage > .ych-home-events { order: 3; }
.ych-homepage > .ych-home-grid { order: 3; }
.ych-homepage > .ych-success-stories { order: 4; }
.ych-homepage > .ych-newsletter { order: 5; }
.ych-homepage > .ych-partners { order: 6; }
.ych-homepage > .ych-home-footer { order: 7; }

/* Keep the compact introduction polished without reserving space for programme cards. */
.ych-programmes--intro-only .ych-programmes__header {
	margin-bottom: 0;
}

.ych-homepage > .ych-programmes + .ych-home-events {
	border-top: 0.0625rem solid var(--ych-border);
}

.ych-home-grid {
	width: 100%;
	background: var(--ych-bg-secondary);
	color: var(--ych-text-primary);
	font-family: var(--ych-font-body);
}

.ych-home-grid *,
.ych-home-grid *::before,
.ych-home-grid *::after { box-sizing: border-box; }

.ych-home-grid__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr) minmax(0, 0.88fr);
	gap: var(--ych-space-4);
	padding-block: var(--ych-space-6) var(--ych-space-7);
}

.ych-home-grid__column,
.ych-home-grid .ych-featured-event {
	min-width: 0;
	border-right: 0.0625rem solid var(--ych-border);
}

.ych-home-grid__column {
	padding-right: var(--ych-space-4);
}

.ych-home-grid__column:last-child { border-right: 0; }

.ych-home-grid__column-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--ych-space-2);
	margin-bottom: var(--ych-space-3);
}

.ych-home-grid__column-header h2 {
	margin: 0;
	color: var(--ych-text-primary);
	font-family: var(--ych-font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.2;
}

.ych-home-grid__column-header a {
	color: var(--ych-accent-blue);
	font-size: 0.6875rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.ych-home-grid__list,
.ych-home-grid__resource-list {
	display: grid;
	gap: var(--ych-space-2);
	margin: 0;
	padding: 0;
	list-style: none;
}

.ych-home-grid__list a,
.ych-home-grid__resource-list a {
	display: flex;
	min-height: 5rem;
	align-items: center;
	gap: 0.875rem;
	padding: 0.875rem;
	border: 0.0625rem solid var(--ych-border);
	border-radius: var(--ych-radius-card);
	background: var(--ych-bg-card);
	box-shadow: var(--ych-shadow-small);
	color: var(--ych-text-primary);
	text-decoration: none;
	transition: border-color var(--ych-transition), box-shadow var(--ych-transition), transform var(--ych-transition);
}

.ych-home-grid__list a:hover,
.ych-home-grid__resource-list a:hover {
	border-color: rgba(120, 169, 228, 0.38);
	box-shadow: var(--ych-shadow-medium);
	transform: translateY(-0.2rem);
}

.ych-home-grid__list a > span:nth-child(2) {
	display: flex;
	min-width: 0;
	flex: 1;
	flex-direction: column;
	gap: 0.2rem;
}

.ych-home-grid__list strong,
.ych-home-grid__resource-list a > span:last-child {
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1.35;
}

.ych-home-grid__list small {
	color: var(--ych-text-secondary);
	font-size: 0.6875rem;
	line-height: 1.45;
}

.ych-home-grid__icon,
.ych-home-grid__resource-icon {
	display: block;
	width: 3rem;
	height: 3rem;
	flex: 0 0 auto;
	border: 0.0625rem solid var(--ych-border);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.82) 0 18%, transparent 20%), rgba(154, 114, 208, 0.18);
}

.ych-home-grid__resource-list {
	grid-template-columns: minmax(0, 1fr);
}

.ych-home-grid__resource-list a { min-height: 4.5rem; }

.ych-home-grid__resource-list li:nth-child(3n + 2) .ych-home-grid__resource-icon { background-color: rgba(95, 177, 135, 0.18); }
.ych-home-grid__resource-list li:nth-child(3n) .ych-home-grid__resource-icon { background-color: rgba(120, 169, 228, 0.18); }

.ych-home-grid__empty {
	margin: 0;
	padding: var(--ych-space-3);
	border: 0.0625rem dashed var(--ych-border-strong);
	border-radius: var(--ych-radius-card);
	background: rgba(16, 32, 51, 0.62);
	color: var(--ych-text-secondary);
	font-size: 0.8125rem;
	line-height: 1.6;
}

.ych-home-grid__list a:focus-visible,
.ych-home-grid__resource-list a:focus-visible,
.ych-home-grid__column-header a:focus-visible {
	border-radius: 0.35rem;
	outline: 0.1875rem solid var(--ych-focus);
	outline-offset: 0.2rem;
}

@media (max-width: 64rem) {
	.ych-home-grid__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }

	.ych-home-grid__column:last-child {
		grid-column: 1 / -1;
		padding-top: var(--ych-space-4);
		border-top: 0.0625rem solid var(--ych-border);
	}
}

@media (max-width: 42rem) {
	.ych-home-grid__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: var(--ych-space-4);
		padding-block: var(--ych-space-5);
	}

	.ych-home-grid__column,
	.ych-home-grid .ych-featured-event,
	.ych-home-grid__column:last-child {
		grid-column: auto;
		padding: 0 0 var(--ych-space-4);
		border-top: 0;
		border-right: 0;
		border-bottom: 0.0625rem solid var(--ych-border);
	}

	.ych-home-grid__column:last-child { border-bottom: 0; }
	.ych-home-grid__resource-list { grid-template-columns: minmax(0, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
	.ych-home-grid__list a,
	.ych-home-grid__resource-list a { transition: none; }

	.ych-home-grid__list a:hover,
	.ych-home-grid__resource-list a:hover { transform: none; }
}


/* ========================================================================
 * featured event
 * ===================================================================== */

/**
 * Featured event inside the homepage information grid.
 */

.ych-featured-event {
	width: 100%;
	background: transparent;
	color: var(--ych-text-primary);
	font-family: var(--ych-font-body);
}

.ych-featured-event *,
.ych-featured-event *::before,
.ych-featured-event *::after { box-sizing: border-box; }

.ych-home-grid .ych-featured-event__inner {
	width: auto;
	margin: 0;
	padding: 0 var(--ych-space-4) 0 0;
}

.ych-home-grid .ych-featured-event__card {
	display: grid;
	overflow: hidden;
	grid-template-columns: minmax(9rem, 0.88fr) minmax(0, 1.12fr);
	border: 0.0625rem solid var(--ych-border);
	border-radius: var(--ych-radius-card);
	background: linear-gradient(155deg, var(--ych-bg-card-hover), var(--ych-bg-card));
	box-shadow: var(--ych-shadow-small);
	transition: border-color var(--ych-transition), box-shadow var(--ych-transition), transform var(--ych-transition);
}

.ych-home-grid .ych-featured-event__card:hover,
.ych-home-grid .ych-featured-event__card:focus-within {
	border-color: rgba(154, 114, 208, 0.42);
	box-shadow: var(--ych-shadow-medium);
	transform: translateY(-0.2rem);
}

.ych-home-grid .ych-featured-event__visual {
	position: relative;
	min-height: 17rem;
	background: var(--ych-bg-primary);
}

.ych-home-grid .ych-featured-event__visual::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(145deg, rgba(9, 19, 34, 0.05), rgba(74, 43, 137, 0.3));
	content: "";
	pointer-events: none;
}

.ych-home-grid .ych-featured-event__image,
.ych-home-grid .ych-featured-event__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
}

.ych-home-grid .ych-featured-event__image { object-fit: cover; }

.ych-home-grid .ych-featured-event__placeholder {
	display: grid;
	place-items: center;
	padding: var(--ych-space-3);
	background: var(--ych-bg-card);
	color: var(--ych-text-secondary);
}

.ych-home-grid .ych-featured-event__date-badge {
	position: absolute;
	z-index: 1;
	top: 0.75rem;
	left: 0.75rem;
	max-width: calc(100% - 1.5rem);
	padding: 0.55rem 0.7rem;
	border: 0.0625rem solid var(--ych-border-strong);
	border-radius: var(--ych-radius-button);
	background: rgba(9, 19, 34, 0.9);
	color: var(--ych-text-primary);
	font-size: 0.625rem;
	font-weight: 700;
	line-height: 1.3;
	-webkit-backdrop-filter: blur(0.5rem);
	backdrop-filter: blur(0.5rem);
}

.ych-home-grid .ych-featured-event__content {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: var(--ych-space-3);
}

.ych-home-grid .ych-featured-event__label {
	margin: 0 0 0.65rem;
	color: var(--ych-accent-blue);
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	line-height: 1.4;
	text-transform: uppercase;
}

.ych-home-grid .ych-featured-event__heading {
	margin: 0;
	color: var(--ych-text-primary);
	font-family: var(--ych-font-heading);
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.2;
}

.ych-home-grid .ych-featured-event__description {
	display: -webkit-box;
	overflow: hidden;
	margin: 0.75rem 0 0;
	color: var(--ych-text-secondary);
	font-size: 0.75rem;
	line-height: 1.55;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.ych-home-grid .ych-featured-event__details {
	display: grid;
	gap: 0.3rem;
	margin: var(--ych-space-2) 0 0;
}

.ych-home-grid .ych-featured-event__detail {
	padding: 0;
	border: 0;
	background: transparent;
}

.ych-home-grid .ych-featured-event__detail dt { display: none; }

.ych-home-grid .ych-featured-event__detail dd {
	margin: 0;
	color: var(--ych-text-secondary);
	font-size: 0.65rem;
	font-weight: 700;
	line-height: 1.45;
}

.ych-home-grid .ych-featured-event__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: auto;
	padding-top: var(--ych-space-2);
}

.ych-home-grid .ych-featured-event__button {
	display: inline-flex;
	min-height: 2.25rem;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 0.7rem;
	border: 0.0625rem solid transparent;
	border-radius: var(--ych-radius-button);
	font-size: 0.65rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: box-shadow var(--ych-transition), transform var(--ych-transition);
}

.ych-home-grid .ych-featured-event__button--primary {
	background: var(--ych-accent-gradient);
	color: #07111f;
}

.ych-home-grid .ych-featured-event__button--secondary {
	border-color: var(--ych-border-strong);
	background: rgba(9, 19, 34, 0.48);
	color: var(--ych-text-primary);
}

.ych-home-grid .ych-featured-event__button:hover {
	box-shadow: var(--ych-shadow-small);
	transform: translateY(-0.1rem);
}

.ych-home-grid .ych-featured-event__button:focus-visible {
	outline: 0.1875rem solid var(--ych-focus);
	outline-offset: 0.2rem;
}

@media (max-width: 64rem) {
	.ych-home-grid .ych-featured-event__card {
		grid-template-columns: minmax(8rem, 0.85fr) minmax(0, 1.15fr);
	}
}

@media (max-width: 42rem) {
	.ych-home-grid .ych-featured-event__inner { padding: 0; }
	.ych-home-grid .ych-featured-event__card { grid-template-columns: minmax(0, 1fr); }
	.ych-home-grid .ych-featured-event__visual { min-height: 16rem; }
}

@media (prefers-reduced-motion: reduce) {
	.ych-home-grid .ych-featured-event__card,
	.ych-home-grid .ych-featured-event__button { transition: none; }

	.ych-home-grid .ych-featured-event__card:hover,
	.ych-home-grid .ych-featured-event__card:focus-within,
	.ych-home-grid .ych-featured-event__button:hover { transform: none; }
}

@media (forced-colors: active) {
	.ych-home-grid .ych-featured-event__card,
	.ych-home-grid .ych-featured-event__button { border: 0.125rem solid CanvasText; }
}

/**
 * Premium homepage events and resources grid.
 *
 * These component-level rules intentionally follow the original compact-grid
 * foundation so the section can retain its existing content and semantics while
 * presenting a stronger editorial hierarchy.
 */
.ych-home-grid {
	background:
		radial-gradient(circle at 48% 18%, rgba(100, 152, 208, 0.09), transparent 34rem),
		radial-gradient(circle at 86% 72%, rgba(120, 82, 168, 0.08), transparent 30rem),
		var(--ych-bg-secondary);
}

.ych-home-grid__inner {
	grid-template-areas: "past featured resources";
	grid-template-columns: minmax(0, 1fr) minmax(26.25rem, 1.4fr) minmax(0, 1fr);
	align-items: start;
	gap: clamp(1.5rem, 2.5vw, 2rem);
	padding-block: clamp(4.5rem, 6vw, 5.5rem);
}

.ych-home-grid__column,
.ych-home-grid .ych-featured-event {
	display: flex;
	min-width: 0;
	min-height: 41.375rem;
	height: 100%;
	flex-direction: column;
	align-self: start;
	margin: 0;
	padding: 0;
	border: 0;
}

.ych-home-grid__column--past { grid-area: past; }
.ych-home-grid .ych-featured-event { grid-area: featured; }
.ych-home-grid__column--resources { grid-area: resources; }

.ych-home-grid__column-header {
	height: 3rem;
	min-height: 3rem;
	align-items: flex-start;
	gap: var(--ych-space-2);
	margin: 0 0 1.25rem;
}

.ych-home-grid__column-header h2 {
	font-size: clamp(1.5rem, 2vw, 1.85rem);
	letter-spacing: -0.035em;
	line-height: 1.08;
}

.ych-home-grid__column-header a {
	display: inline-flex;
	min-height: 2rem;
	align-items: center;
	gap: 0.35rem;
	border-radius: 0.35rem;
	font-size: 0.6875rem;
	letter-spacing: 0.02em;
	transition: color var(--ych-transition);
}

.ych-home-grid__column-header a span,
.ych-home-grid__item-arrow {
	display: inline-block;
	transition: transform var(--ych-transition);
}

.ych-home-grid__column-header a:hover span,
.ych-home-grid__column-header a:focus-visible span { transform: translateX(0.25rem); }

.ych-home-grid__list,
.ych-home-grid__resource-list {
	display: flex;
	min-height: 0;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 1rem;
	margin: 0;
}

.ych-home-grid__list li {
	display: flex;
	min-height: 0;
	flex: 1 1 0;
}

.ych-home-grid__resource-list li { flex: 1 1 0; }
.ych-home-grid__resource-list { justify-content: space-between; }

.ych-home-grid__list a,
.ych-home-grid__resource-list a {
	position: relative;
	display: grid;
	align-items: center;
	gap: 1rem;
	border: 0.0625rem solid rgba(255, 255, 255, 0.1);
	background: linear-gradient(145deg, rgba(24, 46, 69, 0.86), rgba(13, 30, 49, 0.96));
	box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.16);
	transition: background-color var(--ych-transition), border-color var(--ych-transition), box-shadow var(--ych-transition), transform var(--ych-transition);
}

.ych-home-grid__list a {
	width: 100%;
	min-height: 11.25rem;
	height: 100%;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: start;
	padding: clamp(1.25rem, 2vw, 1.5rem);
	border-radius: 1.25rem;
}

.ych-home-grid__resource-list a {
	min-height: 4.875rem;
	height: 100%;
	grid-template-columns: auto minmax(0, 1fr) auto;
	padding: 1rem 1.125rem;
	border-radius: 1.125rem;
}

.ych-home-grid__list a:hover,
.ych-home-grid__list a:focus-visible,
.ych-home-grid__resource-list a:hover,
.ych-home-grid__resource-list a:focus-visible {
	border-color: rgba(120, 169, 228, 0.5);
	background: linear-gradient(145deg, rgba(30, 57, 84, 0.94), rgba(17, 36, 58, 0.99));
	box-shadow: 0 1.25rem 2.75rem rgba(0, 0, 0, 0.25), 0 0 1.5rem rgba(100, 152, 208, 0.07);
	transform: translateY(-0.3rem);
}

.ych-home-grid__list a:hover .ych-home-grid__item-arrow,
.ych-home-grid__list a:focus-visible .ych-home-grid__item-arrow,
.ych-home-grid__resource-list a:hover .ych-home-grid__item-arrow,
.ych-home-grid__resource-list a:focus-visible .ych-home-grid__item-arrow {
	transform: translateX(0.3rem);
}

.ych-home-grid__date-badge {
	display: inline-grid;
	min-width: 3.5rem;
	min-height: 2.15rem;
	place-items: center;
	padding: 0.4rem 0.65rem;
	border: 0.0625rem solid rgba(120, 169, 228, 0.28);
	border-radius: 0.75rem;
	background: linear-gradient(135deg, rgba(100, 152, 208, 0.2), rgba(120, 82, 168, 0.2));
	color: var(--ych-accent-blue);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
}

.ych-home-grid__event-copy {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 0.55rem;
}

.ych-home-grid__list strong {
	color: var(--ych-text-primary);
	font-size: 0.9375rem;
	line-height: 1.35;
}

.ych-home-grid__list small {
	color: var(--ych-text-secondary);
	font-size: 0.75rem;
	line-height: 1.6;
}

.ych-home-grid__item-arrow {
	align-self: center;
	color: var(--ych-accent-blue);
	font-size: 1rem;
	font-weight: 700;
}

.ych-home-grid__list .ych-home-grid__item-arrow {
	align-self: start;
	margin-top: 0.4rem;
}

.ych-home-grid__resource-icon {
	position: relative;
	display: grid;
	width: 2.5rem;
	height: 2.5rem;
	place-items: center;
	border: 0.0625rem solid rgba(255, 255, 255, 0.11);
	border-radius: 0.75rem;
	background: linear-gradient(135deg, rgba(120, 82, 168, 0.28), rgba(100, 152, 208, 0.16));
	transition: transform var(--ych-transition);
}

.ych-home-grid__resource-icon::before {
	width: 0.7rem;
	height: 0.7rem;
	border: 0.125rem solid rgba(255, 255, 255, 0.86);
	border-radius: 0.2rem;
	content: "";
	transform: rotate(45deg);
}

.ych-home-grid__resource-list li:nth-child(3n + 2) .ych-home-grid__resource-icon {
	background: linear-gradient(135deg, rgba(95, 177, 135, 0.26), rgba(100, 152, 208, 0.14));
}

.ych-home-grid__resource-list li:nth-child(3n) .ych-home-grid__resource-icon {
	background: linear-gradient(135deg, rgba(100, 152, 208, 0.28), rgba(120, 82, 168, 0.15));
}

.ych-home-grid__resource-list a:hover .ych-home-grid__resource-icon,
.ych-home-grid__resource-list a:focus-visible .ych-home-grid__resource-icon { transform: translateX(0.15rem); }

.ych-home-grid__resource-title {
	min-width: 0;
	color: var(--ych-text-primary);
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1.4;
}

.ych-home-grid .ych-featured-event__inner {
	display: flex;
	width: 100%;
	min-height: 0;
	flex: 1 1 auto;
	padding: 0;
}

.ych-home-grid .ych-featured-event__card {
	position: relative;
	display: grid;
	overflow: hidden;
	width: 100%;
	min-height: 37.125rem;
	height: 37.125rem;
	max-height: 37.125rem;
	grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
	align-self: start;
	margin: 0;
	border: 0.0625rem solid rgba(120, 169, 228, 0.28);
	border-radius: clamp(1.375rem, 2vw, 1.625rem);
	background: linear-gradient(150deg, rgba(24, 47, 72, 0.98), rgba(12, 27, 45, 0.99));
	box-shadow: 0 1.5rem 3.75rem rgba(0, 0, 0, 0.28), 0 0 2rem rgba(120, 82, 168, 0.07);
	transition: border-color var(--ych-transition), box-shadow var(--ych-transition), transform var(--ych-transition);
}

.ych-home-grid .ych-featured-event__card:hover,
.ych-home-grid .ych-featured-event__card:focus-within {
	border-color: rgba(154, 114, 208, 0.58);
	box-shadow: 0 2rem 4.5rem rgba(0, 0, 0, 0.36), 0 0 2.5rem rgba(120, 82, 168, 0.1);
	transform: translateY(-0.25rem);
}

.ych-home-grid .ych-featured-event__visual {
	position: relative;
	overflow: hidden;
	min-height: 100%;
	background: var(--ych-bg-primary);
}

.ych-home-grid .ych-featured-event__visual::after {
	z-index: 1;
	background: linear-gradient(180deg, rgba(7, 17, 30, 0.04) 42%, rgba(7, 17, 30, 0.72) 100%);
}

.ych-home-grid .ych-featured-event__image,
.ych-home-grid .ych-featured-event__placeholder {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100% !important;
	min-height: 0;
}

.ych-home-grid .ych-featured-event__image {
	max-width: none;
	object-fit: cover;
	object-position: 70% center;
	transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.ych-home-grid .ych-featured-event__card:hover .ych-featured-event__image,
.ych-home-grid .ych-featured-event__card:focus-within .ych-featured-event__image { transform: scale(1.035); }

.ych-home-grid .ych-featured-event__date-badge {
	z-index: 2;
	top: 1rem;
	left: 1rem;
	padding: 0.6rem 0.8rem;
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(7, 18, 33, 0.84);
	font-size: 0.6875rem;
}

.ych-home-grid .ych-featured-event__content {
	justify-content: flex-start;
	padding: clamp(1.5rem, 2.5vw, 2.25rem);
}

.ych-home-grid .ych-featured-event__label {
	margin-bottom: 0.8rem;
	font-size: 0.6875rem;
}

.ych-home-grid .ych-featured-event__heading {
	font-size: clamp(1.75rem, 2.8vw, 2.4rem);
	letter-spacing: -0.04em;
	line-height: 1.08;
	text-wrap: balance;
}

.ych-home-grid .ych-featured-event__description {
	display: block;
	overflow: visible;
	margin-top: 1rem;
	color: var(--ych-text-secondary);
	font-size: 0.875rem;
	line-height: 1.65;
	-webkit-line-clamp: unset;
}

.ych-home-grid .ych-featured-event__details {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.ych-home-grid .ych-featured-event__detail {
	min-width: 0;
	flex: 1 1 7rem;
	padding: 0.7rem 0.8rem;
	border: 0.0625rem solid rgba(255, 255, 255, 0.09);
	border-radius: 0.75rem;
	background: rgba(8, 22, 39, 0.42);
}

.ych-home-grid .ych-featured-event__detail dt {
	display: block;
	margin-bottom: 0.25rem;
	color: var(--ych-text-muted);
	font-size: 0.5625rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.35;
	text-transform: uppercase;
}

.ych-home-grid .ych-featured-event__detail dd {
	color: var(--ych-text-primary);
	font-size: 0.6875rem;
	line-height: 1.4;
}

.ych-home-grid .ych-featured-event__actions {
	flex-direction: column;
	gap: 0.65rem;
	padding-top: 1.25rem;
}

.ych-home-grid .ych-featured-event__button {
	width: 100%;
	min-height: 3rem;
	padding: 0.75rem 1rem;
	border-radius: 0.8rem;
	font-size: 0.6875rem;
	line-height: 1.3;
	transition: border-color var(--ych-transition), box-shadow var(--ych-transition), filter var(--ych-transition), transform var(--ych-transition);
}

.ych-home-grid .ych-featured-event__button--primary {
	box-shadow: 0 0.75rem 1.75rem rgba(100, 152, 208, 0.14);
}

.ych-home-grid .ych-featured-event__button--secondary {
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(7, 18, 33, 0.5);
}

.ych-home-grid .ych-featured-event__button:hover,
.ych-home-grid .ych-featured-event__button:focus-visible {
	filter: brightness(1.08);
	transform: translateY(-0.125rem);
}

@media (max-width: 68.75rem) {
	.ych-home-grid__inner {
		grid-template-areas:
			"featured featured"
			"past resources";
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ych-home-grid__column:last-child {
		grid-column: auto;
		padding-top: 0;
		border-top: 0;
	}

	.ych-home-grid .ych-featured-event__card {
		min-height: 0;
		height: auto;
		max-height: none;
		grid-template-columns: minmax(0, 1fr);
	}

	.ych-home-grid .ych-featured-event__visual {
		min-height: 17rem;
		aspect-ratio: 16 / 7;
	}

	.ych-home-grid .ych-featured-event__content { min-height: 0; }

	.ych-home-grid__column,
	.ych-home-grid .ych-featured-event { min-height: 0; }
}

@media (max-width: 45rem) {
	.ych-home-grid__inner {
		grid-template-areas:
			"featured"
			"past"
			"resources";
		grid-template-columns: minmax(0, 1fr);
		gap: var(--ych-space-5);
		padding-block: var(--ych-space-6);
	}

	.ych-home-grid__column,
	.ych-home-grid .ych-featured-event,
	.ych-home-grid__column:last-child {
		grid-column: auto;
		padding: 0;
		border: 0;
	}

	.ych-home-grid .ych-featured-event__visual {
		width: 100%;
		min-height: 0;
		aspect-ratio: 16 / 10;
	}

	.ych-home-grid .ych-featured-event__content { padding: 1.5rem; }
	.ych-home-grid .ych-featured-event__actions { width: 100%; }
	.ych-home-grid .ych-featured-event__button { width: 100%; }

	.ych-home-grid__list a {
		min-height: 0;
		height: auto;
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.ych-home-grid__list li { flex: 0 0 auto; }

	.ych-home-grid__date-badge {
		grid-column: 1 / -1;
		justify-self: start;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ych-home-grid__column-header a,
	.ych-home-grid__column-header a span,
	.ych-home-grid__item-arrow,
	.ych-home-grid__list a,
	.ych-home-grid__resource-list a,
	.ych-home-grid__resource-icon,
	.ych-home-grid .ych-featured-event__card,
	.ych-home-grid .ych-featured-event__image,
	.ych-home-grid .ych-featured-event__button { transition: none; }

	.ych-home-grid__column-header a:hover span,
	.ych-home-grid__column-header a:focus-visible span,
	.ych-home-grid__list a:hover,
	.ych-home-grid__list a:focus-visible,
	.ych-home-grid__resource-list a:hover,
	.ych-home-grid__resource-list a:focus-visible,
	.ych-home-grid__list a:hover .ych-home-grid__item-arrow,
	.ych-home-grid__list a:focus-visible .ych-home-grid__item-arrow,
	.ych-home-grid__resource-list a:hover .ych-home-grid__item-arrow,
	.ych-home-grid__resource-list a:focus-visible .ych-home-grid__item-arrow,
	.ych-home-grid__resource-list a:hover .ych-home-grid__resource-icon,
	.ych-home-grid__resource-list a:focus-visible .ych-home-grid__resource-icon,
	.ych-home-grid .ych-featured-event__card:hover,
	.ych-home-grid .ych-featured-event__card:focus-within,
	.ych-home-grid .ych-featured-event__card:hover .ych-featured-event__image,
	.ych-home-grid .ych-featured-event__card:focus-within .ych-featured-event__image,
	.ych-home-grid .ych-featured-event__button:hover,
	.ych-home-grid .ych-featured-event__button:focus-visible { transform: none; }
}

@media (forced-colors: active) {
	.ych-home-grid__list a,
	.ych-home-grid__resource-list a,
	.ych-home-grid .ych-featured-event__card,
	.ych-home-grid .ych-featured-event__button { border: 0.125rem solid CanvasText; }
}


/* ========================================================================
 * success stories
 * ===================================================================== */

/**
 * Editorial Success Stories band.
 */

.ych-success-stories {
	width: 100%;
	background: var(--ych-bg-primary);
	color: var(--ych-text-primary);
	font-family: var(--ych-font-body);
}

.ych-success-stories *,
.ych-success-stories *::before,
.ych-success-stories *::after { box-sizing: border-box; }

.ych-success-stories__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr) auto;
	align-items: center;
	gap: var(--ych-space-4);
	padding-block: var(--ych-space-6);
}

.ych-success-stories__inner::before {
	position: absolute;
	z-index: 0;
	inset: var(--ych-space-2) 0;
	border: 0.0625rem solid var(--ych-border);
	border-radius: var(--ych-radius-panel);
	background:
		radial-gradient(circle at 18% 50%, rgba(120, 169, 228, 0.1), transparent 22rem),
		linear-gradient(110deg, var(--ych-bg-card), #161f39);
	box-shadow: var(--ych-shadow-medium);
	content: "";
}

.ych-success-stories__header,
.ych-success-stories__grid,
.ych-success-stories__action {
	position: relative;
	z-index: 1;
}

.ych-success-stories__header {
	margin: 0;
	padding-left: var(--ych-space-4);
	text-align: left;
}

.ych-success-stories__label {
	margin: 0 0 0.5rem;
	color: var(--ych-accent-blue);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.4;
	text-transform: uppercase;
}

.ych-success-stories__heading {
	margin: 0;
	color: var(--ych-text-primary);
	font-family: var(--ych-font-heading);
	font-size: clamp(2rem, 3.6vw, 3.25rem);
	font-weight: 700;
	letter-spacing: -0.035em;
	line-height: 1.05;
}

.ych-success-stories__intro {
	margin: 0.75rem 0 0;
	color: var(--ych-text-secondary);
	font-size: 0.8125rem;
	line-height: 1.6;
}

.ych-success-stories__grid {
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ych-success-stories__card {
	display: grid;
	min-height: 0;
	grid-template-columns: 4.25rem minmax(0, 1fr);
	align-items: center;
	gap: var(--ych-space-3);
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.ych-success-stories__portrait {
	position: relative;
	display: grid;
	width: 4.25rem;
	height: 4.25rem;
	place-items: center;
	border: 0.125rem solid var(--ych-border-strong);
	border-radius: 50%;
	background: var(--ych-accent-gradient);
	box-shadow: var(--ych-shadow-small);
}

.ych-success-stories__portrait span {
	position: relative;
	display: block;
	width: 1.35rem;
	height: 1.35rem;
	border-radius: 50%;
	background: var(--ych-bg-primary);
}

.ych-success-stories__portrait span::after {
	position: absolute;
	top: 1.1rem;
	left: 50%;
	width: 2.5rem;
	height: 1.35rem;
	border-radius: 50% 50% 35% 35%;
	background: var(--ych-bg-primary);
	content: "";
	transform: translateX(-50%);
}

.ych-success-stories__quote {
	position: relative;
	margin: 0;
	padding: 0;
	border: 0;
	color: var(--ych-text-primary);
}

.ych-success-stories__quote::before {
	position: absolute;
	top: -1.15rem;
	left: -0.75rem;
	color: rgba(154, 114, 208, 0.3);
	content: "\201C";
	font-family: var(--ych-font-heading);
	font-size: 4rem;
	line-height: 1;
	pointer-events: none;
}

.ych-success-stories__quote p {
	position: relative;
	margin: 0;
	color: var(--ych-text-primary);
	font-family: var(--ych-font-heading);
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	font-weight: 400;
	letter-spacing: -0.015em;
	line-height: 1.4;
}

.ych-success-stories__attribution {
	display: flex;
	grid-column: 2;
	flex-direction: column;
	gap: 0.2rem;
	margin-top: -0.6rem;
	padding: 0;
	border: 0;
}

.ych-success-stories__attribution cite {
	color: var(--ych-text-primary);
	font-size: 0.8125rem;
	font-style: normal;
	font-weight: 700;
}

.ych-success-stories__attribution span {
	color: var(--ych-text-secondary);
	font-size: 0.6875rem;
}

.ych-success-stories__action {
	display: flex;
	margin: 0;
	padding-right: var(--ych-space-4);
}

.ych-success-stories__button {
	display: inline-flex;
	min-height: 3rem;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.25rem;
	border: 0.0625rem solid transparent;
	border-radius: var(--ych-radius-button);
	background: var(--ych-accent-gradient);
	box-shadow: var(--ych-shadow-small);
	color: #07111f;
	font-size: 0.75rem;
	font-weight: 700;
	text-decoration: none;
	transition: box-shadow var(--ych-transition), transform var(--ych-transition);
}

.ych-success-stories__button:hover {
	box-shadow: var(--ych-shadow-medium);
	color: #07111f;
	transform: translateY(-0.125rem);
}

.ych-success-stories__button:focus-visible {
	outline: 0.1875rem solid var(--ych-focus);
	outline-offset: 0.25rem;
}

@media (max-width: 64rem) {
	.ych-success-stories__inner {
		grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
	}

	.ych-success-stories__action {
		grid-column: 1 / -1;
		justify-content: flex-end;
		padding: 0 var(--ych-space-4) 0;
	}
}

@media (max-width: 42rem) {
	.ych-success-stories__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: var(--ych-space-3);
		padding-block: var(--ych-space-5);
	}

	.ych-success-stories__inner::before { inset: 0; }
	.ych-success-stories__header { padding: var(--ych-space-3) var(--ych-space-3) 0; }
	.ych-success-stories__grid { padding-inline: var(--ych-space-3); }
	.ych-success-stories__action {
		grid-column: auto;
		justify-content: stretch;
		padding: 0 var(--ych-space-3) var(--ych-space-3);
	}

	.ych-success-stories__button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
	.ych-success-stories__button { transition: none; }
	.ych-success-stories__button:hover { transform: none; }
}

@media (forced-colors: active) {
	.ych-success-stories__portrait,
	.ych-success-stories__button { border: 0.125rem solid CanvasText; }
}


/* ========================================================================
 * partners
 * ===================================================================== */

/**
 * YouthConnectHub partner showcase.
 */

.ych-partners {
	width: 100%;
	background: var(--ych-bg-secondary);
	color: var(--ych-text-primary);
	font-family: var(--ych-font-body);
}

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

.ych-partners__inner {
	display: grid;
	gap: var(--ych-space-4);
	padding-block: var(--ych-space-6);
}

.ych-partners__header {
	display: grid;
	justify-items: center;
	gap: var(--ych-space-1);
	max-width: 48rem;
	margin: 0 auto;
	text-align: center;
}

.ych-partners__label {
	margin: 0;
	color: var(--ych-accent-purple);
	font-size: var(--ych-type-label);
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.4;
}

.ych-partners__heading {
	margin: 0;
	color: var(--ych-text-primary);
	font-family: var(--ych-font-heading);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.1;
}

.ych-partners__intro {
	max-width: 42rem;
	margin: var(--ych-space-1) 0 0;
	color: var(--ych-text-secondary);
	font-size: 0.9375rem;
	line-height: var(--ych-leading-body);
}

.ych-partners__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--ych-space-3);
	margin: 0;
	padding: 0;
	list-style: none;
}

.ych-partners .ych-partners__logo {
	display: block;
	width: 100% !important;
	max-width: 10.5rem !important;
	height: 4.75rem !important;
	object-fit: contain;
	transition: transform var(--ych-transition);
}

.ych-partners__card {
	display: grid;
	min-height: 8rem;
	place-items: center;
	padding: var(--ych-space-3);
	border: 0.0625rem solid rgba(154, 114, 208, 0.28);
	border-radius: var(--ych-radius-card);
	background: rgba(16, 32, 51, 0.92);
	box-shadow: var(--ych-shadow-small);
	transition: border-color var(--ych-transition), box-shadow var(--ych-transition), transform var(--ych-transition);
}

.ych-partners__card:hover,
.ych-partners__card:focus-within {
	border-color: rgba(154, 114, 208, 0.62);
	box-shadow: var(--ych-shadow-medium);
	transform: translateY(-0.125rem);
}

.ych-partners__card:hover .ych-partners__logo,
.ych-partners__card:focus-within .ych-partners__logo { transform: scale(1.035); }

.ych-partners__link {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	border-radius: calc(var(--ych-radius-card) - 0.25rem);
}

.ych-partners__link:focus-visible {
	outline: 0.1875rem solid var(--ych-focus);
	outline-offset: 0.25rem;
}

.ych-partners__action {
	display: flex;
	justify-content: center;
}

.ych-partners .ych-partners__button {
	min-height: var(--ych-control-height);
	text-decoration: none;
}

.ych-partners__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	color: var(--ych-text-secondary);
	text-align: center;
}

.ych-partners__mark {
	display: block;
	width: 1.4rem;
	height: 1.4rem;
	border: 0.1rem solid var(--ych-text-muted);
	border-radius: 50%;
}

.ych-partners__name {
	color: var(--ych-text-secondary);
	font-size: 0.6875rem;
	font-weight: 700;
}

@media (max-width: 64rem) {
	.ych-partners__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 42rem) {
	.ych-partners__inner {
		padding-block: var(--ych-space-4);
	}

	.ych-partners__grid { gap: var(--ych-space-2); }
	.ych-partners__card {
		min-height: 7rem;
		padding: var(--ych-space-2);
	}
	.ych-partners .ych-partners__logo {
		max-width: 8.5rem !important;
		height: 4rem !important;
	}
	.ych-partners .ych-partners__button { width: 100%; }
}

@media (max-width: 24rem) {
	.ych-partners__grid { grid-template-columns: minmax(0, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
	.ych-partners__card,
	.ych-partners__logo { transition: none; }
	.ych-partners__card:hover,
	.ych-partners__card:focus-within,
	.ych-partners__card:hover .ych-partners__logo,
	.ych-partners__card:focus-within .ych-partners__logo { transform: none; }
}

@media (forced-colors: active) {
	.ych-partners__card,
	.ych-partners__mark { border: 0.125rem solid CanvasText; }
}


/* ========================================================================
 * resources
 * ===================================================================== */

/**
 * YouthConnectHub latest resources section.
 *
 * Component styles are intentionally scoped to .ych-resources.
 */

.ych-resources {
	--ych-resources-navy: #0a1220;
	--ych-resources-blue: #6498d0;
	--ych-resources-purple: #7852a8;
	--ych-resources-white: #ffffff;
	--ych-resources-background: #f7f9fc;
	--ych-resources-copy: #4b5565;
	--ych-resources-border: #dfe5ee;
	width: 100%;
	background: var(--ych-resources-background);
	color: var(--ych-resources-navy);
	font-family: var(--ych-font-body);
}

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

.ych-resources__inner {
	padding-block: clamp(4rem, 8vw, 7rem);
}

.ych-resources__header {
	max-width: 49rem;
	margin: 0 auto clamp(2.5rem, 5vw, 4rem);
	text-align: center;
}

.ych-resources__label {
	margin: 0 0 0.875rem;
	color: var(--ych-resources-purple);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.4;
	text-transform: uppercase;
}

.ych-resources__heading {
	margin: 0;
	color: var(--ych-resources-navy);
	font-family: var(--ych-font-heading);
	font-size: clamp(2.25rem, 5vw, 4rem);
	font-weight: 700;
	letter-spacing: -0.035em;
	line-height: 1.05;
	text-wrap: balance;
}

.ych-resources__intro {
	max-width: 44rem;
	margin: 1rem auto 0;
	color: var(--ych-resources-copy);
	font-size: clamp(1rem, 1.5vw, 1.1875rem);
	line-height: 1.7;
	text-wrap: balance;
}

.ych-resources__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.5rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.ych-resources__item {
	min-width: 0;
}

.ych-resources__card {
	display: flex;
	overflow: hidden;
	height: 100%;
	flex-direction: column;
	border: 0.0625rem solid var(--ych-resources-border);
	border-radius: 1.25rem;
	background: var(--ych-resources-white);
	box-shadow: 0 1rem 3rem rgba(10, 18, 32, 0.07);
	transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.ych-resources__card:hover,
.ych-resources__card:focus-within {
	border-color: rgba(120, 82, 168, 0.42);
	box-shadow: 0 1.5rem 3.5rem rgba(10, 18, 32, 0.12);
	transform: translateY(-0.375rem);
}

.ych-resources__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: var(--ych-resources-navy);
}

.ych-resources__thumbnail {
	position: absolute;
	inset: 0;
	display: block;
	background:
		radial-gradient(circle at 26% 24%, rgba(255, 255, 255, 0.2), transparent 30%),
		linear-gradient(135deg, var(--ych-resources-blue), var(--ych-resources-purple));
}

.ych-resources__image {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ych-resources__thumbnail::before,
.ych-resources__thumbnail::after {
	position: absolute;
	border: 0.0625rem solid rgba(255, 255, 255, 0.35);
	content: "";
}

.ych-resources__thumbnail::before {
	top: 20%;
	right: 12%;
	width: 42%;
	height: 58%;
	border-radius: 0.75rem;
	background: rgba(10, 18, 32, 0.12);
	transform: rotate(6deg);
}

.ych-resources__thumbnail::after {
	right: 23%;
	bottom: 17%;
	width: 36%;
	height: 54%;
	border-radius: 0.75rem;
	background: rgba(255, 255, 255, 0.12);
	transform: rotate(-5deg);
}

.ych-resources__badge {
	position: absolute;
	z-index: 1;
	top: 1rem;
	left: 1rem;
	padding: 0.55rem 0.75rem;
	border: 0.0625rem solid rgba(255, 255, 255, 0.55);
	border-radius: 999px;
	background: rgba(10, 18, 32, 0.88);
	color: var(--ych-resources-white);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.2;
}

.ych-resources__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: flex-start;
	padding: clamp(1.5rem, 3vw, 2rem);
}

.ych-resources__card-title {
	margin: 0;
	color: var(--ych-resources-navy);
	font-family: var(--ych-font-heading);
	font-size: clamp(1.375rem, 2vw, 1.75rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.ych-resources__description {
	margin: 0.875rem 0 1.5rem;
	color: var(--ych-resources-copy);
	font-size: 0.9375rem;
	line-height: 1.7;
}

.ych-resources__link {
	display: inline-flex;
	min-height: 2.75rem;
	align-items: center;
	gap: 0.625rem;
	margin-top: auto;
	color: #5f3e8c;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: underline;
	text-decoration-color: rgba(120, 82, 168, 0.45);
	text-decoration-thickness: 0.125rem;
	text-underline-offset: 0.3rem;
	transition: color 180ms ease, text-decoration-color 180ms ease;
}

.ych-resources__link:hover {
	color: var(--ych-resources-navy);
	text-decoration-color: var(--ych-resources-navy);
}

.ych-resources__link:focus-visible,
.ych-resources__button:focus-visible {
	outline: 0.1875rem solid var(--ych-resources-purple);
	outline-offset: 0.25rem;
}

.ych-resources__link span {
	font-size: 1.125rem;
	line-height: 1;
}

.ych-resources__action {
	display: flex;
	justify-content: center;
	margin-top: clamp(2rem, 5vw, 3.5rem);
}

.ych-resources__button {
	display: inline-flex;
	min-height: 3.25rem;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.4rem;
	border: 0.125rem solid var(--ych-resources-navy);
	border-radius: 0.4rem;
	background: var(--ych-resources-navy);
	color: var(--ych-resources-white);
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.ych-resources__button:hover {
	border-color: var(--ych-resources-purple);
	background: var(--ych-resources-purple);
	color: var(--ych-resources-white);
	transform: translateY(-0.125rem);
}

@media (max-width: 64rem) {
	.ych-resources__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 42rem) {
	.ych-resources__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.ych-resources__button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ych-resources__card,
	.ych-resources__link,
	.ych-resources__button {
		transition: none;
	}

	.ych-resources__card:hover,
	.ych-resources__card:focus-within,
	.ych-resources__button:hover {
		transform: none;
	}
}

@media (forced-colors: active) {
	.ych-resources__card,
	.ych-resources__badge,
	.ych-resources__button {
		border: 0.125rem solid CanvasText;
	}

	.ych-resources__link:focus-visible,
	.ych-resources__button:focus-visible {
		outline-color: Highlight;
	}
}


/* ========================================================================
 * newsletter
 * ===================================================================== */

/**
 * YouthConnectHub newsletter callout.
 */

.ych-newsletter {
	width: 100%;
	background: var(--ych-bg-primary);
	color: #fff;
	font-family: var(--ych-font-body);
}

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

.ych-newsletter__inner {
	padding-block: clamp(2.25rem, 4vw, 4rem);
}

.ych-newsletter__panel {
	position: relative;
	isolation: isolate;
	display: grid;
	overflow: hidden;
	width: 100%;
	grid-template-columns: minmax(0, 1.05fr) minmax(30rem, 1fr);
	align-items: center;
	gap: clamp(2.25rem, 4vw, 4rem);
	padding: clamp(2rem, 4vw, 3.5rem);
	border: 0.0625rem solid var(--ych-border-strong);
	border-radius: 1.75rem;
	background:
		radial-gradient(circle at 94% 8%, rgba(154, 114, 208, 0.18), transparent 34%),
		linear-gradient(135deg, var(--ych-bg-card), var(--ych-bg-secondary));
	box-shadow: var(--ych-shadow-large), inset 0 0.0625rem 0 rgba(255, 255, 255, 0.06);
}

.ych-newsletter__glow {
	position: absolute;
	z-index: -1;
	right: -8rem;
	bottom: -9rem;
	width: 24rem;
	height: 24rem;
	border-radius: 50%;
	background: rgba(154, 114, 208, 0.14);
	filter: blur(4rem);
	pointer-events: none;
}

.ych-newsletter__content {
	display: grid;
	width: 100%;
	max-width: 46rem;
	min-height: 100%;
	grid-template-columns: minmax(0, 1fr);
	align-items: center;
	align-content: center;
}

.ych-newsletter__copy {
	display: grid;
	min-width: 0;
	align-content: center;
}

.ych-newsletter__label {
	margin: 0 0 0.75rem;
	color: var(--ych-accent-purple);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.4;
	text-transform: uppercase;
}

.ych-newsletter__heading {
	max-width: 38.75rem;
	margin: 0;
	color: #fff;
	font-family: var(--ych-font-heading);
	font-size: clamp(1.85rem, 2.5vw, 2.5rem);
	font-weight: 700;
	letter-spacing: -0.035em;
	line-height: 1.05;
}

.ych-newsletter__heading::after {
	display: block;
	width: 4rem;
	height: 0.25rem;
	margin-top: 1rem;
	border-radius: 999px;
	background: rgb(218, 134, 57);
	content: "";
}

.ych-newsletter__description {
	max-width: 35rem;
	margin: 1.15rem 0 0;
	color: var(--ych-text-secondary);
	font-size: clamp(0.95rem, 1vw, 1.05rem);
	line-height: 1.65;
}

.ych-newsletter__form {
	width: 100%;
	padding: 0 0 0 clamp(2rem, 3vw, 3rem);
	border: 0;
	border-left: 0.0625rem solid var(--ych-border-strong);
	background: transparent;
}

.ych-newsletter__form > label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.ych-newsletter__interests {
	min-width: 0;
	margin: 0 0 1.25rem;
	padding: 0;
	border: 0;
}

.ych-newsletter__interests legend {
	margin: 0 0 0.75rem;
	padding: 0;
	color: var(--ych-text-primary);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0;
}

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

.ych-newsletter__interest {
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 3.75rem;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1rem;
	border: 0.0625rem solid var(--ych-border-strong);
	border-radius: 0.875rem;
	background: rgba(9, 19, 34, 0.68);
	color: var(--ych-text-primary);
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.25;
	cursor: pointer;
	transition: border-color 200ms ease, background-color 200ms ease, transform 200ms ease;
}

.ych-newsletter__interest:hover {
	border-color: var(--ych-accent-purple);
	background: rgba(9, 19, 34, 0.86);
}

.ych-newsletter__interest input {
	width: 1.125rem;
	height: 1.125rem;
	flex: 0 0 auto;
	margin: 0;
	accent-color: var(--ych-accent-purple);
}

.ych-newsletter__interest:has(input:checked) {
	border-color: var(--ych-accent-border);
	background: rgba(154, 114, 208, 0.12);
}

.ych-newsletter__interest:has(input:focus-visible) {
	outline: 0.1875rem solid var(--ych-focus);
	outline-offset: 0.15rem;
}

.ych-newsletter__controls {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.875rem;
}

.ych-newsletter .ych-newsletter__input {
	width: 100%;
	min-width: 0;
	min-height: 4rem;
	padding: 0 1.125rem;
	border: 0.0625rem solid var(--ych-border-strong);
	border-radius: 1rem;
	background: rgba(9, 19, 34, 0.88);
	color: var(--ych-text-primary);
	font: inherit;
	font-size: 0.95rem;
}

.ych-newsletter .ych-newsletter__input::placeholder {
	color: var(--ych-text-muted);
	opacity: 1;
}

.ych-newsletter .ych-newsletter__button {
	display: inline-flex;
	flex: 0 0 auto;
	min-height: 4rem;
	align-items: center;
	justify-content: center;
	padding: 0 2rem;
	border: 0;
	border-radius: 0.875rem;
	background: linear-gradient(135deg, var(--ych-accent-blue), var(--ych-accent-purple));
	color: var(--ych-bg-primary);
	font-size: 0.95rem;
	font-weight: 700;
	white-space: nowrap;
	cursor: pointer;
	transition: box-shadow 250ms ease, filter 250ms ease, transform 250ms ease;
}

.ych-newsletter__button:hover {
	filter: brightness(1.05);
	box-shadow: 0 0.875rem 1.75rem rgba(47, 31, 100, 0.28);
	transform: translateY(-0.125rem);
}

.ych-newsletter__input:focus,
.ych-newsletter__input:focus-visible {
	border-color: rgba(157, 183, 255, 0.72);
	outline: 0;
	box-shadow: 0 0 0 0.25rem rgba(115, 145, 255, 0.14);
}

.ych-newsletter__button:focus-visible {
	outline: 0.1875rem solid var(--ych-focus);
	outline-offset: 0.2rem;
}

.ych-newsletter__note {
	margin: 1rem 0 0;
	color: var(--ych-text-secondary);
	font-size: 0.8rem;
	line-height: 1.4;
}

.ych-newsletter__status {
	min-height: 1px;
	margin: 0;
	color: #fff;
	font-size: 0.75rem;
}

.ych-newsletter__consent {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	color: rgba(244, 246, 251, 0.86);
	font-size: 0.82rem;
	line-height: 1.55;
}

.ych-newsletter__consent input {
	width: 1.1rem;
	height: 1.1rem;
	flex: 0 0 auto;
	margin-block-start: 0.15rem;
	accent-color: var(--ych-accent-blue);
}

.ych-newsletter__consent a {
	color: var(--ych-accent-blue);
	text-underline-offset: 0.2em;
}

.ych-newsletter__consent input:focus-visible {
	outline: 0.1875rem solid var(--ych-accent-blue);
	outline-offset: 0.1875rem;
}

.ych-newsletter__status.is-error {
	color: #ffb8b8;
}

@media (max-width: 62.5rem) {
	.ych-newsletter__panel {
		grid-template-columns: minmax(0, 1fr);
		gap: 2rem;
	}

	.ych-newsletter__content { max-width: none; }

	.ych-newsletter__form {
		padding: 2rem 0 0;
		border-left: 0;
		border-top: 0.0625rem solid var(--ych-border-strong);
	}
}

@media (max-width: 42.5rem) {
	.ych-newsletter__inner { padding-block: 2rem; }

	.ych-newsletter__panel {
		padding: 1.5rem 1.25rem;
		border-radius: 1.375rem;
	}

	.ych-newsletter__content {
		grid-template-columns: minmax(0, 1fr);
		align-items: start;
	}

	.ych-newsletter__controls { grid-template-columns: minmax(0, 1fr); }
	.ych-newsletter__interest-grid { grid-template-columns: minmax(0, 1fr); }
	.ych-newsletter__button { width: 100%; }
	.ych-newsletter__heading { font-size: clamp(1.9rem, 10vw, 2.5rem); }
}

@media (prefers-reduced-motion: reduce) {
	.ych-newsletter__button { transition: none; }
	.ych-newsletter__button:hover { transform: none; }
	.ych-newsletter__interest { transition: none; }
}

@media (forced-colors: active) {
	.ych-newsletter__panel,
	.ych-newsletter__form,
	.ych-newsletter__input,
	.ych-newsletter__button { border: 0.125rem solid CanvasText; }
}

/* ========================================================================
 * Homepage free resources
 * ===================================================================== */

.ych-homepage > .ych-home-resources { order: 3; }

.ych-home-resources {
	--ych-home-resources-gold: rgb(218, 134, 57);
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding-block: clamp(3rem, 6vw, 5rem);
	border-top: 0.0625rem solid rgba(154, 114, 208, 0.2);
	background:
		radial-gradient(circle at 88% 18%, rgba(154, 114, 208, 0.15), transparent 25rem),
		radial-gradient(circle at 8% 86%, rgba(218, 134, 57, 0.08), transparent 22rem),
		var(--ych-bg-primary);
	color: var(--ych-text-primary);
}

.ych-home-resources::before {
	position: absolute;
	z-index: -1;
	inset: -17rem -11rem auto auto;
	width: 38rem;
	height: 38rem;
	border: 0.0625rem solid rgba(154, 114, 208, 0.18);
	border-radius: 42% 58% 61% 39% / 46% 38% 62% 54%;
	background: linear-gradient(145deg, rgba(154, 114, 208, 0.11), transparent 62%);
	content: "";
	pointer-events: none;
	transform: rotate(-12deg);
}

.ych-home-resources::after {
	position: absolute;
	z-index: -1;
	inset: auto auto -18rem -13rem;
	width: 34rem;
	height: 34rem;
	border: 0.0625rem solid rgba(218, 134, 57, 0.13);
	border-radius: 58% 42% 37% 63% / 42% 55% 45% 58%;
	background: linear-gradient(35deg, rgba(154, 114, 208, 0.08), transparent 64%);
	content: "";
	pointer-events: none;
	transform: rotate(18deg);
}

.ych-home-resources *,
.ych-home-resources *::before,
.ych-home-resources *::after { box-sizing: border-box; }

.ych-home-resources__inner {
	display: flex;
	flex-direction: column;
	gap: clamp(2rem, 4vw, 3.25rem);
}

.ych-home-resources__header {
	position: relative;
	max-width: 50rem;
	margin-inline: auto;
	padding-bottom: 1.75rem;
	text-align: center;
}

.ych-home-resources__header::after {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 5rem;
	height: 0.1875rem;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--ych-accent-purple), var(--ych-home-resources-gold));
	content: "";
	transform: translateX(-50%);
}

.ych-home-resources .ych-home-resources__eyebrow {
	display: inline-flex;
	min-height: 2rem;
	align-items: center;
	gap: 0.625rem;
	margin: 0 0 0.75rem;
	padding: 0.35rem 0.75rem;
	border: 0.0625rem solid rgba(218, 134, 57, 0.34);
	border-radius: 999px;
	background: rgba(218, 134, 57, 0.06);
	color: var(--ych-home-resources-gold);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	line-height: 1.4;
}

.ych-home-resources__eyebrow::before {
	width: 1.5rem;
	height: 0.125rem;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--ych-accent-purple), var(--ych-home-resources-gold));
	content: "";
}

.ych-home-resources .ych-home-resources__heading {
	margin: 0;
	color: var(--ych-text-primary);
	font-family: var(--ych-font-heading);
	font-size: clamp(2.125rem, 4vw, 3.5rem);
	letter-spacing: -0.035em;
	line-height: 1.05;
	text-wrap: balance;
}

.ych-home-resources .ych-home-resources__intro {
	max-width: 43rem;
	margin: 1rem auto 0;
	color: var(--ych-text-secondary);
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	line-height: 1.75;
}

.ych-home-resources .ych-home-resources__grid {
	display: grid;
	grid-auto-rows: 1fr;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.25rem, 2.5vw, 2rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.ych-home-resources__item { min-width: 0; }

.ych-home-resource-card {
	display: flex;
	overflow: hidden;
	height: 100%;
	min-height: 100%;
	flex-direction: column;
	border: 0.0625rem solid rgba(154, 114, 208, 0.3);
	border-radius: var(--ych-radius-card);
	background: linear-gradient(150deg, var(--ych-bg-card-hover), var(--ych-bg-secondary));
	box-shadow: var(--ych-shadow-small), 0 0 2rem rgba(154, 114, 208, 0.04);
	color: var(--ych-text-primary);
	text-decoration: none;
	transition: border-color var(--ych-transition), box-shadow var(--ych-transition), transform var(--ych-transition);
}

.ych-home-resource-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: var(--ych-bg-secondary);
}

.ych-home-resource-card__media::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 52%, rgba(9, 19, 34, 0.64));
	content: "";
}

.ych-home-resource-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 420ms ease;
}

.ych-home-resource-card__accent {
	position: absolute;
	z-index: 1;
	right: 0;
	bottom: 0;
	left: 0;
	width: auto;
	height: 0.25rem;
	background: linear-gradient(90deg, var(--ych-accent-purple), var(--ych-home-resources-gold));
	transform-origin: left center;
	transition: transform var(--ych-transition);
}

.ych-home-resource-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: flex-start;
	padding: clamp(1.5rem, 2.5vw, 2rem);
}

.ych-home-resource-card__title {
	margin: 0;
	color: var(--ych-text-primary);
	font-family: var(--ych-font-heading);
	font-size: clamp(1.5rem, 2vw, 1.875rem);
	letter-spacing: -0.025em;
	line-height: 1.12;
}

.ych-home-resource-card__description {
	display: block;
	margin-top: 1rem;
	color: var(--ych-text-secondary);
	font-size: 1rem;
	line-height: 1.65;
}

.ych-home-resource-card__action {
	display: inline-flex;
	min-height: 2.75rem;
	align-items: center;
	gap: 0.5rem;
	margin-top: auto;
	padding: 0.7rem 1rem;
	border: 0.0625rem solid rgba(218, 134, 57, 0.44);
	border-radius: var(--ych-radius-button);
	background: linear-gradient(135deg, var(--ych-accent-ink), var(--ych-accent-purple));
	box-shadow: 0 0.625rem 1.5rem rgba(9, 19, 34, 0.24);
	color: var(--ych-text-primary);
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.2;
	transition: background-color var(--ych-transition), border-color var(--ych-transition), box-shadow var(--ych-transition), transform var(--ych-transition);
}

.ych-home-resource-card__action span {
	display: inline-block;
	transition: transform var(--ych-transition);
}

.ych-home-resource-card:hover,
.ych-home-resource-card:focus-visible {
	border-color: rgba(154, 114, 208, 0.62);
	box-shadow: var(--ych-shadow-medium), 0 0 2.25rem rgba(154, 114, 208, 0.12);
	transform: translateY(-0.35rem);
}

.ych-home-resource-card:focus-visible {
	outline: 0.1875rem solid var(--ych-focus);
	outline-offset: 0.25rem;
}

.ych-home-resource-card:hover .ych-home-resource-card__image,
.ych-home-resource-card:focus-visible .ych-home-resource-card__image { transform: scale(1.035); }

.ych-home-resource-card:hover .ych-home-resource-card__accent,
.ych-home-resource-card:focus-visible .ych-home-resource-card__accent { transform: scaleX(0.94); }

.ych-home-resource-card:hover .ych-home-resource-card__action,
.ych-home-resource-card:focus-visible .ych-home-resource-card__action {
	border-color: var(--ych-home-resources-gold);
	box-shadow: 0 0.875rem 1.75rem rgba(9, 19, 34, 0.32), 0 0 1rem rgba(154, 114, 208, 0.12);
}

.ych-home-resource-card:hover .ych-home-resource-card__action span,
.ych-home-resource-card:focus-visible .ych-home-resource-card__action span { transform: translateX(0.25rem); }

.ych-home-resources__footer {
	display: flex;
	justify-content: center;
}

.ych-home-resources .ych-home-resources__all {
	gap: 0.625rem;
	border-color: rgba(218, 134, 57, 0.7);
	background: rgba(13, 25, 41, 0.72);
	background-image: none;
	box-shadow: none;
	color: var(--ych-text-primary);
}

.ych-home-resources .ych-home-resources__all:visited { color: var(--ych-text-primary); }

.ych-home-resources .ych-home-resources__all:hover:not([aria-disabled="true"], :disabled),
.ych-home-resources .ych-home-resources__all:focus-visible {
	border-color: var(--ych-home-resources-gold);
	background: linear-gradient(135deg, var(--ych-accent-ink), var(--ych-accent-purple));
	box-shadow: 0 0.875rem 2rem rgba(9, 19, 34, 0.3), 0 0 1.25rem rgba(154, 114, 208, 0.12);
	color: var(--ych-text-primary);
}

.ych-home-resources__all span {
	display: inline-block;
	transition: transform var(--ych-transition);
}

.ych-home-resources__all:hover span,
.ych-home-resources__all:focus-visible span { transform: translateX(0.25rem); }

@media (max-width: 64rem) {
	.ych-home-resources .ych-home-resources__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

	.ych-home-resources__item:last-child:nth-child(odd) {
		width: calc((100% - clamp(1.25rem, 2.5vw, 2rem)) / 2);
		grid-column: 1 / -1;
		justify-self: center;
	}
}

@media (max-width: 42rem) {
	.ych-home-resources .ych-home-resources__grid { grid-template-columns: minmax(0, 1fr); }

	.ych-home-resources__item:last-child:nth-child(odd) {
		width: 100%;
		grid-column: auto;
	}

	.ych-home-resources__header {
		width: 100%;
		text-align: left;
	}

	.ych-home-resources__header::after {
		right: auto;
		left: 0;
		transform: none;
	}

	.ych-home-resources__intro { margin-inline: 0; }
	.ych-home-resources__footer { justify-content: stretch; }
	.ych-home-resources__all { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
	.ych-home-resource-card,
	.ych-home-resource-card__image,
	.ych-home-resource-card__accent,
	.ych-home-resource-card__action,
	.ych-home-resource-card__action span,
	.ych-home-resources__all span { transition: none; }

	.ych-home-resource-card:hover,
	.ych-home-resource-card:focus-visible,
	.ych-home-resource-card:hover .ych-home-resource-card__image,
	.ych-home-resource-card:focus-visible .ych-home-resource-card__image { transform: none; }
}

@media (forced-colors: active) {
	.ych-home-resource-card { border: 0.125rem solid CanvasText; }
}

/* ========================================================================
 * Homepage impact
 * ===================================================================== */

.ych-homepage > .ych-impact { order: 3; }

.ych-impact {
	--ych-impact-gold: rgb(218, 134, 57);
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding-block: var(--ych-section-space-compact);
	border-top: 0.0625rem solid rgba(154, 114, 208, 0.18);
	background:
		radial-gradient(circle at 12% 18%, rgba(154, 114, 208, 0.12), transparent 23rem),
		radial-gradient(circle at 90% 84%, rgba(218, 134, 57, 0.08), transparent 20rem),
		var(--ych-bg-secondary);
	color: var(--ych-text-primary);
	font-family: var(--ych-font-body);
}

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

.ych-impact__inner {
	display: grid;
	gap: var(--ych-space-5);
}

.ych-impact__header {
	max-width: 48rem;
	margin-inline: auto;
	text-align: center;
}

.ych-impact .ych-impact__eyebrow {
	margin: 0 0 var(--ych-space-2);
	color: var(--ych-impact-gold);
	font-size: var(--ych-type-label);
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.4;
	text-transform: uppercase;
}

.ych-impact .ych-impact__heading {
	margin: 0;
	color: var(--ych-text-primary);
	font-family: var(--ych-font-heading) !important;
	font-size: var(--ych-type-h2) !important;
	font-weight: 700 !important;
	letter-spacing: -0.035em !important;
	line-height: var(--ych-leading-heading) !important;
	text-wrap: balance;
}

.ych-impact .ych-impact__intro {
	max-width: 42rem;
	margin: var(--ych-space-2) auto 0;
	color: var(--ych-text-secondary);
	font-size: var(--ych-type-body);
	line-height: var(--ych-leading-body);
}

.ych-impact .ych-impact__grid {
	display: grid;
	grid-auto-rows: 1fr;
	grid-template-columns: repeat(var(--ych-impact-columns, 4), minmax(0, 1fr));
	gap: var(--ych-space-3);
	margin: 0;
	padding: 0;
	list-style: none;
}

.ych-impact__item { min-width: 0; }

.ych-impact-card {
	position: relative;
	display: flex;
	overflow: hidden;
	height: 100%;
	min-height: 13rem;
	flex-direction: column;
	align-items: flex-start;
	padding: var(--ych-card-padding);
	border: 0.0625rem solid rgba(154, 114, 208, 0.28);
	border-radius: var(--ych-radius-card);
	background: linear-gradient(150deg, rgba(20, 38, 58, 0.96), rgba(9, 19, 34, 0.98));
	box-shadow: var(--ych-shadow-small);
	text-align: left;
	transition: border-color var(--ych-transition), box-shadow var(--ych-transition), opacity 420ms ease, transform 420ms ease;
}

.ych-impact-card::before {
	position: absolute;
	inset: 0 0 auto;
	height: 0.25rem;
	background: linear-gradient(90deg, var(--ych-accent-purple), var(--ych-impact-gold));
	content: "";
}

.ych-impact-card__icon {
	display: inline-grid;
	width: 3rem;
	height: 3rem;
	flex: 0 0 auto;
	place-items: center;
	margin-bottom: var(--ych-space-3);
	border: 0.0625rem solid rgba(154, 114, 208, 0.38);
	border-radius: var(--ych-radius-button);
	background: rgba(154, 114, 208, 0.1);
	color: var(--ych-impact-gold);
}

.ych-impact-card__icon svg {
	width: 1.5rem;
	height: 1.5rem;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.75;
}

.ych-impact-card__value {
	display: flex;
	align-items: baseline;
	gap: 0.125em;
	margin: 0;
	color: var(--ych-text-primary);
	font-family: var(--ych-font-heading);
	font-size: clamp(2.75rem, 4.5vw, 4rem);
	font-weight: 700;
	letter-spacing: -0.045em;
	line-height: 0.95;
	font-variant-numeric: tabular-nums;
}

.ych-impact-card__prefix,
.ych-impact-card__suffix {
	color: var(--ych-impact-gold);
	font-size: 0.52em;
	letter-spacing: -0.02em;
}

.ych-impact-card__label {
	margin: var(--ych-space-2) 0 0;
	color: var(--ych-text-primary);
	font-family: var(--ych-font-heading) !important;
	font-size: clamp(1.125rem, 1.5vw, 1.375rem) !important;
	font-weight: 700 !important;
	letter-spacing: -0.015em !important;
	line-height: 1.2 !important;
}

.ych-impact-card__supporting {
	margin: var(--ych-space-1) 0 0;
	color: var(--ych-text-secondary);
	font-size: 0.875rem;
	line-height: 1.55;
}

.ych-impact-card:hover {
	border-color: rgba(154, 114, 208, 0.55);
	box-shadow: var(--ych-shadow-medium);
	transform: translateY(-0.125rem);
}

.ych-impact.is-enhanced .ych-impact-card {
	opacity: 0;
	transform: translateY(0.75rem);
}

.ych-impact.is-enhanced.is-visible .ych-impact-card {
	opacity: 1;
	transform: translateY(0);
}

.ych-impact.is-enhanced.is-visible .ych-impact__item:nth-child(2) .ych-impact-card {
	transition-delay: 70ms;
}

.ych-impact.is-enhanced.is-visible .ych-impact__item:nth-child(3) .ych-impact-card {
	transition-delay: 140ms;
}

.ych-impact.is-enhanced.is-visible .ych-impact__item:nth-child(4) .ych-impact-card {
	transition-delay: 210ms;
}

.ych-impact.is-enhanced.is-visible .ych-impact-card:hover {
	transform: translateY(-0.125rem);
}

@media (max-width: 64rem) {
	.ych-impact .ych-impact__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 42rem) {
	.ych-impact {
		padding-block: var(--ych-section-space-compact);
	}

	.ych-impact__inner { gap: var(--ych-space-4); }
	.ych-impact__header { text-align: left; }
	.ych-impact .ych-impact__intro { margin-inline: 0; }

	.ych-impact .ych-impact__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: var(--ych-space-2);
	}

	.ych-impact-card {
		min-height: 0;
		padding: var(--ych-space-3);
	}
}

@media (prefers-reduced-motion: reduce) {
	.ych-impact-card { transition: none; }

	.ych-impact.is-enhanced .ych-impact-card,
	.ych-impact.is-enhanced.is-visible .ych-impact-card,
	.ych-impact-card:hover {
		opacity: 1;
		transform: none;
	}
}

@media (forced-colors: active) {
	.ych-impact-card,
	.ych-impact-card__icon {
		border: 0.125rem solid CanvasText;
	}
}

/* ========================================================================
 * Homepage Books & Articles
 * ===================================================================== */

.ych-homepage > .ych-home-library { order: 3; }

.ych-home-library {
	--ych-home-library-gold: rgb(218, 134, 57);
	width: 100%;
	overflow: clip;
	padding-block: clamp(4rem, 7vw, 6.5rem);
	border-top: 0.0625rem solid var(--ych-border);
	background: var(--ych-bg-primary);
	color: var(--ych-text-primary);
	font-family: var(--ych-font-body);
}

.ych-home-library *,
.ych-home-library *::before,
.ych-home-library *::after { box-sizing: border-box; }

.ych-home-library__inner {
	display: grid;
	gap: clamp(2.5rem, 4vw, 3.75rem);
}

.ych-home-library__header {
	max-width: 48rem;
}

.ych-home-library__heading {
	margin: 0;
	color: var(--ych-text-primary);
	font-family: var(--ych-font-heading);
	font-size: var(--ych-type-h2);
	letter-spacing: -0.035em;
	line-height: var(--ych-leading-heading);
}

.ych-home-library__heading::after {
	display: block;
	width: 4rem;
	height: 0.2rem;
	margin-top: 1.15rem;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--ych-accent-purple), var(--ych-home-library-gold));
	content: "";
}

.ych-home-library__collection {
	display: grid;
	min-width: 0;
	gap: clamp(1.25rem, 2vw, 1.75rem);
}

.ych-home-library__collection + .ych-home-library__collection {
	padding-top: clamp(1.75rem, 3vw, 2.75rem);
	border-top: 0.0625rem solid var(--ych-border);
}

.ych-home-library__collection-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--ych-space-3);
}

.ych-home-library__collection-title {
	margin: 0;
	color: var(--ych-text-primary);
	font-family: var(--ych-font-heading);
	font-size: var(--ych-type-h3);
	letter-spacing: -0.025em;
	line-height: var(--ych-leading-heading);
}

.ych-home-library__view-all {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 0.5rem;
	color: var(--ych-home-library-gold);
	font-size: 0.875rem;
	font-weight: 800;
	line-height: 1.3;
	text-decoration: none;
	transition: color 160ms ease;
}

.ych-home-library__view-all span { transition: transform 160ms ease; }

.ych-home-library__view-all:hover,
.ych-home-library__view-all:focus-visible { color: var(--ych-text-primary); }

.ych-home-library__view-all:hover span,
.ych-home-library__view-all:focus-visible span { transform: translateX(0.2rem); }

.ych-home-library__track {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: stretch;
	gap: clamp(1rem, 1.5vw, 1.35rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.ych-home-library__track:focus-visible {
	outline: 0.1875rem solid var(--ych-focus);
	outline-offset: 0.25rem;
}

.ych-home-library__item {
	display: flex;
	min-width: 0;
}

.ych-home-library-card {
	position: relative;
	display: flex;
	overflow: hidden;
	width: 100%;
	height: 22rem;
	flex-direction: column;
	border: 0.0625rem solid var(--ych-border-strong);
	border-radius: var(--ych-radius-card);
	background: var(--ych-bg-card);
	box-shadow: var(--ych-shadow-small);
	isolation: isolate;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ych-home-library-card::before {
	position: absolute;
	z-index: 1;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(9, 19, 34, 0.04) 20%,
		rgba(9, 19, 34, 0.45) 52%,
		rgba(9, 19, 34, 0.92) 76%,
		rgba(9, 19, 34, 0.99) 100%
	);
	content: "";
	pointer-events: none;
}

.ych-home-library-card:hover {
	border-color: color-mix(in srgb, var(--ych-accent-purple) 58%, var(--ych-border-strong));
	box-shadow: 0 1rem 2.25rem rgba(0, 0, 0, 0.2);
	transform: translateY(-0.18rem);
}

.ych-home-library-card__media {
	position: absolute;
	z-index: 0;
	inset: 0;
	display: grid;
	width: 100%;
	height: 100%;
	margin: 0;
	place-items: center;
	padding: 0;
	background: var(--ych-bg-secondary);
}

.ych-home-library-card__image {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 220ms ease;
}

.ych-home-library-card:hover .ych-home-library-card__image { transform: scale(1.035); }

.ych-home-library-card__body {
	position: relative;
	z-index: 2;
	display: flex;
	min-width: 0;
	min-height: 48%;
	margin-top: auto;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.6rem;
	padding: clamp(1rem, 1.35vw, 1.35rem);
}

.ych-home-library .ych-home-library-card__title {
	margin: 0;
	color: var(--ych-text-primary);
	font-family: var(--ych-font-heading);
	font-size: clamp(0.95rem, 1vw, 1.1rem) !important;
	line-height: 1.3;
	text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.55);
	overflow-wrap: anywhere;
}

.ych-home-library-card__byline {
	color: var(--ych-text-secondary);
	font-size: 0.8125rem;
	line-height: 1.45;
	text-shadow: 0 0.125rem 0.4rem rgba(0, 0, 0, 0.55);
}

.ych-home-library-card__type {
	color: var(--ych-home-library-gold);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.3;
	text-transform: uppercase;
}

.ych-home-library-card__description {
	display: -webkit-box;
	overflow: hidden;
	margin: 0;
	color: var(--ych-text-secondary);
	font-size: 0.875rem;
	line-height: 1.55;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.ych-home-library-card__action {
	margin-top: auto;
	padding-top: 0.4rem;
	color: var(--ych-home-library-gold);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-decoration: none;
	text-shadow: 0 0.125rem 0.4rem rgba(0, 0, 0, 0.6);
}

.ych-home-library-card__action::after {
	display: inline-block;
	margin-left: 0.45rem;
	content: "\2192";
	transition: transform 160ms ease;
}

.ych-home-library-card__action[href]:hover::after,
.ych-home-library-card__action[href]:focus-visible::after { transform: translateX(0.2rem); }

.ych-home-library-card__action[href]:hover,
.ych-home-library-card__action[href]:focus-visible { color: var(--ych-text-primary); }

.ych-home-library__footer {
	display: flex;
	justify-content: center;
	padding-top: clamp(0.25rem, 1vw, 0.75rem);
}

.ych-home-library__all {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
}

@media (max-width: 64rem) {
	.ych-home-library__track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 40rem) {
	.ych-home-library__collection-header {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.75rem;
	}

	.ych-home-library__track { grid-template-columns: minmax(0, 1fr); }
	.ych-home-library-card { height: 23rem; }
}

@media (prefers-reduced-motion: reduce) {
	.ych-home-library-card,
	.ych-home-library-card__image,
	.ych-home-library-card__action::after,
	.ych-home-library__view-all span { transition: none; }

	.ych-home-library-card:hover { transform: none; }
	.ych-home-library-card:hover .ych-home-library-card__image { transform: none; }
}

@media (forced-colors: active) {
	.ych-home-library-card { border: 0.125rem solid CanvasText; }
}

/* ========================================================================
 * Homepage design-system normalization
 *
 * This final, homepage-scoped layer resolves cascade drift between the
 * component styles and the shared WordPress typography rules. It reuses the
 * existing YouthConnect tokens without changing component colours or layout.
 * ===================================================================== */

.ych-homepage {
	--ych-home-card-gap: var(--ych-space-3);
	--ych-home-card-padding: clamp(1.25rem, 2vw, 1.5rem);
	--ych-home-card-title: clamp(1.125rem, 1.05rem + 0.375vw, 1.375rem);
	--ych-home-section-space: var(--ych-section-space-compact);
	font-family: var(--ych-font-body);
}

/* One heading hierarchy across every visible homepage section. */
.ych-homepage :is(
	.ych-programmes__heading,
	.ych-events-heading,
	.ych-home-resources__heading,
	.ych-home-library__heading,
	.ych-partners__heading,
	.ych-newsletter__heading
) {
	font-family: var(--ych-font-heading) !important;
	font-size: var(--ych-type-h2) !important;
	font-weight: 700 !important;
	letter-spacing: -0.035em !important;
	line-height: var(--ych-leading-heading) !important;
}

.ych-homepage :is(
	.ych-featured-event__title,
	.ych-home-library__collection-title
) {
	font-family: var(--ych-font-heading) !important;
	font-size: var(--ych-type-h3) !important;
	font-weight: 700 !important;
	letter-spacing: -0.025em !important;
	line-height: 1.12 !important;
}

.ych-homepage :is(
	.ych-programmes__card-title,
	.ych-event-title,
	.ych-home-resource-card__title
) {
	font-family: var(--ych-font-heading) !important;
	font-size: var(--ych-home-card-title) !important;
	font-weight: 700 !important;
	letter-spacing: -0.02em !important;
	line-height: 1.2 !important;
}

.ych-homepage .ych-home-library-card__title {
	font-family: var(--ych-font-heading) !important;
	font-size: 1rem !important;
	font-weight: 700 !important;
	letter-spacing: -0.01em !important;
	line-height: 1.3 !important;
}

.ych-homepage :is(
	.ych-programmes__subtitle,
	.ych-programmes__description,
	.ych-featured-event__description,
	.ych-home-resources__intro,
	.ych-home-resource-card__description,
	.ych-home-library-card__description,
	.ych-newsletter__description
) {
	font-family: var(--ych-font-body);
	font-size: 0.9375rem;
	line-height: var(--ych-leading-body);
}

.ych-homepage :is(
	.ych-programmes__metadata,
	.ych-featured-event__label,
	.ych-event-meta,
	.ych-event-location,
	.ych-home-resources__eyebrow,
	.ych-home-library-card__type,
	.ych-newsletter__label,
	.ych-newsletter__note
) {
	font-family: var(--ych-font-body);
	font-size: var(--ych-type-label);
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.4;
}

/* Consistent section rhythm while keeping every section in its current order. */
.ych-homepage .ych-programmes__inner,
.ych-homepage .ych-partners__inner,
.ych-homepage .ych-newsletter__inner {
	padding-block: var(--ych-home-section-space) !important;
}

.ych-homepage :is(
	.ych-home-events,
	.ych-home-resources,
	.ych-home-library
) {
	padding-block: var(--ych-home-section-space) !important;
}

.ych-homepage :is(
	.ych-programmes__grid,
	.ych-event-list,
	.ych-home-resources__grid,
	.ych-home-library__track,
	.ych-partners__grid
) {
	gap: var(--ych-home-card-gap) !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
}

.ych-homepage .ych-home-resources__inner,
.ych-homepage .ych-home-library__inner {
	gap: var(--ych-space-5);
}

.ych-homepage .ych-events-heading-row {
	margin-bottom: var(--ych-space-4) !important;
}

/* Shared card geometry, depth and interaction. */
.ych-homepage :is(
	.ych-programmes__card,
	.ych-featured-event,
	.ych-home-resource-card,
	.ych-home-library-card,
	.ych-partners__card
) {
	border-radius: var(--ych-radius-card) !important;
	box-shadow: var(--ych-shadow-small) !important;
	transition: border-color var(--ych-transition), box-shadow var(--ych-transition), transform var(--ych-transition) !important;
}

.ych-homepage :is(
	.ych-programmes__card,
	.ych-featured-event,
	.ych-home-resource-card,
	.ych-home-library-card,
	.ych-partners__card
):is(:hover, :focus-within) {
	box-shadow: var(--ych-shadow-medium) !important;
	transform: translateY(-0.125rem) !important;
}

.ych-homepage :is(
	.ych-programmes__card-body,
	.ych-featured-event__content,
	.ych-home-resource-card__body
) {
	padding: var(--ych-home-card-padding) !important;
}

.ych-homepage .ych-home-library-card__body {
	gap: var(--ych-space-1);
	padding: 1.25rem;
}

.ych-homepage :is(
	.ych-programmes__image,
	.ych-featured-event__image,
	.ych-home-resource-card__image,
	.ych-home-library-card__image
) {
	object-fit: cover;
	transition: transform var(--ych-transition) !important;
}

.ych-homepage :is(
	.ych-programmes__card:hover .ych-programmes__image,
	.ych-programmes__card:focus-within .ych-programmes__image,
	.ych-featured-event__image-link:hover .ych-featured-event__image,
	.ych-featured-event__image-link:focus-visible .ych-featured-event__image,
	.ych-home-resource-card:hover .ych-home-resource-card__image,
	.ych-home-resource-card:focus-visible .ych-home-resource-card__image,
	.ych-home-library-card:hover .ych-home-library-card__image
) {
	transform: scale(1.025) !important;
}

.ych-homepage .ych-partners__logo {
	object-fit: contain;
}

/* Filled actions share one control size; editorial links remain text links. */
.ych-homepage :is(
	.ych-hero__button,
	.ych-button,
	.ych-home-resource-card__action,
	.ych-newsletter__button
) {
	display: inline-flex !important;
	min-height: var(--ych-control-height) !important;
	align-items: center;
	justify-content: center;
	gap: var(--ych-space-1) !important;
	padding: 0.7rem var(--ych-control-padding-inline) !important;
	border-radius: var(--ych-radius-button) !important;
	font-family: var(--ych-font-body) !important;
	font-size: 0.9375rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.01em !important;
	line-height: 1.2 !important;
	transition: background-color var(--ych-transition), border-color var(--ych-transition), box-shadow var(--ych-transition), color var(--ych-transition), transform var(--ych-transition) !important;
}

.ych-homepage :is(
	.ych-hero__button,
	.ych-button,
	.ych-home-resource-card__action,
	.ych-newsletter__button
):hover:not(:disabled, [aria-disabled="true"]) {
	transform: translateY(-0.125rem) !important;
}

.ych-homepage :is(
	.ych-programmes__link,
	.ych-featured-event__cta,
	.ych-events-more-link,
	.ych-home-library__view-all,
	.ych-home-library-card__action
) {
	font-family: var(--ych-font-body);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.4;
}

/* One form-control system for the homepage newsletter. */
.ych-homepage .ych-newsletter__interest {
	min-height: var(--ych-control-height);
	gap: var(--ych-space-1);
	padding: 0.65rem var(--ych-space-2);
	border-radius: var(--ych-radius-button);
	font-family: var(--ych-font-body);
	font-size: 0.875rem;
	line-height: 1.4;
}

.ych-homepage .ych-newsletter__input {
	height: var(--ych-control-height) !important;
	min-height: var(--ych-control-height) !important;
	padding-inline: var(--ych-space-2) !important;
	border-radius: var(--ych-radius-button) !important;
	font-family: var(--ych-font-body) !important;
	font-size: 0.9375rem !important;
	line-height: 1.2 !important;
}

.ych-homepage .ych-newsletter__button {
	height: var(--ych-control-height);
	white-space: nowrap;
}

/* Repeated arrow marks use the same size, spacing and motion. */
.ych-homepage :is(
	.ych-programmes__link-arrow,
	.ych-home-resource-card__action span,
	.ych-home-resources__all span,
	.ych-home-library__view-all span,
	.ych-home-library__all span
) {
	display: inline-block;
	flex: 0 0 auto;
	font-size: 1em;
	transition: transform var(--ych-transition) !important;
}

@media (max-width: 42rem) {
	.ych-homepage {
		--ych-home-card-gap: var(--ych-space-2);
		--ych-home-card-padding: 1.25rem;
	}

	.ych-homepage :is(
		.ych-home-resources__inner,
		.ych-home-library__inner
	) {
		gap: var(--ych-space-4);
	}

	.ych-homepage .ych-newsletter__button,
	.ych-homepage .ych-home-resources__all,
	.ych-homepage .ych-home-library__all {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ych-homepage :is(
		.ych-programmes__card,
		.ych-featured-event,
		.ych-home-resource-card,
		.ych-home-library-card,
		.ych-partners__card,
		.ych-programmes__image,
		.ych-featured-event__image,
		.ych-home-resource-card__image,
		.ych-home-library-card__image
	) {
		transition: none !important;
	}

	.ych-homepage :is(
		.ych-programmes__card,
		.ych-featured-event,
		.ych-home-resource-card,
		.ych-home-library-card,
		.ych-partners__card
	):is(:hover, :focus-within),
	.ych-homepage :is(
		.ych-programmes__card:hover .ych-programmes__image,
		.ych-programmes__card:focus-within .ych-programmes__image,
		.ych-featured-event__image-link:hover .ych-featured-event__image,
		.ych-featured-event__image-link:focus-visible .ych-featured-event__image,
		.ych-home-resource-card:hover .ych-home-resource-card__image,
		.ych-home-resource-card:focus-visible .ych-home-resource-card__image,
		.ych-home-library-card:hover .ych-home-library-card__image
	) {
		transform: none !important;
	}
}

/* NCSU-inspired split introduction for the homepage Beyond The Classroom section. */
.ych-programmes--intro-only .ych-programmes__inner {
	padding-block: clamp(3.5rem, 5.5vw, 5rem);
}

.ych-programmes--intro-only .ych-programmes__header {
	display: grid;
	width: 100%;
	max-width: 75rem;
	min-height: 20rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
	gap: 0;
	margin: 0 auto;
}

.ych-programmes--intro-only .ych-programmes__header-copy {
	align-content: center;
	gap: clamp(0.875rem, 1.2vw, 1.125rem);
	padding: 0.5rem clamp(2.5rem, 5vw, 4.5rem) 0.5rem 0;
}

.ych-programmes--intro-only .ych-programmes__heading {
	max-width: 12ch;
	font-size: clamp(2.5rem, 3.5vw, 3.15rem);
	line-height: 1.02;
}

.ych-programmes--intro-only .ych-programmes__subtitle {
	max-width: 34rem;
	font-size: 1rem;
	line-height: 1.55;
}

.ych-programmes--intro-only .ych-programmes__header-feature,
.ych-programmes--intro-only .ych-programmes__header-media {
	height: 100%;
	min-height: 20rem;
}

.ych-programmes--intro-only .ych-programmes__header-media {
	border: 0;
	border-radius: 0;
	background: var(--ych-bg-card);
	box-shadow: none;
}

.ych-programmes--intro-only .ych-programmes__header-media::after {
	border-radius: 0;
	background: linear-gradient(135deg, rgba(10, 18, 32, 0.04), transparent 52%, rgba(120, 82, 168, 0.08));
}

.ych-programmes--intro-only .ych-programmes__header-media .ych-programmes__header-image {
	object-position: center 48%;
}

.ych-programmes--intro-only .ych-programmes__header-copy .ych-button {
	min-height: 3rem;
	padding: 0.8rem 1.25rem;
	border-radius: 0.3rem;
}

@media (max-width: 60rem) {
	.ych-programmes--intro-only .ych-programmes__header {
		min-height: 0;
		grid-template-columns: minmax(0, 1fr);
		gap: clamp(1.75rem, 4vw, 2.5rem);
	}

	.ych-programmes--intro-only .ych-programmes__header-copy {
		padding: 0;
	}

	.ych-programmes--intro-only .ych-programmes__heading,
	.ych-programmes--intro-only .ych-programmes__subtitle {
		max-width: 40rem;
	}

	.ych-programmes--intro-only .ych-programmes__header-feature,
	.ych-programmes--intro-only .ych-programmes__header-media {
		height: auto;
		min-height: 0;
	}

	.ych-programmes--intro-only .ych-programmes__header-media {
		aspect-ratio: 16 / 9;
	}
}

@media (max-width: 40rem) {
	.ych-programmes--intro-only .ych-programmes__inner {
		padding-block: 3rem;
	}

	.ych-programmes--intro-only .ych-programmes__header {
		gap: 1.5rem;
	}

	.ych-programmes--intro-only .ych-programmes__header-copy {
		gap: 1rem;
	}

	.ych-programmes--intro-only .ych-programmes__heading {
		font-size: clamp(2.35rem, 11vw, 2.85rem);
	}

	.ych-programmes--intro-only .ych-programmes__subtitle {
		font-size: 0.98rem;
		line-height: 1.6;
	}

	.ych-programmes--intro-only .ych-programmes__header-copy .ych-button {
		width: 100%;
		justify-content: center;
	}
}
