/**
 * Forum application page.
 */

.ych-forum-page {
	overflow: clip;
	background: var(--ych-bg-primary);
	color: var(--ych-text-primary);
}

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

.ych-forum-page :where(h1, h2, h3, p, figure) {
	margin-block-start: 0;
}

.ych-forum-page :where(h1, h2, h3) {
	color: var(--ych-text-primary);
	text-wrap: balance;
}

.ych-forum-page p {
	color: var(--ych-text-secondary);
}

.ych-forum-eyebrow {
	margin-block-end: 1rem;
	color: var(--ych-accent-blue) !important;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	line-height: 1.4;
	text-transform: uppercase;
}

.ych-forum-hero {
	position: relative;
	padding-block: clamp(3.5rem, 6vw, 5.5rem);
	background:
		radial-gradient(circle at 88% 12%, rgba(154, 114, 208, 0.16), transparent 27rem),
		linear-gradient(155deg, #0b1829 0%, var(--ych-bg-primary) 68%, #0c1728 100%);
}

.ych-forum-hero__grid {
	display: grid;
	min-height: min(36rem, calc(100svh - 5rem));
	grid-template-columns: minmax(0, 0.92fr) minmax(25rem, 1.08fr);
	align-items: center;
	gap: clamp(2.5rem, 5vw, 5rem);
}

.ych-forum-hero__content {
	position: relative;
	z-index: 1;
	max-width: 43rem;
}

.ych-forum-breadcrumb {
	margin-block-end: clamp(2rem, 3.5vw, 3rem);
}

.ych-forum-breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.625rem;
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--ych-text-muted);
	font-size: 0.75rem;
	font-weight: 700;
}

.ych-forum-breadcrumb li + li::before {
	content: "/";
	margin-inline-end: 0.625rem;
	color: var(--ych-border-strong);
}

.ych-forum-breadcrumb a {
	color: var(--ych-text-secondary);
	text-decoration: none;
	transition: color var(--ych-transition);
}

.ych-forum-breadcrumb a:hover {
	color: var(--ych-text-primary);
}

.ych-forum-hero h1 {
	max-width: 10ch;
	margin-block-end: 1.5rem;
	font-size: clamp(3.5rem, 5.5vw, 4.75rem);
	letter-spacing: -0.052em;
	line-height: 0.94;
}

.ych-forum-hero__lead {
	max-width: 39rem;
	margin-block-end: 0;
	color: rgba(244, 246, 251, 0.82) !important;
	font-size: clamp(1.05rem, 1.5vw, 1.2rem);
	line-height: 1.72;
}

.ych-forum-button {
	display: inline-flex;
	min-height: 3.5rem;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	margin-block-start: 2rem;
	padding: 0.9rem 1.5rem;
	border: 0.125rem solid transparent;
	border-radius: var(--ych-radius-button);
	background: var(--ych-accent-gradient);
	box-shadow: var(--ych-shadow-small);
	color: var(--ych-bg-primary);
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: box-shadow var(--ych-transition), transform var(--ych-transition);
}

.ych-forum-button:hover {
	box-shadow: var(--ych-shadow-medium);
	color: var(--ych-bg-primary);
	transform: translateY(-0.125rem);
}

.ych-forum-hero__media {
	position: relative;
	margin: 0;
	padding: 0.75rem;
	border: 0.0625rem solid var(--ych-border-strong);
	border-radius: 2rem;
	background: rgba(16, 32, 51, 0.78);
	box-shadow: var(--ych-shadow-large), 0 0 4rem rgba(120, 169, 228, 0.08);
}

.ych-forum-hero__image {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 11;
	border-radius: 1.35rem;
	object-fit: cover;
	object-position: center;
}

.ych-forum-hero__media figcaption {
	position: absolute;
	right: 1.5rem;
	bottom: 1.5rem;
	left: 1.5rem;
	padding: 1rem 1.1rem;
	border: 0.0625rem solid rgba(255, 255, 255, 0.16);
	border-radius: 1rem;
	background: rgba(7, 17, 30, 0.84);
	backdrop-filter: blur(0.75rem);
	color: var(--ych-text-primary);
	font-size: 0.85rem;
	font-weight: 700;
	line-height: 1.4;
}

.ych-forum-section {
	position: relative;
	padding-block: clamp(4rem, 6vw, 6rem);
}

.ych-forum-form {
	scroll-margin-top: 6rem;
	background:
		linear-gradient(rgba(9, 19, 34, 0.95), rgba(9, 19, 34, 0.98)),
		var(--ych-forum-form-background, none),
		var(--ych-bg-primary);
	background-position: center;
	background-size: cover;
}

.ych-forum-form__grid {
	display: grid;
	grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
	align-items: start;
	gap: clamp(2.5rem, 5vw, 5rem);
}

.ych-forum-form__intro {
	position: sticky;
	top: 7rem;
}

.ych-forum-form__intro h2 {
	margin-block-end: 1.25rem;
	font-size: clamp(2.7rem, 4.25vw, 3.8rem);
	letter-spacing: -0.045em;
	line-height: 1;
}

.ych-forum-form__intro > p:not(.ych-forum-eyebrow) {
	max-width: 33rem;
	margin-block-end: 0;
	font-size: 1.05rem;
	line-height: 1.75;
}

.ych-forum-form__note {
	margin-block-start: 2.5rem;
	padding: 1.35rem;
	border: 0.0625rem solid var(--ych-border);
	border-radius: 1.15rem;
	background: rgba(16, 32, 51, 0.72);
}

.ych-forum-form__note h3 {
	margin-block-end: 0.6rem;
	font-size: 1rem;
}

.ych-forum-form__note p {
	margin-block-end: 0.75rem;
	font-size: 0.88rem;
	line-height: 1.6;
}

.ych-forum-form__note a {
	color: var(--ych-accent-blue);
	font-size: 0.88rem;
	font-weight: 700;
	text-underline-offset: 0.2em;
}

.ych-forum-form__panel {
	min-width: 0;
	padding: clamp(1.25rem, 3vw, 2rem);
	border: 0.0625rem solid var(--ych-border-strong);
	border-radius: 1.75rem;
	background: rgba(16, 32, 51, 0.92);
	box-shadow: var(--ych-shadow-large);
}

.ych-participation-context {
	display: grid;
	gap: 0.85rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 0.0625rem solid var(--ych-border-strong);
}

.ych-participation-context > label:first-child {
	color: var(--ych-text-primary);
	font-size: 0.88rem;
	font-weight: 700;
}

.ych-participation-context select {
	width: 100%;
	min-height: 3.4rem;
	padding: 0.8rem 2.8rem 0.8rem 0.9rem;
	border: 0.0625rem solid var(--ych-border-strong);
	border-radius: 0.8rem;
	background: #0a1626;
	color: var(--ych-text-primary);
	font: inherit;
}

.ych-participation-context__event,
.ych-participation-context__privacy {
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.55;
}

.ych-participation-context__privacy a {
	color: var(--ych-accent-blue);
}

.ych-participation-context__consent {
	display: grid;
	grid-template-columns: 1.2rem minmax(0, 1fr);
	align-items: start;
	gap: 0.65rem;
	color: var(--ych-text-secondary);
	font-size: 0.88rem;
	line-height: 1.5;
}

.ych-participation-context__consent input {
	width: 1.1rem;
	height: 1.1rem;
	margin-top: 0.2rem;
	accent-color: var(--ych-accent-blue);
}

.ych-participation-context__error {
	min-height: 1.2em;
	color: #ffb4b4;
	font-size: 0.8rem;
	font-weight: 700;
}

/* Remove only the obsolete imported presentation; retain the original form. */
.ych-forum-form__embed .kb-row-layout-id2476_bec92b-22,
.ych-forum-form__embed .kadence-column2476_dcf856-04 {
	display: none !important;
}

