/* =========================================================
   THE ORTHODONTIST — V2 BLOCKS

   Component-specific styling for V2 blocks only.

   All selectors in this file must remain scoped beneath
   .ortho-v2 and should use the v2-* naming convention.
   ========================================================= */
/* =========================================================
   V2 HERO
   ========================================================= */

.ortho-v2 .v2-hero {
	padding: 0 0 clamp(1.25rem, 3vw, 1.5rem);
	background: transparent;
}

.ortho-v2 .v2-hero__card {
	position: relative;
	isolation: isolate;

	margin-top: clamp(1rem, 2vw, 2rem);

	width: 100%;
	aspect-ratio: 16 / 9;
	min-height: 0;

	overflow: hidden;

	border: 1px solid var(--v2-border-soft);
	border-radius: var(--v2-radius-lg);

	background: var(--v2-blue-soft);

	box-shadow: var(--v2-shadow-card);
}

/* =========================================================
   HERO IMAGE
   ========================================================= */

.ortho-v2 .v2-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.ortho-v2 .v2-hero__image {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;
	object-position: center 50%;
}

/*
 * Very light reinforcement of the blue area already built
 * into the source image. This is decorative only; text
 * contrast does not depend on this overlay.
 */

.ortho-v2 .v2-hero__media::after {
	content: "";

	position: absolute;
	inset: 0;

	background: linear-gradient(
		90deg,
		rgb(0 162 255 / 0.08) 0%,
		rgb(0 162 255 / 0.03) 30%,
		transparent 52%
	);

	pointer-events: none;
}

/* =========================================================
   HERO CONTENT POSITIONING
   ========================================================= */

.ortho-v2 .v2-hero__content {
	position: relative;
	z-index: 1;

	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;

	min-height: 100%;

	padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4.5rem)
		clamp(2.25rem, 4vw, 3.5rem);
}

.ortho-v2 .v2-hero__message {
	width: min(100%, 20rem);

	padding: var(--v2-space-5) var(--v2-space-5);

	border: 1px solid var(--v2-border-soft);
	border-radius: var(--v2-radius-md);

	background: var(--v2-white);

	box-shadow:
		0 18px 48px rgb(12 23 35 / 0.12),
		0 2px 8px rgb(12 23 35 / 0.04);
}

/* =========================================================
   HERO MISSION H1
   ========================================================= */

.ortho-v2 .v2-hero__heading {
	margin: 0;

	color: var(--v2-ink);

	font-family: "LemonMilk", var(--v2-font-body);
	font-weight: 400;

	line-height: 1;
}

.ortho-v2 .v2-hero__mission-prefix {
	display: block;

	color: var(--v2-ink-soft);

	font-size: clamp(0.8rem, 1.1vw, 1rem);
	line-height: 1.3;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ortho-v2 .v2-hero__mission-main {
	/* display: block;

	margin-top: var(--v2-space-2);

	color: var(--v2-blue-dark);

	font-family: "DynaPuff", var(--v2-font-body);
	font-size: clamp(2.25rem, 4vw, 3.75rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.025em; */
	display: block;

	margin-top: var(--v2-space-2);

	color: var(--v2-blue-dark);

	font-family: "LemonMilk", var(--v2-font-body);
	font-size: clamp(2rem, 3.4vw, 2.2rem);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: 0.015em;
}

/* =========================================================
   HERO CTA
   ========================================================= */

.ortho-v2 .v2-hero__button {
	margin-top: var(--v2-space-6);
}

.ortho-v2 .v2-hero .v2-button--primary {
	background: var(--v2-blue);
	border-color: var(--v2-blue);

	/*
	 * Dark text is intentional.
	 * White on #00a2ff does not provide sufficient contrast
	 * for normal-size button text.
	 */
	color: var(--v2-blue-deep);

	box-shadow: 0 8px 20px rgb(0 162 255 / 0.2);
}

.ortho-v2 .v2-hero .v2-button--primary:hover {
	background: var(--v2-blue-dark);
	border-color: var(--v2-blue-dark);
	color: var(--v2-white);

	box-shadow: 0 10px 26px rgb(8 104 153 / 0.22);
}

/* =========================================================
   V2 TRUST / DIFFERENTIATOR STRIP
   ========================================================= */

.ortho-v2 .v2-trust-strip {
	position: relative;
	z-index: 2;

	padding: 0 0 clamp(3.5rem, 7vw, 6rem);

	background: transparent;
}

/* =========================================================
   PANEL
   ========================================================= */

.ortho-v2 .v2-trust-strip__panel {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));

	overflow: hidden;

	border: 1px solid var(--v2-border-soft);
	border-radius: var(--v2-radius-md);

	background: var(--v2-surface);

	box-shadow: var(--v2-shadow-sm);
}

/* =========================================================
   ITEMS
   ========================================================= */

.ortho-v2 .v2-trust-strip__item {
	position: relative;

	display: flex;
	align-items: flex-start;
	gap: var(--v2-space-3);

	min-width: 0;

	padding: var(--v2-space-5) clamp(1rem, 2vw, 1.5rem);
}

