@charset "UTF-8";

/* ========================================
   JADA Global Pages
   - Page-specific styles must remain scoped to each page wrapper.
======================================== */

/* ========================================
   Autonomy Stage OS
======================================== */

.jada-stage-os-page {
	--jada-pages-navy: var(--jada-navy, #0d1f3d);
	--jada-pages-gold: var(--jada-gold, #b8965a);
	--jada-pages-gold-deep: var(--jada-gold-deep, #a86d00);
	--jada-pages-white: var(--jada-white, #ffffff);
	--jada-pages-off-white: var(--jada-off-white, #f8f7f4);
	--jada-pages-serif: var(--jada-serif, "Iowan Old Style", Baskerville, "Times New Roman", serif);
	--jada-pages-sans: var(--jada-sans, "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif);
	--jada-pages-line: rgba(184, 150, 90, 0.34);
	--jada-pages-blue-line: rgba(13, 31, 61, 0.24);

	position: relative;
	left: 50%;
	width: 100vw;
	width: 100dvw;
	margin-left: -50vw;
	margin-left: -50dvw;
	overflow: clip;
	color: var(--jada-pages-navy);
	background: var(--jada-pages-white);
	font-family: var(--jada-pages-sans);
}

.jada-stage-os-page *,
.jada-stage-os-page *::before,
.jada-stage-os-page *::after {
	box-sizing: border-box;
}

.jada-stage-os-icon-sprite {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}

.jada-stage-os-icon {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.65;
	stroke-linecap: round;
	stroke-linejoin: round;
	vector-effect: non-scaling-stroke;
}

.post_content .jada-stage-os-page :where(h1, h2, h3, p, ul, ol) {
	margin: 0;
	padding: 0;
}

.post_content .jada-stage-os-page :where(h1, h2, h3) {
	border: 0;
	background: none;
	color: inherit;
	font-weight: inherit;
}

.post_content .jada-stage-os-page :where(h1, h2, h3)::before,
.post_content .jada-stage-os-page :where(h1, h2, h3)::after {
	display: none;
	content: none;
}

.post_content .jada-stage-os-page :where(ul, ol) {
	list-style: none;
}

.jada-stage-os-page a {
	color: inherit;
	text-decoration: none;
}

.jada-stage-os-page__eyebrow,
.post_content .jada-stage-os-page .jada-stage-os-section__index {
	color: var(--jada-pages-gold-deep);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.jada-stage-os-section__index {
	display: flex;
	align-items: center;
	gap: 18px;
}

.jada-stage-os-section__index span {
	font-family: var(--jada-pages-serif);
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 0;
}

.jada-stage-os-section__index::after {
	width: 42px;
	height: 1px;
	background: var(--jada-pages-gold);
	content: "";
}

.jada-stage-os-page__button,
.jada-stage-os-page__text-link {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 12px 20px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
	transition: opacity 180ms ease, background-color 180ms ease, color 180ms ease;
}

.jada-stage-os-page__button {
	min-width: 220px;
	color: var(--jada-pages-white);
	background: var(--jada-pages-navy);
}

.jada-stage-os-page__text-link {
	padding-inline: 0;
	border-bottom: 1px solid var(--jada-pages-gold);
}

.jada-stage-os-page__button:hover,
.jada-stage-os-page__text-link:hover {
	opacity: 0.74;
}

.jada-stage-os-page a:focus-visible {
	outline: 2px solid var(--jada-pages-gold);
	outline-offset: 4px;
}

.jada-stage-os-page__icon {
	display: grid;
	width: 58px;
	height: 58px;
	place-items: center;
	padding: 12px;
	border: 1px solid var(--jada-pages-line);
	border-radius: 50%;
	color: var(--jada-pages-gold-deep);
}

/* Page hero */
.jada-stage-os-hero {
	background:
		radial-gradient(circle at 70% 35%, rgba(184, 150, 90, 0.075), transparent 25rem),
		linear-gradient(110deg, #fff 0%, #fffdfa 64%, #f7f8fb 100%);
}

.jada-stage-os-hero__inner,
.jada-stage-os-section__inner,
.jada-stage-os-cta__inner {
	width: min(100% - 64px, 1280px);
	margin-inline: auto;
}

.jada-stage-os-hero__inner {
	display: grid;
	grid-template-columns: minmax(330px, 0.8fr) minmax(620px, 1.2fr);
	align-items: center;
	gap: clamp(44px, 6vw, 92px);
	min-height: 640px;
	padding-block: 70px 78px;
}

.jada-stage-os-hero__copy {
	display: grid;
	align-content: center;
	gap: 25px;
}

.post_content .jada-stage-os-page .jada-stage-os-hero__title {
	max-width: 540px;
	font-family: var(--jada-pages-serif);
	font-size: clamp(52px, 4.8vw, 72px);
	font-weight: 400;
	line-height: 1.06;
	letter-spacing: -0.035em;
}

.post_content .jada-stage-os-page .jada-stage-os-hero__lead {
	max-width: 510px;
	font-size: 15px;
	line-height: 1.8;
}

.jada-stage-os-hero__actions,
.jada-stage-os-cta__actions {
	display: flex;
	align-items: center;
	gap: 34px;
}

.jada-stage-os-hero__framework {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-template-rows: repeat(3, 150px);
	grid-template-areas:
		"stage1 os stage5"
		"stage2 assessment stage4"
		". stage3 .";
	align-items: center;
	justify-items: center;
	min-width: 0;
}

.jada-stage-os-hero__framework::before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 420px;
	height: 420px;
	border: 1px dashed var(--jada-pages-line);
	border-radius: 50%;
	content: "";
	transform: translate(-50%, -50%);
}

.jada-stage-os-hero__os,
.jada-stage-os-hero__assessment,
.jada-stage-os-hero__stages li {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	text-align: center;
}

.jada-stage-os-hero__os {
	grid-area: os;
	align-self: start;
	min-width: 210px;
	min-height: 72px;
	padding: 12px 18px;
	border: 1px solid var(--jada-pages-gold);
	border-radius: 40px;
	background: var(--jada-pages-white);
}

.jada-stage-os-hero__assessment {
	grid-area: assessment;
	width: 154px;
	height: 154px;
	align-content: center;
	gap: 6px;
	padding: 18px;
	border: 1px solid var(--jada-pages-gold-deep);
	border-radius: 50%;
	background: var(--jada-pages-white);
}

.jada-stage-os-hero__assessment > .jada-stage-os-icon {
	width: 32px;
	height: 32px;
	color: var(--jada-pages-gold-deep);
}

.jada-stage-os-hero__os strong,
.jada-stage-os-hero__assessment strong {
	font-family: var(--jada-pages-serif);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.15;
}

.jada-stage-os-hero__os span,
.jada-stage-os-hero__assessment span {
	font-size: 10px;
	line-height: 1.35;
}

.jada-stage-os-hero__stages {
	display: contents;
}

.jada-stage-os-hero__stages li {
	width: 118px;
	height: 118px;
	align-content: center;
	gap: 2px;
	border: 1px solid #7d9ed3;
	border-radius: 50%;
	background: var(--jada-pages-white);
}

.jada-stage-os-hero__stages li:nth-child(1) { grid-area: stage1; }
.jada-stage-os-hero__stages li:nth-child(2) { grid-area: stage2; }
.jada-stage-os-hero__stages li:nth-child(3) { grid-area: stage3; }
.jada-stage-os-hero__stages li:nth-child(4) { grid-area: stage4; }
.jada-stage-os-hero__stages li:nth-child(5) { grid-area: stage5; }

.jada-stage-os-hero__stages > li > span {
	display: grid;
	width: 32px;
	height: 32px;
	place-items: center;
	border: 1px solid var(--jada-pages-line);
	border-radius: 50%;
	color: var(--jada-pages-gold-deep);
	font-family: var(--jada-pages-serif);
	font-size: 17px;
}

.jada-stage-os-hero__stages strong {
	font-size: 11px;
}

/* Shared section layout */
.jada-stage-os-section {
	border-top: 1px solid var(--jada-pages-line);
}

.jada-stage-os-section:nth-child(even) {
	background: linear-gradient(105deg, #fff 0%, #fff 32%, #fbfaf8 100%);
}

.jada-stage-os-section__inner {
	padding-block: 58px 62px;
}

.jada-stage-os-section__inner--split {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: clamp(40px, 5.2vw, 80px);
}

.jada-stage-os-section__intro {
	display: grid;
	align-content: start;
	gap: 18px;
}

.post_content .jada-stage-os-page .jada-stage-os-section__title,
.post_content .jada-stage-os-page .jada-stage-os-cta h2 {
	font-family: var(--jada-pages-serif);
	font-size: clamp(34px, 3vw, 44px);
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: -0.025em;
}

.post_content .jada-stage-os-page .jada-stage-os-section__text,
.post_content .jada-stage-os-page .jada-stage-os-cta p {
	font-size: 13px;
	line-height: 1.75;
}

/* Overview */
.jada-stage-os-overview__features,
.jada-stage-os-audience__list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.jada-stage-os-overview__features li,
.jada-stage-os-audience__list li {
	display: grid;
	min-width: 0;
	align-content: center;
	justify-items: center;
	gap: 13px;
	padding: 18px 22px;
	border-left: 1px solid var(--jada-pages-line);
	text-align: center;
}

.jada-stage-os-overview__features li:first-child,
.jada-stage-os-audience__list li:first-child {
	border-left: 0;
}

.post_content .jada-stage-os-page .jada-stage-os-overview__features h3,
.post_content .jada-stage-os-page .jada-stage-os-audience__list h3 {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
}

.post_content .jada-stage-os-page .jada-stage-os-overview__features p,
.post_content .jada-stage-os-page .jada-stage-os-audience__list p {
	font-size: 11px;
	line-height: 1.65;
}

/* The Five Stages */
.jada-stage-os-stages__assessment {
	display: grid;
	gap: 16px;
}

.jada-stage-os-stages__list {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 8px;
}

.jada-stage-os-stages__list > li {
	position: relative;
	display: grid;
	min-width: 0;
	min-height: 180px;
	align-content: center;
	justify-items: center;
	gap: 14px;
	padding: 22px 18px;
	border: 1px solid var(--jada-pages-line);
	background: var(--jada-pages-off-white);
	text-align: center;
}

.jada-stage-os-assessment__flow > li:not(:last-child)::after,
.jada-stage-os-relationship__flow > li:not(:last-child)::after {
	position: absolute;
	top: 50%;
	right: -9px;
	z-index: 2;
	color: var(--jada-pages-gold-deep);
	content: "→";
	font-size: 18px;
	transform: translateY(-50%);
}

.jada-stage-os-stages__number {
	display: grid;
	width: 58px;
	height: 58px;
	place-items: center;
	border: 1px solid var(--jada-pages-line);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.72);
	color: var(--jada-pages-gold-deep);
	font-family: var(--jada-pages-serif);
	font-size: 24px;
}

.post_content .jada-stage-os-page .jada-stage-os-stages__list h3 {
	font-family: var(--jada-pages-serif);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.25;
}

.jada-stage-os-stages__severity {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 36px;
	min-height: 50px;
	padding: 12px 22px;
	border: 1px solid var(--jada-pages-line);
	background: linear-gradient(90deg, #fbfaf8, #f3ead9);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
}

.jada-stage-os-stages__severity::after {
	position: absolute;
	top: 50%;
	right: 42%;
	left: 42%;
	height: 1px;
	background: var(--jada-pages-gold);
	content: "";
	transform: translateY(-50%);
}

.jada-stage-os-stages__severity::before {
	position: absolute;
	top: 50%;
	left: 50%;
	color: var(--jada-pages-gold-deep);
	content: "→";
	font-size: 19px;
	transform: translate(-50%, -52%);
}

.post_content .jada-stage-os-page .jada-stage-os-stages__diagnostic-note {
	padding: 2px 2px 0;
	color: rgba(13, 31, 61, 0.72);
	font-size: 11px;
	line-height: 1.6;
}

/* 5-Stage Assessment */
.jada-stage-os-assessment__body {
	display: grid;
	gap: 14px;
}

.post_content .jada-stage-os-assessment__parent {
	display: flex;
	align-items: baseline;
	gap: 12px;
	padding: 13px 20px;
	border: 1px solid var(--jada-pages-gold);
	background: var(--jada-pages-white);
}

.post_content .jada-stage-os-assessment__parent > .jada-stage-os-icon {
	width: 26px;
	height: 26px;
	color: var(--jada-pages-gold-deep);
}

.post_content .jada-stage-os-assessment__parent strong {
	font-family: var(--jada-pages-serif);
	font-size: 20px;
	font-weight: 400;
}

.post_content .jada-stage-os-assessment__parent span {
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.post_content .jada-stage-os-assessment__nested {
	display: grid;
	gap: 24px;
	padding: 26px;
	border: 1px solid var(--jada-pages-line);
	background: var(--jada-pages-off-white);
}

.post_content .jada-stage-os-page .jada-stage-os-assessment__nested > h3 {
	font-family: var(--jada-pages-serif);
	font-size: 24px;
	font-weight: 400;
}

.post_content .jada-stage-os-assessment__flow {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 20px;
}

.post_content .jada-stage-os-assessment__flow > li {
	position: relative;
	display: grid;
	min-width: 0;
	align-content: start;
	justify-items: center;
	gap: 11px;
	text-align: center;
}

.post_content .jada-stage-os-assessment__flow li > span {
	display: grid;
	width: 50px;
	height: 50px;
	place-items: center;
	border: 1px solid var(--jada-pages-blue-line);
	border-radius: 50%;
	padding: 10px;
}

.post_content .jada-stage-os-assessment__flow strong {
	font-size: 11px;
	line-height: 1.4;
}

.post_content .jada-stage-os-assessment__flow small {
	font-size: 10px;
	line-height: 1.5;
}

.post_content .jada-stage-os-assessment__note {
	padding: 16px 22px 16px 52px;
	border-left: 2px solid var(--jada-pages-gold);
	background: #fbfaf8;
	font-family: var(--jada-pages-serif);
	font-size: 16px;
}

/* Relationship */
.jada-stage-os-relationship__diagram {
	display: grid;
	gap: 24px;
}

.jada-stage-os-relationship__flow {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.jada-stage-os-relationship__flow li {
	position: relative;
	display: grid;
	min-height: 210px;
	align-content: center;
	justify-items: center;
	gap: 9px;
	padding: 24px;
	border: 1px solid var(--jada-pages-navy);
	background: var(--jada-pages-white);
	text-align: center;
}

.jada-stage-os-relationship__flow li:nth-child(2) {
	border-color: var(--jada-pages-gold);
}

.jada-stage-os-relationship__icon {
	display: grid;
	width: 58px;
	height: 58px;
	place-items: center;
	padding: 13px;
	border: 1px solid var(--jada-pages-line);
	border-radius: 50%;
	color: var(--jada-pages-gold-deep);
	background: var(--jada-pages-white);
}

.jada-stage-os-relationship__flow strong,
.jada-stage-os-relationship__outcome strong {
	font-family: var(--jada-pages-serif);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.25;
}

.jada-stage-os-relationship__flow span,
.jada-stage-os-relationship__flow small,
.jada-stage-os-relationship__outcome span {
	font-size: 10px;
	line-height: 1.55;
}

.jada-stage-os-relationship__nested {
	display: grid;
	gap: 3px;
	padding-top: 8px;
	border-top: 1px solid var(--jada-pages-line);
}

.jada-stage-os-relationship__nested b {
	font-weight: 600;
}

.jada-stage-os-relationship__outcome {
	position: relative;
	display: grid;
	justify-items: center;
	gap: 6px;
	padding: 18px 24px;
	border: 1px solid var(--jada-pages-gold);
	text-align: center;
}

.jada-stage-os-relationship__outcome::before {
	position: absolute;
	top: -25px;
	left: 90%;
	content: "↓";
	transform: translateX(-50%);
}

/* Audience */
.jada-stage-os-audience__list {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.jada-stage-os-audience__list li {
	padding-inline: 17px;
}

/* Page CTA */
.jada-stage-os-cta {
	border-top: 1px solid var(--jada-pages-line);
	background: var(--jada-pages-navy);
	color: var(--jada-pages-white);
}

.jada-stage-os-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 22px 60px;
	padding-block: 58px;
}

.post_content .jada-stage-os-page .jada-stage-os-cta h2 {
	grid-column: 1;
	max-width: 700px;
}

.post_content .jada-stage-os-page .jada-stage-os-cta > .jada-stage-os-cta__inner > p:not(.jada-stage-os-page__eyebrow) {
	grid-column: 1;
	max-width: 700px;
}

.jada-stage-os-cta__actions {
	grid-row: 1 / span 3;
	grid-column: 2;
	flex-direction: column;
	align-items: stretch;
}

.jada-stage-os-cta .jada-stage-os-page__button {
	color: var(--jada-pages-navy);
	background: var(--jada-pages-white);
}

/* Laptop */
@media (max-width: 1100px) {
	.jada-stage-os-hero__inner {
		grid-template-columns: minmax(300px, 0.72fr) minmax(530px, 1.28fr);
		gap: 32px;
	}

	.jada-stage-os-hero__framework {
		grid-template-rows: repeat(3, 135px);
	}

	.jada-stage-os-hero__framework::before {
		width: 370px;
		height: 370px;
	}

	.jada-stage-os-hero__stages li {
		width: 105px;
		height: 105px;
	}

	.jada-stage-os-section__inner--split {
		grid-template-columns: 230px minmax(0, 1fr);
		gap: 38px;
	}

	.jada-stage-os-stages__list > li {
		min-height: 180px;
		padding-inline: 13px;
	}

	.jada-stage-os-overview__features li,
	.jada-stage-os-audience__list li {
		padding-inline: 13px;
	}
}

/* Tablet */
@media (max-width: 900px) {
	.jada-stage-os-hero__inner,
	.jada-stage-os-section__inner,
	.jada-stage-os-cta__inner {
		width: min(100% - 48px, 760px);
	}

	.jada-stage-os-hero__inner {
		grid-template-columns: 1fr;
		gap: 52px;
		padding-block: 58px 64px;
	}

	.jada-stage-os-hero__copy {
		max-width: 650px;
	}

	.jada-stage-os-hero__framework {
		width: min(100%, 650px);
		margin-inline: auto;
	}

	.jada-stage-os-section__inner--split {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.jada-stage-os-section__intro {
		max-width: 600px;
	}

	.jada-stage-os-overview__features {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jada-stage-os-overview__features li:nth-child(3) {
		border-left: 0;
	}

	.jada-stage-os-overview__features li:nth-child(n + 3) {
		border-top: 1px solid var(--jada-pages-line);
	}

	.jada-stage-os-assessment__flow {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 28px 20px;
	}

	.jada-stage-os-assessment__flow > li:not(:last-child)::after {
		display: none;
	}

	.jada-stage-os-assessment__flow > li:nth-child(n + 4) {
		grid-column: span 1;
	}

	.jada-stage-os-relationship__flow {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}

	.jada-stage-os-relationship__flow > li:not(:last-child)::after {
		display: none;
	}

	.jada-stage-os-relationship__flow li {
		padding-inline: 14px;
	}

	.jada-stage-os-audience__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jada-stage-os-audience__list li:nth-child(odd) {
		border-left: 0;
	}

	.jada-stage-os-audience__list li:nth-child(n + 3) {
		border-top: 1px solid var(--jada-pages-line);
	}

	.jada-stage-os-audience__list li:last-child {
		grid-column: 1 / -1;
	}

	.jada-stage-os-cta__inner {
		grid-template-columns: 1fr;
	}

	.jada-stage-os-cta__actions {
		grid-row: auto;
		grid-column: 1;
		flex-direction: row;
		align-items: center;
		margin-top: 10px;
	}
}

/* Smartphone */
@media (max-width: 560px) {
	.jada-stage-os-hero__inner,
	.jada-stage-os-section__inner,
	.jada-stage-os-cta__inner {
		width: min(100% - 36px, 520px);
	}

	.jada-stage-os-hero__inner {
		gap: 40px;
		padding-block: 44px 50px;
	}

	.post_content .jada-stage-os-page .jada-stage-os-hero__title {
		font-size: clamp(40px, 12vw, 52px);
	}

	.post_content .jada-stage-os-page .jada-stage-os-hero__lead {
		font-size: 14px;
	}

	.jada-stage-os-hero__actions,
	.jada-stage-os-cta__actions {
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
	}

	.jada-stage-os-page__button {
		width: 100%;
	}

	.jada-stage-os-hero__framework {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		grid-template-areas:
			"os"
			"assessment"
			"stages";
		gap: 18px;
	}

	.jada-stage-os-hero__framework::before {
		display: none;
	}

	.jada-stage-os-hero__os,
	.jada-stage-os-hero__assessment {
		width: 100%;
		height: auto;
		min-height: 78px;
		border-radius: 0;
	}

	.jada-stage-os-hero__assessment::before,
	.jada-stage-os-hero__stages::before {
		position: absolute;
		top: -20px;
		left: 50%;
		content: "↓";
		transform: translateX(-50%);
	}

	.jada-stage-os-hero__stages {
		position: relative;
		display: grid;
		grid-area: stages;
		grid-template-columns: 1fr;
		gap: 10px;
		width: 100%;
	}

	.jada-stage-os-hero__stages li,
	.jada-stage-os-hero__stages li:nth-child(n) {
		display: grid;
		grid-area: auto;
		grid-template-columns: 42px 1fr;
		width: 100%;
		height: auto;
		min-height: 66px;
		justify-items: start;
		padding: 12px 16px;
		border-radius: 0;
		text-align: left;
	}

	.jada-stage-os-section__inner {
		padding-block: 46px 50px;
	}

	.post_content .jada-stage-os-page .jada-stage-os-section__title,
	.post_content .jada-stage-os-page .jada-stage-os-cta h2 {
		font-size: clamp(32px, 10vw, 40px);
	}

	.jada-stage-os-overview__features,
	.jada-stage-os-audience__list {
		grid-template-columns: 1fr;
	}

	.jada-stage-os-overview__features li,
	.jada-stage-os-audience__list li,
	.jada-stage-os-overview__features li:nth-child(n),
	.jada-stage-os-audience__list li:nth-child(n) {
		grid-column: auto;
		grid-template-columns: 58px 1fr;
		justify-items: start;
		padding: 20px 0;
		border-top: 1px solid var(--jada-pages-line);
		border-left: 0;
		text-align: left;
	}

	.jada-stage-os-overview__features li:first-child,
	.jada-stage-os-audience__list li:first-child {
		border-top: 0;
	}

	.jada-stage-os-overview__features h3,
	.jada-stage-os-audience__list h3,
	.jada-stage-os-overview__features p,
	.jada-stage-os-audience__list p {
		grid-column: 2;
	}

	.jada-stage-os-stages__list {
		grid-template-columns: 1fr;
	}

	.jada-stage-os-stages__list > li,
	.jada-stage-os-stages__list > li:last-child {
		grid-column: auto;
		min-height: 0;
		padding: 22px;
	}

	.jada-stage-os-stages__severity {
		gap: 18px;
		padding-inline: 14px;
		font-size: 10px;
	}

	.jada-stage-os-stages__severity::after {
		right: 46%;
		left: 46%;
	}

	.jada-stage-os-assessment__nested {
		padding: 22px 18px;
	}

	.jada-stage-os-assessment__flow,
	.jada-stage-os-relationship__flow {
		grid-template-columns: 1fr;
	}

	.jada-stage-os-assessment__flow > li {
		grid-template-columns: 50px 1fr;
		justify-items: start;
		padding-block: 8px;
		text-align: left;
	}

	.jada-stage-os-assessment__flow li > span {
		grid-row: 1 / span 2;
	}

	.jada-stage-os-assessment__flow small {
		grid-column: 2;
	}

	.jada-stage-os-assessment__flow > li:not(:last-child)::after,
	.jada-stage-os-relationship__flow > li:not(:last-child)::after {
		display: block;
		top: auto;
		right: 50%;
		bottom: -22px;
		transform: translateX(50%) rotate(90deg);
	}

	.jada-stage-os-assessment__note {
		padding-left: 20px;
	}

	.jada-stage-os-relationship__flow {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.jada-stage-os-relationship__flow > li:not(:last-child)::after {
		display: block;
	}

	.jada-stage-os-relationship__flow li {
		min-height: 150px;
	}

	.jada-stage-os-cta__inner {
		padding-block: 48px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.jada-stage-os-page__button,
	.jada-stage-os-page__text-link {
		transition: none;
	}
}

/* ========================================
   JADA Support Philosophy
======================================== */

.jada-support-philosophy-page {
	--jada-support-navy: var(--jada-navy, #0d1f3d);
	--jada-support-gold: var(--jada-gold, #b8965a);
	--jada-support-gold-deep: var(--jada-gold-deep, #a86d00);
	--jada-support-white: var(--jada-white, #ffffff);
	--jada-support-off-white: var(--jada-off-white, #f8f7f4);
	--jada-support-serif: var(--jada-serif, "Iowan Old Style", Baskerville, "Times New Roman", serif);
	--jada-support-sans: var(--jada-sans, "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif);
	--jada-support-line: rgba(184, 150, 90, 0.34);
	--jada-support-blue-line: rgba(74, 123, 197, 0.48);

	position: relative;
	left: 50%;
	width: 100vw;
	width: 100dvw;
	margin-left: -50vw;
	margin-left: -50dvw;
	overflow: clip;
	color: var(--jada-support-navy);
	background: var(--jada-support-white);
	font-family: var(--jada-support-sans);
}

.jada-support-philosophy-page *,
.jada-support-philosophy-page *::before,
.jada-support-philosophy-page *::after {
	box-sizing: border-box;
}

.jada-support-philosophy-icon-sprite {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}

.jada-support-philosophy-icon {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.65;
	stroke-linecap: round;
	stroke-linejoin: round;
	vector-effect: non-scaling-stroke;
}

.post_content .jada-support-philosophy-page :where(h1, h2, h3, p, ul, ol, blockquote, figure) {
	margin: 0;
	padding: 0;
}

.post_content .jada-support-philosophy-page :where(h1, h2, h3) {
	border: 0;
	background: none;
	color: inherit;
	font-weight: inherit;
}

.post_content .jada-support-philosophy-page :where(h1, h2, h3)::before,
.post_content .jada-support-philosophy-page :where(h1, h2, h3)::after {
	display: none;
	content: none;
}

.post_content .jada-support-philosophy-page :where(ul, ol) {
	list-style: none;
}

.jada-support-philosophy-page a {
	color: inherit;
	text-decoration: none;
}

.jada-support-philosophy-page__eyebrow,
.post_content .jada-support-philosophy-page .jada-support-philosophy-section__index {
	color: var(--jada-support-gold-deep);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.jada-support-philosophy-section__index {
	display: flex;
	align-items: center;
	gap: 18px;
}

.jada-support-philosophy-section__index span {
	font-family: var(--jada-support-serif);
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 0;
}

.jada-support-philosophy-section__index::after {
	order: 2;
	width: 42px;
	height: 1px;
	background: var(--jada-support-gold);
	content: "";
}

.jada-support-philosophy-page__button,
.jada-support-philosophy-page__text-link {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 12px 20px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
	transition: opacity 180ms ease, background-color 180ms ease, color 180ms ease;
}

.jada-support-philosophy-page__button {
	min-width: 190px;
	color: var(--jada-support-white);
	background: var(--jada-support-navy);
}

.jada-support-philosophy-page__text-link {
	padding-inline: 0;
	border-bottom: 1px solid var(--jada-support-gold);
}

.jada-support-philosophy-page__button:hover,
.jada-support-philosophy-page__text-link:hover {
	opacity: 0.74;
}

.jada-support-philosophy-page a:focus-visible {
	outline: 2px solid var(--jada-support-gold);
	outline-offset: 4px;
}

.jada-support-philosophy-page__icon {
	display: grid;
	width: 58px;
	height: 58px;
	place-items: center;
	padding: 12px;
	border: 1px solid var(--jada-support-line);
	border-radius: 50%;
	color: var(--jada-support-gold-deep);
}

/* Page hero */
.jada-support-philosophy-hero {
	background:
		radial-gradient(circle at 34% 25%, rgba(184, 150, 90, 0.07), transparent 25rem),
		linear-gradient(110deg, #fff 0%, #fffdfa 64%, #f7f8fb 100%);
}

.jada-support-philosophy-hero__inner,
.jada-support-philosophy-section__inner {
	width: min(100% - 64px, 1280px);
	margin-inline: auto;
}

.jada-support-philosophy-hero__inner {
	display: grid;
	grid-template-columns: minmax(360px, 0.95fr) minmax(520px, 1.05fr);
	align-items: stretch;
	min-height: 590px;
}

.jada-support-philosophy-hero__copy {
	display: grid;
	align-content: center;
	gap: 24px;
	padding: 68px clamp(38px, 5vw, 78px) 72px 0;
}

.post_content .jada-support-philosophy-page .jada-support-philosophy-hero__title {
	max-width: 590px;
	font-family: var(--jada-support-serif);
	font-size: clamp(50px, 4.5vw, 70px);
	font-weight: 400;
	line-height: 1.06;
	letter-spacing: -0.035em;
}

.jada-support-philosophy-hero__definition {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1.45fr);
	align-items: center;
	max-width: 590px;
	padding-block: 16px;
	border-block: 1px solid var(--jada-support-line);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.45;
}
.jada-support-philosophy-hero__definition span{
	text-align: center;
}


.jada-support-philosophy-hero__definition strong {
	color: var(--jada-support-gold-deep);
	font-family: var(--jada-support-serif);
	font-size: 24px;
	font-weight: 400;
	text-align: center;
}

.post_content .jada-support-philosophy-page .jada-support-philosophy-hero__lead {
	max-width: 560px;
	font-size: 15px;
	line-height: 1.8;
}

.jada-support-philosophy-hero__actions {
	display: flex;
	align-items: center;
	gap: 34px;
}

.jada-support-philosophy-hero__visual {
	position: relative;
	min-width: 0;
	min-height: 590px;
	background: var(--jada-support-off-white);
}

.jada-support-philosophy-hero__visual > img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 1.08 / 1;
	object-fit: cover;
	object-position: center 35%;
}

.jada-support-philosophy-hero__quote {
	position: absolute;
	right: 7%;
	bottom: 8%;
	display: grid;
	width: min(280px, 48%);
	gap: 9px;
	padding: 26px 28px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 12px 32px rgba(13, 31, 61, 0.1);
}

.jada-support-philosophy-hero__quote > span {
	height: 18px;
	color: var(--jada-support-gold-deep);
	font-family: Georgia, serif;
	font-size: 42px;
	line-height: 0.85;
}

.post_content .jada-support-philosophy-page .jada-support-philosophy-hero__quote blockquote {
	border: 0;
	color: var(--jada-support-navy);
	font-family: var(--jada-support-serif);
	font-size: 18px;
	font-style: normal;
	line-height: 1.45;
}

.jada-support-philosophy-hero__quote cite {
	color: var(--jada-support-gold-deep);
	font-size: 10px;
	font-style: normal;
}

/* Shared section layout */
.jada-support-philosophy-section {
	border-top: 1px solid var(--jada-support-line);
}

.jada-support-philosophy-section:nth-child(even) {
	background: linear-gradient(105deg, #fff 0%, #fff 32%, #fbfaf8 100%);
}

.jada-support-philosophy-section__inner {
	padding-block: 58px 62px;
}

.jada-support-philosophy-section__inner--split {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: clamp(40px, 5.2vw, 80px);
}

.jada-support-philosophy-section__intro {
	display: grid;
	align-content: start;
	gap: 18px;
}

.post_content .jada-support-philosophy-page .jada-support-philosophy-section__title {
	font-family: var(--jada-support-serif);
	font-size: clamp(34px, 3vw, 44px);
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: -0.025em;
}

.post_content .jada-support-philosophy-page .jada-support-philosophy-section__text {
	font-size: 13px;
	line-height: 1.75;
}

/* Core Philosophy */
.jada-support-philosophy-core__list {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.jada-support-philosophy-core__list li {
	display: grid;
	min-width: 0;
	align-content: start;
	justify-items: center;
	gap: 13px;
	padding: 18px 16px;
	border-left: 1px solid var(--jada-support-line);
	text-align: center;
}

.jada-support-philosophy-core__list li:first-child {
	border-left: 0;
}

.post_content .jada-support-philosophy-page .jada-support-philosophy-core__list h3,
.post_content .jada-support-philosophy-page .jada-support-philosophy-audience__list h3 {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
}

.post_content .jada-support-philosophy-page .jada-support-philosophy-core__list p,
.post_content .jada-support-philosophy-page .jada-support-philosophy-audience__list p {
	font-size: 11px;
	line-height: 1.65;
}

/* In Practice */
.jada-support-philosophy-practice__body {
	display: grid;
	gap: 20px;
}

.jada-support-philosophy-practice__flow {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.jada-support-philosophy-practice__flow li {
	position: relative;
	display: grid;
	min-width: 0;
	align-content: start;
	justify-items: center;
	gap: 9px;
	text-align: center;
}

.jada-support-philosophy-practice__flow li:not(:last-child)::after,
.jada-support-philosophy-relationship__flow li:not(:last-child)::after {
	position: absolute;
	top: 85px;
	right: calc(-14px - 0.5em);
	color: var(--jada-support-navy);
	content: "→";
	font-size: 18px;
}

.jada-support-philosophy-page .jada-support-philosophy-practice__flow--examples li:not(:last-child)::after {
	display: none;
}

.jada-support-philosophy-practice__icon {
	display: grid;
	width: 76px;
	height: 76px;
	place-items: center;
	padding: 19px;
	border: 1px solid var(--jada-support-blue-line);
	border-radius: 50%;
	color: var(--jada-support-navy);
}

.jada-support-philosophy-practice__number {
	display: grid;
	width: 22px;
	height: 22px;
	place-items: center;
	margin-top: -20px;
	border-radius: 50%;
	color: var(--jada-support-white);
	background: var(--jada-support-gold-deep);
	font-size: 10px;
}

.post_content .jada-support-philosophy-page .jada-support-philosophy-practice__flow h3 {
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
}

.post_content .jada-support-philosophy-page .jada-support-philosophy-practice__flow p {
	font-size: 10px;
	line-height: 1.55;
}

.post_content .jada-support-philosophy-page .jada-support-philosophy-practice__note {
	padding: 14px 20px;
	border: 1px solid var(--jada-support-line);
	background: rgba(255, 255, 255, 0.7);
	font-size: 12px;
	line-height: 1.6;
	text-align: center;
}

/* Two Complementary Paths */
.jada-support-philosophy-paths__diagram {
	display: grid;
	gap: 26px;
}

.jada-support-philosophy-paths__cards {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr);
	gap: 0;
}

.jada-support-philosophy-paths__cards::after {
	position: absolute;
	bottom: -27px;
	left: 25%;
	width: 50%;
	height: 27px;
	border-right: 1px solid var(--jada-support-gold);
	border-bottom: 1px solid var(--jada-support-gold);
	border-left: 1px solid var(--jada-support-gold);
	content: "";
}

.jada-support-philosophy-paths__operator {
	display: grid;
	place-items: center;
	color: var(--jada-support-gold-deep);
	font-family: var(--jada-support-serif);
	font-size: 28px;
	font-weight: 400;
}

.jada-support-philosophy-paths__card {
	display: grid;
	grid-template-columns: 68px minmax(0, 1fr);
	align-content: start;
	gap: 18px;
	min-height: 230px;
	padding: 28px;
	border: 1px solid var(--jada-support-line);
	background: rgba(255, 255, 255, 0.7);
}

.jada-support-philosophy-paths__icon,
.jada-support-philosophy-paths__outcome-icon {
	display: grid;
	width: 58px;
	height: 58px;
	place-items: center;
	padding: 10px;
	color: var(--jada-support-navy);
}

.jada-support-philosophy-paths__card > div {
	display: grid;
	align-content: start;
	gap: 10px;
}

.post_content .jada-support-philosophy-page .jada-support-philosophy-paths__card h3,
.post_content .jada-support-philosophy-page .jada-support-philosophy-paths__outcome h3 {
	font-family: var(--jada-support-serif);
	font-size: 24px;
	font-weight: 400;
	line-height: 1.2;
}

.post_content .jada-support-philosophy-page .jada-support-philosophy-paths__card p,
.post_content .jada-support-philosophy-page .jada-support-philosophy-paths__card ul,
.post_content .jada-support-philosophy-page .jada-support-philosophy-paths__outcome p {
	font-size: 11px;
	line-height: 1.6;
}

.post_content .jada-support-philosophy-page .jada-support-philosophy-paths__card ul {
	display: grid;
	gap: 3px;
}

.jada-support-philosophy-paths__card li {
	position: relative;
	padding-left: 12px;
}

.jada-support-philosophy-paths__card li::before {
	position: absolute;
	top: 0;
	left: 0;
	color: var(--jada-support-gold-deep);
	content: "?";
}

.jada-support-philosophy-paths__outcome {
	position: relative;
	display: grid;
	grid-template-columns: 58px auto;
	align-items: center;
	justify-content: center;
	gap: 18px;
	width: min(78%, 620px);
	margin-inline: auto;
	padding: 18px 26px;
	border: 1px solid var(--jada-support-gold);
	background: var(--jada-support-white);
	text-align: left;
}

.jada-support-philosophy-paths__outcome::before {
	position: absolute;
	top: -27px;
	left: 50%;
	height: 27px;
	border-left: 1px solid var(--jada-support-gold);
	content: "";
}

.jada-support-philosophy-paths__outcome-icon {
	border: 1px solid var(--jada-support-line);
	border-radius: 50%;
	color: var(--jada-support-gold-deep);
}

/* Relationship */
.jada-support-philosophy-relationship__flow {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	align-items: center;
	gap: 36px;
}

.jada-support-philosophy-relationship__flow li {
	position: relative;
	display: grid;
	width: 100%;
	aspect-ratio: 1;
	align-content: center;
	justify-items: center;
	gap: 8px;
	padding: 20px;
	border: 1px solid var(--jada-support-blue-line);
    border-radius: 20%;
	background: var(--jada-support-white);
	text-align: center;
    min-height: 200px;
}

.jada-support-philosophy-relationship__flow .jada-support-philosophy-relationship__current {
	border-color: var(--jada-support-gold);
	color: var(--jada-support-gold-deep);
}

.jada-support-philosophy-relationship__icon {
	display: grid;
	width: 68px;
	height: 68px;
	place-items: center;
	padding: 7px;
	color: currentColor;
}

.post_content .jada-support-philosophy-page .jada-support-philosophy-relationship__flow h3 {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
}

.post_content .jada-support-philosophy-page .jada-support-philosophy-relationship__flow p {
	font-size: 9px;
	line-height: 1.45;
}

.jada-support-philosophy-relationship__nested {
	display: block;
	padding-bottom: 3px;
	font-weight: 600;
}

/* Who This Serves */
.jada-support-philosophy-audience .jada-support-philosophy-section__inner {
	padding-bottom: 78px;
}

.jada-support-philosophy-audience__list {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
}

.jada-support-philosophy-audience__list li {
	display: block;
	grid-template-columns: 44px minmax(0, 1fr);
	align-content: center;
	gap: 12px 14px;
	min-width: 0;
	min-height: 170px;
	padding: 24px 20px;
	border: 1px solid rgba(13, 31, 61, 0.04);
	background: var(--jada-support-off-white);
}

.jada-support-philosophy-audience__list span {
	display: block;
	width: 42px;
	height: 42px;
	padding: 4px;
	color: var(--jada-support-navy);
    margin: 0 auto;
}

.jada-support-philosophy-audience__list h3{
    text-align: center;
}

.jada-support-philosophy-audience__list p,
.jada-support-philosophy-audience__list h3,
.jada-support-philosophy-audience__list span {
	grid-column: 1 / -1;

}

/* Laptop */
@media (max-width: 1100px) {
	.jada-support-philosophy-hero__inner {
		grid-template-columns: minmax(330px, 0.9fr) minmax(460px, 1.1fr);
	}

	.jada-support-philosophy-section__inner--split {
		grid-template-columns: 230px minmax(0, 1fr);
		gap: 38px;
	}

	.jada-support-philosophy-core__list li {
		padding-inline: 10px;
	}

	.jada-support-philosophy-practice__flow,
	.jada-support-philosophy-relationship__flow {
		gap: 22px;
	}

	.jada-support-philosophy-paths__card {
		grid-template-columns: 52px minmax(0, 1fr);
		padding: 24px 20px;
	}

	.jada-support-philosophy-paths__icon {
		width: 48px;
		height: 48px;
	}

	.jada-support-philosophy-relationship__flow li {
		padding: 14px;
	}

	.jada-support-philosophy-audience__list li {
		padding-inline: 15px;
	}
}

/* Tablet */
@media (max-width: 900px) {
	.jada-support-philosophy-hero__inner,
	.jada-support-philosophy-section__inner {
		width: min(100% - 48px, 760px);
	}

	.jada-support-philosophy-hero__inner {
		grid-template-columns: 1fr;
	}

	.jada-support-philosophy-hero__copy {
		padding: 58px 0 54px;
	}

	.jada-support-philosophy-hero__visual {
		min-height: 0;
	}

	.jada-support-philosophy-hero__visual > img {
		aspect-ratio: 16 / 10;
	}

	.jada-support-philosophy-section__inner--split {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.jada-support-philosophy-section__intro {
		max-width: 600px;
	}

	.jada-support-philosophy-core__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jada-support-philosophy-core__list li:nth-child(odd) {
		border-left: 0;
	}

	.jada-support-philosophy-core__list li:nth-child(n + 3) {
		border-top: 1px solid var(--jada-support-line);
	}

	.jada-support-philosophy-core__list li:last-child {
		grid-column: 1 / -1;
	}

	.jada-support-philosophy-practice__flow {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px 20px;
	}

	.jada-support-philosophy-practice__flow li:not(:last-child)::after {
		display: none;
	}

	.jada-support-philosophy-paths__cards {
		gap: 0;
	}

	.jada-support-philosophy-paths__card {
		grid-template-columns: 1fr;
	}

	.jada-support-philosophy-relationship__flow {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 26px;
	}

	.jada-support-philosophy-relationship__flow li {
		width: min(100%, 270px);
		justify-self: center;
	}

	.jada-support-philosophy-relationship__flow li:not(:last-child)::after {
		display: none;
	}

	.jada-support-philosophy-audience__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Smartphone */
@media (max-width: 560px) {
	.jada-support-philosophy-hero__inner,
	.jada-support-philosophy-section__inner {
		width: min(100% - 36px, 520px);
	}

	.jada-support-philosophy-hero__copy {
		padding-block: 44px 46px;
	}

	.post_content .jada-support-philosophy-page .jada-support-philosophy-hero__title {
		font-size: clamp(40px, 12vw, 52px);
	}

	.post_content .jada-support-philosophy-page .jada-support-philosophy-hero__lead {
		font-size: 14px;
	}

	.jada-support-philosophy-hero__actions {
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
	}

	.jada-support-philosophy-hero__definition {
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 4px;
		text-align: center;
	}

	.jada-support-philosophy-page__button {
		width: 100%;
	}

	.jada-support-philosophy-hero__visual > img {
		aspect-ratio: 4 / 3;
		object-position: center 30%;
	}

	.jada-support-philosophy-hero__quote {
		position: relative;
		right: auto;
		bottom: auto;
		width: 100%;
		padding: 22px 20px;
		box-shadow: none;
	}

	.jada-support-philosophy-section__inner {
		padding-block: 46px 50px;
	}

	.post_content .jada-support-philosophy-page .jada-support-philosophy-section__title {
		font-size: clamp(32px, 10vw, 40px);
	}

	.jada-support-philosophy-core__list,
	.jada-support-philosophy-practice__flow,
	.jada-support-philosophy-paths__cards,
	.jada-support-philosophy-relationship__flow,
	.jada-support-philosophy-audience__list {
		grid-template-columns: 1fr;
	}

	.jada-support-philosophy-core__list li,
	.jada-support-philosophy-core__list li:nth-child(n) {
		grid-column: auto;
		grid-template-columns: 58px 1fr;
		justify-items: start;
		padding: 20px 0;
		border-top: 1px solid var(--jada-support-line);
		border-left: 0;
		text-align: left;
	}

	.jada-support-philosophy-core__list li:first-child {
		border-top: 0;
	}

	.jada-support-philosophy-core__list h3,
	.jada-support-philosophy-core__list p {
		grid-column: 2;
	}

	.jada-support-philosophy-practice__flow {
		gap: 30px;
	}

	.jada-support-philosophy-practice__flow li {
		grid-template-columns: 76px 1fr;
		justify-items: start;
		padding-block: 4px;
		text-align: left;
	}

	.jada-support-philosophy-practice__icon {
		grid-row: 1 / span 3;
	}

	.jada-support-philosophy-practice__number {
		position: absolute;
		top: 58px;
		left: 54px;
		margin: 0;
	}

	.jada-support-philosophy-practice__flow h3,
	.jada-support-philosophy-practice__flow p {
		grid-column: 2;
	}

	.jada-support-philosophy-practice__flow li:not(:last-child)::after {
		display: block;
		top: auto;
		right: auto;
		bottom: -27px;
		left: 32px;
		transform: rotate(90deg);
	}

	.jada-support-philosophy-paths__cards {
		gap: 0;
	}

	.jada-support-philosophy-paths__operator {
		min-height: 42px;
	}

	.jada-support-philosophy-paths__cards::after {
		display: none;
	}

	.jada-support-philosophy-paths__card {
		grid-template-columns: 54px minmax(0, 1fr);
		min-height: 0;
		padding: 22px 18px;
	}

	.jada-support-philosophy-paths__outcome {
		grid-template-columns: 48px minmax(0, 1fr);
		width: 100%;
		padding: 18px;
	}

	.jada-support-philosophy-paths__outcome::before {
		top: -27px;
	}

	.jada-support-philosophy-paths__outcome-icon {
		width: 48px;
		height: 48px;
	}

	.jada-support-philosophy-relationship__flow {
		gap: 30px;
	}

	.jada-support-philosophy-relationship__flow li {
		min-height: 150px;
		padding: 22px;
		border-radius: 0;
	}

	.jada-support-philosophy-relationship__flow li:not(:last-child)::after {
		display: block;
		top: auto;
		right: 50%;
		bottom: -24px;
		transform: translateX(50%) rotate(90deg);
	}

	.jada-support-philosophy-audience .jada-support-philosophy-section__inner {
		padding-bottom: 62px;
	}

	.jada-support-philosophy-audience__list li {
		min-height: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.jada-support-philosophy-page__button,
	.jada-support-philosophy-page__text-link {
		transition: none;
	}
}

/* ========================================
   7 Steps to Autonomy
======================================== */

.jada-seven-steps-page {
	--jada-seven-navy: var(--jada-navy, #0d1f3d);
	--jada-seven-gold: var(--jada-gold, #b8965a);
	--jada-seven-gold-deep: var(--jada-gold-deep, #a86d00);
	--jada-seven-white: var(--jada-white, #ffffff);
	--jada-seven-off-white: var(--jada-off-white, #f8f7f4);
	--jada-seven-serif: var(--jada-serif, "Iowan Old Style", Baskerville, "Times New Roman", serif);
	--jada-seven-sans: var(--jada-sans, "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif);
	--jada-seven-line: rgba(184, 150, 90, 0.34);
	--jada-seven-blue-line: rgba(13, 31, 61, 0.22);

	position: relative;
	left: 50%;
	width: 100vw;
	width: 100dvw;
	margin-left: -50vw;
	margin-left: -50dvw;
	overflow: clip;
	color: var(--jada-seven-navy);
	background: var(--jada-seven-white);
	font-family: var(--jada-seven-sans);
}

.jada-seven-steps-page *,
.jada-seven-steps-page *::before,
.jada-seven-steps-page *::after {
	box-sizing: border-box;
}

.jada-seven-steps-icon-sprite {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}

.jada-seven-steps-icon {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.65;
	stroke-linecap: round;
	stroke-linejoin: round;
	vector-effect: non-scaling-stroke;
}

.post_content .jada-seven-steps-page :where(h1, h2, h3, p, ul, ol) {
	margin: 0;
	padding: 0;
}

.post_content .jada-seven-steps-page :where(h1, h2, h3) {
	border: 0;
	background: none;
	color: inherit;
	font-weight: inherit;
}

.post_content .jada-seven-steps-page :where(h1, h2, h3)::before,
.post_content .jada-seven-steps-page :where(h1, h2, h3)::after {
	display: none;
	content: none;
}

.post_content .jada-seven-steps-page :where(ul, ol) {
	list-style: none;
}

.jada-seven-steps-page a {
	color: inherit;
	text-decoration: none;
}

.jada-seven-steps-page__eyebrow,
.post_content .jada-seven-steps-page .jada-seven-steps-section__index {
	color: var(--jada-seven-gold-deep);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.jada-seven-steps-section__index {
	display: flex;
	align-items: center;
	gap: 18px;
}

.jada-seven-steps-section__index span {
	font-family: var(--jada-seven-serif);
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 0;
}

.jada-seven-steps-section__index::after {
	width: 42px;
	height: 1px;
	background: var(--jada-seven-gold);
	content: "";
}

.jada-seven-steps-page__button,
.jada-seven-steps-page__text-link {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 12px 20px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
	transition: opacity 180ms ease;
}

.jada-seven-steps-page__button {
	min-width: 190px;
	color: var(--jada-seven-white);
	background: var(--jada-seven-navy);
}

.jada-seven-steps-page__text-link {
	padding-inline: 0;
	border-bottom: 1px solid var(--jada-seven-gold);
}

.jada-seven-steps-page__button:hover,
.jada-seven-steps-page__text-link:hover {
	opacity: 0.74;
}

.jada-seven-steps-page a:focus-visible {
	outline: 2px solid var(--jada-seven-gold);
	outline-offset: 4px;
}

/* Page hero */
.jada-seven-steps-hero {
	background:
		radial-gradient(circle at 74% 30%, rgba(184, 150, 90, 0.08), transparent 28rem),
		linear-gradient(110deg, #fff 0%, #fffdfa 64%, #f7f8fb 100%);
}

.jada-seven-steps-hero__inner,
.jada-seven-steps-section__inner {
	width: min(100% - 64px, 1280px);
	margin-inline: auto;
}

.jada-seven-steps-hero__inner {
	display: grid;
	grid-template-columns: minmax(370px, 0.8fr) minmax(650px, 1.2fr);
	align-items: center;
	gap: clamp(42px, 5vw, 78px);
	min-height: 600px;
	padding-block: 68px 72px;
}

.jada-seven-steps-hero__copy {
	display: grid;
	align-content: center;
	gap: 24px;
}

.post_content .jada-seven-steps-page .jada-seven-steps-hero__title {
	max-width: 580px;
	font-family: var(--jada-seven-serif);
	font-size: clamp(50px, 4.5vw, 70px);
	font-weight: 400;
	line-height: 1.06;
	letter-spacing: -0.035em;
}

.post_content .jada-seven-steps-page .jada-seven-steps-hero__lead {
	max-width: 550px;
	font-size: 15px;
	line-height: 1.8;
}

.jada-seven-steps-hero__actions {
	display: flex;
	align-items: center;
	gap: 34px;
}

.jada-seven-steps-hero__journey {
	position: relative;
	min-width: 0;
	padding-top: 46px;
}

.jada-seven-steps-hero__journey::before {
	position: absolute;
	top: 280px;
	left: 4%;
	width: 94%;
	height: 1px;
	background: var(--jada-seven-gold);
	content: "";
	transform: rotate(-17deg);
	transform-origin: left center;
}

.jada-seven-steps-hero__journey ol {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	align-items: end;
	gap: 8px;
	min-height: 380px;
}

.jada-seven-steps-hero__journey li {
	position: relative;
	display: grid;
	align-content: center;
	justify-items: center;
	gap: 10px;
	min-width: 0;
	height: calc(148px + (var(--step) * 32px));
	padding: 18px 7px;
	border: 1px solid var(--jada-seven-line);
	border-radius: 9px 9px 0 0;
	background: rgba(255, 255, 255, 0.75);
	text-align: center;
}

.jada-seven-steps-hero__journey li:nth-child(1) { --step: 0; color: #315a91; }
.jada-seven-steps-hero__journey li:nth-child(2) { --step: 1; color: #456c9c; }
.jada-seven-steps-hero__journey li:nth-child(3) { --step: 2; color: #357c91; }
.jada-seven-steps-hero__journey li:nth-child(4) { --step: 3; color: #5e7c43; }
.jada-seven-steps-hero__journey li:nth-child(5) { --step: 4; color: #b77d18; }
.jada-seven-steps-hero__journey li:nth-child(6) { --step: 5; color: #a96a0b; }
.jada-seven-steps-hero__journey li:nth-child(7) { --step: 6; color: #9d5f0c; }

.jada-seven-steps-hero__journey li > span {
	position: absolute;
	top: -13px;
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	border-radius: 50%;
	color: var(--jada-seven-white);
	background: var(--jada-seven-gold-deep);
	font-family: var(--jada-seven-serif);
	font-size: 17px;
}

.jada-seven-steps-hero__journey svg {
	width: 42px;
	height: 42px;
}

.jada-seven-steps-hero__journey strong {
	overflow-wrap: break-word;
	color: var(--jada-seven-navy);
	font-family: var(--jada-seven-serif);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.25;
}

/* Shared section layout */
.jada-seven-steps-section {
	border-top: 1px solid var(--jada-seven-line);
}

.jada-seven-steps-section:nth-child(odd) {
	background: linear-gradient(105deg, #fff 0%, #fff 32%, #fbfaf8 100%);
}

.jada-seven-steps-section__inner {
	padding-block: 58px 62px;
}

.jada-seven-steps-section__inner--split {
	display: grid;
	grid-template-columns: 270px minmax(0, 1fr);
	gap: clamp(40px, 5.2vw, 80px);
}

.jada-seven-steps-section__intro {
	display: grid;
	align-content: start;
	gap: 18px;
}

.post_content .jada-seven-steps-page .jada-seven-steps-section__title {
	font-family: var(--jada-seven-serif);
	font-size: clamp(34px, 3vw, 44px);
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: -0.025em;
}

.post_content .jada-seven-steps-page .jada-seven-steps-section__text {
	font-size: 13px;
	line-height: 1.75;
}

/* Introduction */
.jada-seven-steps-introduction__principles {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.jada-seven-steps-introduction__principles li {
	display: grid;
	align-content: start;
	gap: 12px;
	min-height: 190px;
	padding: 24px;
	border: 1px solid var(--jada-seven-line);
	background: rgba(255, 255, 255, 0.65);
}

.jada-seven-steps-introduction__principles span {
	color: var(--jada-seven-gold-deep);
	font-family: var(--jada-seven-serif);
	font-size: 28px;
}

.post_content .jada-seven-steps-page .jada-seven-steps-introduction__principles h3 {
	font-family: var(--jada-seven-serif);
	font-size: 19px;
	font-weight: 400;
	line-height: 1.25;
}

.post_content .jada-seven-steps-page .jada-seven-steps-introduction__principles p {
	font-size: 11px;
	line-height: 1.65;
}

/* The 7 Steps */
.jada-seven-steps-journey__heading {
	grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
	grid-template-areas: "index index" "title text";
	align-items: end;
	gap: 18px clamp(40px, 6vw, 90px);
}

.jada-seven-steps-journey__heading .jada-seven-steps-section__index { grid-area: index; }
.jada-seven-steps-journey__heading .jada-seven-steps-section__title { grid-area: title; }
.jada-seven-steps-journey__heading .jada-seven-steps-section__text { grid-area: text; }

.jada-seven-steps-journey__diagram {
	display: grid;
	gap: 22px;
	padding-top: 38px;
}

.jada-seven-steps-journey__list {
	position: relative;
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	align-items: end;
	gap: 12px;
	padding-top: 32px;
}

.jada-seven-steps-journey__list::before {
	position: absolute;
	top: 17px;
	left: 1.5%;
	width: 97%;
	height: 1px;
	background: var(--jada-seven-gold);
	content: "";
}

.jada-seven-steps-journey__list > li {
	position: relative;
	min-width: 0;
	padding-top: calc(var(--step) * 14px);
}

.jada-seven-steps-journey__list > li:nth-child(1) { --step: 6; }
.jada-seven-steps-journey__list > li:nth-child(2) { --step: 5; }
.jada-seven-steps-journey__list > li:nth-child(3) { --step: 4; }
.jada-seven-steps-journey__list > li:nth-child(4) { --step: 3; }
.jada-seven-steps-journey__list > li:nth-child(5) { --step: 2; }
.jada-seven-steps-journey__list > li:nth-child(6) { --step: 1; }
.jada-seven-steps-journey__list > li:nth-child(7) { --step: 0; }

.jada-seven-steps-journey__list > li::before {
	position: absolute;
	top: 12px;
	left: 50%;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--jada-seven-gold);
	content: "";
	transform: translate(-50%, calc(var(--step) * -14px));
}

.jada-seven-steps-journey__list article {
	display: grid;
	min-height: 285px;
	align-content: start;
	justify-items: center;
	gap: 12px;
	padding: 20px 14px;
	border: 1px solid var(--jada-seven-blue-line);
	border-top: 3px solid var(--jada-seven-gold);
	background: rgba(255, 255, 255, 0.78);
	text-align: center;
}

.jada-seven-steps-journey__number {
	display: grid;
	width: 32px;
	height: 32px;
	place-items: center;
	border-radius: 50%;
	color: var(--jada-seven-white);
	background: var(--jada-seven-gold-deep);
	font-family: var(--jada-seven-serif);
	font-size: 16px;
}

.jada-seven-steps-journey__icon {
	display: block;
	width: 46px;
	height: 46px;
	color: var(--jada-seven-navy);
}

.post_content .jada-seven-steps-page .jada-seven-steps-journey__list h3 {
	overflow-wrap: break-word;
	font-family: var(--jada-seven-serif);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.25;
}

.post_content .jada-seven-steps-page .jada-seven-steps-journey__list p {
	overflow-wrap: anywhere;
	font-size: 10px;
	line-height: 1.6;

}

.post_content .jada-seven-steps-page .jada-seven-steps-journey__note {
	justify-self: center;
	width: min(100%, 620px);
	padding: 12px 24px;
	border: 1px solid var(--jada-seven-line);
	background: var(--jada-seven-white);
	font-family: var(--jada-seven-serif);
	font-size: 13px;
	font-style: italic;
	line-height: 1.5;
	text-align: center;
}

/* How the Journey Works */
.jada-seven-steps-practice__flow {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.jada-seven-steps-practice__flow li {
	position: relative;
	display: grid;
	align-content: start;
	justify-items: center;
	gap: 10px;
	min-width: 0;
	text-align: center;
}

.jada-seven-steps-practice__flow li:not(:last-child)::after,
.jada-seven-steps-relationship__flow li:not(:last-child)::after {
	position: absolute;
	top: 31px;
	right: calc(-13px - 0.45em);
	color: var(--jada-seven-navy);
	content: "→";
	font-size: 18px;
}
.jada-seven-steps-practice__flow li:not(:last-child)::after{
	display:none;
}

.jada-seven-steps-practice__flow li > span {
	display: grid;
	width: 66px;
	height: 66px;
	place-items: center;
	padding: 15px;
	border: 1px solid var(--jada-seven-blue-line);
	border-radius: 50%;
	color: var(--jada-seven-navy);
}

.post_content .jada-seven-steps-page .jada-seven-steps-practice__flow h3 {
	overflow-wrap: anywhere;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
}

.post_content .jada-seven-steps-page .jada-seven-steps-practice__flow p {
	overflow-wrap: anywhere;
	font-size: 10px;
	line-height: 1.55;
}

/* Relationship */
.jada-seven-steps-relationship__flow {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	align-items: stretch;
	gap: 36px;
}

.jada-seven-steps-relationship__flow li {
	position: relative;
	display: grid;
	min-width: 0;
	min-height: 178px;
	align-content: center;
	justify-items: center;
	gap: 9px;
	padding: 22px 16px;
	border: 1px solid var(--jada-seven-blue-line);
	background: var(--jada-seven-white);
	text-align: center;
}

.jada-seven-steps-relationship__flow .jada-seven-steps-relationship__current {
	border-color: var(--jada-seven-gold);
	box-shadow: inset 0 3px 0 var(--jada-seven-gold);
}

.jada-seven-steps-relationship__flow li > span {
	display: block;
	width: 42px;
	height: 42px;
	color: var(--jada-seven-gold-deep);
}

.post_content .jada-seven-steps-page .jada-seven-steps-relationship__flow h3 {
	font-family: var(--jada-seven-serif);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.25;
}

.post_content .jada-seven-steps-page .jada-seven-steps-relationship__flow p {
	font-size: 10px;
	line-height: 1.5;
}

/* Toward Social Autonomy */
.jada-seven-steps-social__inner {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr) auto;
	align-items: center;
	gap: 34px;
	padding-block: 68px 82px;
}

.jada-seven-steps-social__icon {
	display: grid;
	width: 92px;
	height: 92px;
	place-items: center;
	padding: 22px;
	border: 1px solid var(--jada-seven-line);
	border-radius: 50%;
	color: var(--jada-seven-gold-deep);
}

.jada-seven-steps-social__copy {
	display: grid;
	gap: 14px;
}

.jada-seven-steps-social__copy .jada-seven-steps-section__text {
	max-width: 700px;
}

/* Laptop */
@media (max-width: 1100px) {
	.jada-seven-steps-hero__inner {
		grid-template-columns: minmax(330px, 0.78fr) minmax(560px, 1.22fr);
		gap: 34px;
	}

	.jada-seven-steps-section__inner--split {
		grid-template-columns: 230px minmax(0, 1fr);
		gap: 38px;
	}

	.jada-seven-steps-journey__list {
		gap: 8px;
	}

	.jada-seven-steps-journey__list article {
		padding-inline: 9px;
	}

	.jada-seven-steps-practice__flow {
		gap: 20px;
	}

	.jada-seven-steps-relationship__flow {
		gap: 24px;
	}
}

/* Tablet */
@media (max-width: 900px) {
	.jada-seven-steps-hero__inner,
	.jada-seven-steps-section__inner {
		width: min(100% - 48px, 760px);
	}

	.jada-seven-steps-hero__inner {
		grid-template-columns: 1fr;
		gap: 48px;
		min-height: 0;
	}

	.jada-seven-steps-hero__journey {
		width: 100%;
		max-width: 700px;
		margin-inline: auto;
	}

	.jada-seven-steps-section__inner--split,
	.jada-seven-steps-journey__heading {
		grid-template-columns: 1fr;
		grid-template-areas: none;
		gap: 34px;
	}

	.jada-seven-steps-journey__heading .jada-seven-steps-section__index,
	.jada-seven-steps-journey__heading .jada-seven-steps-section__title,
	.jada-seven-steps-journey__heading .jada-seven-steps-section__text {
		grid-area: auto;
	}

	.jada-seven-steps-section__intro {
		max-width: 620px;
	}

	.jada-seven-steps-journey__list {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0;
		padding-top: 0;
		padding-left: 40px;
	}

	.jada-seven-steps-journey__list::before {
		top: 18px;
		bottom: 18px;
		left: 14px;
		width: 1px;
		height: auto;
	}

	.jada-seven-steps-journey__list > li,
	.jada-seven-steps-journey__list > li:nth-child(n) {
		padding: 0 0 18px;
	}

	.jada-seven-steps-journey__list > li::before {
		top: 26px;
		left: -26px;
		transform: none;
	}

	.jada-seven-steps-journey__list article {
		grid-template-columns: 38px 54px minmax(0, 1fr);
		min-height: 0;
		align-items: center;
		justify-items: start;
		gap: 8px 16px;
		padding: 20px;
		text-align: left;
	}

	.jada-seven-steps-journey__number { grid-row: 1 / span 2; }
	.jada-seven-steps-journey__icon { grid-row: 1 / span 2; }
	.jada-seven-steps-journey__list h3,
	.jada-seven-steps-journey__list p { grid-column: 3; }

	.jada-seven-steps-practice__flow {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 30px 20px;
	}

	.jada-seven-steps-practice__flow li:not(:last-child)::after {
		display: none;
	}

	.jada-seven-steps-relationship__flow {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px;
	}

	.jada-seven-steps-relationship__flow li:not(:last-child)::after {
		display: none;
	}

	.jada-seven-steps-social__inner {
		grid-template-columns: 74px minmax(0, 1fr);
	}

	.jada-seven-steps-social__icon {
		width: 74px;
		height: 74px;
		padding: 17px;
	}

	.jada-seven-steps-social__inner > a {
		grid-column: 2;
		justify-self: start;
	}
}

/* Smartphone */
@media (max-width: 560px) {
	.jada-seven-steps-hero__inner,
	.jada-seven-steps-section__inner {
		width: min(100% - 36px, 520px);
	}

	.jada-seven-steps-hero__inner {
		gap: 40px;
		padding-block: 44px 50px;
	}

	.post_content .jada-seven-steps-page .jada-seven-steps-hero__title {
		font-size: clamp(40px, 12vw, 52px);
	}

	.post_content .jada-seven-steps-page .jada-seven-steps-hero__lead {
		font-size: 14px;
	}

	.jada-seven-steps-hero__actions {
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
	}

	.jada-seven-steps-page__button {
		width: 100%;
	}

	.jada-seven-steps-hero__journey {
		padding: 0 0 0 30px;
	}

	.jada-seven-steps-hero__journey::before {
		top: 10px;
		bottom: 10px;
		left: 10px;
		width: 1px;
		height: auto;
		transform: none;
	}

	.jada-seven-steps-hero__journey ol {
		grid-template-columns: 1fr;
		gap: 8px;
		min-height: 0;
	}

	.jada-seven-steps-hero__journey li,
	.jada-seven-steps-hero__journey li:nth-child(n) {
		grid-template-columns: 36px 44px minmax(0, 1fr);
		height: auto;
		min-height: 66px;
		align-content: center;
		justify-items: start;
		padding: 10px 14px;
		border-radius: 0;
		text-align: left;
	}

	.jada-seven-steps-hero__journey li > span {
		position: static;
		width: 30px;
		height: 30px;
	}

	.jada-seven-steps-hero__journey li::before {
		position: absolute;
		top: 50%;
		left: -24px;
		width: 9px;
		height: 9px;
		border-radius: 50%;
		background: var(--jada-seven-gold);
		content: "";
		transform: translateY(-50%);
	}

	.jada-seven-steps-hero__journey svg {
		width: 38px;
		height: 38px;
	}

	.jada-seven-steps-hero__journey strong {
		font-size: 13px;
	}

	.jada-seven-steps-section__inner {
		padding-block: 46px 50px;
	}

	.post_content .jada-seven-steps-page .jada-seven-steps-section__title {
		font-size: clamp(32px, 10vw, 40px);
	}

	.jada-seven-steps-introduction__principles,
	.jada-seven-steps-practice__flow,
	.jada-seven-steps-relationship__flow {
		grid-template-columns: 1fr;
	}

	.jada-seven-steps-introduction__principles li {
		min-height: 0;
		padding: 22px 18px;
	}

	.jada-seven-steps-journey__diagram {
		padding-top: 12px;
	}

	.jada-seven-steps-journey__list {
		padding-left: 28px;
	}

	.jada-seven-steps-journey__list::before {
		left: 8px;
	}

	.jada-seven-steps-journey__list > li::before {
		left: -24px;
	}

	.jada-seven-steps-journey__list article {
		grid-template-columns: 36px minmax(0, 1fr);
		gap: 7px 14px;
		padding: 18px 16px;
	}

	.jada-seven-steps-journey__number {
		grid-row: 1;
	}

	.jada-seven-steps-journey__icon {
		grid-row: 2 / span 2;
		width: 40px;
		height: 40px;
	}

	.jada-seven-steps-journey__list h3 {
		grid-column: 2;
		align-self: center;
	}

	.jada-seven-steps-journey__list p {
		grid-column: 2;
	}

	.jada-seven-steps-practice__flow {
		gap: 26px;
	}

	.jada-seven-steps-practice__flow li {
		grid-template-columns: 66px minmax(0, 1fr);
		justify-items: start;
		text-align: left;
	}

	.jada-seven-steps-practice__flow li > span {
		grid-row: 1 / span 2;
	}

	.jada-seven-steps-practice__flow h3,
	.jada-seven-steps-practice__flow p {
		grid-column: 2;
	}

	.jada-seven-steps-practice__flow li:not(:last-child)::after {
/**		display: block;**/
		display: none;
		top: auto;
		right: auto;
		bottom: -23px;
		left: 26px;
		transform: rotate(90deg);
	}

	.jada-seven-steps-relationship__flow {
		gap: 28px;
	}

	.jada-seven-steps-relationship__flow li {
		grid-template-columns: 44px minmax(0, 1fr);
		min-height: 0;
		justify-items: start;
		gap: 7px 15px;
		padding: 20px;

	}

	.jada-seven-steps-relationship__flow li > span {
		grid-row: 1 / span 2;
	}

	.jada-seven-steps-relationship__flow h3,
	.jada-seven-steps-relationship__flow p {
		grid-column: 2;
	}

	.jada-seven-steps-relationship__flow li:not(:last-child)::after {
		display: block;
		top: auto;
		right: 50%;
		bottom: -24px;
		transform: translateX(50%) rotate(90deg);
	}

	.jada-seven-steps-social__inner {
		grid-template-columns: 1fr;
		gap: 22px;
		padding-block: 52px 66px;
	}

	.jada-seven-steps-social__inner > a {
		grid-column: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.jada-seven-steps-page__button,
	.jada-seven-steps-page__text-link {
		transition: none;
	}
}

/* Desktop comp alignment */
.jada-seven-steps-overview__list,
.jada-seven-steps-audience__list {
	display: grid;
	gap: 14px;
}

.jada-seven-steps-overview__list {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.jada-seven-steps-audience__list {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.jada-seven-steps-overview__list li,
.jada-seven-steps-audience__list li {
	display: grid;
	min-width: 0;
	align-content: center;
	justify-items: center;
	gap: 8px;
	padding: 18px 12px;
	border: 1px solid rgba(13, 31, 61, 0.1);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.68);
	text-align: center;
}

.jada-seven-steps-overview__list li {
	min-height: 176px;
}

.jada-seven-steps-audience__list li {
	min-height: 156px;
}

.jada-seven-steps-overview__list li > span,
.jada-seven-steps-audience__list li > span {
	display: block;
	width: 48px;
	height: 48px;
	color: var(--jada-seven-gold-deep);
}

.jada-seven-steps-audience__list li > span {
	width: 43px;
	height: 43px;
}

.post_content .jada-seven-steps-page .jada-seven-steps-overview__list h3,
.post_content .jada-seven-steps-page .jada-seven-steps-audience__list h3 {
	font-family: var(--jada-seven-serif);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.2;
}

.post_content .jada-seven-steps-page .jada-seven-steps-overview__list p,
.post_content .jada-seven-steps-page .jada-seven-steps-audience__list p {
	font-size: 10px;
	line-height: 1.5;
}

.post_content .jada-seven-steps-page .jada-seven-steps-practice__text {
	font-size: 11px;
	line-height: 1.6;
}

.jada-seven-steps-relationship__seven {
	display: grid;
	place-items: center;
	border: 2px dashed var(--jada-seven-gold);
	border-radius: 50%;
	font-family: var(--jada-seven-serif);
	font-size: 27px;
    text-align: center;
}

@media (min-width: 901px) {
	.jada-seven-steps-hero__inner,
	.jada-seven-steps-section__inner {
		width: min(100% - 80px, 1280px);
	}

	.jada-seven-steps-hero__inner {
		grid-template-columns: minmax(360px, 0.78fr) minmax(600px, 1.22fr);
		gap: clamp(38px, 4vw, 68px);
		min-height: 505px;
		padding-block: 50px 48px;
	}

	.jada-seven-steps-hero__copy {
		gap: 20px;
	}

	.post_content .jada-seven-steps-page .jada-seven-steps-hero__title {
		max-width: 500px;
		font-size: clamp(48px, 4.1vw, 64px);
	}

	.post_content .jada-seven-steps-page .jada-seven-steps-hero__lead {
		max-width: 470px;
		font-size: 13px;
		line-height: 1.72;
	}

	.jada-seven-steps-hero__journey {
		padding-top: 38px;
	}

	.jada-seven-steps-hero__journey::before {
		top: 280px;
		left: 2%;
		width: 98%;
		transform: rotate(-18deg);
	}

	.jada-seven-steps-hero__journey ol {
		gap: 8px;
		min-height: 360px;
	}

	.jada-seven-steps-hero__journey li {
		height: calc(170px + (var(--step) * 25px));
		gap: 9px;
		padding: 18px 6px 15px;
		border-radius: 9px 9px 6px 6px;
		box-shadow: 0 7px 18px rgba(13, 31, 61, 0.035);
	}

	.jada-seven-steps-hero__journey li::after {
display:none;
		position: absolute;
		top: -25px;
		left: 50%;
		width: 8px;
		height: 8px;
		border: 1px solid var(--jada-seven-gold-deep);
		border-radius: 50%;
		background: var(--jada-seven-white);
		content: "";
		transform: translateX(-50%);
	}

	.jada-seven-steps-hero__journey li:nth-child(1),
	.jada-seven-steps-journey__list > li:nth-child(1) article { background: #f6f9fd; }
	.jada-seven-steps-hero__journey li:nth-child(2),
	.jada-seven-steps-journey__list > li:nth-child(2) article { background: #f6fafc; }
	.jada-seven-steps-hero__journey li:nth-child(3),
	.jada-seven-steps-journey__list > li:nth-child(3) article { background: #f2f9f9; }
	.jada-seven-steps-hero__journey li:nth-child(4),
	.jada-seven-steps-journey__list > li:nth-child(4) article { background: #f6f8f1; }
	.jada-seven-steps-hero__journey li:nth-child(5),
	.jada-seven-steps-journey__list > li:nth-child(5) article { background: #fff9ef; }
	.jada-seven-steps-hero__journey li:nth-child(6),
	.jada-seven-steps-journey__list > li:nth-child(6) article { background: #fff8ef; }
	.jada-seven-steps-hero__journey li:nth-child(7),
	.jada-seven-steps-journey__list > li:nth-child(7) article { background: #fff6ee; }

	.jada-seven-steps-hero__journey svg {
		width: 46px;
		height: 46px;
	}

	.jada-seven-steps-section__inner {
		padding-block: 38px 42px;
	}

	.jada-seven-steps-section__inner--split {
		grid-template-columns: 240px minmax(0, 1fr);
		gap: clamp(28px, 3.8vw, 58px);
	}

	.jada-seven-steps-section__intro {
		gap: 11px;
	}

	.post_content .jada-seven-steps-page .jada-seven-steps-section__title {
		font-size: clamp(31px, 2.6vw, 39px);
		line-height: 1.04;
	}

	.post_content .jada-seven-steps-page .jada-seven-steps-section__text {
		font-size: 11px;
		line-height: 1.65;
	}

	.jada-seven-steps-overview .jada-seven-steps-section__inner {
		padding-block: 32px 34px;
	}

	.jada-seven-steps-overview__list li {
		min-height: 160px;
	}

	.jada-seven-steps-journey .jada-seven-steps-section__inner {
		padding-block: 35px 38px;
	}

	.jada-seven-steps-journey__diagram {
		gap: 16px;
		padding-top: 13px;
	}

	.jada-seven-steps-journey__list {
		gap: 10px;
		padding-top: 24px;
	}

	.jada-seven-steps-journey__list::before {
		top: 10px;
	}

	.jada-seven-steps-journey__list > li,
	.jada-seven-steps-journey__list > li:nth-child(n) {
		padding-top: 0;
	}

	.jada-seven-steps-journey__list > li::before,
	.jada-seven-steps-journey__list > li:nth-child(n)::before {
		top: -18px;
		width: 7px;
		height: 7px;
		transform: translateX(-50%);
	}

	.jada-seven-steps-journey__list article {
		min-height: 270px;
		gap: 9px;
		padding: 13px 10px 16px;
		border-top-width: 1px;
		border-radius: 7px;
	}

	.jada-seven-steps-journey__number {
		width: 29px;
		height: 29px;
		font-size: 15px;
	}

	.jada-seven-steps-journey__icon {
		width: 50px;
		height: 50px;
	}

	.post_content .jada-seven-steps-page .jada-seven-steps-journey__list h3 {
		font-size: 14px;
		line-height: 1.32;
	}

	.post_content .jada-seven-steps-page .jada-seven-steps-journey__list p {
		font-size: 9px;
		line-height: 1.55;
	}

	.post_content .jada-seven-steps-page .jada-seven-steps-journey__note {
		position: relative;
		width: min(100% - 180px, 520px);
		padding: 8px 18px;
		font-size: 11px;
	}

	.jada-seven-steps-journey__note::before,
	.jada-seven-steps-journey__note::after {
		position: absolute;
		top: 50%;
		width: 120px;
		height: 1px;
		background: var(--jada-seven-gold);
		content: "";
	}

	.jada-seven-steps-journey__note::before { right: calc(100% + 14px); }
	.jada-seven-steps-journey__note::after { left: calc(100% + 14px); }

	.jada-seven-steps-journey__note > span {
		margin-right: 12px;
		color: var(--jada-seven-gold-deep);
	}

	.jada-seven-steps-practice__inner {
		display: grid;
		grid-template-columns: 250px minmax(520px, 1fr) 180px;
		align-items: center;
		gap: 34px;
		padding-block: 26px 30px;
	}

	.jada-seven-steps-practice .jada-seven-steps-section__title {
		font-size: clamp(28px, 2.25vw, 34px);
	}

	.jada-seven-steps-practice__flow {
		gap: 18px;
	}

	.jada-seven-steps-practice__flow li {
		gap: 7px;
	}

	.jada-seven-steps-practice__flow li > span {
		width: 58px;
		height: 58px;
		padding: 13px;
	}

	.jada-seven-steps-practice__flow li:not(:last-child)::after {
		top: 24px;
		right: calc(-9px - 0.45em);
	}

	.post_content .jada-seven-steps-page .jada-seven-steps-practice__flow h3 {
		font-size: 10px;
	}

	.post_content .jada-seven-steps-page .jada-seven-steps-practice__text {
		padding-left: 24px;
		border-left: 1px solid var(--jada-seven-blue-line);
	}

	.jada-seven-steps-relationship .jada-seven-steps-section__inner {
		padding-block: 28px 31px;
	}

	.jada-seven-steps-relationship__flow {
		gap: 24px;
	}

	.jada-seven-steps-relationship__flow li {
		grid-template-columns: 48px minmax(0, 1fr);
		min-height: 112px;
		align-items: center;
		align-content: center;
		justify-items: start;
		gap: 13px;
		padding: 15px;
		border-radius: 7px;
		text-align: left;
	}

	.jada-seven-steps-relationship__flow li > span {
		width: 48px;
		height: 48px;
	}

	.jada-seven-steps-relationship__flow li > div {
		display: grid;
		gap: 5px;
	}

	.jada-seven-steps-relationship__flow li:not(:last-child)::after {
		top: 45px;
		right: calc(-16px - 0.45em);
	}

	.post_content .jada-seven-steps-page .jada-seven-steps-relationship__flow h3 {
		font-size: 13px;
	}

	.post_content .jada-seven-steps-page .jada-seven-steps-relationship__flow p {
		font-size: 8px;
	}

	.jada-seven-steps-audience .jada-seven-steps-section__inner {
		padding-block: 30px 36px;
	}
}

@media (max-width: 900px) {
	.jada-seven-steps-overview__list,
	.jada-seven-steps-audience__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jada-seven-steps-practice__inner {
		display: grid;
		gap: 34px;
	}

	.jada-seven-steps-practice__text {
		max-width: 620px;
	}

	.jada-seven-steps-relationship__flow li > div {
		display: grid;
		gap: 5px;
	}
}

@media (max-width: 560px) {
	.jada-seven-steps-overview__list,
	.jada-seven-steps-audience__list {
		grid-template-columns: 1fr;
	}

	.jada-seven-steps-overview__list li,
	.jada-seven-steps-audience__list li {
		grid-template-columns: 48px minmax(0, 1fr);
		min-height: 0;
		justify-items: start;
		gap: 7px 15px;
		padding: 18px;
		text-align: left;
	}

	.jada-seven-steps-overview__list li > span,
	.jada-seven-steps-audience__list li > span {
		grid-row: 1 / span 2;
	}

	.jada-seven-steps-overview__list h3,
	.jada-seven-steps-overview__list p,
	.jada-seven-steps-audience__list h3,
	.jada-seven-steps-audience__list p {
		grid-column: 2;
	}

	.jada-seven-steps-practice__text {
		padding-top: 18px;
		border-top: 1px solid var(--jada-seven-blue-line);
	}

	.jada-seven-steps-relationship__flow li > div {
		grid-column: 2;
	}

	.post_content .jada-seven-steps-page .jada-seven-steps-relationship__flow li > div :where(h3, p) {
		grid-column: auto;
	}
}

/* ========================================
   JADA Success Hub
======================================== */

.jada-success-hub-page {
	--jada-success-navy: var(--jada-navy, #0d1f3d);
	--jada-success-gold: var(--jada-gold, #b8965a);
	--jada-success-gold-deep: var(--jada-gold-deep, #a86d00);
	--jada-success-white: var(--jada-white, #ffffff);
	--jada-success-off-white: var(--jada-off-white, #f8f7f4);
	--jada-success-serif: var(--jada-serif, "Iowan Old Style", Baskerville, "Times New Roman", serif);
	--jada-success-sans: var(--jada-sans, "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif);
	--jada-success-line: rgba(184, 150, 90, 0.34);
	--jada-success-blue-line: rgba(13, 31, 61, 0.14);

	position: relative;
	left: 50%;
	width: 100vw;
	width: 100dvw;
	margin-left: -50vw;
	margin-left: -50dvw;
	overflow: clip;
	color: var(--jada-success-navy);
	background: var(--jada-success-white);
	font-family: var(--jada-success-sans);
}

.jada-success-hub-page *,
.jada-success-hub-page *::before,
.jada-success-hub-page *::after {
	box-sizing: border-box;
}

.jada-success-hub-icon-sprite {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}

.jada-success-hub-page .jada-success-hub-icon-sprite {
	width: 0;
	height: 0;
}

.post_content .jada-success-hub-page :where(h1, h2, h3, p, ol, blockquote) {
	margin: 0;
	padding: 0;
}

.post_content .jada-success-hub-page :where(h1, h2, h3) {
	border: 0;
	background: none;
	color: inherit;
	font-weight: inherit;
}

.post_content .jada-success-hub-page :where(h1, h2, h3)::before,
.post_content .jada-success-hub-page :where(h1, h2, h3)::after {
	display: none;
	content: none;
}

.post_content .jada-success-hub-page ol {
	list-style: none;
}

.post_content .jada-success-hub-page :where(h1, h2, h3, p, strong) {
	overflow-wrap: anywhere;
}

.jada-success-hub-page a {
	color: inherit;
	text-decoration: none;
}

.jada-success-hub-page img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.jada-success-hub-page svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.65;
	stroke-linecap: round;
	stroke-linejoin: round;
	vector-effect: non-scaling-stroke;
}

.jada-success-hub-section__inner,
.jada-success-hub-hero__inner {
	width: min(100% - 80px, 1280px);
	margin-inline: auto;
}

.jada-success-hub-page__eyebrow,
.post_content .jada-success-hub-page .jada-success-hub-section__heading {
	color: var(--jada-success-gold-deep);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.post_content .jada-success-hub-page .jada-success-hub-section__heading {
	color: var(--jada-success-navy);
	letter-spacing: 0.14em;
}

.jada-success-hub-page__button,
.jada-success-hub-page__text-link,
.jada-success-hub-page__outline-button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 12px 20px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
	transition: opacity 180ms ease, background-color 180ms ease, color 180ms ease;
}

.jada-success-hub-page__button {
	min-width: 180px;
	color: var(--jada-success-white);
	background: linear-gradient(110deg, var(--jada-success-gold-deep), #cc8b17);
}

.jada-success-hub-page__text-link {
	padding-inline: 0;
	color: var(--jada-success-gold-deep);
}

.jada-success-hub-page__outline-button {
	min-width: 200px;
	border: 1px solid var(--jada-success-gold);
	color: var(--jada-success-gold-deep);
}

.jada-success-hub-page :where(a:hover) {
	opacity: 0.72;
}

.jada-success-hub-page a:focus-visible {
	outline: 2px solid var(--jada-success-gold);
	outline-offset: 4px;
}

.jada-success-hub-page__icon {
	display: grid;
	width: 58px;
	height: 58px;
	flex: 0 0 auto;
	place-items: center;
	padding: 13px;
	border-radius: 50%;
	color: var(--jada-success-gold-deep);
	background: #fbf3e5;
}

/* Page hero */
.jada-success-hub-hero {
	background:
		radial-gradient(circle at 56% 45%, rgba(184, 150, 90, 0.09), transparent 19rem),
		linear-gradient(110deg, #fff 0%, #fffdfa 64%, #f7f8fb 100%);
}

.jada-success-hub-hero__inner {
	display: grid;
	grid-template-columns: minmax(390px, 0.92fr) minmax(590px, 1.08fr);
	align-items: center;
	gap: clamp(48px, 5.5vw, 86px);
	min-height: 440px;
	padding-block: 36px 28px;
}

.jada-success-hub-hero__copy {
	display: grid;
	align-content: center;
	gap: 20px;
}

.post_content .jada-success-hub-page .jada-success-hub-hero__title {
	max-width: 600px;
	font-family: var(--jada-success-serif);
	font-size: clamp(50px, 4.5vw, 67px);
	font-weight: 400;
	line-height: 1.04;
	letter-spacing: -0.035em;
}

.post_content .jada-success-hub-page .jada-success-hub-hero__lead {
	max-width: 560px;
	font-size: 13px;
	line-height: 1.75;
}

.jada-success-hub-hero__actions {
	display: flex;
	align-items: center;
	gap: 36px;
}

.jada-success-hub-hero__visual {
	position: relative;
	display: grid;
	grid-template-columns: 0.85fr 0.65fr 0.92fr;
	grid-template-rows: 128px 128px 92px;
	grid-template-areas:
		"story evidence evidence"
		"story lecture activity"
		"chart support activity";
	height: 348px;
	min-width: 0;
	filter: drop-shadow(0 15px 25px rgba(13, 31, 61, 0.05));
}

.jada-success-hub-hero__image {
	min-width: 0;
	min-height: 0;
	overflow: hidden;
	background: #f2eee6;
}

.jada-success-hub-hero__image img {
	min-width: 0;
	min-height: 0;
}

.jada-success-hub-hero__image--story { grid-area: story; }
.jada-success-hub-hero__image--evidence { grid-area: evidence; }
.jada-success-hub-hero__image--lecture { grid-area: lecture; }
.jada-success-hub-hero__image--activity { grid-area: activity; }
.jada-success-hub-hero__image--support { grid-area: support; }
.jada-success-hub-hero__image--story img { object-position: center 30%; }
.jada-success-hub-hero__image--activity img { object-position: center 25%; }

.jada-success-hub-hero__chart {
	grid-area: chart;
	align-self: end;
	height: 84px;
	color: rgba(184, 150, 90, 0.38);
	stroke-width: 1.2;
}

.jada-success-hub-hero__visual::after {
	position: absolute;
	top: 1px;
	right: -17px;
	width: 70px;
	height: 70px;
	background-image: radial-gradient(circle, var(--jada-success-gold) 1px, transparent 1.5px);
	background-size: 14px 14px;
	content: "";
	transform: translateY(-46%);
}

/* Evidence summary */
.jada-success-hub-summary .jada-success-hub-section__inner {
	padding-block: 0 20px;
}

.jada-success-hub-summary__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border: 1px solid var(--jada-success-line);
	border-radius: 7px;
}

.jada-success-hub-summary__grid article {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	align-items: start;
	gap: 14px;
	min-width: 0;
	min-height: 142px;
	padding: 20px 24px;
}

.jada-success-hub-summary__grid article + article {
	border-left: 1px solid var(--jada-success-blue-line);
}

.jada-success-hub-summary__grid article > div {
	display: grid;
	gap: 6px;
}

.jada-success-hub-summary__grid strong {
	font-family: var(--jada-success-serif);
	font-size: 26px;
	font-weight: 400;
	line-height: 1;
}

.post_content .jada-success-hub-page .jada-success-hub-summary__grid h2 {
	color: var(--jada-success-gold-deep);
	font-size: 10px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.post_content .jada-success-hub-page .jada-success-hub-summary__grid p {
	font-size: 10px;
	line-height: 1.55;
}

/* Featured story */
.jada-success-hub-featured .jada-success-hub-section__inner {
	padding-block: 0 24px;
}

.jada-success-hub-featured__story {
	display: grid;
	grid-template-columns: 0.94fr 1.36fr;
	height: 264px;
	min-height: 264px;
	overflow: hidden;
	border: 1px solid var(--jada-success-line);
	border-radius: 7px;
	background: linear-gradient(105deg, #fff 0%, #fff 40%, #f9f5ed 100%);
}

.jada-success-hub-featured__copy {
	display: grid;
	align-content: center;
	gap: 14px;
	padding: 32px;
}

.post_content .jada-success-hub-page .jada-success-hub-featured__copy h2 {
	max-width: 430px;
	font-family: var(--jada-success-serif);
	font-size: clamp(32px, 3.2vw, 45px);
	font-weight: 400;
	line-height: 1.03;
	letter-spacing: -0.025em;
}

.post_content .jada-success-hub-page .jada-success-hub-featured__copy > p:last-child {
	max-width: 480px;
	font-size: 11px;
	line-height: 1.65;
}

.jada-success-hub-featured__image {
	min-width: 0;
	background: #f2eee6;
}

.jada-success-hub-featured__image img {
	object-position: center 35%;
}

/* Story cards */
.jada-success-hub-stories .jada-success-hub-section__inner,
.jada-success-hub-resources .jada-success-hub-section__inner {
	display: grid;
	gap: 14px;
	padding-block: 0 28px;
}

.jada-success-hub-stories__grid,
.jada-success-hub-resources__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 9px;
}

.jada-success-hub-story-card,
.jada-success-hub-resource-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--jada-success-blue-line);
	border-radius: 6px;
	background: var(--jada-success-white);
}

.jada-success-hub-story-card__image {
	position: relative;
	aspect-ratio: 1.82 / 1;
	background: #f2eee6;
}

.jada-success-hub-story-card__image span {
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 4px 7px;
	color: var(--jada-success-white);
	background: var(--jada-success-navy);
	font-size: 8px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.jada-success-hub-story-card__copy {
	display: grid;
	align-content: start;
	gap: 10px;
	min-height: 150px;
	padding: 14px 13px 17px;
}

.post_content .jada-success-hub-page .jada-success-hub-story-card h3 {
	font-family: var(--jada-success-serif);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.05;
}

.post_content .jada-success-hub-page .jada-success-hub-story-card p {
	font-size: 10px;
	line-height: 1.55;
}

/* Resources */
.jada-success-hub-resource-card {
	display: grid;
	grid-template-rows: auto auto 1fr;
	min-height: 232px;
}

.jada-success-hub-resource-card header {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr);
	align-items: center;
	gap: 11px;
	padding: 14px 14px 0;
}

.jada-success-hub-resource-card header > span {
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	padding: 10px;
	border-radius: 50%;
	color: var(--jada-success-white);
	background: var(--jada-success-navy);
}

.post_content .jada-success-hub-page .jada-success-hub-resource-card h3 {
	font-size: 10px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.post_content .jada-success-hub-page .jada-success-hub-resource-card > p {
	padding: 10px 14px 14px;
	font-size: 9px;
	line-height: 1.55;
}

.jada-success-hub-resource-card__visual {
	min-height: 86px;
	align-self: end;
	background: #f2eee6;
}

.jada-success-hub-resource-card__visual--graphic {
	padding: 8px 12px 0;
	color: rgba(184, 150, 90, 0.34);
	background: linear-gradient(180deg, transparent, #fffaf2);
}

/* Statement */
.jada-success-hub-statement .jada-success-hub-section__inner {
	padding-block: 0 27px;
}

.jada-success-hub-statement__panel {
	display: grid;
	grid-template-columns: 1.25fr 0.95fr auto;
	align-items: center;
	gap: 34px;
	min-height: 108px;
	padding: 20px 34px;
	border: 1px solid var(--jada-success-line);
	border-radius: 7px;
	background: linear-gradient(105deg, #fffdf9, #faf8f4);
}

.jada-success-hub-statement blockquote {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr);
	align-items: center;
	gap: 14px;
}

.jada-success-hub-statement blockquote > span {
	align-self: start;
	color: var(--jada-success-gold);
	font-family: var(--jada-success-serif);
	font-size: 62px;
	line-height: 0.8;
}

.post_content .jada-success-hub-page .jada-success-hub-statement blockquote p {
	font-family: var(--jada-success-serif);
	font-size: 20px;
	line-height: 1.28;
}

.jada-success-hub-statement__impact {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	align-items: center;
	gap: 14px;
	padding-left: 34px;
	border-left: 1px solid var(--jada-success-blue-line);
}

.jada-success-hub-statement__impact > div {
	display: grid;
	gap: 6px;
}

.post_content .jada-success-hub-page .jada-success-hub-statement__impact h2 {
	font-size: 10px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.post_content .jada-success-hub-page .jada-success-hub-statement__impact p {
	font-size: 9px;
	line-height: 1.5;
}

/* Framework relationship */
.jada-success-hub-relationship {
	border-top: 1px solid rgba(184, 150, 90, 0.18);
	background: linear-gradient(180deg, #fff, #fffdf9);
}

.jada-success-hub-relationship .jada-success-hub-section__inner {
	display: grid;
	gap: 24px;
	padding-block: 26px 54px;
}

.jada-success-hub-relationship .jada-success-hub-section__heading {
	text-align: center;
}

.jada-success-hub-relationship__flow {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 44px;
}

.jada-success-hub-relationship__flow li {
	position: relative;
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.jada-success-hub-relationship__flow li > span {
	display: grid;
	width: 64px;
	height: 64px;
	place-items: center;
	padding: 15px;
	border: 1px solid var(--jada-success-gold);
	border-radius: 50%;
	color: var(--jada-success-gold-deep);
	background: var(--jada-success-white);
}

.jada-success-hub-relationship__flow li > div {
	display: grid;
	gap: 6px;
}

.post_content .jada-success-hub-page .jada-success-hub-relationship__flow h3 {
	font-size: 10px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.post_content .jada-success-hub-page .jada-success-hub-relationship__flow p {
	font-size: 8px;
	line-height: 1.5;
}

.jada-success-hub-relationship__flow li:not(:last-child)::after {
	position: absolute;
	top: 50%;
	right: -31px;
	color: var(--jada-success-navy);
	content: "→";
	font-size: 22px;
	font-weight: 300;
	line-height: 1;
	transform: translateY(-50%);
}

.jada-success-hub-relationship__flow .jada-success-hub-relationship__current > span {
	border: 0;
	background: #fbf0dd;
	box-shadow: 0 0 0 1px var(--jada-success-gold);
}

.post_content .jada-success-hub-page .jada-success-hub-relationship__current h3 {
	color: var(--jada-success-gold-deep);
}

/* Laptop */
@media (max-width: 1100px) {
	.jada-success-hub-hero__inner {
		grid-template-columns: minmax(330px, 0.84fr) minmax(520px, 1.16fr);
		gap: 40px;
	}

	.jada-success-hub-summary__grid article {
		grid-template-columns: 48px minmax(0, 1fr);
		padding-inline: 16px;
	}

	.jada-success-hub-page__icon {
		width: 48px;
		height: 48px;
		padding: 11px;
	}

	.jada-success-hub-statement__panel {
		gap: 22px;
		padding-inline: 24px;
	}

	.jada-success-hub-relationship__flow {
		gap: 30px;
	}

	.jada-success-hub-relationship__flow li {
		grid-template-columns: 54px minmax(0, 1fr);
		gap: 10px;
	}

	.jada-success-hub-relationship__flow li > span {
		width: 54px;
		height: 54px;
	}

	.jada-success-hub-relationship__flow li:not(:last-child)::after {
		right: -22px;
	}
}

/* Tablet */
@media (max-width: 900px) {
	.jada-success-hub-section__inner,
	.jada-success-hub-hero__inner {
		width: min(100% - 48px, 760px);
	}

	.jada-success-hub-hero__inner {
		grid-template-columns: 1fr;
		gap: 42px;
		padding-block: 54px 38px;
	}

	.jada-success-hub-hero__copy {
		max-width: 620px;
	}

	.jada-success-hub-hero__visual {
		width: 100%;
		max-width: 680px;
		margin-inline: auto;
	}

	.jada-success-hub-summary__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jada-success-hub-summary__grid article + article {
		border-left: 0;
	}

	.jada-success-hub-summary__grid article:nth-child(even) {
		border-left: 1px solid var(--jada-success-blue-line);
	}

	.jada-success-hub-summary__grid article:nth-child(n + 3) {
		border-top: 1px solid var(--jada-success-blue-line);
	}

	.jada-success-hub-featured__story {
		grid-template-columns: 1fr;
		height: auto;
	}

	.jada-success-hub-featured__image {
		aspect-ratio: 2.3 / 1;
		grid-row: 1;
	}

	.jada-success-hub-stories__grid,
	.jada-success-hub-resources__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.jada-success-hub-statement__panel {
		grid-template-columns: 1fr 1fr;
	}

	.jada-success-hub-statement__panel > a {
		grid-column: 2;
		justify-self: start;
	}

	.jada-success-hub-relationship__flow {
		grid-template-columns: 1fr;
		gap: 24px;
		width: min(100%, 560px);
		margin-inline: auto;
	}

	.jada-success-hub-relationship__flow li {
		grid-template-columns: 64px minmax(0, 1fr);
	}

	.jada-success-hub-relationship__flow li > span {
		width: 64px;
		height: 64px;
	}

	.jada-success-hub-relationship__flow li:not(:last-child)::after {
		top: auto;
		right: auto;
		bottom: -20px;
		left: 22px;
		transform: rotate(90deg);
	}
}

/* Smartphone */
@media (max-width: 560px) {
	.jada-success-hub-section__inner,
	.jada-success-hub-hero__inner {
		width: min(100% - 36px, 520px);
	}

	.jada-success-hub-hero__inner {
		gap: 34px;
		padding-block: 42px 28px;
	}

	.post_content .jada-success-hub-page .jada-success-hub-hero__title {
		font-size: clamp(40px, 12vw, 52px);
	}

	.jada-success-hub-hero__actions {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	.jada-success-hub-page__button,
	.jada-success-hub-page__text-link {
		width: 100%;
	}

	.jada-success-hub-hero__visual {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 128px 96px 96px;
		grid-template-areas:
			"story evidence"
			"story activity"
			"lecture support";
		height: 320px;
	}

	.jada-success-hub-hero__chart {
		display: none;
	}

	.jada-success-hub-hero__visual::after {
		display: none;
	}

	.jada-success-hub-summary__grid {
		grid-template-columns: 1fr;
	}

	.jada-success-hub-summary__grid article,
	.jada-success-hub-summary__grid article:nth-child(even),
	.jada-success-hub-summary__grid article:nth-child(n + 3) {
		min-height: 0;
		border-top: 1px solid var(--jada-success-blue-line);
		border-left: 0;
	}

	.jada-success-hub-summary__grid article:first-child {
		border-top: 0;
	}

	.jada-success-hub-featured__copy {
		padding: 26px 22px;
	}

	.jada-success-hub-featured__image {
		aspect-ratio: 1.6 / 1;
	}

	.jada-success-hub-stories__grid,
	.jada-success-hub-resources__grid {
		grid-template-columns: 1fr;
	}

	.jada-success-hub-story-card__image {
		aspect-ratio: 1.9 / 1;
	}

	.jada-success-hub-story-card__copy {
		min-height: 0;
	}

	.jada-success-hub-resource-card {
		min-height: 0;
	}

	.jada-success-hub-resource-card__visual {
		aspect-ratio: 2.4 / 1;
	}

	.jada-success-hub-statement__panel {
		grid-template-columns: 1fr;
		gap: 26px;
		padding: 26px 22px;
	}

	.jada-success-hub-statement blockquote {
		grid-template-columns: 38px minmax(0, 1fr);
	}

	.jada-success-hub-statement__impact {
		padding-top: 22px;
		padding-left: 0;
		border-top: 1px solid var(--jada-success-blue-line);
		border-left: 0;
	}

	.jada-success-hub-statement__panel > a {
		grid-column: auto;
		width: 100%;
	}

	.jada-success-hub-relationship .jada-success-hub-section__inner {
		padding-block: 32px 58px;
	}

	.jada-success-hub-relationship__flow li {
		grid-template-columns: 58px minmax(0, 1fr);
	}

	.jada-success-hub-relationship__flow li > span {
		width: 58px;
		height: 58px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.jada-success-hub-page__button,
	.jada-success-hub-page__text-link,
	.jada-success-hub-page__outline-button {
		transition: none;
	}
}

/* ========================================
   Founder / Takanobu Sugiura
======================================== */

.jada-founder-page {
	--jada-founder-navy: var(--jada-navy, #0d1f3d);
	--jada-founder-gold: var(--jada-gold, #b8965a);
	--jada-founder-gold-deep: var(--jada-gold-deep, #a86d00);
	--jada-founder-white: var(--jada-white, #ffffff);
	--jada-founder-off-white: var(--jada-off-white, #f8f7f4);
	--jada-founder-serif: var(--jada-serif, "Iowan Old Style", Baskerville, "Times New Roman", serif);
	--jada-founder-sans: var(--jada-sans, "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif);
	--jada-founder-line: rgba(184, 150, 90, 0.34);
	--jada-founder-blue-line: rgba(13, 31, 61, 0.14);

	position: relative;
	left: 50%;
	width: 100vw;
	width: 100dvw;
	margin-left: -50vw;
	margin-left: -50dvw;
	overflow: clip;
	color: var(--jada-founder-navy);
	background: var(--jada-founder-white);
	font-family: var(--jada-founder-sans);
}

.jada-founder-page *,
.jada-founder-page *::before,
.jada-founder-page *::after {
	box-sizing: border-box;
}

.jada-founder-icon-sprite {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}

.post_content .jada-founder-page :where(h1, h2, h3, p, ul, ol, figure, blockquote) {
	margin: 0;
	padding: 0;
}

.post_content .jada-founder-page :where(h1, h2, h3) {
	border: 0;
	background: none;
	color: inherit;
	font-weight: inherit;
}

.post_content .jada-founder-page :where(h1, h2, h3)::before,
.post_content .jada-founder-page :where(h1, h2, h3)::after {
	display: none;
	content: none;
}

.post_content .jada-founder-page :where(ul, ol) {
	list-style: none;
}

.jada-founder-page a {
	color: inherit;
	text-decoration: none;
}

.jada-founder-page a:focus-visible {
	outline: 2px solid var(--jada-founder-gold);
	outline-offset: 4px;
}

.jada-founder-page__eyebrow,
.post_content .jada-founder-page .jada-founder-section__heading {
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.jada-founder-page__eyebrow {
	color: var(--jada-founder-gold-deep);
}

.jada-founder-page__button,
.jada-founder-page__text-link,
.jada-founder-highlight__link {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	gap: 22px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
	transition: opacity 180ms ease, background-color 180ms ease, color 180ms ease;
}

.jada-founder-page__button {
	min-width: 176px;
	padding: 12px 22px;
	color: var(--jada-founder-white);
	background: var(--jada-founder-gold-deep);
}

.jada-founder-page__text-link {
	justify-content: flex-start;
	padding: 12px 0;
	color: var(--jada-founder-gold-deep);
}

.jada-founder-page__button:hover,
.jada-founder-page__text-link:hover,
.jada-founder-highlight__link:hover {
	opacity: 0.72;
}

.jada-founder-page__icon {
	display: grid;
	width: 62px;
	height: 62px;
	place-items: center;
	padding: 12px;
	border: 1px solid var(--jada-founder-line);
	border-radius: 50%;
	color: var(--jada-founder-gold-deep);
	background: linear-gradient(145deg, #fff, var(--jada-founder-off-white));
}

.jada-founder-page__icon svg,
.jada-founder-roles__grid svg,
.jada-founder-highlight svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.55;
	stroke-linecap: round;
	stroke-linejoin: round;
	vector-effect: non-scaling-stroke;
}

/* Page hero */
.jada-founder-hero {
	background: linear-gradient(105deg, #fff 0%, #fff 45%, #f3f1ec 100%);
}

.jada-founder-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 52%) minmax(0, 48%);
	width: min(100%, 1280px);
	min-height: 480px;
	margin-inline: auto;
}

.jada-founder-hero__copy {
	position: relative;
	z-index: 1;
	display: grid;
	align-content: center;
	align-items: start;
	gap: 19px;
	padding: 58px 34px 54px 48px;
}

.post_content .jada-founder-page .jada-founder-hero__title {
	max-width: 560px;
	font-family: var(--jada-founder-serif);
	font-size: clamp(45px, 4vw, 58px);
	font-weight: 400;
	line-height: 1.04;
	letter-spacing: -0.025em;
}

.post_content .jada-founder-page .jada-founder-hero__lead {
	max-width: 530px;
	font-size: 14px;
	line-height: 1.58;
}

.jada-founder-hero__identity {
	display: grid;
	gap: 2px;
	padding-left: 14px;
	border-left: 1px solid var(--jada-founder-gold);
}

.post_content .jada-founder-page .jada-founder-hero__name {
	font-family: var(--jada-founder-serif);
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0.01em;
}

.post_content .jada-founder-page .jada-founder-hero__role,
.post_content .jada-founder-page .jada-founder-hero__organization {
	font-size: 11px;
	line-height: 1.45;
}

.post_content .jada-founder-page .jada-founder-hero__role {
	font-weight: 600;
}

.post_content .jada-founder-page .jada-founder-hero__organization {
	color: rgba(13, 31, 61, 0.78);
}

.jada-founder-hero__actions {
	display: flex;
	align-items: center;
	gap: 44px;
	padding-top: 3px;
}

.jada-founder-hero__portrait {
	position: relative;
	min-width: 0;
	min-height: 480px;
	overflow: hidden;
	background: var(--jada-founder-off-white);
}

.jada-founder-hero__portrait::before {
	position: absolute;
	z-index: 1;
	top: 0;
	bottom: 0;
	left: 0;
	width: 18%;
	background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0));
	content: "";
	pointer-events: none;
}

.jada-founder-hero__portrait img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 480px;
	aspect-ratio: 1.28 / 1;
	object-fit: cover;
	object-position: center 28%;
}

/* Shared content panels */
.jada-founder-page__main {
	display: grid;
	gap: 12px;
	width: min(100% - 80px, 1200px);
	margin-inline: auto;
	padding-block: 20px 0;
}

.jada-founder-panel {
	min-width: 0;
	border: 1px solid var(--jada-founder-line);
	border-radius: 4px;
	background: linear-gradient(120deg, #fff 0%, #fffdfa 100%);
}

.post_content .jada-founder-page .jada-founder-section__heading {
	display: flex;
	align-items: center;
	gap: 16px;
	font-family: var(--jada-founder-serif);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.075em;
}

.jada-founder-section__heading::before {
	width: 1px;
	height: 20px;
	background: var(--jada-founder-gold);
	content: "";
}

/* Relationship */
.jada-founder-relationship {
	display: grid;
	gap: 8px;
	min-height: 198px;
	padding: 18px 16px 20px;
}

.jada-founder-relationship__flow {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: start;
	gap: 54px;
	padding-inline: 90px;
}

.jada-founder-relationship__flow li {
	position: relative;
	display: grid;
	justify-items: center;
	gap: 7px;
	min-width: 0;
	text-align: center;
}

.jada-founder-relationship__flow li:not(:last-child)::after {
	position: absolute;
	top: 32px;
	left: calc(100% + 14px);
	width: 42px;
	height: 10px;
	border-top: 1px solid var(--jada-founder-gold-deep);
	content: "";
}

.jada-founder-relationship__flow li:not(:last-child)::before {
	position: absolute;
	z-index: 1;
	top: 28px;
	left: calc(100% + 50px);
	width: 8px;
	height: 8px;
	border-top: 1px solid var(--jada-founder-gold-deep);
	border-right: 1px solid var(--jada-founder-gold-deep);
	content: "";
	transform: rotate(45deg);
}

.post_content .jada-founder-page .jada-founder-relationship__flow h3 {
	font-family: var(--jada-founder-serif);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.025em;
	text-transform: uppercase;
}

.post_content .jada-founder-page .jada-founder-relationship__flow p {
	font-size: 11px;
	line-height: 1.45;
}

/* Roles */
.jada-founder-roles {
	display: grid;
	gap: 16px;
	min-height: 172px;
	padding: 16px;
}

.jada-founder-roles__grid {
	display: grid;
	grid-template-columns: repeat(8, minmax(0, 1fr));
}

.jada-founder-roles__grid li {
	display: grid;
	align-content: start;
	justify-items: center;
	gap: 8px;
	min-width: 0;
	padding: 2px 10px;
	text-align: center;
}

.jada-founder-roles__grid li + li {
	border-left: 1px solid var(--jada-founder-line);
}

.jada-founder-roles__grid li > span {
	display: block;
	width: 44px;
	height: 44px;
	color: var(--jada-founder-gold-deep);
}

.post_content .jada-founder-page .jada-founder-roles__grid p {
	font-size: 10px;
	font-weight: 700;
	line-height: 1.36;
	text-transform: uppercase;
	overflow-wrap: anywhere;
}

/* Quote and philosophy */
.jada-founder-philosophy {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 192px;
	padding: 20px 44px;
}

.jada-founder-philosophy__quote,
.jada-founder-philosophy__copy {
	display: grid;
	align-content: center;
	gap: 10px;
}

.jada-founder-philosophy__quote {
	padding-right: 34px;
}

.jada-founder-philosophy__quote blockquote {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	align-items: start;
}

.jada-founder-philosophy__quote blockquote > span {
	color: var(--jada-founder-gold-deep);
	font-family: var(--jada-founder-serif);
	font-size: 62px;
	line-height: 0.8;
}

.post_content .jada-founder-page .jada-founder-philosophy__quote blockquote p {
	font-family: var(--jada-founder-serif);
	font-size: 24px;
	line-height: 1.3;
}

.post_content .jada-founder-page .jada-founder-philosophy__signature {
	justify-self: center;
	color: var(--jada-founder-gold-deep);
	font-family: var(--jada-founder-serif);
	font-size: 18px;
	font-style: italic;
}

.jada-founder-philosophy__copy {
	padding-left: 34px;
	border-left: 1px solid var(--jada-founder-line);
}

.post_content .jada-founder-page .jada-founder-philosophy__copy h2,
.post_content .jada-founder-page .jada-founder-highlight h3 {
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.post_content .jada-founder-page .jada-founder-philosophy__copy p {
	font-size: 13px;
	line-height: 1.55;
}

/* Journey */
.jada-founder-journey {
	display: grid;
	gap: 10px;
	min-height: 218px;
	padding: 16px;
}

.jada-founder-journey__timeline {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 38px;
	padding-inline: 38px;
}

.jada-founder-journey__timeline::before {
	position: absolute;
	top: 31px;
	right: 10%;
	left: 10%;
	height: 1px;
	background: var(--jada-founder-line);
	content: "";
}

.jada-founder-journey__timeline li {
	position: relative;
	display: grid;
	align-content: start;
	justify-items: center;
	gap: 6px;
	min-width: 0;
	text-align: center;
}

.jada-founder-journey__timeline li:not(:last-child)::after {
	position: absolute;
	z-index: 1;
	top: 27px;
	right: -23px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--jada-founder-gold-deep);
	content: "";
}

.jada-founder-journey__timeline .jada-founder-page__icon {
	position: relative;
	z-index: 1;
	background: var(--jada-founder-white);
}

.post_content .jada-founder-page .jada-founder-journey__year,
.post_content .jada-founder-page .jada-founder-journey__timeline h3 {
	font-size: 11px;
	font-weight: 700;
	line-height: 1.35;
}

.post_content .jada-founder-page .jada-founder-journey__timeline > li > p:last-child {
	max-width: 168px;
	font-size: 10px;
	line-height: 1.48;
}

/* Continued practice */
.jada-founder-practice {
	display: grid;
	grid-template-columns: minmax(0, 58%) minmax(0, 42%);
	align-items: stretch;
	padding: 18px;
}

.jada-founder-practice__visual {
	display: grid;
	grid-template-rows: auto auto;
	align-content: start;
	min-width: 0;
}

.jada-founder-practice__visual img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 10;
	object-fit: contain;
	object-position: center;
	background: var(--jada-founder-off-white);
}

.post_content .jada-founder-page .jada-founder-practice__visual figcaption {
	padding-top: 8px;
	color: rgba(13, 31, 61, 0.68);
	font-size: 10px;
	line-height: 1.4;
	letter-spacing: 0.025em;
}

.jada-founder-practice__copy {
	display: grid;
	align-content: center;
	gap: 18px;
	min-width: 0;
	padding: 30px 34px 30px 46px;
}

.post_content .jada-founder-page .jada-founder-practice__copy h2 {
	max-width: 410px;
	font-family: var(--jada-founder-serif);
	font-size: clamp(29px, 2.7vw, 39px);
	font-weight: 400;
	line-height: 1.12;
	letter-spacing: -0.02em;
}

.jada-founder-practice__body {
	display: grid;
	gap: 12px;
}

.post_content .jada-founder-page .jada-founder-practice__body p {
	font-size: 13px;
	line-height: 1.65;
}

/* Highlights */
.jada-founder-highlights {
	display: grid;
	gap: 12px;
	min-height: 270px;
	padding: 16px 16px 0;
	border-bottom: 0;
}

.jada-founder-highlights__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jada-founder-highlight {
	display: grid;
	grid-template-rows: auto 1fr auto;
	gap: 10px;
	min-width: 0;
	padding: 0 34px 10px;
}

.jada-founder-highlight + .jada-founder-highlight {
	border-left: 1px solid var(--jada-founder-line);
}

.jada-founder-highlight header {
	display: grid;
	grid-template-columns: 68px minmax(0, 1fr);
	align-items: start;
	gap: 14px;
}

.jada-founder-highlight header > span {
	display: grid;
	width: 62px;
	height: 62px;
	place-items: center;
	padding: 14px;
	border-radius: 50%;
	color: var(--jada-founder-gold-deep);
	background: var(--jada-founder-off-white);
}

.jada-founder-highlight header > div {
	display: grid;
	gap: 7px;
}

.post_content .jada-founder-page .jada-founder-highlight header p {
	font-size: 11px;
	line-height: 1.45;
}

.jada-founder-highlight__media {
	min-height: 64px;
	overflow: hidden;
	background: var(--jada-founder-off-white);
}

.jada-founder-highlight__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 64px;
	object-fit: cover;
	object-position: center;
}

.jada-founder-highlight__media--books img,
.jada-founder-highlight__media--logos img {
	object-fit: contain;
}

.jada-founder-highlight__link {
	justify-content: center;
	justify-self: center;
	min-height: 36px;
	color: var(--jada-founder-gold-deep);
}

/* Laptop */
@media (max-width: 1100px) {
	.jada-founder-hero__copy {
		padding-left: 36px;
	}

	.jada-founder-page__main {
		width: min(100% - 56px, 1040px);
	}

	.jada-founder-relationship__flow {
		gap: 38px;
		padding-inline: 54px;
	}

	.jada-founder-relationship__flow li:not(:last-child)::after {
		left: calc(100% + 8px);
		width: 30px;
	}

	.jada-founder-relationship__flow li:not(:last-child)::before {
		left: calc(100% + 32px);
	}

	.jada-founder-roles__grid li {
		padding-inline: 6px;
	}

	.jada-founder-highlight {
		padding-inline: 22px;
	}

	.jada-founder-practice__copy {
		padding-inline: 34px 24px;
	}
}

/* Tablet */
@media (max-width: 900px) {
	.jada-founder-hero__inner {
		grid-template-columns: 1fr;
	}

	.jada-founder-hero__copy {
		min-height: 430px;
		padding: 54px 48px;
	}

	.jada-founder-hero__portrait,
	.jada-founder-hero__portrait img {
		min-height: 0;
	}

	.jada-founder-hero__portrait img {
		aspect-ratio: 16 / 9;
	}

	.jada-founder-hero__portrait::before {
		top: 0;
		right: 0;
		bottom: auto;
		width: auto;
		height: 12%;
		background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0));
	}

	.jada-founder-page__main {
		width: min(100% - 48px, 760px);
	}

	.jada-founder-relationship__flow {
		grid-template-columns: 1fr 1fr;
		gap: 28px 70px;
		padding-inline: 42px;
	}

	.jada-founder-relationship__flow li:nth-child(2)::after,
	.jada-founder-relationship__flow li:nth-child(2)::before {
		display: none;
	}

	.jada-founder-roles__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.jada-founder-roles__grid li:nth-child(5) {
		border-left: 0;
	}

	.jada-founder-roles__grid li:nth-child(n + 5) {
		padding-top: 16px;
		border-top: 1px solid var(--jada-founder-line);
	}

	.jada-founder-philosophy {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.jada-founder-philosophy__quote {
		padding-right: 0;
	}

	.jada-founder-philosophy__copy {
		padding-top: 24px;
		padding-left: 0;
		border-top: 1px solid var(--jada-founder-line);
		border-left: 0;
	}

	.jada-founder-journey__timeline {
		grid-template-columns: 1fr;
		gap: 26px;
		padding: 8px 40px;
	}

	.jada-founder-journey__timeline::before {
		top: 30px;
		bottom: 30px;
		left: 70px;
		width: 1px;
		height: auto;
	}

	.jada-founder-journey__timeline li {
		grid-template-columns: 62px minmax(100px, 0.45fr) minmax(0, 1fr);
		grid-template-rows: auto auto;
		align-items: center;
		justify-items: start;
		gap: 2px 18px;
		text-align: left;
	}

	.jada-founder-journey__timeline .jada-founder-page__icon {
		grid-row: 1 / 3;
	}

	.jada-founder-journey__timeline li:not(:last-child)::after {
		display: none;
	}

	.jada-founder-journey__timeline > li > p:last-child {
		grid-column: 3;
		grid-row: 1 / 3;
		max-width: none;
	}

	.jada-founder-practice {
		grid-template-columns: 1fr;
	}

	.jada-founder-practice__copy {
		padding: 28px 12px 18px;
	}

	.jada-founder-highlights__grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.jada-founder-highlight + .jada-founder-highlight {
		padding-top: 22px;
		border-top: 1px solid var(--jada-founder-line);
		border-left: 0;
	}

	.jada-founder-highlight__media {
		min-height: 120px;
	}
}

/* Smartphone */
@media (max-width: 560px) {
	.jada-founder-hero__copy {
		min-height: 0;
		gap: 17px;
		padding: 42px 18px 36px;
	}

	.post_content .jada-founder-page .jada-founder-hero__title {
		font-size: clamp(40px, 12vw, 50px);
	}

	.jada-founder-hero__actions {
		flex-direction: column;
		align-items: stretch;
		gap: 6px;
	}

	.jada-founder-page__button,
	.jada-founder-page__text-link {
		width: 100%;
	}

	.jada-founder-page__text-link {
		justify-content: space-between;
	}

	.jada-founder-hero__identity {
		padding-left: 11px;
	}

	.post_content .jada-founder-page .jada-founder-hero__name {
		font-size: 18px;
	}

	.jada-founder-hero__portrait img {
		aspect-ratio: 4 / 3;
		object-position: center 25%;
	}

	.jada-founder-page__main {
		width: min(100% - 28px, 520px);
		gap: 10px;
	}

	.jada-founder-panel {
		padding-inline: 14px;
	}

	.jada-founder-relationship__flow {
		grid-template-columns: 1fr;
		gap: 30px;
		padding-inline: 12px;
	}

	.jada-founder-relationship__flow li:not(:last-child)::after {
		top: auto;
		bottom: -19px;
		left: 50%;
		width: 1px;
		height: 18px;
		border-top: 0;
		background: var(--jada-founder-gold-deep);
	}

	.jada-founder-relationship__flow li:not(:last-child)::before {
		top: auto;
		bottom: -19px;
		left: calc(50% - 3px);
		transform: rotate(135deg);
	}

	.jada-founder-relationship__flow li:nth-child(2)::after,
	.jada-founder-relationship__flow li:nth-child(2)::before {
		display: block;
	}

	.jada-founder-roles__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.jada-founder-roles__grid li:nth-child(odd) {
		border-left: 0;
	}

	.jada-founder-roles__grid li:nth-child(n + 3) {
		padding-top: 14px;
		border-top: 1px solid var(--jada-founder-line);
	}

	.jada-founder-philosophy {
		padding-block: 26px;
	}

	.jada-founder-philosophy__quote blockquote {
		grid-template-columns: 38px minmax(0, 1fr);
	}

	.jada-founder-philosophy__quote blockquote > span {
		font-size: 48px;
	}

	.post_content .jada-founder-page .jada-founder-philosophy__quote blockquote p {
		font-size: 21px;
	}

	.jada-founder-journey__timeline {
		padding-inline: 0;
	}

	.jada-founder-journey__timeline::before {
		left: 30px;
	}

	.jada-founder-journey__timeline li {
		grid-template-columns: 62px minmax(0, 1fr);
		grid-template-rows: auto auto auto;
		column-gap: 14px;
	}

	.jada-founder-journey__timeline .jada-founder-page__icon {
		grid-row: 1 / 4;
	}

	.jada-founder-journey__timeline > li > p:last-child {
		grid-column: 2;
		grid-row: auto;
	}

	.jada-founder-practice {
		padding-block: 14px 18px;
	}

	.jada-founder-practice__copy {
		gap: 14px;
		padding: 24px 0 0;
	}

	.post_content .jada-founder-page .jada-founder-practice__copy h2 {
		font-size: clamp(28px, 9vw, 36px);
	}

	.jada-founder-highlight {
		padding-inline: 0;
	}

	.jada-founder-highlight header {
		grid-template-columns: 58px minmax(0, 1fr);
	}

	.jada-founder-highlight header > span {
		width: 54px;
		height: 54px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.jada-founder-page__button,
	.jada-founder-page__text-link,
	.jada-founder-highlight__link {
		transition: none;
	}
}

/* ========================================
   Contact
======================================== */

.jada-contact-page {
	--jada-contact-navy: var(--jada-navy, #0d1f3d);
	--jada-contact-gold: var(--jada-gold, #b8965a);
	--jada-contact-gold-deep: var(--jada-gold-deep, #a86d00);
	--jada-contact-white: var(--jada-white, #ffffff);
	--jada-contact-off-white: var(--jada-off-white, #f8f7f4);
	--jada-contact-serif: var(--jada-serif, "Iowan Old Style", Baskerville, "Times New Roman", serif);
	--jada-contact-sans: var(--jada-sans, "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif);
	--jada-contact-line: rgba(184, 150, 90, 0.34);
	--jada-contact-field-line: rgba(184, 150, 90, 0.4);
	--jada-contact-error: #9f342d;

	position: relative;
	left: 50%;
	width: 100vw;
	width: 100dvw;
	margin-left: -50vw;
	margin-left: -50dvw;
	overflow: clip;
	color: var(--jada-contact-navy);
	background:
		radial-gradient(circle at 50% 27%, rgba(184, 150, 90, 0.045), transparent 34rem),
		var(--jada-contact-white);
	font-family: var(--jada-contact-sans);
}

.jada-contact-page *,
.jada-contact-page *::before,
.jada-contact-page *::after {
	box-sizing: border-box;
}

.post_content .jada-contact-page :where(h1, h2, h3, p, ul) {
	margin: 0;
	padding: 0;
}

.post_content .jada-contact-page :where(h1, h2, h3) {
	border: 0;
	background: none;
	color: inherit;
	font-weight: inherit;
}

.post_content .jada-contact-page :where(h1, h2, h3)::before,
.post_content .jada-contact-page :where(h1, h2, h3)::after {
	display: none;
	content: none;
}

.post_content .jada-contact-page ul {
	list-style: none;
}

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

.jada-contact-page a {
	color: inherit;
}

/* This page replaces the shared footer CTA while retaining the global footer. */
body:has(.jada-contact-page) .jada-connect {
	display: none;
}

.jada-contact-hero__inner,
.jada-contact-collaboration__inner {
	width: min(100% - 64px, 1120px);
	margin-inline: auto;
}

.jada-contact-hero {
	padding: 62px 0 26px;
	text-align: center;
}

.jada-contact-hero__inner {
	display: grid;
	justify-items: center;
	gap: 18px;
}

.post_content .jada-contact-page .jada-contact-hero__title {
	font-family: var(--jada-contact-serif);
	font-size: clamp(48px, 5.2vw, 70px);
	font-weight: 400;
	line-height: 1.04;
	letter-spacing: -0.025em;
}

.jada-contact-hero__title span {
	color: var(--jada-contact-gold-deep);
}

.jada-contact-hero__ornament {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--jada-contact-gold-deep);
}

.jada-contact-hero__ornament i {
	display: block;
	width: 42px;
	height: 1px;
	background: currentColor;
}

.jada-contact-hero__ornament b {
	display: block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: currentColor;
}

.post_content .jada-contact-page .jada-contact-hero__lead {
	font-size: clamp(16px, 1.45vw, 20px);
	line-height: 1.45;
}

/* Contact Form 7 component */
.jada-contact-form-section {
	padding: 0;
}

.jada-contact-page .wp-block-shortcode {
	margin: 0;
}

.jada-contact-page .wpcf7 {
	width: min(100% - 64px, 700px);
	margin-inline: auto;
}

.jada-contact-page .wpcf7 form,
.jada-contact-page .wpcf7 form > p {
	margin: 0;
}

.jada-contact-form {
	display: grid;
	gap: 26px;
	padding: 34px 38px 36px;
	border: 1px solid var(--jada-contact-line);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 18px 48px rgba(13, 31, 61, 0.025);
}

.jada-contact-form__header {
	display: grid;
	gap: 10px;
}

.post_content .jada-contact-page .jada-contact-form__header h2 {
	font-family: var(--jada-contact-serif);
	font-size: clamp(27px, 2.5vw, 34px);
	font-weight: 400;
	line-height: 1.15;
}

.post_content .jada-contact-page .jada-contact-form__header p {
	max-width: 40em;
	font-size: 13px;
	line-height: 1.65;
}

.jada-contact-form__fields {
	display: grid;
	gap: 20px;
}

.jada-contact-form__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.jada-contact-form__field {
	display: grid;
	min-width: 0;
	gap: 8px;
}

.jada-contact-form__field > label {
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
}

.jada-contact-form__required {
	color: var(--jada-contact-error);
}

.jada-contact-page .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.jada-contact-page .wpcf7 :where(input[type="text"], input[type="email"], select, textarea) {
	display: block;
	width: 100%;
	min-width: 0;
	border: 1px solid var(--jada-contact-field-line);
	border-radius: 5px;
	outline: 0;
	color: var(--jada-contact-navy);
	background: rgba(255, 255, 255, 0.76);
	font: inherit;
	font-size: 13px;
	line-height: 1.4;
	transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.jada-contact-page .wpcf7 :where(input[type="text"], input[type="email"], select) {
	height: 48px;
	padding: 0 14px;
}

.jada-contact-page .wpcf7 select {
	padding-right: 42px;
	appearance: auto;
}

.jada-contact-page .wpcf7 textarea {
	min-height: 150px;
	padding: 13px 14px;
	resize: vertical;
}

.jada-contact-page .wpcf7 :where(input, select, textarea)::placeholder {
	color: rgba(13, 31, 61, 0.58);
	opacity: 1;
}

.jada-contact-page .wpcf7 :where(input[type="text"], input[type="email"], select, textarea):focus-visible {
	border-color: var(--jada-contact-gold-deep);
	box-shadow: 0 0 0 3px rgba(184, 150, 90, 0.19);
	background: var(--jada-contact-white);
}

.jada-contact-page .wpcf7 :where(input[type="text"], input[type="email"], select, textarea).wpcf7-not-valid {
	border-color: var(--jada-contact-error);
	box-shadow: inset 3px 0 0 var(--jada-contact-error);
}

.jada-contact-page .wpcf7-not-valid-tip {
	display: block;
	padding-top: 6px;
	color: var(--jada-contact-error);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.45;
}

.jada-contact-form__consent,
.jada-contact-form__consent .wpcf7-form-control-wrap,
.jada-contact-form__consent .wpcf7-acceptance,
.jada-contact-form__consent .wpcf7-list-item,
.jada-contact-form__consent .wpcf7-list-item > label {
	display: block;
}

.jada-contact-form__consent .wpcf7-list-item {
	margin: 0;
}

.jada-contact-form__consent .wpcf7-list-item > label {
	position: relative;
	min-height: 44px;
	padding: 4px 0 4px 32px;
	cursor: pointer;
}

.jada-contact-form__consent input[type="checkbox"] {
	position: absolute;
	top: 3px;
	left: 0;
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: var(--jada-contact-gold-deep);
}

.jada-contact-form__consent .wpcf7-list-item-label {
	display: block;
	font-size: 11px;
	line-height: 1.65;
}

.jada-contact-form__consent a {
	text-decoration: underline;
	text-decoration-color: var(--jada-contact-gold);
	text-underline-offset: 3px;
}

.jada-contact-form__consent input[type="checkbox"]:focus-visible,
.jada-contact-form__consent a:focus-visible {
	outline: 2px solid var(--jada-contact-gold-deep);
	outline-offset: 3px;
}

.jada-contact-form__actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.jada-contact-form__submit {
	position: relative;
	display: inline-grid;
	min-width: 212px;
	min-height: 50px;
	place-items: center;
}

.jada-contact-form__submit svg {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 24px;
	width: 21px;
	height: 21px;
	transform: translateY(-50%);
	pointer-events: none;
	color: var(--jada-contact-white);
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.jada-contact-page .wpcf7 .wpcf7-submit.jada-contact-form__submit-control {
	width: 100%;
	min-height: 50px;
	margin: 0;
	padding: 12px 22px 12px 54px;
	border: 1px solid var(--jada-contact-gold-deep);
	border-radius: 4px;
	color: var(--jada-contact-white);
	background: linear-gradient(105deg, var(--jada-contact-gold-deep), var(--jada-contact-gold));
	font-family: var(--jada-contact-sans);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
	text-align: left;
	cursor: pointer;
	transition: filter 160ms ease, box-shadow 160ms ease;
}

.jada-contact-page .wpcf7 .wpcf7-submit.jada-contact-form__submit-control:hover {
	filter: brightness(0.92);
}

.jada-contact-page .wpcf7 .wpcf7-submit.jada-contact-form__submit-control:focus-visible {
	outline: 2px solid var(--jada-contact-navy);
	outline-offset: 3px;
	box-shadow: 0 0 0 5px rgba(184, 150, 90, 0.22);
}

.jada-contact-page .wpcf7 .wpcf7-submit:disabled {
	cursor: not-allowed;
	opacity: 0.58;
}

.jada-contact-page .wpcf7-spinner {
	margin: 0;
	vertical-align: middle;
}

.jada-contact-form__submit .wpcf7-spinner {
	position: absolute;
	top: 50%;
	left: calc(100% + 12px);
	transform: translateY(-50%);
}

.jada-contact-form__response-note {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr);
	gap: 20px;
	align-items: start;
	padding: 22px 30px;
	border: 1px solid var(--jada-contact-line);
	border-radius: 7px;
	background: rgba(255, 255, 255, 0.6);
}

.jada-contact-form__response-note > svg {
	width: 46px;
	height: 46px;
	color: var(--jada-contact-gold-deep);
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.jada-contact-form__response-note > div {
	display: grid;
	gap: 4px;
}

.post_content .jada-contact-page .jada-contact-form__response-note h3 {
	font-family: var(--jada-contact-sans);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.45;
}

.post_content .jada-contact-page .jada-contact-form__response-note p {
	font-size: 11px;
	line-height: 1.55;
}

.jada-contact-page .wpcf7 form .wpcf7-response-output {
	margin: 18px 0 0;
	padding: 13px 16px;
	border: 1px solid var(--jada-contact-gold);
	border-left-width: 4px;
	border-radius: 4px;
	color: var(--jada-contact-navy);
	background: rgba(184, 150, 90, 0.09);
	font-size: 13px;
	line-height: 1.55;
}

.jada-contact-page .wpcf7 form.invalid .wpcf7-response-output,
.jada-contact-page .wpcf7 form.unaccepted .wpcf7-response-output,
.jada-contact-page .wpcf7 form.failed .wpcf7-response-output,
.jada-contact-page .wpcf7 form.aborted .wpcf7-response-output {
	border-color: var(--jada-contact-error);
	background: rgba(159, 52, 45, 0.07);
}

/* Collaboration */
.jada-contact-collaboration {
	padding: 28px 0 72px;
}

.jada-contact-collaboration__inner {
	display: grid;
	gap: 24px;
}

.post_content .jada-contact-page .jada-contact-collaboration__title {
	font-family: var(--jada-contact-sans);
	font-size: clamp(16px, 1.45vw, 20px);
	font-weight: 400;
	line-height: 1.45;
	text-align: center;
}

.jada-contact-collaboration__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.jada-contact-collaboration__item {
	display: grid;
	min-height: 250px;
	grid-template-rows: 56px auto 1px 1fr;
	justify-items: center;
	align-content: center;
	gap: 15px;
	padding: 28px 18px;
	border: 1px solid var(--jada-contact-line);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.66);
	text-align: center;
}

.jada-contact-collaboration__icon {
	display: block;
	width: 52px;
	height: 52px;
	color: var(--jada-contact-gold-deep);
	fill: none;
	stroke: currentColor;
	stroke-width: 1.55;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.post_content .jada-contact-page .jada-contact-collaboration__item h3 {
	font-family: var(--jada-contact-serif);
	font-size: clamp(18px, 1.55vw, 22px);
	font-weight: 400;
	line-height: 1.25;
}

.jada-contact-collaboration__rule {
	width: 42px;
	height: 1px;
	background: var(--jada-contact-line);
}

.post_content .jada-contact-page .jada-contact-collaboration__item p {
	align-self: start;
	font-size: 12px;
	line-height: 1.6;
}

@media (max-width: 1100px) {
	.jada-contact-hero__inner,
	.jada-contact-collaboration__inner {
		width: min(100% - 48px, 900px);
	}

	.jada-contact-collaboration__grid {
		gap: 14px;
	}

	.jada-contact-collaboration__item {
		min-height: 230px;
		padding-inline: 13px;
	}
}

@media (max-width: 900px) {
	.jada-contact-hero {
		padding-top: 52px;
	}

	.jada-contact-page .wpcf7 {
		width: min(100% - 48px, 700px);
	}

	.jada-contact-collaboration__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
	}

	.jada-contact-collaboration__item {
		min-height: 220px;
	}
}

@media (max-width: 560px) {
	.jada-contact-hero__inner,
	.jada-contact-collaboration__inner,
	.jada-contact-page .wpcf7 {
		width: min(100% - 28px, 520px);
	}

	.jada-contact-hero {
		padding: 40px 0 22px;
	}

	.jada-contact-hero__inner {
		gap: 14px;
	}

	.post_content .jada-contact-page .jada-contact-hero__title {
		font-size: clamp(39px, 12vw, 52px);
	}

	.jada-contact-hero__lead br,
	.jada-contact-collaboration__title br,
	.jada-contact-collaboration__item p br {
		display: none;
	}

	.jada-contact-form {
		gap: 23px;
		padding: 26px 18px 22px;
		border-radius: 12px;
	}

	.jada-contact-form__row {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.jada-contact-page .wpcf7 :where(input[type="text"], input[type="email"], select) {
		height: 50px;
		font-size: 16px;
	}

	.jada-contact-page .wpcf7 textarea {
		min-height: 160px;
		font-size: 16px;
	}

	.jada-contact-form__submit {
		width: 100%;
	}

	.jada-contact-form__response-note {
		grid-template-columns: 38px minmax(0, 1fr);
		gap: 14px;
		padding: 18px 16px;
	}

	.jada-contact-form__response-note > svg {
		width: 38px;
		height: 38px;
	}

	.jada-contact-collaboration {
		padding: 26px 0 52px;
	}

	.jada-contact-collaboration__grid {
		grid-template-columns: 1fr;
	}

	.jada-contact-collaboration__item {
		min-height: 0;
		grid-template-rows: auto;
		gap: 12px;
		padding: 26px 22px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.jada-contact-page .wpcf7 :where(input[type="text"], input[type="email"], select, textarea),
	.jada-contact-page .wpcf7 .wpcf7-submit.jada-contact-form__submit-control {
		transition: none;
	}
}

/* ========================================
   Privacy Policy
======================================== */

.jada-privacy-page {
	--jada-privacy-navy: var(--jada-navy, #0d1f3d);
	--jada-privacy-gold: var(--jada-gold, #b8965a);
	--jada-privacy-gold-deep: var(--jada-gold-deep, #a86d00);
	--jada-privacy-white: var(--jada-white, #ffffff);
	--jada-privacy-off-white: var(--jada-off-white, #f8f7f4);
	--jada-privacy-serif: var(--jada-serif, "Iowan Old Style", Baskerville, "Times New Roman", serif);
	--jada-privacy-sans: var(--jada-sans, "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif);
	--jada-privacy-line: rgba(184, 150, 90, 0.34);

	position: relative;
	left: 50%;
	width: 100vw;
	width: 100dvw;
	margin-left: -50vw;
	margin-left: -50dvw;
	overflow: clip;
	color: var(--jada-privacy-navy);
	background:
		radial-gradient(circle at 50% 18%, rgba(184, 150, 90, 0.045), transparent 34rem),
		var(--jada-privacy-white);
	font-family: var(--jada-privacy-sans);
}

.jada-privacy-page *,
.jada-privacy-page *::before,
.jada-privacy-page *::after {
	box-sizing: border-box;
}

.post_content .jada-privacy-page :where(h1, h2, h3, p, ul, ol) {
	margin: 0;
	padding: 0;
}

.post_content .jada-privacy-page :where(h1, h2, h3) {
	border: 0;
	background: none;
	color: inherit;
	font-weight: inherit;
}

.post_content .jada-privacy-page :where(h1, h2, h3)::before,
.post_content .jada-privacy-page :where(h1, h2, h3)::after {
	display: none;
	content: none;
}

.post_content .jada-privacy-page :where(ul, ol) {
	list-style-position: outside;
}

/* This page replaces the shared footer CTA while retaining the global footer. */
body:has(.jada-privacy-page) .jada-connect {
	display: none;
}

.jada-privacy-hero__inner,
.jada-privacy-main {
	width: min(100% - 64px, 900px);
	margin-inline: auto;
}

.jada-privacy-hero {
	padding: 60px 0 28px;
	text-align: center;
}

.jada-privacy-hero__inner {
	display: grid;
	justify-items: center;
	gap: 18px;
}

.post_content .jada-privacy-page .jada-privacy-hero__title {
	font-family: var(--jada-privacy-serif);
	font-size: clamp(50px, 5vw, 68px);
	font-weight: 400;
	line-height: 1.04;
	letter-spacing: -0.025em;
}

.jada-privacy-hero__ornament {
	display: grid;
	grid-template-columns: 46px 5px 46px;
	align-items: center;
	gap: 8px;
	color: var(--jada-privacy-gold-deep);
}

.jada-privacy-hero__ornament i {
	height: 1px;
	background: currentColor;
}

.jada-privacy-hero__ornament b {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: currentColor;
}

.post_content .jada-privacy-page .jada-privacy-hero__introduction {
	max-width: 700px;
	font-size: 15px;
	line-height: 1.55;
}

.jada-privacy-hero__updated {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding-top: 2px;
	font-size: 13px;
	line-height: 1.5;
}

.jada-privacy-hero__updated svg {
	width: 17px;
	height: 17px;
	color: var(--jada-privacy-gold-deep);
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.jada-privacy-main {
	display: grid;
	gap: 28px;
	padding: 0 0 72px;
}

.jada-privacy-content {
	display: grid;
	gap: 4px;
	counter-reset: privacy-section;
}

.jada-privacy-section {
	display: grid;
	min-height: 108px;
	grid-template-columns: 150px minmax(0, 1fr);
	align-items: stretch;
	border: 1px solid var(--jada-privacy-line);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.72);
	counter-increment: privacy-section;
}

.jada-privacy-section__number {
	display: grid;
	place-items: center;
	margin-block: 15px;
	border-right: 1px solid rgba(184, 150, 90, 0.26);
	color: var(--jada-privacy-gold-deep);
	font-family: var(--jada-privacy-serif);
	font-size: clamp(46px, 4.3vw, 58px);
	font-weight: 400;
	font-variant-numeric: tabular-nums;
	line-height: 1;
}

.jada-privacy-section__number::before {
	content: counter(privacy-section, decimal-leading-zero);
}

.jada-privacy-section__content {
	display: grid;
	align-content: center;
	gap: 4px;
	min-width: 0;
	padding: 18px 38px;
}

.post_content .jada-privacy-page .jada-privacy-section__content > h2 {
	font-family: var(--jada-privacy-serif);
	font-size: clamp(20px, 1.8vw, 24px);
	font-weight: 400;
	line-height: 1.2;
}

.jada-privacy-section__body {
	display: grid;
	gap: 12px;
	font-size: 13px;
	line-height: 1.55;
}

.post_content .jada-privacy-page .jada-privacy-section__body :where(p, ul, ol) {
	margin: 0;
}

.post_content .jada-privacy-page .jada-privacy-section__body :where(ul, ol) {
	display: grid;
	gap: 5px;
	padding-left: 1.45em;
}

.post_content .jada-privacy-page .jada-privacy-section__body ul {
	list-style-type: disc;
}

.post_content .jada-privacy-page .jada-privacy-section__body ol {
	list-style-type: decimal;
}

.post_content .jada-privacy-page .jada-privacy-section__body h3 {
	margin: 5px 0 0;
	font-family: var(--jada-privacy-serif);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.35;
}

.jada-privacy-section__body a {
	color: var(--jada-privacy-gold-deep);
	text-decoration-line: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.jada-privacy-section__body strong {
	font-weight: 700;
}

.post_content .jada-privacy-page .jada-privacy-update-note {
	font-size: 14px;
	line-height: 1.6;
	text-align: center;
}

.jada-privacy-contact {
	display: grid;
	justify-items: center;
	gap: 8px;
	padding: 10px 28px 14px;
	border: 1px solid var(--jada-privacy-line);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.72);
	text-align: center;
}

.jada-privacy-contact__icon {
	width: 45px;
	height: 45px;
	margin-top: -2px;
	padding: 8px;
	border: 1px solid var(--jada-privacy-gold);
	border-radius: 50%;
	color: var(--jada-privacy-gold-deep);
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.jada-privacy-contact__copy {
	display: grid;
	gap: 3px;
}

.post_content .jada-privacy-page .jada-privacy-contact__copy h2 {
	font-family: var(--jada-privacy-serif);
	font-size: clamp(19px, 1.8vw, 23px);
	font-weight: 400;
	line-height: 1.3;
}

.post_content .jada-privacy-page .jada-privacy-contact__copy p {
	font-size: 13px;
	line-height: 1.5;
}

.jada-privacy-contact__button {
	display: inline-flex;
	min-width: 142px;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	padding: 11px 24px;
	border: 1px solid var(--jada-privacy-gold-deep);
	border-radius: 5px;
	color: var(--jada-privacy-white);
	background: var(--jada-privacy-gold-deep);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
	transition: background-color 180ms ease, color 180ms ease;
}

.jada-privacy-contact__button:hover {
	color: var(--jada-privacy-gold-deep);
	background: transparent;
}

.jada-privacy-page :where(a, button):focus-visible {
	outline: 2px solid var(--jada-privacy-navy);
	outline-offset: 3px;
}

@media (max-width: 1100px) {
	.jada-privacy-hero__inner,
	.jada-privacy-main {
		width: min(100% - 48px, 860px);
	}

	.jada-privacy-section {
		grid-template-columns: 132px minmax(0, 1fr);
	}

	.jada-privacy-section__content {
		padding-inline: 30px;
	}
}

@media (max-width: 900px) {
	.jada-privacy-hero {
		padding-top: 52px;
	}

	.jada-privacy-main {
		padding-bottom: 64px;
	}

	.jada-privacy-section {
		grid-template-columns: 112px minmax(0, 1fr);
	}

	.jada-privacy-section__content {
		padding: 20px 26px;
	}
}

@media (max-width: 560px) {
	.jada-privacy-hero__inner,
	.jada-privacy-main {
		width: min(100% - 28px, 520px);
	}

	.jada-privacy-hero {
		padding: 40px 0 24px;
	}

	.jada-privacy-hero__inner {
		gap: 14px;
	}

	.post_content .jada-privacy-page .jada-privacy-hero__title {
		font-size: clamp(40px, 12vw, 54px);
	}

	.post_content .jada-privacy-page .jada-privacy-hero__introduction {
		font-size: 14px;
	}

	.jada-privacy-hero__updated {
		align-items: flex-start;
		font-size: 12px;
	}

	.jada-privacy-main {
		gap: 22px;
		padding-bottom: 48px;
	}

	.jada-privacy-content {
		gap: 8px;
	}

	.jada-privacy-section {
		min-height: 0;
		grid-template-columns: 1fr;
	}

	.jada-privacy-section__number {
		place-items: start;
		margin: 0 20px;
		padding: 18px 0 12px;
		border-right: 0;
		border-bottom: 1px solid rgba(184, 150, 90, 0.26);
		font-size: 39px;
	}

	.jada-privacy-section__content {
		gap: 8px;
		padding: 18px 20px 22px;
	}

	.post_content .jada-privacy-page .jada-privacy-section__content > h2 {
		font-size: 21px;
	}

	.jada-privacy-section__body {
		font-size: 14px;
		line-height: 1.65;
	}

	.post_content .jada-privacy-page .jada-privacy-update-note {
		font-size: 13px;
	}

	.jada-privacy-contact {
		padding: 16px 20px 20px;
	}

	.jada-privacy-contact__button {
		width: min(100%, 240px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.jada-privacy-contact__button {
		transition: none;
	}
}

/* ========================================
   404
======================================== */

.jada-404-page {
	--jada-404-navy: var(--jada-navy, #0d1f3d);
	--jada-404-gold: var(--jada-gold, #b8965a);
	--jada-404-gold-deep: var(--jada-gold-deep, #a86d00);
	--jada-404-white: var(--jada-white, #ffffff);
	--jada-404-off-white: var(--jada-off-white, #f8f7f4);
	--jada-404-serif: var(--jada-serif, "Iowan Old Style", Baskerville, "Times New Roman", serif);
	--jada-404-sans: var(--jada-sans, "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif);

	position: relative;
	left: 50%;
	width: 100vw;
	width: 100dvw;
	margin-left: -50vw;
	margin-left: -50dvw;
	overflow: hidden;
	color: var(--jada-404-navy);
	background:
		radial-gradient(circle at 50% 40%, rgba(184, 150, 90, 0.055), transparent 29rem),
		linear-gradient(135deg, var(--jada-404-white) 0%, #fdfcf9 52%, var(--jada-404-white) 100%);
	font-family: var(--jada-404-sans);
}

.jada-404-page *,
.jada-404-page *::before,
.jada-404-page *::after {
	box-sizing: border-box;
}

.jada-404-page::before,
.jada-404-page::after {
	position: absolute;
	top: 34%;
	width: clamp(140px, 18vw, 280px);
	aspect-ratio: 1;
	border: 1px solid rgba(184, 150, 90, 0.54);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.jada-404-page::before {
	left: 0;
	transform: translate(-82%, -50%);
	box-shadow: 18px 0 0 -17px rgba(184, 150, 90, 0.44), 38px 0 0 -37px rgba(184, 150, 90, 0.36);
}

.jada-404-page::after {
	right: 0;
	transform: translate(82%, -50%);
	box-shadow: -18px 0 0 -17px rgba(184, 150, 90, 0.44), -38px 0 0 -37px rgba(184, 150, 90, 0.36);
}

.post_content .jada-404-page :where(h1, p) {
	margin: 0;
	padding: 0;
}

.post_content .jada-404-page h1 {
	border: 0;
	background: none;
	color: inherit;
	font-weight: inherit;
}

.post_content .jada-404-page h1::before,
.post_content .jada-404-page h1::after {
	display: none;
	content: none;
}

.jada-404-page a {
	color: inherit;
	text-decoration: none;
}

.jada-404-page__inner {
	position: relative;
	z-index: 1;
	display: grid;
	justify-items: center;
	width: min(100% - 64px, 980px);
	min-height: clamp(760px, calc(100vh - 100px), 1010px);
	margin-inline: auto;
	padding-block: clamp(72px, 8vw, 118px) clamp(66px, 7vw, 96px);
	text-align: center;
}

.jada-404-page__number {
	font-family: var(--jada-404-serif);
	font-size: clamp(150px, 18vw, 250px);
	font-weight: 400;
	font-variant-numeric: lining-nums tabular-nums;
	line-height: 0.72;
	letter-spacing: -0.075em;
}

.jada-404-page__ornament {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 200px;
	margin-top: clamp(42px, 5vw, 66px);
	color: var(--jada-404-gold);
}

.jada-404-page__ornament::before,
.jada-404-page__ornament::after {
	flex: 1;
	height: 1px;
	background: currentColor;
	content: "";
}

.jada-404-page__ornament span,
.jada-404-page__secondary-rule span {
	position: relative;
	display: block;
	width: 14px;
	height: 14px;
}

.jada-404-page__ornament span::before,
.jada-404-page__ornament span::after,
.jada-404-page__secondary-rule span::before,
.jada-404-page__secondary-rule span::after {
	position: absolute;
	top: 50%;
	left: 50%;
	background: currentColor;
	content: "";
	transform: translate(-50%, -50%);
}

.jada-404-page__ornament span::before,
.jada-404-page__secondary-rule span::before {
	width: 1px;
	height: 100%;
}

.jada-404-page__ornament span::after,
.jada-404-page__secondary-rule span::after {
	width: 100%;
	height: 1px;
}

.jada-404-page__message {
	display: grid;
	justify-items: center;
	gap: 28px;
	margin-top: 26px;
}

.post_content .jada-404-page .jada-404-page__title {
	font-family: var(--jada-404-serif);
	font-size: clamp(48px, 5.5vw, 72px);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: -0.025em;
}

.post_content .jada-404-page .jada-404-page__lead,
.post_content .jada-404-page .jada-404-page__invitation p {
	font-size: clamp(15px, 1.45vw, 18px);
	line-height: 1.9;
}

.jada-404-page__invitation {
	display: grid;
	justify-items: center;
	gap: 26px;
	margin-top: 34px;
}

.jada-404-page__invitation > span {
	width: 80px;
	height: 1px;
	background: var(--jada-404-gold);
}

.jada-404-page__actions {
	display: grid;
	width: min(100%, 690px);
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	margin-top: 50px;
}

.jada-404-page__action {
	display: inline-flex;
	min-height: 62px;
	align-items: center;
	justify-content: center;
	padding: 14px 20px;
	border: 1px solid currentColor;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.25;
	transition: color 180ms ease, background-color 180ms ease;
}

.jada-404-page .jada-404-page__action--primary {
	border-color: var(--jada-404-navy);
	color: var(--jada-404-white);
	background: var(--jada-404-navy);
}

.jada-404-page .jada-404-page__action--gold {
	color: var(--jada-404-gold-deep);
	background: rgba(255, 255, 255, 0.72);
}

.jada-404-page .jada-404-page__action--navy {
	color: var(--jada-404-navy);
	background: rgba(255, 255, 255, 0.72);
}

.jada-404-page .jada-404-page__action--primary:hover {
	color: var(--jada-404-navy);
	background: var(--jada-404-white);
}

.jada-404-page .jada-404-page__action--gold:hover {
	color: var(--jada-404-white);
	background: var(--jada-404-gold-deep);
}

.jada-404-page .jada-404-page__action--navy:hover {
	color: var(--jada-404-white);
	background: var(--jada-404-navy);
}

.jada-404-page__secondary {
	display: grid;
	width: min(100%, 900px);
	gap: 32px;
	margin-top: 88px;
}

.jada-404-page__secondary-rule {
	display: flex;
	align-items: center;
	gap: 14px;
	color: var(--jada-404-gold);
}

.jada-404-page__secondary-rule::before,
.jada-404-page__secondary-rule::after {
	flex: 1;
	height: 1px;
	background: currentColor;
	content: "";
}

.jada-404-page__links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	font-size: 13px;
	line-height: 1.4;
}

.jada-404-page__links a {
	position: relative;
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	padding-inline: 23px;
}

.jada-404-page__links a + a::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 1px;
	height: 22px;
	background: rgba(184, 150, 90, 0.72);
	content: "";
	transform: translateY(-50%);
}

.jada-404-page__links a:hover {
	color: var(--jada-404-gold-deep);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.3em;
}

.jada-404-page :where(a, button):focus-visible {
	outline: 2px solid var(--jada-404-gold-deep);
	outline-offset: 4px;
}

/* The shared footer CTA is intentionally omitted on the 404 recovery page. */
body.error404 .jada-connect {
	display: none;
}

@media (max-width: 1100px) {
	.jada-404-page__inner {
		width: min(100% - 48px, 900px);
		min-height: 0;
		padding-block: 82px 76px;
	}

	.jada-404-page__actions {
		gap: 20px;
	}

	.jada-404-page__secondary {
		margin-top: 76px;
	}
}

@media (max-width: 900px) {
	.jada-404-page__inner {
		padding-block: 72px 66px;
	}

	.jada-404-page__actions {
		width: min(100%, 640px);
		gap: 14px;
	}

	.jada-404-page__action {
		min-height: 58px;
		padding-inline: 14px;
		font-size: 14px;
	}

	.jada-404-page__secondary {
		gap: 24px;
		margin-top: 66px;
	}

	.jada-404-page__links {
		flex-wrap: wrap;
	}
}

@media (max-width: 560px) {
	.jada-404-page::before,
	.jada-404-page::after {
		top: 25%;
		opacity: 0.72;
	}

	.jada-404-page__inner {
		width: min(100% - 28px, 520px);
		padding-block: 60px 52px;
	}

	.jada-404-page__number {
		font-size: clamp(112px, 38vw, 160px);
		line-height: 0.78;
	}

	.jada-404-page__ornament {
		width: 150px;
		margin-top: 38px;
	}

	.jada-404-page__message {
		gap: 20px;
		margin-top: 22px;
	}

	.post_content .jada-404-page .jada-404-page__title {
		font-size: clamp(38px, 11vw, 50px);
	}

	.post_content .jada-404-page .jada-404-page__lead,
	.post_content .jada-404-page .jada-404-page__invitation p {
		font-size: 14px;
		line-height: 1.75;
	}

	.post_content .jada-404-page .jada-404-page__lead br {
		display: none;
	}

	.jada-404-page__invitation {
		gap: 22px;
		margin-top: 30px;
	}

	.jada-404-page__actions {
		width: min(100%, 320px);
		grid-template-columns: 1fr;
		gap: 12px;
		margin-top: 38px;
	}

	.jada-404-page__action {
		min-height: 52px;
	}

	.jada-404-page__secondary {
		gap: 20px;
		margin-top: 54px;
	}

	.jada-404-page__links {
		display: grid;
		width: min(100%, 320px);
		grid-template-columns: 1fr;
		justify-self: center;
	}

	.jada-404-page__links a {
		justify-content: center;
		border-bottom: 1px solid rgba(184, 150, 90, 0.24);
	}

	.jada-404-page__links a + a::before {
		display: none;
	}

	.jada-404-page__links a:last-child {
		border-bottom: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.jada-404-page__action {
		transition: none;
	}
}