.ych-forum-form__embed :where(
	.kb-row-layout-id2476_6029c3-3d,
	.kt-row-layout-overlay,
	.kt-row-column-wrap,
	.wp-block-kadence-column,
	.kt-inside-inner-col,
	.wp-block-kadence-form
) {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.ych-forum-form__embed .kt-row-layout-overlay {
	display: none;
}

.ych-forum-form__embed .kb-row-layout-id2476_6029c3-3d {
	background: transparent !important;
}

.ych-forum-form__embed .kb-row-layout-id2476_6029c3-3d > .kt-row-column-wrap {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.ych-forum-form__embed .kadence-column2476_5abed6-c0,
.ych-forum-form__embed .kadence-column2476_5abed6-c0 > .kt-inside-inner-col {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
}

.ych-forum-form__embed .kt-row-column-wrap {
	display: block;
	min-height: 0;
}

.ych-forum-form__embed .kb-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.15rem;
	margin: 0;
}

.ych-forum-form__embed .kadence-blocks-form-field {
	min-width: 0;
	margin: 0;
}

.ych-forum-form__embed .kadence-blocks-form-field label:not(.kadence-verify-label) {
	display: block;
	margin-block-end: 0.55rem;
	color: var(--ych-text-primary) !important;
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.45;
}

.ych-forum-form__embed .required {
	color: #bd8ff3;
}

.ych-forum-form__embed :where(input[type="text"], input[type="email"], input[type="tel"]) {
	width: 100%;
	min-height: 3.4rem;
	margin: 0;
	padding: 0.8rem 0.9rem !important;
	border: 0.0625rem solid var(--ych-border-strong) !important;
	border-radius: 0.8rem !important;
	background: #0a1626 !important;
	box-shadow: inset 0 0.0625rem 0 rgba(255, 255, 255, 0.04);
	color: var(--ych-text-primary) !important;
	font: inherit;
	line-height: 1.35;
	transition: border-color var(--ych-transition), box-shadow var(--ych-transition), background-color var(--ych-transition);
}

.ych-forum-form__embed :where(input[type="text"], input[type="email"], input[type="tel"]):focus {
	border-color: var(--ych-focus) !important;
	background: #0d1b2d !important;
	box-shadow: 0 0 0 0.22rem rgba(159, 197, 244, 0.18);
	outline: 0;
}

.ych-forum-form__embed .kadence-verify-label {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	white-space: nowrap !important;
}

.ych-forum-form__embed .kb-submit-field {
	grid-column: 1 / -1;
	margin-block-start: 0.35rem;
}

.ych-forum-form__embed .kb-forms-submit {
	display: inline-flex;
	width: auto;
	min-width: 11rem;
	min-height: 3.5rem;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0.85rem 1.6rem;
	border: 0.125rem solid transparent !important;
	border-radius: var(--ych-radius-button) !important;
	background: var(--ych-accent-gradient) !important;
	box-shadow: var(--ych-shadow-small);
	color: var(--ych-bg-primary) !important;
	font: inherit;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	transition: box-shadow var(--ych-transition), transform var(--ych-transition);
}

.ych-forum-form__embed .kb-forms-submit:hover {
	box-shadow: var(--ych-shadow-medium);
	transform: translateY(-0.125rem);
}

.ych-forum-form__embed :where(.kb-form-error-message, .kadence-blocks-form-message) {
	grid-column: 1 / -1;
	margin: 0;
	padding: 1rem;
	border: 0.0625rem solid var(--ych-border-strong);
	border-radius: 0.8rem;
	background: var(--ych-bg-secondary);
	color: var(--ych-text-primary);
}

.ych-forum-page :where(a, button, input):focus-visible {
	outline: 0.1875rem solid var(--ych-focus);
	outline-offset: 0.2rem;
}

.ych-scaffold-page--forum-application .site-footer {
	margin-block-start: 0;
}

@media (max-width: 62rem) {
	.ych-forum-hero__grid,
	.ych-forum-form__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.ych-forum-hero__media {
		max-width: 48rem;
		margin-inline: auto;
	}

	.ych-forum-form__intro {
		position: static;
		max-width: 45rem;
	}
}

@media (max-width: 42rem) {
	.ych-forum-hero {
		padding-block: 3.5rem 4.5rem;
	}

	.ych-forum-hero__grid {
		min-height: 0;
		gap: 2.5rem;
	}

	.ych-forum-hero h1 {
		font-size: clamp(3.2rem, 15vw, 4.6rem);
	}

	.ych-forum-hero__media {
		padding: 0.5rem;
		border-radius: 1.4rem;
	}

	.ych-forum-hero__visual {
		aspect-ratio: 4 / 3;
		border-radius: 1rem;
	}

	.ych-forum-hero__media figcaption {
		right: 1rem;
		bottom: 1rem;
		left: 1rem;
	}

	.ych-forum-form__embed .kb-form {
		grid-template-columns: minmax(0, 1fr);
	}

	.ych-forum-form__embed .kb-submit-field {
		grid-column: 1;
	}

	.ych-forum-form__embed .kb-forms-submit,
	.ych-forum-button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ych-forum-page *,
	.ych-forum-page *::before,
	.ych-forum-page *::after {
		scroll-behavior: auto;
		transition-duration: 0.01ms;
		animation-duration: 0.01ms;
	}
}

@media (forced-colors: active) {
	.ych-forum-button,
	.ych-forum-form__embed .kb-forms-submit {
		border-color: ButtonText;
	}
}

/* Partner journey: editorial, precise and intentionally image-led. */
.ych-forum-page--partner {
	--ych-partner-ink: #101c2c;
	--ych-partner-paper: #f5f3ee;
	--ych-partner-paper-deep: #e9e5dc;
	--ych-partner-rule: rgba(16, 28, 44, 0.18);
	background: var(--ych-partner-paper);
}

.ych-partner-hero {
	padding-block: clamp(3.25rem, 6vw, 6.5rem) clamp(4rem, 7vw, 7.5rem);
	background:
		linear-gradient(90deg, rgba(120, 169, 228, 0.08) 0.0625rem, transparent 0.0625rem) 0 0 / 5rem 100%,
		linear-gradient(145deg, #081525 0%, #0d1c30 66%, #15223a 100%);
}

.ych-partner-hero .ych-forum-breadcrumb {
	margin-block-end: clamp(3.5rem, 7vw, 6.75rem);
}

.ych-partner-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.22fr) minmax(20rem, 0.78fr);
	align-items: end;
	gap: clamp(2.5rem, 7vw, 7rem);
}

.ych-partner-hero h1 {
	max-width: 10ch;
	margin: 0;
	color: #fff;
	font-size: clamp(4rem, 7.4vw, 7rem);
	letter-spacing: -0.062em;
	line-height: 0.91;
}

.ych-partner-hero__intro {
	padding-block-start: 1.25rem;
	border-block-start: 0.0625rem solid rgba(255, 255, 255, 0.28);
}

.ych-partner-hero__intro > p {
	max-width: 34rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(1.05rem, 1.5vw, 1.25rem);
	line-height: 1.72;
}

.ych-partner-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.25rem 1.75rem;
	margin-block-start: 2rem;
}

.ych-partner-hero__actions .ych-forum-button {
	margin: 0;
}

.ych-partner-text-link {
	color: #fff;
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration-color: var(--ych-accent-blue);
	text-decoration-thickness: 0.125rem;
	text-underline-offset: 0.4rem;
}

.ych-partner-text-link:hover {
	color: var(--ych-accent-blue);
}

.ych-partner-banner {
	padding-block: 0 clamp(4.5rem, 8vw, 8rem);
	background: var(--ych-partner-paper);
}

.ych-partner-banner__grid {
	display: grid;
	overflow: hidden;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.375rem;
	margin-block-start: clamp(-2.5rem, -3vw, -1.5rem);
	padding: 0.375rem;
	border: 0.0625rem solid var(--ych-partner-rule);
	border-radius: 0.75rem;
	background: #fff;
	box-shadow: 0 1.5rem 4rem rgba(8, 21, 37, 0.16);
}

.ych-partner-banner__grid picture {
	display: block;
	min-width: 0;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: #d9d9d9;
}

.ych-partner-banner__grid img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ych-partner-banner__grid picture:nth-child(1) img { object-position: 54% center; }
.ych-partner-banner__grid picture:nth-child(2) img { object-position: center center; }
.ych-partner-banner__grid picture:nth-child(3) img { object-position: center 28%; }
.ych-partner-banner__grid picture:nth-child(4) img { object-position: 48% 32%; }

.ych-partner-banner__caption {
	max-width: 48rem;
	margin: 1.35rem 0 0 auto;
	padding-inline-start: 1.25rem;
	border-inline-start: 0.1875rem solid #8363c7;
	color: rgba(16, 28, 44, 0.72) !important;
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.6;
}

.ych-partner-opportunities,
.ych-partner-process {
	padding-block: clamp(4.75rem, 8vw, 8rem);
	background: var(--ych-partner-paper);
	color: var(--ych-partner-ink);
}

.ych-partner-opportunities {
	border-block-start: 0.0625rem solid var(--ych-partner-rule);
}