.ortho-v2 .v2-trust-strip__item + .v2-trust-strip__item {
	border-left: 1px solid var(--v2-border-soft);
}

/* =========================================================
   ACCENT
   ========================================================= */

.ortho-v2 .v2-trust-strip__mark {
	flex: 0 0 auto;

	width: 0.5rem;
	height: 0.5rem;

	margin-top: 0.42rem;

	border-radius: 50%;

	background: var(--v2-orange);

	box-shadow: 0 0 0 4px var(--v2-orange-soft);
}

/* =========================================================
   TYPE
   ========================================================= */

.ortho-v2 .v2-trust-strip__content {
	min-width: 0;
}

.ortho-v2 .v2-trust-strip__title {
	margin: 0;

	color: var(--v2-ink);

	font-family: var(--v2-font-body);
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: -0.01em;
}

.ortho-v2 .v2-trust-strip__text {
	margin: var(--v2-space-2) 0 0;

	color: var(--v2-muted);

	font-size: 0.78rem;
	line-height: 1.55;
}

.ortho-v2 .v2-trust-strip__link {
	display: inline-flex;
	margin-top: var(--v2-space-2);

	color: var(--v2-blue-dark);

	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.4;

	text-decoration: none;

	opacity: 0.9;
}

.ortho-v2 .v2-trust-strip__link:hover {
	text-decoration: underline;
}

/* =========================================================
   V2 PRACTICE APPROACH
   ========================================================= */

.ortho-v2 .v2-practice-approach {
	background: transparent;
	padding-block: clamp(1.5rem, 5vw, 2rem) clamp(4rem, 7vw, 6rem);
}

/* =========================================================
   PANEL
   ========================================================= */

.ortho-v2 .v2-practice-approach__panel {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(3rem, 6vw, 6rem);

	padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4.5rem);

	border: 1px solid var(--v2-border-soft);
	border-radius: var(--v2-radius-lg);

	background: var(--v2-white);

	box-shadow: var(--v2-shadow-sm);
}

/* =========================================================
   INTRO
   ========================================================= */

.ortho-v2 .v2-practice-approach__intro {
	align-self: center;

	max-width: 37rem;
}

.ortho-v2 .v2-practice-approach__heading {
	max-width: 16ch;
	text-wrap: balance;
}

.ortho-v2 .v2-practice-approach__copy {
	display: grid;
	gap: var(--v2-space-4);

	margin-top: var(--v2-space-5);
}

.ortho-v2 .v2-practice-approach__copy .v2-body-lg {
	color: var(--v2-ink-soft);
}

.ortho-v2 .v2-practice-approach__copy .v2-body {
	max-width: 35rem;
}

/* =========================================================
   PRINCIPLES
   ========================================================= */

.ortho-v2 .v2-practice-approach__principles {
	display: grid;

	align-content: center;
}

/* =========================================================
   PRINCIPLE ITEM
   ========================================================= */

.ortho-v2 .v2-practice-approach__principle {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: var(--v2-space-4);

	padding: var(--v2-space-6) 0;
}

.ortho-v2 .v2-practice-approach__principle + .v2-practice-approach__principle {
	border-top: 1px solid var(--v2-border-soft);
}

/* =========================================================
   NUMBER
   ========================================================= */

.ortho-v2 .v2-practice-approach__number {
	display: grid;
	place-items: center;

	width: 2.4rem;
	height: 2.4rem;

	border: 1px solid rgb(0 162 255 / 0.18);
	border-radius: 50%;

	background: var(--v2-blue-soft);

	color: var(--v2-blue-dark);

	font-size: 0.7rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.04em;
}

/* =========================================================
   PRINCIPLE TYPE
   ========================================================= */

.ortho-v2 .v2-practice-approach__principle-content {
	min-width: 0;
}

.ortho-v2 .v2-practice-approach__principle-title {
	margin: 0;

	color: var(--v2-ink);

	font-family: var(--v2-font-body);
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.35;
	letter-spacing: -0.015em;
}

.ortho-v2 .v2-practice-approach__principle-text {
	max-width: 32rem;

	margin: var(--v2-space-2) 0 0;

	color: var(--v2-muted);

	font-size: 0.875rem;
	line-height: 1.65;
}

/* =========================================================
   V2 DOCTOR
   ========================================================= */

.ortho-v2 .v2-doctor {
	background: transparent;

	padding-block: clamp(2rem, 5vw, 4rem) clamp(4rem, 8vw, 5rem);
}

/* =========================================================
   LAYOUT
   ========================================================= */

.ortho-v2 .v2-doctor__layout {
	display: grid;
	grid-template-columns:
		minmax(0, 0.9fr)
		minmax(0, 1.1fr);

	align-items: center;

	gap: clamp(3rem, 7vw, 7rem);
}

/* =========================================================
   MEDIA
   ========================================================= */

.ortho-v2 .v2-doctor__media {
	position: relative;

	min-width: 0;

	overflow: hidden;

	aspect-ratio: 5 / 6;

	border-radius: var(--v2-radius-lg);

	background: var(--v2-blue-soft);

	box-shadow: var(--v2-shadow-sm);
}

.ortho-v2 .v2-doctor__image-wrap {
	width: 100%;
	height: 100%;
}

.ortho-v2 .v2-doctor__image {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;

	object-position: center center;
}

/* =========================================================
   CONTENT
   ========================================================= */

.ortho-v2 .v2-doctor__content {
	max-width: 39rem;
}

.ortho-v2 .v2-doctor__heading {
	max-width: 14ch;

	text-wrap: balance;
}

.ortho-v2 .v2-doctor__copy {
	display: grid;
	gap: var(--v2-space-4);

	margin-top: var(--v2-space-5);
}

.ortho-v2 .v2-doctor__copy .v2-body-lg {
	color: var(--v2-ink-soft);
}

/* =========================================================
   CREDENTIALS
   ========================================================= */

.ortho-v2 .v2-doctor__credentials {
	display: flex;
	flex-wrap: wrap;

	gap: var(--v2-space-3) var(--v2-space-5);

	margin-top: var(--v2-space-6);
}

.ortho-v2 .v2-doctor__credential {
	display: inline-flex;
	align-items: center;

	gap: var(--v2-space-2);

	color: var(--v2-ink);

	font-size: 0.8rem;
	font-weight: 700;
	line-height: 1.4;
}

.ortho-v2 .v2-doctor__credential-mark {
	flex: 0 0 auto;

	width: 0.45rem;
	height: 0.45rem;

	border-radius: 50%;

	background: var(--v2-orange);
}

/* =========================================================
   LINK
   ========================================================= */

.ortho-v2 .v2-doctor__link {
	display: inline-flex;
	align-items: center;

	margin-top: var(--v2-space-6);

	font-size: var(--v2-text-sm);
}

/* =========================================================
   V2 TREATMENT / SMILE SIMULATION
   ========================================================= */

.ortho-v2 .v2-treatment {
	background: transparent;

	padding-block: clamp(2rem, 5vw, 4rem) clamp(4rem, 8vw, 6rem);
}

/* =========================================================
   INTRO
   ========================================================= */

.ortho-v2 .v2-treatment__intro {
	max-width: 46rem;

	margin-inline: auto;

	text-align: center;
}

.ortho-v2 .v2-treatment__heading {
	max-width: 18ch;

	margin-inline: auto;

	text-wrap: balance;
}

.ortho-v2 .v2-treatment__intro-text {
	max-width: 43rem;

	margin: var(--v2-space-5) auto 0;

	color: var(--v2-ink-soft);
}

/* =========================================================
   VISUAL GRID
   ========================================================= */

.ortho-v2 .v2-treatment__visuals {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));

	gap: clamp(1.25rem, 3vw, 2rem);

	margin-top: clamp(2.5rem, 5vw, 4rem);
}

/* =========================================================
   VISUAL CARD
   ========================================================= */

.ortho-v2 .v2-treatment__visual-card {
	min-width: 0;

	overflow: hidden;

	border: 1px solid var(--v2-border-soft);
	border-radius: var(--v2-radius-lg);

	background: var(--v2-white);

	box-shadow: var(--v2-shadow-sm);
}

/* =========================================================
   MEDIA
   ========================================================= */

.ortho-v2 .v2-treatment__media {
	display: flex;
	align-items: center;
	justify-content: center;

	min-height: clamp(12rem, 22vw, 15rem);

	padding: clamp(0.5rem, 3vw, 1rem);

	background: #151b34;
}

.ortho-v2 .v2-treatment__image-wrap {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	height: 100%;
}

.ortho-v2 .v2-treatment__image {
	display: block;

	width: 100%;
	height: auto;

	max-height: 13rem;

	object-fit: contain;
}

/* =========================================================
   CARD CONTENT
   ========================================================= */

.ortho-v2 .v2-treatment__visual-content {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);

	gap: var(--v2-space-4);

	padding: var(--v2-space-5) var(--v2-space-6) var(--v2-space-6);
}

.ortho-v2 .v2-treatment__number {
	display: grid;
	place-items: center;

	width: 2.4rem;
	height: 2.4rem;

	border: 1px solid rgb(0 162 255 / 0.18);
	border-radius: 50%;

	background: var(--v2-blue-soft);

	color: var(--v2-blue-dark);

	font-size: 0.7rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.04em;
}

.ortho-v2 .v2-treatment__visual-title {
	margin: 0;

	color: var(--v2-ink);

	font-family: var(--v2-font-body);
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.35;
	letter-spacing: -0.015em;
}

.ortho-v2 .v2-treatment__visual-text {
	max-width: 27rem;

	margin: var(--v2-space-2) 0 0;

	color: var(--v2-muted);

	font-size: 0.875rem;
	line-height: 1.65;
}