.ych-partner-section-heading {
	display: grid;
	grid-template-columns: minmax(12rem, 0.55fr) minmax(0, 1.45fr);
	gap: clamp(2rem, 6vw, 6rem);
	margin-block-end: clamp(3rem, 6vw, 5.5rem);
}

.ych-partner-section-heading .ych-forum-eyebrow {
	margin: 0;
	color: #5f42a3 !important;
}

.ych-partner-section-heading h2 {
	max-width: 14ch;
	margin-block-end: 1.25rem;
	color: var(--ych-partner-ink);
	font-size: clamp(3rem, 5.5vw, 5.35rem);
	letter-spacing: -0.055em;
	line-height: 0.96;
}

.ych-partner-section-heading > div > p {
	max-width: 42rem;
	margin: 0;
	color: rgba(16, 28, 44, 0.7);
	font-size: 1.05rem;
	line-height: 1.72;
}

.ych-partner-opportunities__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-block: 0.0625rem solid var(--ych-partner-rule);
}

.ych-partner-opportunities__grid article {
	min-width: 0;
	padding: clamp(2rem, 4vw, 3.25rem);
}

.ych-partner-opportunities__grid article + article {
	border-inline-start: 0.0625rem solid var(--ych-partner-rule);
}

.ych-partner-opportunities__grid span,
.ych-partner-process__list > li > span {
	display: block;
	margin-block-end: clamp(3.5rem, 7vw, 6rem);
	color: #6c4db3;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
}

.ych-partner-opportunities__grid h3,
.ych-partner-process__list h3 {
	margin-block-end: 0.85rem;
	color: var(--ych-partner-ink);
	font-size: clamp(1.4rem, 2vw, 1.8rem);
	letter-spacing: -0.025em;
}

.ych-partner-opportunities__grid p,
.ych-partner-process__list p {
	margin: 0;
	color: rgba(16, 28, 44, 0.68);
	line-height: 1.7;
}

.ych-forum-page--partner .ych-forum-form {
	background:
		radial-gradient(circle at 88% 12%, rgba(154, 114, 208, 0.13), transparent 28rem),
		#091322;
}

.ych-forum-page--partner .ych-forum-form__intro h2 {
	max-width: 12ch;
}

.ych-forum-page--partner .ych-forum-form__panel {
	border-radius: 0.9rem;
	background: #102033;
}

.ych-partner-process {
	background: #fff;
}

.ych-partner-section-heading--compact {
	display: block;
	max-width: 58rem;
}

.ych-partner-process__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	border-block-start: 0.0625rem solid var(--ych-partner-rule);
	list-style: none;
}

.ych-partner-process__list li {
	display: grid;
	align-content: start;
	min-width: 0;
	padding: clamp(2rem, 4vw, 3.25rem);
}

.ych-partner-process__list li + li {
	border-inline-start: 0.0625rem solid var(--ych-partner-rule);
}

.ych-partner-process__list > li > span {
	margin-block-end: 3.25rem;
}

.ych-partner-contact {
	padding-block: clamp(3rem, 5vw, 4.5rem);
	background: #6c4db3;
}

.ych-partner-contact__inner {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2rem;
}

.ych-partner-contact .ych-forum-eyebrow {
	color: rgba(255, 255, 255, 0.72) !important;
}

.ych-partner-contact h2 {
	max-width: 17ch;
	margin: 0;
	color: #fff;
	font-size: clamp(2.2rem, 4vw, 4rem);
	letter-spacing: -0.04em;
	line-height: 1;
}

.ych-partner-contact a {
	display: inline-flex;
	min-height: 3.5rem;
	align-items: center;
	gap: 0.75rem;
	padding: 0.9rem 1.4rem;
	border: 0.0625rem solid rgba(255, 255, 255, 0.55);
	border-radius: var(--ych-radius-button);
	color: #fff;
	font-weight: 800;
	text-decoration: none;
}

.ych-partner-contact a:hover {
	background: #fff;
	color: #4f3689;
}

@media (max-width: 62rem) {
	.ych-partner-hero__grid,
	.ych-partner-section-heading {
		grid-template-columns: minmax(0, 1fr);
	}

	.ych-partner-hero__intro {
		max-width: 43rem;
	}

	.ych-partner-banner__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ych-partner-banner__grid picture {
		aspect-ratio: 4 / 3;
	}
}

@media (max-width: 46rem) {
	.ych-partner-hero h1 {
		font-size: clamp(3.6rem, 16vw, 5rem);
	}

	.ych-partner-hero__actions,
	.ych-partner-contact__inner {
		align-items: stretch;
		flex-direction: column;
	}

	.ych-partner-hero__actions .ych-forum-button,
	.ych-partner-contact a {
		width: 100%;
	}

	.ych-partner-banner__grid {
		gap: 0.25rem;
		padding: 0.25rem;
		border-radius: 0.5rem;
	}

	.ych-partner-banner__grid picture {
		aspect-ratio: 1 / 1;
	}

	.ych-partner-opportunities__grid,
	.ych-partner-process__list {
		grid-template-columns: minmax(0, 1fr);
	}

	.ych-partner-opportunities__grid article + article,
	.ych-partner-process__list li + li {
		border-block-start: 0.0625rem solid var(--ych-partner-rule);
		border-inline-start: 0;
	}

	.ych-partner-opportunities__grid span,
	.ych-partner-process__list > li > span {
		margin-block-end: 2rem;
	}
}

/* The Human Edge 2026 registration variation. */
.ych-forum-page--human-edge {
	display: flow-root;
	background: #071423;
	color: #f4f1ea;
}

.ych-event-registration-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	width: min(90rem, calc(100% - clamp(2rem, 5vw, 5rem)));
	height: clamp(26.25rem, 34vw, 31rem);
	margin: clamp(1.25rem, 3vw, 2.5rem) auto 0;
	border: 0.0625rem solid rgba(143, 199, 255, 0.38);
	border-radius: 1.5rem;
	background: #050f1f;
	box-shadow: 0 1.5rem 4rem rgba(2, 9, 18, 0.3);
}

.ych-event-registration-hero__picture,
.ych-event-registration-hero__image,
.ych-event-registration-hero__overlay {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.ych-event-registration-hero__picture {
	z-index: 0;
}

.ych-event-registration-hero__image {
	object-fit: cover;
	object-position: 56% 52%;
}

.ych-event-registration-hero__overlay {
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(5, 15, 31, 0.04) 45%, rgba(5, 15, 31, 0.54) 100%),
		linear-gradient(90deg, rgba(5, 15, 31, 0.99) 0%, rgba(5, 15, 31, 0.94) 35%, rgba(5, 15, 31, 0.64) 55%, rgba(5, 15, 31, 0.12) 82%, rgba(5, 15, 31, 0.04) 100%);
	pointer-events: none;
}

.ych-event-registration-hero__content {
	position: relative;
	z-index: 2;
	display: flex;
	height: 100%;
	max-width: none;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding: clamp(2.25rem, 4.5vw, 4.25rem);
}

.ych-event-registration-hero .ych-forum-breadcrumb {
	margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.ych-event-registration-hero__eyebrow {
	margin: 0 0 0.8rem;
	color: #8fc7ff !important;
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.18em;
	line-height: 1.4;
	text-transform: uppercase;
}

.ych-event-registration-hero h1 {
	max-width: 9.5ch;
	margin: 0;
	color: #f4f1ea;
	font-size: clamp(3.5rem, 5.5vw, 5rem);
	font-weight: 800;
	letter-spacing: -0.055em;
	line-height: 0.94;
}

.ych-event-registration-hero__strapline {
	margin: 1rem 0 0;
	color: #8fc7ff !important;
	font-size: clamp(1.2rem, 2vw, 1.55rem);
	font-weight: 650;
	line-height: 1.25;
}

.ych-event-registration-hero__lead {
	max-width: 36rem;
	margin: 0.7rem 0 0;
	color: rgba(244, 241, 234, 0.86) !important;
	font-size: clamp(0.98rem, 1.35vw, 1.1rem);
	line-height: 1.65;
}

.ych-event-registration-hero .ych-forum-button {
	margin-top: 1.35rem;
}

.ych-event-registration-overview {
	padding-block: clamp(4rem, 7vw, 6.5rem);
	background: #071423;
}

.ych-event-registration-overview > .site-container {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	align-items: end;
	gap: clamp(2.5rem, 6vw, 6rem);
}

.ych-event-registration-overview__intro h2,
.ych-event-next-steps h2,
.ych-event-reassurance h2 {
	margin: 0;
	color: #f4f1ea;
	font-size: clamp(2.35rem, 4vw, 3.75rem);
	letter-spacing: -0.045em;
	line-height: 1;
}

.ych-event-registration-overview__intro > p:last-child,
.ych-event-reassurance__grid > div:first-child > p {
	max-width: 39rem;
	margin: 1.15rem 0 0;
	color: #b8c4d6;
	font-size: 1.02rem;
	line-height: 1.75;
}

.ych-event-registration-facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0;
	border: 0.0625rem solid rgba(143, 199, 255, 0.24);
	border-radius: 1.25rem;
	background: rgba(16, 32, 51, 0.72);
}

.ych-event-registration-facts > div {
	min-width: 0;
	padding: clamp(1.25rem, 2.4vw, 1.8rem);
}

.ych-event-registration-facts > div + div {
	border-left: 0.0625rem solid rgba(143, 199, 255, 0.18);
}

.ych-event-registration-facts dt {
	margin: 0 0 0.45rem;
	color: #8fc7ff;
	font-size: 0.68rem;
	font-weight: 750;
	letter-spacing: 0.14em;
	line-height: 1.4;
	text-transform: uppercase;
}

.ych-event-registration-facts dd {
	margin: 0;
	color: #f4f1ea;
	font-size: 0.94rem;
	font-weight: 700;
	line-height: 1.45;
}

.ych-forum-page--human-edge .ych-forum-form {
	padding-block: clamp(4.5rem, 7vw, 7rem);
	background:
		radial-gradient(circle at 90% 10%, rgba(77, 155, 255, 0.08), transparent 27rem),
		#050f1f;
}

.ych-forum-page--human-edge .ych-forum-form__grid {
	grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
	gap: clamp(3rem, 6vw, 6rem);
}

.ych-forum-page--human-edge .ych-forum-form__intro h2 {
	font-size: clamp(2.6rem, 4.2vw, 3.7rem);
}

.ych-forum-page--human-edge .ych-forum-form__panel {
	padding: clamp(1.5rem, 3vw, 2.4rem);
	border-color: rgba(143, 199, 255, 0.28);
	border-radius: 1.5rem;
	background: rgba(11, 27, 45, 0.96);
	box-shadow: 0 1.5rem 4rem rgba(2, 9, 18, 0.28);
}

.ych-forum-page--human-edge .ych-forum-form__note {
	border-color: rgba(143, 199, 255, 0.2);
	background: rgba(16, 32, 51, 0.58);
}

.ych-visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	border: 0 !important;
	white-space: nowrap !important;
}

.ych-forum-page--human-edge .ych-participation-context {
	gap: 1rem;
}

.ych-participation-context__event-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.1rem;
	border: 0.0625rem solid rgba(139, 108, 246, 0.32);
	border-radius: 0.9rem;
	background: linear-gradient(105deg, rgba(139, 108, 246, 0.12), rgba(77, 155, 255, 0.1));
}

.ych-participation-context__event-card span {
	color: #b8c4d6;
	font-size: 0.8rem;
}

.ych-participation-context__event-card strong {
	color: #f4f1ea;
	font-size: 0.9rem;
	text-align: right;
}

.ych-forum-page--human-edge .ych-forum-form__embed :where(input[type="text"], input[type="email"], input[type="tel"]),
.ych-forum-page--human-edge .ych-participation-context select {
	border-color: rgba(143, 199, 255, 0.25) !important;
	background: #071423 !important;
}

.ych-event-next-steps {
	padding-block: clamp(4.5rem, 7vw, 7rem);
	background: #071423;
}

.ych-event-next-steps__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.25rem, 2.5vw, 2rem);
	margin: clamp(2.5rem, 4vw, 3.5rem) 0 0;
	padding: 0;
	list-style: none;
	counter-reset: none;
}

.ych-event-next-steps__list li {
	margin: 0;
	padding: clamp(1.5rem, 3vw, 2.25rem);
	border: 0.0625rem solid rgba(143, 199, 255, 0.18);
	border-radius: 1.25rem;
	background: rgba(16, 32, 51, 0.62);
}

.ych-event-next-steps__list li > span {
	display: inline-grid;
	width: 2.5rem;
	height: 2.5rem;
	place-items: center;
	border: 0.0625rem solid rgba(139, 108, 246, 0.48);
	border-radius: 50%;
	color: #8fc7ff;
	font-size: 0.7rem;
	font-weight: 800;
}

.ych-event-next-steps__list h3 {
	margin: 1.4rem 0 0;
	color: #f4f1ea;
	font-size: 1.2rem;
	line-height: 1.25;
}

.ych-event-next-steps__list p {
	margin: 0.75rem 0 0;
	color: #b8c4d6;
	font-size: 0.92rem;
	line-height: 1.65;
}

.ych-event-reassurance {
	padding-block: clamp(4.5rem, 7vw, 7rem);
	background: #050f1f;
}

.ych-event-reassurance__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(19rem, 0.8fr);
	align-items: center;
	gap: clamp(3rem, 7vw, 7rem);
}

.ych-event-reassurance__grid a,
.ych-event-support a {
	display: inline-flex;
	min-height: 2.75rem;
	align-items: center;
	gap: 0.6rem;
	color: #8fc7ff;
	font-weight: 750;
	text-decoration: underline;
	text-decoration-color: rgba(143, 199, 255, 0.42);
	text-underline-offset: 0.28em;
}

.ych-event-reassurance__faq {
	padding: clamp(1.5rem, 3vw, 2.25rem);
	border: 0.0625rem solid rgba(143, 199, 255, 0.22);
	border-radius: 1.25rem;
	background: rgba(16, 32, 51, 0.72);
}

.ych-event-reassurance__faq h3 {
	margin: 0;
	color: #f4f1ea;
	font-size: 1.2rem;
}

.ych-event-reassurance__faq p {
	margin: 0.8rem 0 0;
	color: #b8c4d6;
	line-height: 1.65;
}

.ych-event-support {
	padding-block: 1.5rem;
	border-top: 0.0625rem solid rgba(143, 199, 255, 0.18);
	background: linear-gradient(90deg, rgba(139, 108, 246, 0.12), rgba(77, 155, 255, 0.08)), #071423;
}

.ych-event-support__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.ych-event-support__inner > div {
	display: grid;
	gap: 0.25rem;
}

.ych-event-support strong {
	color: #f4f1ea;
	font-size: 1.05rem;
}

.ych-event-support span {
	color: #b8c4d6;
	font-size: 0.9rem;
}

.ych-forum-page--human-edge :where(a, button, input):focus-visible {
	outline: 0.1875rem solid #8fc7ff;
	outline-offset: 0.22rem;
}

@media (max-width: 62rem) {
	.ych-event-registration-overview > .site-container,
	.ych-event-reassurance__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.ych-event-registration-facts {
		max-width: 48rem;
	}

	.ych-forum-page--human-edge .ych-forum-form__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 2.5rem;
	}

	.ych-event-reassurance__faq {
		max-width: 40rem;
	}
}

@media (max-width: 48rem) {
	.ych-event-registration-hero {
		width: calc(100% - 2rem);
		height: clamp(30rem, 78vw, 36rem);
		border-radius: 1.25rem;
	}

	.ych-event-registration-hero__image {
		object-position: 58% 50%;
	}

	.ych-event-registration-hero__overlay {
		background:
			linear-gradient(180deg, rgba(5, 15, 31, 0.24) 0%, rgba(5, 15, 31, 0.88) 64%, rgba(5, 15, 31, 0.98) 100%),
			linear-gradient(90deg, rgba(5, 15, 31, 0.9), rgba(5, 15, 31, 0.38));
	}

	.ych-event-registration-hero__content {
		justify-content: flex-end;
		padding: clamp(1.5rem, 6vw, 2.5rem);
	}

	.ych-event-registration-hero .ych-forum-breadcrumb {
		display: none;
	}

	.ych-event-registration-hero h1 {
		font-size: clamp(2.85rem, 12vw, 4rem);
	}

	.ych-event-registration-hero__lead {
		display: none;
	}

	.ych-event-registration-facts,
	.ych-event-next-steps__list {
		grid-template-columns: minmax(0, 1fr);
	}

	.ych-event-registration-facts > div + div {
		border-top: 0.0625rem solid rgba(143, 199, 255, 0.18);
		border-left: 0;
	}

	.ych-participation-context__event-card,
	.ych-event-support__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.ych-participation-context__event-card strong {
		text-align: left;
	}

	.ych-event-support__inner {
		display: flex;
	}
}