/* =========================================================
   FOOTER
   ========================================================= */

.ortho-v2 .v2-treatment__footer {
	display: flex;
	justify-content: center;
	margin-top: var(--v2-space-6);
}

.ortho-v2 .v2-treatment__button {
	min-width: 9.5rem;
}

/* =========================================================
   V2 DOCTOR STORY HERO
   ========================================================= */

.ortho-v2 .v2-doctor-story-hero {
	position: relative;
	isolation: isolate;

	overflow: hidden;

	min-height: clamp(31rem, 42vw, 36rem);

	padding-block: clamp(3.25rem, 6vw, 4rem);

	color: var(--v2-white);

	background-image:
		linear-gradient(
			90deg,
			rgb(5 27 54 / 0.78) 0%,
			rgb(5 27 54 / 0.58) 48%,
			rgb(5 27 54 / 0.3) 100%
		),
		url("/assets/images/landscape.webp");

	background-position: center 88%;
	background-repeat: no-repeat;
	background-size: cover;
}

.ortho-v2 .v2-doctor-story-hero__inner {
	display: flex;
	flex-direction: column;

	min-height: inherit;
}

.ortho-v2 .v2-doctor-story-hero__intro {
	max-width: 46rem;
}

.ortho-v2 .v2-doctor-story-hero__eyebrow {
	color: rgb(255 255 255 / 0.82);
}

.ortho-v2 .v2-doctor-story-hero__heading {
	max-width: 16ch;

	color: var(--v2-white);
}

.ortho-v2 .v2-doctor-story-hero__text {
	max-width: 60ch;

	margin-top: var(--v2-space-5);

	color: rgb(255 255 255 / 0.9);
}

.ortho-v2 .v2-doctor-story-hero__credentials {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));

	overflow: hidden;

	margin-top: auto;

	padding-top: clamp(2.5rem, 5vw, 4rem);
}

.ortho-v2 .v2-doctor-story-credential {
	padding: var(--v2-space-5);

	border-top: 1px solid rgb(255 255 255 / 0.22);
	border-bottom: 1px solid rgb(255 255 255 / 0.22);

	background: rgb(5 27 54 / 0.5);

	backdrop-filter: blur(8px);
}

.ortho-v2 .v2-doctor-story-credential + .v2-doctor-story-credential {
	border-left: 1px solid rgb(255 255 255 / 0.18);
}

.ortho-v2 .v2-doctor-story-credential:first-child {
	border-radius: var(--v2-radius-md) 0 0 var(--v2-radius-md);
}

.ortho-v2 .v2-doctor-story-credential:last-child {
	border-radius: 0 var(--v2-radius-md) var(--v2-radius-md) 0;
}

.ortho-v2 .v2-doctor-story-credential__title {
	margin: 0;

	color: var(--v2-white);

	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.35;
}

.ortho-v2 .v2-doctor-story-credential__text {
	margin: var(--v2-space-2) 0 0;

	color: rgb(255 255 255 / 0.78);

	font-size: 0.78rem;
	line-height: 1.55;
}

.ortho-v2 .v2-doctor-story-credential__link {
	display: inline-flex;

	margin-top: var(--v2-space-2);

	color: var(--v2-white);

	font-size: 0.75rem;
	font-weight: 700;
}

.ortho-v2 .v2-doctor-timeline-item {
	--timeline-color: var(--v2-blue);

	position: relative;
}

.ortho-v2 .v2-doctor-timeline-item--personal {
	--timeline-color: var(--v2-orange);
}

.ortho-v2 .v2-doctor-timeline-item__inner {
	position: relative;

	display: grid;
	grid-template-columns:
		minmax(0, 1fr)
		4rem
		minmax(0, 1fr);

	padding-block: clamp(1.5rem, 4vw, 2rem);
}

.ortho-v2 .v2-doctor-timeline-item__inner::before {
	content: "";

	position: absolute;
	z-index: 0;

	top: 0;
	bottom: 0;
	left: 50%;

	width: 2px;

	background: linear-gradient(
		to bottom,
		rgb(0 162 255 / 0.08),
		rgb(0 162 255 / 0.22),
		rgb(0 162 255 / 0.08)
	);

	transform: translateX(-50%);
}

.ortho-v2
	.v2-doctor-timeline-item--first
	.v2-doctor-timeline-item__inner::before {
	top: 2rem;
}

.ortho-v2
	.v2-doctor-timeline-item--last
	.v2-doctor-timeline-item__inner::before {
	bottom: calc(100% - 2rem);
}

/* =========================================================
   V2 DOCTOR TIMELINE — NODE
   ========================================================= */

.ortho-v2 .v2-doctor-timeline-item__marker {
	position: relative;
	z-index: 2;

	grid-column: 2;
	grid-row: 1;

	display: flex;
	justify-content: center;

	padding-top: 0.45rem;
}