@media (max-width: 32.5rem) {
	.ych-event-registration-hero {
		height: 31rem;
	}

	.ych-event-registration-hero__strapline {
		font-size: 1.08rem;
	}

	.ych-forum-page--human-edge .ych-forum-form__panel {
		padding: 1.15rem;
		border-radius: 1.15rem;
	}
}

/* Dedicated member journey: editorial, calm and intentionally scoped. */
.ych-forum-page--member {
	--ych-member-navy: var(--ych-bg-primary);
	--ych-member-deep: var(--ych-bg-secondary);
	--ych-member-ivory: var(--ych-text-primary);
	--ych-member-blue: var(--ych-accent-blue);
	--ych-member-violet: var(--ych-accent-purple);
	--ych-member-copy: var(--ych-text-secondary);
	--ych-member-section-space: clamp(4.5rem, 7vw, 7rem);
	background: var(--ych-member-navy);
	color: var(--ych-member-ivory);
}

.ych-member-hero {
	position: relative;
	padding-block: clamp(2rem, 4vw, 4rem) var(--ych-member-section-space);
	background:
		radial-gradient(circle at 88% 4%, rgba(154, 114, 208, 0.18), transparent 32rem),
		linear-gradient(155deg, var(--ych-member-deep) 0%, var(--ych-member-navy) 72%);
	isolation: isolate;
}

.ych-member-hero::before {
	position: absolute;
	top: 12%;
	right: -10rem;
	width: 34rem;
	height: 34rem;
	border: 0.0625rem solid rgba(143, 199, 255, 0.11);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.ych-member-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	min-height: clamp(44rem, 62vw, 53rem);
	padding-inline: 0;
	grid-template-columns: minmax(0, 1fr);
	grid-template-areas: "member-hero";
	align-items: center;
}

.ych-member-hero__content {
	position: relative;
	z-index: 2;
	width: min(calc(100% - 4rem), 43rem);
	max-width: none;
	margin: clamp(2rem, 5vw, 4.5rem);
	padding: clamp(2rem, 4vw, 3.5rem);
	border-left: 0.45rem solid var(--ych-member-blue);
	background: rgba(9, 19, 34, 0.94);
	box-shadow: 0 1.75rem 4.5rem rgba(2, 9, 18, 0.42);
	grid-area: member-hero;
	backdrop-filter: blur(0.35rem);
}

.ych-member-hero .ych-forum-breadcrumb {
	margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.ych-member-hero h1 {
	max-width: 10.5ch;
	margin: 0;
	color: var(--ych-member-ivory);
	font-size: clamp(3.25rem, 5vw, 5.4rem);
	font-weight: 760;
	letter-spacing: -0.058em;
	line-height: 0.94;
}

.ych-member-hero__lead {
	max-width: 35rem;
	margin: clamp(1.5rem, 2.5vw, 2rem) 0 0;
	color: var(--ych-member-copy) !important;
	font-size: clamp(1.05rem, 1.5vw, 1.22rem);
	line-height: 1.72;
}

.ych-member-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.25rem 1.75rem;
	margin-top: clamp(1.8rem, 3vw, 2.5rem);
}

.ych-member-hero__actions .ych-forum-button {
	margin: 0;
	padding-inline: 1.8rem;
	border-radius: 0.2rem !important;
	background: var(--ych-accent-gradient);
	box-shadow: 0 1rem 2.5rem rgba(77, 155, 255, 0.2);
}

.ych-member-text-link {
	display: inline-flex;
	min-height: 2.75rem;
	align-items: center;
	gap: 0.65rem;
	border-bottom: 0.0625rem solid rgba(143, 199, 255, 0.48);
	color: var(--ych-member-ivory);
	font-size: 0.92rem;
	font-weight: 700;
	text-decoration: none;
	transition: border-color 180ms ease, color 180ms ease;
}

.ych-member-text-link:hover {
	border-color: var(--ych-member-blue);
	color: var(--ych-member-blue);
}

.ych-member-hero__media {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0.0625rem solid var(--ych-border-strong);
	border-radius: 0.25rem;
	background: var(--ych-bg-card);
	box-shadow: var(--ych-shadow-large);
	overflow: hidden;
	grid-area: member-hero;
}

.ych-member-hero__media .ych-forum-hero__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	aspect-ratio: auto;
	border-radius: 0;
	object-fit: cover;
	object-position: center 48%;
	transition: transform 500ms ease;
}

.ych-member-hero__media::after {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(9, 19, 34, 0.04) 35%, rgba(9, 19, 34, 0.82) 100%),
		linear-gradient(90deg, rgba(9, 19, 34, 0.18), transparent 48%);
	content: "";
	pointer-events: none;
}

.ych-member-hero__media figcaption {
	position: absolute;
	right: 1.5rem;
	bottom: 1.5rem;
	left: auto;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	gap: 1.25rem;
	padding: 0.8rem 1rem;
	border: 0.0625rem solid var(--ych-border-strong);
	background: rgba(9, 19, 34, 0.88);
	color: var(--ych-member-ivory);
	font-size: 0.68rem;
	font-weight: 750;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.ych-member-benefits {
	padding-block: var(--ych-member-section-space);
	background: var(--ych-member-deep);
}

.ych-member-section-heading {
	max-width: 55rem;
}

.ych-member-section-heading h2,
.ych-member-next h2,
.ych-member-support h2 {
	margin: 0;
	font-size: clamp(2.7rem, 5vw, 4.8rem);
	font-weight: 720;
	letter-spacing: -0.055em;
	line-height: 0.98;
}

.ych-member-benefits .ych-member-section-heading h2 {
	color: var(--ych-member-ivory);
}

.ych-member-benefits__grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.5rem);
	margin-top: clamp(3rem, 5vw, 4.5rem);
}

.ych-member-benefits__grid article {
	min-width: 0;
	padding: clamp(2rem, 3.5vw, 3.25rem);
	border: 0.0625rem solid var(--ych-border-strong);
	border-top: 0.35rem solid var(--ych-member-blue);
	border-radius: 0.2rem;
	background: rgba(16, 32, 51, 0.82);
	box-shadow: var(--ych-shadow-small);
}

.ych-member-benefits__grid article:nth-child(1) {
	grid-column: span 7;
}

.ych-member-benefits__grid article:nth-child(2) {
	grid-column: span 5;
	border-top-color: var(--ych-member-violet);
}

.ych-member-benefits__grid article:nth-child(3) {
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: 4rem minmax(14rem, 0.65fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(1.5rem, 4vw, 4rem);
	border-top-color: var(--ych-member-blue);
}

.ych-member-benefits__grid article:nth-child(3) h3,
.ych-member-benefits__grid article:nth-child(3) p {
	margin: 0;
}

.ych-member-benefits__grid span {
	color: var(--ych-member-blue);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.14em;
}

.ych-member-benefits__grid h3 {
	margin: 2.5rem 0 0;
	color: var(--ych-member-ivory);
	font-size: clamp(1.35rem, 2vw, 1.75rem);
	line-height: 1.2;
}

.ych-member-benefits__grid p {
	margin: 1rem 0 0;
	color: var(--ych-member-copy);
	font-size: 0.98rem;
	line-height: 1.72;
}

.ych-forum-page--member .ych-forum-form {
	padding-block: var(--ych-member-section-space);
	background:
		radial-gradient(circle at 4% 12%, rgba(120, 169, 228, 0.12), transparent 26rem),
		var(--ych-member-navy);
}

.ych-forum-page--member .ych-forum-form__grid {
	grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
	align-items: start;
	gap: clamp(3rem, 6vw, 6rem);
}

.ych-forum-page--member .ych-forum-form__intro h2 {
	color: var(--ych-member-ivory);
}

.ych-forum-page--member .ych-forum-form__intro > p:not(.ych-forum-eyebrow) {
	color: var(--ych-member-copy);
}

.ych-forum-page--member .ych-forum-form__note {
	border-color: var(--ych-border-strong);
	border-radius: 0.2rem;
	background: rgba(16, 32, 51, 0.72);
}

.ych-forum-page--member .ych-forum-form__note h3 {
	color: var(--ych-member-ivory);
}

.ych-forum-page--member .ych-forum-form__note p {
	color: var(--ych-member-copy);
}

.ych-forum-page--member .ych-forum-form__panel {
	padding: clamp(1.5rem, 3vw, 2.5rem);
	border-color: var(--ych-border-strong);
	border-top: 0.35rem solid var(--ych-member-violet);
	border-radius: 0.2rem;
	background: rgba(16, 32, 51, 0.94);
	box-shadow: var(--ych-shadow-large);
}

.ych-forum-page--member .ych-participation-context {
	border-color: var(--ych-border-strong);
}

.ych-participation-context__member-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.15rem;
	border: 0.0625rem solid var(--ych-accent-border);
	border-radius: 0.2rem;
	background: linear-gradient(110deg, var(--ych-bg-primary), var(--ych-bg-card));
}

.ych-participation-context__member-card span {
	color: var(--ych-member-copy);
	font-size: 0.78rem;
}

.ych-participation-context__member-card strong {
	color: var(--ych-member-ivory);
	font-size: 0.9rem;
	text-align: right;
}

.ych-forum-page--member .ych-participation-context__consent,
.ych-forum-page--member .ych-participation-context__privacy {
	color: var(--ych-member-copy);
}

.ych-forum-page--member .ych-participation-context__privacy a,
.ych-forum-page--member .ych-forum-form__note a {
	color: var(--ych-member-blue);
}

.ych-forum-page--member .ych-forum-form__embed .kadence-blocks-form-field label:not(.kadence-verify-label) {
	color: var(--ych-member-ivory) !important;
}

.ych-forum-page--member .ych-forum-form__embed :where(input[type="text"], input[type="email"], input[type="tel"]) {
	border-color: var(--ych-border-strong) !important;
	border-radius: 0.2rem !important;
	background: #0a1626 !important;
	box-shadow: inset 0 0.0625rem 0 rgba(255, 255, 255, 0.04);
	color: var(--ych-member-ivory) !important;
}

.ych-forum-page--member .ych-forum-form__embed :where(input[type="text"], input[type="email"], input[type="tel"]):focus {
	border-color: var(--ych-accent-blue) !important;
	background: #0d1b2d !important;
	box-shadow: 0 0 0 0.22rem rgba(77, 155, 255, 0.17);
}

.ych-forum-page--member .ych-forum-form__embed .kb-forms-submit {
	border-radius: 0.2rem !important;
	background: var(--ych-accent-gradient) !important;
	color: var(--ych-member-navy) !important;
}

.ych-member-next {
	padding-block: var(--ych-member-section-space);
	background: var(--ych-member-deep);
}

.ych-member-section-heading--split {
	display: grid;
	max-width: none;
	grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
	align-items: end;
	gap: clamp(2rem, 6vw, 6rem);
}

.ych-member-next h2 {
	max-width: 11ch;
	color: var(--ych-member-ivory);
}

.ych-member-section-heading--split > p {
	margin: 0;
	color: var(--ych-member-copy);
	font-size: 1.02rem;
	line-height: 1.72;
}

.ych-member-next__list {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0;
	margin: clamp(3rem, 5vw, 4.5rem) 0 0;
	padding: 0;
	border-top: 0.0625rem solid var(--ych-border-strong);
	list-style: none;
}

.ych-member-next__list li {
	display: grid;
	min-width: 0;
	grid-template-columns: 4rem minmax(15rem, 0.75fr) minmax(0, 1fr);
	align-items: start;
	gap: clamp(1.5rem, 4vw, 4rem);
	padding: clamp(1.75rem, 3vw, 2.5rem) 0;
	border-bottom: 0.0625rem solid var(--ych-border-strong);
	background: transparent;
}

.ych-member-next__list li > span {
	color: var(--ych-member-blue);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.ych-member-next__list h3 {
	margin: 0;
	color: var(--ych-member-ivory);
	font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.ych-member-next__list p {
	max-width: 42rem;
	margin: 0;
	color: var(--ych-member-copy);
	line-height: 1.65;
}

.ych-member-support {
	padding-block: clamp(3.5rem, 5vw, 5rem);
	border-top: 0.0625rem solid rgba(143, 199, 255, 0.14);
	background:
		radial-gradient(circle at 85% 20%, rgba(154, 114, 208, 0.24), transparent 24rem),
		var(--ych-member-navy);
}

.ych-member-support__inner {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
}

.ych-member-support h2 {
	max-width: 14ch;
	color: var(--ych-member-ivory);
	font-size: clamp(2rem, 4vw, 3.5rem);
}

.ych-member-support__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.5rem;
}

.ych-member-support__actions a {
	display: inline-flex;
	min-height: 2.75rem;
	align-items: center;
	gap: 0.5rem;
	color: var(--ych-member-blue);
	font-weight: 750;
	text-decoration-color: rgba(143, 199, 255, 0.42);
	text-underline-offset: 0.3em;
}

.ych-forum-page--member :where(a, button, input):focus-visible {
	outline: 0.1875rem solid var(--ych-focus);
	outline-offset: 0.22rem;
}

@media (hover: hover) {
	.ych-member-hero__media:hover .ych-forum-hero__image {
		transform: scale(1.025);
	}
}

@media (max-width: 62rem) {
	.ych-forum-page--member .ych-forum-form__grid,
	.ych-member-section-heading--split {
		grid-template-columns: minmax(0, 1fr);
	}

	.ych-member-benefits__grid,
	.ych-member-next__list {
		grid-template-columns: minmax(0, 1fr);
	}

	.ych-member-benefits__grid article:nth-child(n) {
		display: block;
		grid-column: 1 / -1;
	}

	.ych-member-benefits__grid article:nth-child(3) h3 {
		margin-top: 2.5rem;
	}

	.ych-member-benefits__grid article:nth-child(3) p {
		margin-top: 1rem;
	}

	.ych-member-hero__content,
	.ych-member-section-heading--split > p {
		max-width: 44rem;
	}

	.ych-member-hero__media {
		max-width: none;
	}

	.ych-forum-page--member .ych-forum-form__intro {
		position: static;
		max-width: 43rem;
	}
}

@media (max-width: 48rem) {
	.ych-member-hero {
		padding-block: 2.5rem 4.5rem;
	}

	.ych-member-hero__grid {
		display: flex;
		min-height: 0;
		flex-direction: column;
		gap: 0;
	}

	.ych-member-hero__content {
		order: 2;
		width: calc(100% - 2rem);
		margin: -3rem auto 0;
		padding: clamp(1.5rem, 7vw, 2.25rem);
		border-left-width: 0.3rem;
		backdrop-filter: none;
	}

	.ych-member-hero .ych-forum-breadcrumb {
		margin-bottom: 2rem;
	}

	.ych-member-hero h1 {
		font-size: clamp(2.85rem, 12vw, 4.25rem);
	}

	.ych-member-hero__media {
		order: 1;
		height: auto;
		border-radius: 0.2rem;
	}

	.ych-member-hero__media .ych-forum-hero__image {
		height: clamp(20rem, 80vw, 24rem);
		min-height: 0;
		aspect-ratio: auto;
	}

	.ych-member-hero__media figcaption {
		top: 1rem;
		bottom: auto;
	}

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

	.ych-member-benefits__grid article {
		padding: 2rem;
	}

	.ych-member-benefits__grid h3 {
		margin-top: 1.5rem;
	}

	.ych-member-next__list li {
		grid-template-columns: 2.75rem minmax(0, 1fr);
		gap: 0.5rem 1rem;
	}

	.ych-member-next__list li > span {
		grid-row: 1 / 3;
	}

	.ych-member-next__list h3,
	.ych-member-next__list p {
		grid-column: 2;
	}

	.ych-member-next__list p {
		margin-top: 0.35rem;
	}

	.ych-member-support__inner {
		align-items: flex-start;
		flex-direction: column;
	}
}

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

	.ych-member-hero__actions .ych-forum-button {
		width: 100%;
	}

	.ych-member-text-link {
		width: fit-content;
	}

	.ych-member-hero__media figcaption {
		right: 0.75rem;
		top: 0.75rem;
		bottom: auto;
		left: 0.75rem;
		align-items: center;
		gap: 0.45rem;
		padding: 0.65rem 0.75rem;
		font-size: 0.56rem;
	}

	.ych-participation-context__member-card {
		align-items: flex-start;
		flex-direction: column;
	}

	.ych-participation-context__member-card strong {
		text-align: left;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ych-member-hero__media .ych-forum-hero__image {
		transition: none;
	}

	.ych-member-hero__media:hover .ych-forum-hero__image {
		transform: none;
	}
}

/* Premium member journey: cinematic, minimal and consistently aligned. */
.ych-forum-page--member {
	--ych-member-section-space: clamp(5rem, 8vw, 8rem);
}

.ych-member-hero {
	padding: 0 0 var(--ych-member-section-space);
	background: var(--ych-member-navy);
}

.ych-member-hero::before {
	display: none;
}

.ych-member-hero__grid {
	width: 100%;
	max-width: none;
	min-height: clamp(44rem, 78vh, 56rem);
	margin: 0;
	padding: 0;
	grid-template-areas: "premium-hero";
}

.ych-member-hero__media {
	height: 100%;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	grid-area: premium-hero;
}

.ych-member-hero__media .ych-forum-hero__image {
	height: 100%;
	object-position: center 46%;
}

.ych-member-hero__media::after {
	background:
		linear-gradient(90deg, rgba(5, 15, 31, 0.96) 0%, rgba(5, 15, 31, 0.82) 38%, rgba(5, 15, 31, 0.28) 72%, rgba(5, 15, 31, 0.1) 100%),
		linear-gradient(180deg, rgba(5, 15, 31, 0.08) 48%, rgba(5, 15, 31, 0.72) 100%);
}

.ych-member-hero__content {
	z-index: 2;
	width: min(calc(100% - (var(--page-gutter) * 2)), 46rem);
	max-width: none;
	margin: 0 0 0 var(--page-gutter);
	padding: clamp(3rem, 6vw, 6rem) 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	grid-area: premium-hero;
	backdrop-filter: none;
}

.ych-member-hero h1 {
	max-width: 10ch;
	font-size: clamp(4rem, 6.4vw, 6.75rem);
	letter-spacing: -0.062em;
	line-height: 0.91;
	text-shadow: 0 0.2rem 1.5rem rgba(2, 9, 18, 0.3);
}

.ych-member-hero__lead {
	max-width: 39rem;
	color: rgba(244, 246, 251, 0.88) !important;
}

.ych-member-hero__actions .ych-forum-button,
.ych-forum-page--member .ych-forum-form__embed .kb-forms-submit {
	border-radius: 0 !important;
}

.ych-member-hero__media figcaption {
	right: var(--page-gutter);
	bottom: 1.75rem;
	left: auto;
	top: auto;
	gap: clamp(1rem, 3vw, 3rem);
	padding: 0.85rem 0;
	border: 0;
	border-top: 0.0625rem solid rgba(244, 246, 251, 0.52);
	background: transparent;
}

.ych-member-section-heading {
	max-width: 48rem;
}

.ych-member-benefits__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	border-top: 0.0625rem solid var(--ych-border-strong);
	border-bottom: 0.0625rem solid var(--ych-border-strong);
}