.ortho-v2 .v2-doctor-timeline-item__dot {
	display: block;

	width: 1rem;
	height: 1rem;

	border: 3px solid var(--v2-surface-soft);
	border-radius: 50%;

	background: var(--timeline-color);

	box-shadow: 0 0 0 1px var(--timeline-color);
}

.ortho-v2 .v2-doctor-timeline-card__meta {
	display: flex;
	align-items: baseline;
	gap: var(--v2-space-3);

	margin-bottom: var(--v2-space-2);
}

.ortho-v2 .v2-doctor-timeline-card__date {
	flex: 0 0 auto;

	color: var(--timeline-color);

	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ortho-v2 .v2-doctor-timeline-card__date span {
	display: inline;
}

.ortho-v2 .v2-doctor-timeline-card__eyebrow {
	margin: 0;

	color: var(--v2-text-muted);

	font-size: 0.7rem;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.ortho-v2 .v2-doctor-timeline-card__date--long {
	display: inline-flex;
	gap: 0.25rem;
}

.ortho-v2 .v2-doctor-timeline-card__date--long span {
	display: inline;
}

/* =========================================================
   V2 DOCTOR TIMELINE — DESKTOP POSITIONING
   ========================================================= */
.ortho-v2 .v2-doctor-timeline-item__content {
	position: relative;
	z-index: 1;
}

.ortho-v2 .v2-doctor-timeline-item--left .v2-doctor-timeline-item__content {
	grid-column: 1;
	grid-row: 1;

	width: min(100%, 30rem);

	justify-self: end;

	padding-right: clamp(1.5rem, 4vw, 3rem);
}

.ortho-v2 .v2-doctor-timeline-item--right .v2-doctor-timeline-item__content {
	grid-column: 3;
	grid-row: 1;

	width: min(100%, 30rem);

	justify-self: start;

	padding-left: clamp(1.5rem, 4vw, 3rem);
}

/* .ortho-v2 .v2-doctor-timeline-item--left .v2-doctor-timeline-item__marker,
.ortho-v2 .v2-doctor-timeline-item--right .v2-doctor-timeline-item__marker {
	grid-column: 2;
	grid-row: 1;
} */

.ortho-v2 .v2-doctor-timeline-item--feature .v2-doctor-timeline-card {
	position: relative;

	overflow: hidden;

	width: min(52rem, 100%);

	padding: clamp(1.5rem, 4vw, 2.5rem);

	border: var(--v2-border);
	border-radius: var(--v2-radius-lg);

	background: var(--v2-white);

	box-shadow: var(--v2-shadow-sm);
}

.ortho-v2
	.v2-doctor-timeline-item--feature
	.v2-doctor-timeline-card__image-wrap {
	margin-top: var(--v2-space-6);
}

.ortho-v2 .v2-doctor-timeline-item--feature .v2-doctor-timeline-card__image {
	width: 100%;
	max-height: none;

	aspect-ratio: 16 / 9;

	object-fit: cover;
}

.ortho-v2 .v2-doctor-timeline-card__image-wrap {
	overflow: hidden;

	margin-top: var(--v2-space-5);

	border-radius: var(--v2-radius-md);

	background: var(--v2-surface);
}

.ortho-v2 .v2-doctor-timeline-card__image {
	display: block;

	width: 100%;
	height: auto;

	margin: 0;

	object-fit: cover;
	object-position: var(--timeline-image-position, center center);

	border-radius: 0;
}

.ortho-v2 .v2-doctor-timeline-item--feature .v2-doctor-timeline-item__inner {
	grid-template-columns: 1fr;

	padding-top: clamp(4.5rem, 7vw, 6rem);
	padding-bottom: clamp(3rem, 6vw, 5rem);
}

.ortho-v2 .v2-doctor-timeline-item--feature .v2-doctor-timeline-item__marker {
	position: absolute;

	top: 0;
	left: 50%;

	grid-column: auto;
	grid-row: auto;

	width: auto;
	height: auto;

	margin: 0;
	padding-top: 0;

	transform: translateX(-50%);
}

.ortho-v2 .v2-doctor-timeline-item--feature .v2-doctor-timeline-item__content {
	grid-column: 1;
	grid-row: 1;

	width: min(52rem, 100%);

	margin-inline: auto;

	padding-inline: var(--v2-space-6);

	justify-self: center;
}

#timeline-special article::after {
	content: "";
	display: inline-block;
	width: 50px;
	height: 50px;
	margin-left: 8px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;

	/* Inline SVG encoded as data URI */
	background-image: url("/assets/images/timeline_ow.svg");
}

.v2-doctor-story-ending {
	position: relative;

	padding-block: clamp(0.5rem, 1vw, 1rem) clamp(3rem, 5vw, 4.5rem);

	background: var(--color-background);
}

.v2-doctor-story-ending__inner {
	position: relative;

	display: flex;
	flex-direction: column;
	align-items: center;

	text-align: center;
}

/*
 * Final timeline marker.
 * The timeline from the preceding section visually
 * terminates here rather than disappearing into the footer.
 */
.v2-doctor-story-ending__marker {
	position: relative;
	z-index: 2;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 28px;
	height: 28px;

	margin-bottom: clamp(1.25rem, 2vw, 1.75rem);

	border: 2px solid var(--color-brand);
	border-radius: 50%;

	background: var(--color-background);
}

.v2-doctor-story-ending__marker::before {
	content: "";

	position: absolute;
	top: 50%;
	left: 50%;

	width: 8px;
	height: 8px;

	border-radius: 50%;

	background: var(--color-brand);

	transform: translate(-50%, -50%);
}

.v2-doctor-story-ending__content {
	width: min(560px, 100%);
	margin-inline: auto;
}

.v2-doctor-story-ending__eyebrow {
	margin: 0 0 0.65rem;

	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;

	color: var(--color-brand);
}

.v2-doctor-story-ending__heading {
	max-width: 14ch;
	margin: 0 auto;

	font-size: clamp(1.65rem, 3vw, 2.5rem);
	line-height: 1.05;
	text-wrap: balance;
}

.v2-doctor-story-ending__text {
	max-width: 52ch;

	margin: 1rem auto 0;

	font-size: clamp(0.95rem, 1.1vw, 1.05rem);
	line-height: 1.65;
}

.v2-doctor-story-ending__mission {
	margin: 1.5rem 0 0;

	font-size: clamp(0.75rem, 1vw, 0.9rem);
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;

	color: var(--color-brand-accent);
}

.v2-doctor-story-ending .v2-button {
	margin-top: 1rem;
}

.v2-doctor-story-ending__inner::before {
	content: "";

	position: absolute;
	top: 0;
	left: 50%;

	width: 2px;
	height: 1.5rem;

	background: var(--v2-doctor-timeline-spine, rgb(27 164 219 / 0.14));

	transform: translateX(-50%);
}

/* =========================================================
   Tablet
   ========================================================= */

@media (min-width: 701px) and (max-width: 999px) {
	.ortho-v2 .v2-hero__message {
		width: min(100%, 16rem);

		padding: var(--v2-space-5) var(--v2-space-5);
	}

	.ortho-v2 .v2-hero__mission-prefix {
		font-size: 0.72rem;
	}

	.ortho-v2 .v2-hero__mission-main {
		font-size: clamp(1.2rem, 4vw, 1.6rem);
	}

	.ortho-v2 .v2-hero__button {
		margin-top: var(--v2-space-5);

		font-size: 0.8rem;
	}

	.ortho-v2 .v2-trust-strip__panel {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ortho-v2 .v2-trust-strip__item + .v2-trust-strip__item {
		border-left: 0;
	}

	.ortho-v2 .v2-trust-strip__item:nth-child(even) {
		border-left: 1px solid var(--v2-border-soft);
	}

	.ortho-v2 .v2-trust-strip__item:nth-child(n + 3) {
		border-top: 1px solid var(--v2-border-soft);
	}

	.ortho-v2 .v2-practice-approach__panel {
		grid-template-columns: 1fr;

		gap: var(--v2-space-7);

		padding: var(--v2-space-8) var(--v2-space-7);
	}

	.ortho-v2 .v2-practice-approach__intro {
		max-width: 42rem;
	}

	.ortho-v2 .v2-practice-approach__heading {
		max-width: 16ch;
	}

	.ortho-v2 .v2-practice-approach__principles {
		grid-template-columns: repeat(3, minmax(0, 1fr));

		border-top: 1px solid var(--v2-border-soft);
	}

	.ortho-v2 .v2-practice-approach__principle {
		display: block;

		padding: var(--v2-space-6) var(--v2-space-5);
	}

	.ortho-v2 .v2-practice-approach__principle:first-child {
		padding-left: 0;
	}

	.ortho-v2 .v2-practice-approach__principle:last-child {
		padding-right: 0;
	}

	.ortho-v2
		.v2-practice-approach__principle
		+ .v2-practice-approach__principle {
		border-top: 0;
		border-left: 1px solid var(--v2-border-soft);
	}

	.ortho-v2 .v2-practice-approach__number {
		margin-bottom: var(--v2-space-4);
	}

	.ortho-v2 .v2-doctor__layout {
		grid-template-columns:
			minmax(0, 0.85fr)
			minmax(0, 1.15fr);

		gap: clamp(2.5rem, 5vw, 4rem);
	}

	.ortho-v2 .v2-doctor__heading {
		max-width: 16ch;
	}
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 480px) {
	.ortho-v2 .v2-doctor__media {
		width: 100%;
	}

	.ortho-v2 .v2-treatment__media {
		padding: 0.9rem;
	}

	.ortho-v2 .v2-doctor-story-hero__credentials {
		grid-template-columns: 1fr;
	}

	.ortho-v2 .v2-doctor-timeline-item__inner,
	.ortho-v2 .v2-doctor-timeline-item--feature .v2-doctor-timeline-item__inner {
		grid-template-columns: 3.5rem minmax(0, 1fr);
	}

	.ortho-v2 .v2-doctor-timeline-item__content,
	.ortho-v2
		.v2-doctor-timeline-item--feature
		.v2-doctor-timeline-item__content {
		padding-left: 0.75rem;
	}
}

@media (max-width: 760px) {
	.ortho-v2 .v2-doctor__layout {
		grid-template-columns: 1fr;

		gap: var(--v2-space-7);
	}

	.ortho-v2 .v2-doctor__media {
		aspect-ratio: 4 / 4.5;

		border-radius: var(--v2-radius-md);
		width: min(100%, 480px);
		margin-inline: auto;
	}

	.ortho-v2 .v2-doctor__content {
		max-width: none;
		padding: 0 2rem;
	}

	.ortho-v2 .v2-treatment {
		padding-block: var(--v2-space-8);
	}

	.ortho-v2 .v2-treatment__intro {
		text-align: left;

		padding-inline: var(--v2-space-5);
	}

	.ortho-v2 .v2-treatment__heading {
		max-width: none;

		margin-inline: 0;
	}

	.ortho-v2 .v2-treatment__intro-text {
		margin-left: 0;
		margin-right: 0;
	}

	.ortho-v2 .v2-treatment__visuals {
		grid-template-columns: 1fr;

		gap: var(--v2-space-5);

		margin-top: var(--v2-space-7);
	}

	.ortho-v2 .v2-treatment__visual-card {
		border-radius: var(--v2-radius-md);
	}

	.ortho-v2 .v2-treatment__media {
		min-height: 0;
		padding: var(--v2-space-4);
	}

	.ortho-v2 .v2-treatment__image {
		width: 100%;
		max-height: none;
		height: auto;
		object-fit: contain;
	}

	.ortho-v2 .v2-treatment__visual-content {
		padding: var(--v2-space-5);
	}

	.ortho-v2 .v2-treatment__footer {
		padding-inline: var(--v2-space-5);
	}

	.ortho-v2 .v2-doctor-story-hero {
		min-height: auto;

		padding-block: var(--v2-space-8);

		background-position: center;
	}

	.ortho-v2 .v2-doctor-story-hero__heading {
		max-width: 11ch;
	}

	.ortho-v2 .v2-doctor-story-hero__credentials {
		grid-template-columns: repeat(2, minmax(0, 1fr));

		margin-top: var(--v2-space-8);
		padding-top: 0;

		border-radius: var(--v2-radius-md);
	}

	.ortho-v2 .v2-doctor-story-credential {
		border: 1px solid rgb(255 255 255 / 0.16);
		border-radius: 0;
	}

	.ortho-v2 .v2-doctor-story-credential:first-child,
	.ortho-v2 .v2-doctor-story-credential:last-child {
		border-radius: 0;
	}

	.v2-doctor-timeline-item--feature .v2-doctor-timeline-card {
		padding: 1.5rem;
		border-radius: 24px;
	}

	.v2-doctor-timeline-item--feature .v2-doctor-timeline-card__title {
		font-size: clamp(1.5rem, 7vw, 1.85rem);
	}

	.v2-doctor-timeline-item--feature .v2-doctor-timeline-card__copy {
		font-size: 1rem;
		line-height: 1.6;
	}

	.v2-doctor-story-ending {
		padding-block: 0 3rem;
	}

	.v2-doctor-story-ending__content {
		width: min(100%, 30rem);
		padding-inline: 1.25rem;
	}

	.v2-doctor-story-ending__marker {
		margin-bottom: 1.25rem;
	}

	.v2-doctor-story-ending__heading {
		max-width: 13ch;
	}

	.v2-doctor-story-ending__text {
		max-width: 32ch;
	}

	.v2-doctor-story-ending__mission {
		margin-top: 1.25rem;
	}
}

@media (max-width: 700px) {
	.ortho-v2 .v2-hero {
		padding-top: var(--v2-space-4);
		padding-bottom: var(--v2-space-7);
	}

	.ortho-v2 .v2-hero__card {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;

		width: 100%;

		/*
		 * Critical:
		 * remove desktop image ratio so image + content
		 * can determine the total hero height.
		 */
		aspect-ratio: auto;
		min-height: 0;

		overflow: hidden;

		border-radius: var(--v2-radius-md);

		background: var(--v2-white);
	}

	.ortho-v2 .v2-hero__media {
		position: relative;
		inset: auto;

		grid-column: 1;
		grid-row: 1;

		width: 100%;
		aspect-ratio: 16 / 10;

		overflow: hidden;
	}

	.ortho-v2 .v2-hero__image {
		width: 100%;
		height: 100%;

		object-fit: cover;
		object-position: center 46%;
	}

	.ortho-v2 .v2-hero__media::after {
		display: none;
	}

	.ortho-v2 .v2-hero__content {
		position: relative;

		grid-column: 1;
		grid-row: 2;

		display: block;

		width: 100%;
		min-height: 0;

		padding: 0;

		background: var(--v2-white);
	}

	.ortho-v2 .v2-hero__message {
		width: 100%;

		padding: var(--v2-space-6) clamp(1.25rem, 6vw, 2rem) var(--v2-space-7);

		border: 0;
		border-radius: 0;

		background: var(--v2-white);

		box-shadow: none;
		backdrop-filter: none;
	}

	.ortho-v2 .v2-hero__mission-prefix {
		font-size: 0.78rem;
	}

	.ortho-v2 .v2-hero__mission-main {
		max-width: none;

		font-size: clamp(2rem, 9vw, 2.8rem);
		line-height: 1.05;
	}

	.ortho-v2 .v2-hero__button {
		width: 100%;
		margin-top: var(--v2-space-5);
	}

	.ortho-v2 .v2-trust-strip {
		padding-bottom: var(--v2-space-8);
	}

	.ortho-v2 .v2-trust-strip__panel {
		grid-template-columns: 1fr;
	}

	.ortho-v2 .v2-trust-strip__item {
		padding: var(--v2-space-4) var(--v2-space-5);
	}

	.ortho-v2 .v2-trust-strip__item + .v2-trust-strip__item {
		border-top: 1px solid var(--v2-border-soft);
		border-left: 0;
	}

	.ortho-v2 .v2-trust-strip__title {
		font-size: 0.9rem;
	}

	.ortho-v2 .v2-trust-strip__text {
		font-size: 0.8rem;
	}

	.ortho-v2 .v2-practice-approach {
		padding-block: var(--v2-space-8) var(--v2-space-8);
	}

	.ortho-v2 .v2-practice-approach__panel {
		grid-template-columns: 1fr;

		gap: var(--v2-space-7);

		padding: var(--v2-space-7) var(--v2-space-5);

		border-radius: var(--v2-radius-md);
	}

	.ortho-v2 .v2-practice-approach__heading {
		max-width: none;
	}

	.ortho-v2 .v2-practice-approach__copy {
		margin-top: var(--v2-space-5);
	}

	.ortho-v2 .v2-practice-approach__principle {
		padding: var(--v2-space-5) 0;
	}

	.ortho-v2 .v2-practice-approach__principle:first-child {
		padding-top: 0;
	}

	.ortho-v2 .v2-doctor {
		padding-block: var(--v2-space-8) var(--v2-space-7);
	}

	.ortho-v2 .v2-doctor__heading {
		max-width: none;
	}

	.ortho-v2 .v2-doctor__credentials {
		display: grid;

		gap: var(--v2-space-3);
	}
}

@media (max-width: 959px) {
	/* Move the spine to the left */

	/* Every variant becomes the same 2-column layout */

	.ortho-v2 .v2-doctor-timeline-item__inner,
	.ortho-v2 .v2-doctor-timeline-item--feature .v2-doctor-timeline-item__inner {
		display: grid;
		grid-template-columns: 2rem minmax(0, 1fr);

		padding-block: 2rem;
	}

	.ortho-v2 .v2-doctor-timeline-item__inner::before {
		left: 0.43rem;
		transform: none;
	}

	.ortho-v2 .v2-doctor-timeline-item__marker,
	.ortho-v2 .v2-doctor-timeline-item--left .v2-doctor-timeline-item__marker,
	.ortho-v2 .v2-doctor-timeline-item--right .v2-doctor-timeline-item__marker,
	.ortho-v2 .v2-doctor-timeline-item--feature .v2-doctor-timeline-item__marker {
		position: relative;

		top: auto;
		left: auto;

		grid-column: 1;
		grid-row: 1;

		width: auto;
		height: auto;

		margin: 0;
		padding-top: 0.3rem;

		justify-content: flex-start;

		transform: none;
	}

	.ortho-v2 .v2-doctor-timeline-item__content,
	.ortho-v2 .v2-doctor-timeline-item--left .v2-doctor-timeline-item__content,
	.ortho-v2 .v2-doctor-timeline-item--right .v2-doctor-timeline-item__content,
	.ortho-v2
		.v2-doctor-timeline-item--feature
		.v2-doctor-timeline-item__content {
		grid-column: 2;
		grid-row: 1;

		width: 100%;
		max-width: none;

		margin: 0;
		padding: 0 0 0 0.75rem;

		justify-self: stretch;

		text-align: left;
	}

	.ortho-v2 .v2-doctor-timeline-item__dot {
		width: 0.85rem;
		height: 0.85rem;
	}
}

/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1200px) {
	.ortho-v2 .v2-hero__card {
		aspect-ratio: auto;
		height: clamp(38rem, 52vw, 46rem);
	}
}

@media (min-width: 1400px) {
	.ortho-v2 .v2-hero__content {
		padding-left: clamp(1.75rem, 4vw, 2.5rem);
		padding-bottom: clamp(1.5rem, 4vw, 2rem);
	}

	.ortho-v2 .v2-hero__message {
		width: min(100%, 22rem);
	}
}