.ych-member-benefits__grid article:nth-child(n) {
	display: block;
	grid-column: auto;
	padding: clamp(2.5rem, 4vw, 4rem);
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.ych-member-benefits__grid article:first-child {
	padding-left: 0;
}

.ych-member-benefits__grid article:last-child {
	padding-right: 0;
}

.ych-member-benefits__grid article + article {
	border-left: 0.0625rem solid var(--ych-border-strong);
}

.ych-member-benefits__grid article:nth-child(n) h3 {
	margin-top: 2.25rem;
}

.ych-member-benefits__grid article:nth-child(n) p {
	margin-top: 1rem;
}

.ych-forum-page--member .ych-forum-form__note {
	padding: 1.25rem 0 1.25rem 1.5rem;
	border: 0;
	border-left: 0.2rem solid var(--ych-member-blue);
	border-radius: 0;
	background: transparent;
}

.ych-forum-page--member .ych-forum-form__panel {
	border: 0.0625rem solid var(--ych-border-strong);
	border-radius: 0;
	background: rgba(16, 32, 51, 0.58);
	box-shadow: none;
}

.ych-participation-context__member-card {
	padding-inline: 0;
	border: 0;
	border-bottom: 0.0625rem solid var(--ych-border-strong);
	border-radius: 0;
	background: transparent;
}

.ych-forum-page--member .ych-forum-form__embed :where(input[type="text"], input[type="email"], input[type="tel"]) {
	border-width: 0 0 0.0625rem !important;
	border-radius: 0 !important;
	background: rgba(9, 19, 34, 0.72) !important;
}

.ych-member-next__list li {
	grid-template-columns: 6rem minmax(15rem, 0.72fr) minmax(0, 1fr);
	align-items: center;
}

.ych-member-next__list li > span {
	font-size: clamp(2rem, 3vw, 3rem);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1;
}

.ych-member-next__list h3 {
	font-size: clamp(1.5rem, 2.5vw, 2.15rem);
}

.ych-member-support {
	border-top: 0.0625rem solid var(--ych-border-strong);
	background:
		linear-gradient(90deg, rgba(120, 169, 228, 0.08), rgba(154, 114, 208, 0.14)),
		var(--ych-member-navy);
}

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

	.ych-member-benefits__grid article:nth-child(n) {
		padding: 2.5rem 0;
	}

	.ych-member-benefits__grid article + article {
		border-top: 0.0625rem solid var(--ych-border-strong);
		border-left: 0;
	}

	.ych-member-next__list li {
		grid-template-columns: 5rem minmax(12rem, 0.7fr) minmax(0, 1fr);
	}
}

@media (max-width: 48rem) {
	.ych-member-hero {
		padding-bottom: var(--ych-member-section-space);
	}

	.ych-member-hero__grid {
		display: flex;
		width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-max-width));
		min-height: 0;
		margin-inline: auto;
		flex-direction: column;
	}

	.ych-member-hero__media {
		width: 100%;
		height: clamp(20rem, 88vw, 27rem);
	}

	.ych-member-hero__media::after {
		background: linear-gradient(180deg, rgba(5, 15, 31, 0.04) 38%, rgba(5, 15, 31, 0.68) 100%);
	}

	.ych-member-hero__content {
		width: 100%;
		margin: 0;
		padding: 2.5rem 0 0;
	}

	.ych-member-hero h1 {
		font-size: clamp(3.15rem, 13vw, 4.5rem);
	}

	.ych-member-hero__media figcaption {
		right: 1rem;
		bottom: 0.75rem;
		left: 1rem;
		top: auto;
		justify-content: space-between;
		font-size: 0.54rem;
	}

	.ych-member-next__list li {
		grid-template-columns: 3.5rem minmax(0, 1fr);
		align-items: start;
		gap: 0.5rem 1rem;
	}

	.ych-member-next__list li > span {
		grid-row: 1 / 3;
		font-size: 1.65rem;
	}

	.ych-member-next__list h3,
	.ych-member-next__list p {
		grid-column: 2;
	}

	.ych-member-next__list p {
		margin-top: 0.35rem;
	}
}

/* Partner page refinement: match the homepage palette, motion and spacing. */
.ych-forum-page--partner {
	--ych-partner-rule: rgba(143, 199, 255, 0.2);
	background: var(--ych-bg-primary);
	color: var(--ych-text-primary);
}

.ych-partner-hero {
	padding-block: clamp(2.25rem, 4vw, 4rem) clamp(3rem, 5vw, 4.75rem);
	background:
		radial-gradient(circle at 88% 15%, rgba(154, 114, 208, 0.16), transparent 26rem),
		linear-gradient(145deg, var(--ych-bg-primary) 0%, var(--ych-bg-secondary) 100%);
}

.ych-partner-hero .ych-forum-breadcrumb {
	margin-block-end: clamp(2rem, 3.5vw, 3.25rem);
}

.ych-partner-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(24rem, 1.08fr);
	align-items: center;
	gap: clamp(2rem, 4.5vw, 4.5rem);
}

.ych-partner-hero__copy {
	min-width: 0;
}

.ych-partner-hero h1 {
	max-width: 10ch;
	margin: 0;
	color: var(--ych-text-primary);
	font-size: clamp(3.5rem, 5.6vw, 5.6rem);
	letter-spacing: -0.055em;
	line-height: 0.94;
}

.ych-partner-hero__lead {
	max-width: 36rem;
	margin: 1.5rem 0 0;
	color: var(--ych-text-secondary) !important;
	font-size: clamp(1rem, 1.3vw, 1.12rem);
	line-height: 1.7;
}

.ych-partner-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem 1.5rem;
	margin-block-start: 1.75rem;
}

.ych-partner-hero__actions .ych-forum-button {
	margin: 0;
}

.ych-partner-text-link {
	color: var(--ych-text-primary);
	font-size: 0.88rem;
	font-weight: 700;
	text-decoration-color: var(--ych-accent-blue);
	text-decoration-thickness: 0.125rem;
	text-underline-offset: 0.35rem;
}

.ych-partner-text-link:hover {
	color: var(--ych-accent-blue);
}

.ych-partner-slider {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border: 0.0625rem solid var(--ych-border-strong);
	border-radius: 1rem;
	background: var(--ych-bg-secondary);
	box-shadow: var(--ych-shadow-medium);
}

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

.ych-partner-slider__slides,
.ych-partner-slider__slide,
.ych-partner-slider__slide picture,
.ych-partner-slider__slide img {
	display: block;
	width: 100%;
	height: 100%;
}

.ych-partner-slider__slide {
	display: none;
}

.ych-partner-slider__slide:first-child {
	display: block;
}

.ych-partner-slider.is-ready .ych-partner-slider__slide {
	position: absolute;
	inset: 0;
	display: block;
	opacity: 0;
	transition: opacity 650ms ease;
}

.ych-partner-slider.is-ready .ych-partner-slider__slide.is-active {
	z-index: 1;
	opacity: 1;
}

.ych-partner-slider__slide img {
	object-fit: cover;
	object-position: center;
	transform: scale(1);
	transition: transform 5s ease;
}

.ych-partner-slider__slide:nth-child(1) img { object-position: 52% center; }
.ych-partner-slider__slide:nth-child(2) img { object-position: center; }
.ych-partner-slider__slide:nth-child(3) img { object-position: center 28%; }
.ych-partner-slider__slide:nth-child(4) img { object-position: 48% 30%; }

.ych-partner-slider.is-ready .ych-partner-slider__slide.is-active img {
	transform: scale(1.035);
}

.ych-partner-slider::after {
	position: absolute;
	z-index: 2;
	inset: 0;
	background: linear-gradient(180deg, transparent 62%, rgba(5, 15, 31, 0.52) 100%);
	content: "";
	pointer-events: none;
}

.ych-partner-slider__controls {
	position: absolute;
	z-index: 3;
	right: 0.85rem;
	bottom: 0.85rem;
	left: 0.85rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.ych-partner-slider__controls[hidden] {
	display: none;
}

.ych-partner-slider__controls > button {
	display: inline-flex;
	width: 2.65rem;
	height: 2.65rem;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0.0625rem solid rgba(255, 255, 255, 0.48);
	border-radius: 50%;
	background: rgba(9, 19, 34, 0.76);
	color: #fff;
	cursor: pointer;
	backdrop-filter: blur(0.5rem);
}

.ych-partner-slider__controls > button:hover {
	border-color: var(--ych-accent-blue);
	background: var(--ych-bg-primary);
}

.ych-partner-slider__dots {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.65rem 0.8rem;
	border-radius: 2rem;
	background: rgba(9, 19, 34, 0.72);
	backdrop-filter: blur(0.5rem);
}

.ych-partner-slider__dots button {
	width: 0.55rem;
	height: 0.55rem;
	padding: 0;
	border: 0.0625rem solid rgba(255, 255, 255, 0.75);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.ych-partner-slider__dots button[aria-current="true"] {
	border-color: var(--ych-accent-blue);
	background: var(--ych-accent-blue);
}

.ych-partner-opportunities,
.ych-partner-process {
	padding-block: clamp(3.75rem, 6vw, 5.75rem);
	background: var(--ych-bg-primary);
	color: var(--ych-text-primary);
}

.ych-partner-opportunities {
	border-block-start: 0.0625rem solid var(--ych-border);
	scroll-margin-top: 5rem;
}

.ych-partner-section-heading {
	display: grid;
	grid-template-columns: minmax(11rem, 0.45fr) minmax(0, 1.55fr);
	gap: clamp(1.75rem, 4vw, 4rem);
	margin-block-end: clamp(2.5rem, 4vw, 3.75rem);
}

.ych-partner-section-heading .ych-forum-eyebrow {
	margin: 0;
	color: var(--ych-accent-blue) !important;
}

.ych-partner-section-heading h2 {
	max-width: 15ch;
	margin-block-end: 1rem;
	color: var(--ych-text-primary);
	font-size: clamp(2.75rem, 4.4vw, 4.4rem);
	letter-spacing: -0.05em;
	line-height: 0.98;
}

.ych-partner-section-heading > div > p {
	max-width: 40rem;
	margin: 0;
	color: var(--ych-text-secondary);
	font-size: 1rem;
	line-height: 1.65;
}

.ych-partner-opportunities__grid,
.ych-partner-process__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	border: 0;
}

.ych-partner-opportunities__grid article,
.ych-partner-process__list li {
	min-width: 0;
	padding: clamp(1.5rem, 2.5vw, 2.25rem);
	border: 0.0625rem solid var(--ych-border-strong);
	border-radius: 1rem;
	background: var(--ych-bg-secondary);
}

.ych-partner-opportunities__grid article + article,
.ych-partner-process__list li + li {
	border: 0.0625rem solid var(--ych-border-strong);
}

.ych-partner-opportunities__grid span,
.ych-partner-process__list > li > span {
	display: block;
	margin-block-end: 2.25rem;
	color: var(--ych-accent-purple);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
}

.ych-partner-opportunities__grid h3,
.ych-partner-process__list h3 {
	margin-block-end: 0.75rem;
	color: var(--ych-text-primary);
	font-size: clamp(1.3rem, 1.8vw, 1.65rem);
	letter-spacing: -0.025em;
}

.ych-partner-opportunities__grid p,
.ych-partner-process__list p {
	margin: 0;
	color: var(--ych-text-secondary);
	line-height: 1.65;
}

.ych-forum-page--partner .ych-forum-form {
	padding-block: clamp(3.75rem, 6vw, 5.75rem);
	border-block: 0.0625rem solid var(--ych-border);
	background:
		radial-gradient(circle at 88% 12%, rgba(154, 114, 208, 0.12), transparent 26rem),
		var(--ych-bg-secondary);
}

.ych-forum-page--partner .ych-forum-form__panel,
.ych-forum-page--partner .ych-forum-form__note {
	border-radius: 1rem;
	background: var(--ych-bg-primary);
	box-shadow: none;
}

.ych-partner-process {
	background: var(--ych-bg-primary);
}

.ych-partner-section-heading--compact {
	display: block;
	max-width: 58rem;
}

.ych-partner-process__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ych-partner-contact {
	padding-block: clamp(2.5rem, 4vw, 3.75rem);
	background: linear-gradient(135deg, #557fbe, var(--ych-accent-purple));
}

.ych-partner-contact__inner {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2rem;
}

.ych-partner-contact .ych-forum-eyebrow {
	color: rgba(255, 255, 255, 0.78) !important;
}

.ych-partner-contact h2 {
	max-width: 17ch;
	margin: 0;
	color: #fff;
	font-size: clamp(2.1rem, 3.5vw, 3.5rem);
	letter-spacing: -0.04em;
	line-height: 1;
}

.ych-partner-contact a {
	display: inline-flex;
	min-height: 3.4rem;
	align-items: center;
	gap: 0.75rem;
	padding: 0.85rem 1.35rem;
	border: 0.0625rem solid rgba(255, 255, 255, 0.64);
	border-radius: var(--ych-radius-button);
	color: #fff;
	font-weight: 800;
	text-decoration: none;
}

.ych-partner-contact a:hover {
	background: #fff;
	color: var(--ych-bg-primary);
}

@media (max-width: 62rem) {
	.ych-partner-hero__grid,
	.ych-partner-section-heading {
		grid-template-columns: minmax(0, 1fr);
	}

	.ych-partner-hero__copy {
		max-width: 44rem;
	}

	.ych-partner-slider {
		max-width: 48rem;
	}
}

@media (max-width: 46rem) {
	.ych-partner-hero {
		padding-block: 2rem 3rem;
	}

	.ych-partner-hero .ych-forum-breadcrumb {
		margin-block-end: 2rem;
	}

	.ych-partner-hero h1 {
		font-size: clamp(3.15rem, 14vw, 4.4rem);
	}

	.ych-partner-hero__actions,
	.ych-partner-contact__inner {
		align-items: stretch;
		flex-direction: column;
	}

	.ych-partner-hero__actions .ych-forum-button,
	.ych-partner-contact a {
		width: 100%;
	}

	.ych-partner-slider {
		aspect-ratio: 1 / 1;
		border-radius: 0.8rem;
	}

	.ych-partner-opportunities__grid,
	.ych-partner-process__list {
		grid-template-columns: minmax(0, 1fr);
	}

	.ych-partner-opportunities,
	.ych-partner-process,
	.ych-forum-page--partner .ych-forum-form {
		padding-block: 3.25rem;
	}

	.ych-partner-opportunities__grid span,
	.ych-partner-process__list > li > span {
		margin-block-end: 1.5rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ych-partner-slider.is-ready .ych-partner-slider__slide,
	.ych-partner-slider__slide img {
		transition: none;
	}

	.ych-partner-slider.is-ready .ych-partner-slider__slide.is-active img {
		transform: none;
	}
}
