:root {
	--cdc-navy: #102a43;
	--cdc-blue: #1d72b8;
	--cdc-teal: #2cb1a6;
	--cdc-cream: #f6f3ee;
	--cdc-soft-blue: #eaf4fb;
	--cdc-text: #243b53;
	--cdc-muted: #627d98;
	--cdc-white: #ffffff;
	--cdc-warning: #f9d976;
	--cdc-success: #287a67;
	--cdc-line: rgba(16, 42, 67, .12);
	--cdc-shadow: 0 20px 50px rgba(16, 42, 67, .12);
	--cdc-radius: 22px;
	--cdc-radius-sm: 14px;
	--cdc-container: min(1200px, calc(100% - 48px));
	--cdc-content-width: 1200px;
	--cdc-section-space: clamp(64px, 9vw, 112px);
	--cdc-card-radius: 22px;
	--cdc-button-radius: 999px;
	--cdc-transition: 180ms ease;
	--cdc-heading-xl: clamp(2.45rem, 6vw, 4.9rem);
	--cdc-heading-lg: clamp(2rem, 4vw, 3.15rem);
	--cdc-heading-md: clamp(1.25rem, 2.2vw, 1.65rem);
}

/* WordPress-managed navigation retains the theme's desktop and mobile behavior. */
.cdc-wp-menu,
.cdc-wp-menu .sub-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.cdc-wp-menu--desktop {
	display: contents;
}

.cdc-wp-menu--desktop > li:not(.menu-item-has-children) {
	display: contents;
}

.cdc-wp-menu--desktop > .menu-item-has-children {
	position: relative;
}

.cdc-wp-menu--mobile {
	width: 100%;
}

.cdc-wp-menu--mobile > li {
	position: relative;
}

.cdc-mobile-wp-submenu-toggle {
	position: absolute;
	top: 4px;
	right: 8px;
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
}

/* WordPress editor content presented through the existing design system. */
.entry-content {
	font-size: 1rem;
	line-height: 1.75;
}

.entry-content > * {
	max-width: 860px;
	margin-left: auto;
	margin-right: auto;
}

.entry-content > .alignwide {
	max-width: 1120px;
}

.entry-content > .cdc-team-grid {
	max-width: 1120px;
}

.entry-content > .alignfull {
	max-width: none;
}

.entry-content .wp-block-heading,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-top: 1.8em;
	margin-bottom: .65em;
	color: var(--cdc-navy);
}

.entry-content .wp-block-paragraph,
.entry-content p,
.entry-content .wp-block-list,
.entry-content ul,
.entry-content ol {
	margin-top: 0;
	margin-bottom: 1.2em;
}

.entry-content .wp-block-button {
	margin-top: 1.25rem;
	margin-bottom: 1.25rem;
}

.entry-content .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 22px;
	border-radius: 999px;
	background: var(--cdc-teal);
	color: #fff;
	font-weight: 800;
	text-decoration: none;
}

.entry-content .wp-block-image {
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}

.entry-content .wp-block-image img {
	height: auto;
	border-radius: var(--cdc-card-radius);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--cdc-white);
	color: var(--cdc-text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

body.is-menu-open {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
}

p {
	margin: 0 0 1rem;
}

h1,
h2,
h3 {
	margin: 0 0 1rem;
	color: var(--cdc-navy);
	font-family: Georgia, "Times New Roman", serif;
	line-height: 1.12;
	letter-spacing: 0;
}

h1 {
	font-size: var(--cdc-heading-xl);
}

h2 {
	font-size: var(--cdc-heading-lg);
}

h3 {
	font-size: var(--cdc-heading-md);
}

ul {
	padding-left: 1.2rem;
}

.cdc-container {
	width: var(--cdc-container);
	margin: 0 auto;
}

.cdc-narrow {
	max-width: 790px;
	text-align: center;
}

.cdc-skip-link {
	position: absolute;
	left: 16px;
	top: -60px;
	z-index: 1000;
	padding: 12px 16px;
	border-radius: 10px;
	background: var(--cdc-navy);
	color: var(--cdc-white);
	transition: top .2s ease;
}

.cdc-skip-link:focus {
	top: 16px;
}

.cdc-site-header {
	position: sticky;
	top: 0;
	z-index: 500;
	background: var(--cdc-white);
	box-shadow: 0 12px 30px rgba(16, 42, 67, .08);
}

.admin-bar .cdc-site-header {
	top: 32px;
}

.cdc-topbar {
	min-height: 50px;
	display: flex;
	align-items: center;
	background: #f4f6f6;
}

.cdc-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.cdc-topbar a {
	color: #006b70;
	font-size: 1rem;
	font-weight: 800;
	text-decoration: none;
}

.cdc-topbar a:hover,
.cdc-topbar a:focus-visible {
	color: var(--cdc-navy);
}

.cdc-topbar__links {
	display: flex;
	align-items: center;
	gap: 24px;
}

.cdc-main-header {
	position: relative;
	min-height: 104px;
	display: flex;
	align-items: center;
	overflow: visible;
	background: var(--cdc-white);
}

.cdc-main-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	overflow: visible;
}

.cdc-brand {
	min-width: 292px;
	display: inline-flex;
	align-items: center;
	gap: 14px;
	flex: 0 0 auto;
	color: var(--cdc-navy);
	font-weight: 900;
	letter-spacing: 0;
	text-decoration: none;
}

.cdc-brand img,
.cdc-brand .custom-logo {
	max-height: 72px;
	width: auto;
}

.cdc-brand__mark {
	width: 56px;
	height: 56px;
	display: inline-grid;
	place-items: center;
	flex: 0 0 auto;
	border-radius: 15px;
	background: linear-gradient(135deg, #1f8f8b, var(--cdc-blue));
	color: var(--cdc-white);
	font-size: .88rem;
	font-weight: 900;
}

.cdc-brand__text {
	display: block;
	max-width: 230px;
	line-height: 1.1;
}

.cdc-brand__name {
	display: block;
	color: var(--cdc-navy);
	font-size: 1.2rem;
	font-weight: 900;
	line-height: 1.05;
}

.cdc-brand__tagline {
	display: block;
	margin-top: 4px;
	color: var(--cdc-muted);
	font-size: .76rem;
	font-weight: 800;
	line-height: 1.2;
}

.cdc-primary-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(18px, 2.4vw, 34px);
	margin-left: auto;
	overflow: visible;
}

.cdc-primary-nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #201325;
	font-size: .92rem;
	font-weight: 900;
	letter-spacing: .01em;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.cdc-primary-nav > a::after,
.cdc-nav-item > a::after {
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 100%;
	height: 2px;
	background: var(--cdc-teal);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .18s ease;
}

.cdc-primary-nav > a:hover::after,
.cdc-primary-nav > a:focus-visible::after,
.cdc-primary-nav > a[aria-current="page"]::after,
.cdc-nav-item > a[aria-current="page"]::after,
.cdc-nav-item:hover > a::after,
.cdc-nav-item:focus-within > a::after {
	transform: scaleX(1);
}

.cdc-primary-nav > a[aria-current="page"],
.cdc-nav-item > a[aria-current="page"],
.cdc-mobile-menu a[aria-current="page"] {
	color: #1f8f8b;
}

.cdc-nav-item {
	position: relative;
}

/* Keeps the pointer inside the dropdown parent while crossing to its panel. */
.cdc-nav-item--has-dropdown::after {
	position: absolute;
	top: 100%;
	left: -18px;
	right: -18px;
	height: 16px;
	content: "";
}

.cdc-chevron {
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
}

.cdc-dropdown {
	position: absolute;
	top: calc(100% + 10px);
	left: -18px;
	z-index: 1000;
	min-width: 250px;
	padding: 12px;
	border: 1px solid var(--cdc-line);
	border-radius: 18px;
	background: var(--cdc-white);
	box-shadow: 0 24px 50px rgba(16, 42, 67, .16);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.cdc-dropdown a {
	display: flex;
	padding: 11px 12px;
	border-radius: 12px;
	color: var(--cdc-text);
	font-size: .85rem;
	text-transform: none;
}

.cdc-dropdown a:hover,
.cdc-dropdown a:focus-visible {
	background: var(--cdc-soft-blue);
	color: var(--cdc-navy);
}

.cdc-nav-item:hover .cdc-dropdown,
.cdc-nav-item:focus-within .cdc-dropdown,
.cdc-nav-item.is-dropdown-open .cdc-dropdown,
.cdc-dropdown:hover {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.cdc-nav-item.is-dropdown-dismissed .cdc-dropdown {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(8px);
}

.cdc-header-actions {
	display: flex;
	align-items: center;
	gap: clamp(12px, 1.6vw, 22px);
	flex: 0 0 auto;
}

.cdc-icon-button {
	width: 46px;
	height: 46px;
	display: inline-grid;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #153f46;
	cursor: pointer;
}

.cdc-icon-button:hover,
.cdc-icon-button:focus-visible {
	background: var(--cdc-soft-blue);
	color: var(--cdc-navy);
}

.cdc-search-icon {
	position: relative;
	width: 20px;
	height: 20px;
	border: 3px solid currentColor;
	border-radius: 50%;
}

.cdc-search-icon::after {
	position: absolute;
	right: -7px;
	bottom: -6px;
	width: 10px;
	height: 3px;
	border-radius: 999px;
	background: currentColor;
	content: "";
	transform: rotate(45deg);
}

.cdc-menu-toggle {
	display: inline-grid;
}

.cdc-menu-lines {
	display: grid;
	gap: 5px;
	width: 25px;
}

.cdc-menu-lines span {
	display: block;
	height: 3px;
	border-radius: 999px;
	background: currentColor;
}

.cdc-header-cta {
	min-height: 54px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 30px;
	border-radius: 999px;
	background: #203f49;
	color: var(--cdc-white);
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 16px 28px rgba(32, 63, 73, .18);
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.cdc-header-cta:hover,
.cdc-header-cta:focus-visible {
	background: var(--cdc-navy);
	transform: translateY(-1px);
	box-shadow: 0 20px 34px rgba(32, 63, 73, .24);
}

.cdc-mobile-menu {
	width: var(--cdc-container);
	margin: 0 auto 18px;
	padding: 18px;
	border: 1px solid var(--cdc-line);
	border-radius: 22px;
	background: var(--cdc-white);
	box-shadow: 0 20px 48px rgba(16, 42, 67, .14);
}

.cdc-mobile-menu[hidden] {
	display: none;
}

.cdc-mobile-menu a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 12px;
	border-bottom: 1px solid rgba(16, 42, 67, .08);
	color: var(--cdc-navy);
	font-weight: 900;
	text-decoration: none;
}

.cdc-mobile-nav-group {
	border-bottom: 1px solid rgba(16, 42, 67, .08);
}

.cdc-mobile-submenu-toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 12px;
	border: 0;
	background: transparent;
	color: var(--cdc-navy);
	font: inherit;
	font-weight: 900;
	text-align: left;
	cursor: pointer;
}

.cdc-mobile-submenu-toggle .cdc-chevron {
	margin: -4px 4px 0 0;
	transition: transform .16s ease;
}

.cdc-mobile-submenu-toggle[aria-expanded="true"] .cdc-chevron {
	margin-top: 4px;
	transform: rotate(225deg);
}

.cdc-mobile-submenu[hidden] {
	display: none;
}

.cdc-mobile-submenu {
	padding: 0 8px 8px 18px;
	background: rgba(234, 244, 251, .5);
}

.cdc-mobile-submenu a {
	padding: 12px;
	font-size: .94rem;
}

.cdc-mobile-menu a:last-child {
	border-bottom: 0;
}

.cdc-mobile-menu .cdc-mobile-cta {
	justify-content: center;
	gap: 8px;
	margin-top: 10px;
	border-radius: 999px;
	background: #203f49;
	color: var(--cdc-white);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.cdc-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 20px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: .94rem;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.cdc-button:hover,
.cdc-button:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 16px 30px rgba(16, 42, 67, .16);
}

.cdc-button--primary {
	background: var(--cdc-blue);
	color: var(--cdc-white);
}

.cdc-button--secondary {
	background: var(--cdc-white);
	border-color: rgba(29, 114, 184, .28);
	color: var(--cdc-navy);
}

.cdc-button--light {
	background: var(--cdc-white);
	color: var(--cdc-navy);
}

.cdc-header-cta {
	flex: 0 0 auto;
}

.cdc-main {
	background: var(--cdc-white);
}

.cdc-hero-video {
	position: relative;
	min-height: clamp(620px, 76vh, 760px);
	display: grid;
	align-items: center;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(10, 24, 40, .82) 0%, rgba(10, 24, 40, .58) 48%, rgba(10, 24, 40, .36) 100%),
		var(--cdc-hero-poster, none) center / cover no-repeat,
		linear-gradient(135deg, var(--cdc-navy), #183b56);
	color: rgba(255, 255, 255, .9);
}

.cdc-hero-video__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	background: var(--cdc-navy);
}

.cdc-hero-video__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		radial-gradient(circle at 74% 22%, rgba(44, 177, 166, .18), transparent 28%),
		linear-gradient(90deg, rgba(10, 24, 40, .78) 0%, rgba(10, 24, 40, .55) 42%, rgba(10, 24, 40, .35) 100%);
}

.cdc-hero-video__content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1480px;
	margin: 0;
	padding: clamp(88px, 11vw, 140px) clamp(24px, 4vw, 72px);
}

.cdc-hero-video__text {
	margin-left: 0;
	max-width: 760px;
}

.cdc-hero-video .cdc-eyebrow {
	color: rgba(255, 255, 255, .84);
	text-shadow: 0 2px 18px rgba(0, 0, 0, .28);
}

.cdc-hero-video h1 {
	max-width: 860px;
	color: var(--cdc-white);
	text-shadow: 0 5px 28px rgba(0, 0, 0, .34);
}

.cdc-hero-copy {
	max-width: 690px;
	margin: 0;
	color: rgba(255, 255, 255, .88);
	font-size: clamp(1.08rem, 2.1vw, 1.28rem);
	text-shadow: 0 2px 16px rgba(0, 0, 0, .28);
}

.cdc-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.cdc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 15px 22px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: .95rem;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.cdc-btn:hover,
.cdc-btn:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 18px 34px rgba(0, 0, 0, .24);
}

.cdc-btn--primary {
	background: var(--cdc-teal);
	color: var(--cdc-white);
}

.cdc-btn--secondary {
	background: rgba(255, 255, 255, .1);
	border-color: rgba(255, 255, 255, .62);
	color: var(--cdc-white);
	backdrop-filter: blur(10px);
}

.cdc-btn--secondary:hover,
.cdc-btn--secondary:focus-visible {
	background: rgba(255, 255, 255, .18);
}

.cdc-hero-supporting-points {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
}

.cdc-hero-supporting-points span {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 8px 13px;
	border: 1px solid rgba(255, 255, 255, .26);
	border-radius: 999px;
	background: rgba(255, 255, 255, .11);
	color: rgba(255, 255, 255, .88);
	font-size: .85rem;
	font-weight: 900;
	backdrop-filter: blur(12px);
}

.cdc-hero-video.has-video-error .cdc-hero-video__media,
.cdc-reduced-motion .cdc-hero-video__media {
	display: none;
}

.cdc-hero,
.cdc-page-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 82% 16%, rgba(44, 177, 166, .2), transparent 32%),
		linear-gradient(135deg, #f9fbfd 0%, var(--cdc-soft-blue) 48%, var(--cdc-cream) 100%);
}

.cdc-hero {
	padding: clamp(74px, 10vw, 132px) 0;
}

.cdc-page-hero {
	padding: clamp(68px, 9vw, 112px) 0;
}

.cdc-hero__grid,
.cdc-page-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(300px, .75fr);
	align-items: center;
	gap: clamp(34px, 6vw, 82px);
}

.cdc-hero__content {
	max-width: 760px;
}

.cdc-eyebrow {
	margin: 0 0 14px;
	color: var(--cdc-teal);
	font-size: .78rem;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.cdc-lead {
	max-width: 760px;
	color: var(--cdc-muted);
	font-size: clamp(1.08rem, 2.2vw, 1.28rem);
}

.cdc-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.cdc-actions--center {
	justify-content: center;
}

.cdc-hero-card,
.cdc-video-card,
.cdc-callout-card,
.cdc-disclaimer-card,
.cdc-form-card,
.cdc-card,
.cdc-map-placeholder {
	border: 1px solid var(--cdc-line);
	border-radius: var(--cdc-radius);
	background: rgba(255, 255, 255, .9);
	box-shadow: var(--cdc-shadow);
}

.cdc-hero-card {
	padding: clamp(24px, 4vw, 36px);
}

.cdc-hero-card img {
	width: 100%;
	max-height: 250px;
	margin-bottom: 24px;
	object-fit: contain;
}

.cdc-video-card {
	position: relative;
	padding: clamp(18px, 3vw, 26px);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(234, 244, 251, .86)),
		var(--cdc-white);
}

.cdc-video-card::before {
	position: absolute;
	inset: 12px;
	border: 1px solid rgba(44, 177, 166, .2);
	border-radius: calc(var(--cdc-radius) - 8px);
	pointer-events: none;
	content: "";
}

.cdc-video-label {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	margin-bottom: 14px;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(44, 177, 166, .12);
	color: var(--cdc-navy);
	font-size: .82rem;
	font-weight: 900;
	letter-spacing: .02em;
}

.cdc-video-placeholder {
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 16 / 10;
	min-height: 280px;
	display: grid;
	place-items: center;
	overflow: hidden;
	border: 0;
	border-radius: 20px;
	background:
		radial-gradient(circle at 72% 20%, rgba(249, 217, 118, .62), transparent 24%),
		radial-gradient(circle at 18% 82%, rgba(44, 177, 166, .42), transparent 28%),
		linear-gradient(135deg, #f7fbff 0%, var(--cdc-soft-blue) 44%, var(--cdc-cream) 100%);
	box-shadow: inset 0 0 0 1px rgba(16, 42, 67, .08);
	color: var(--cdc-navy);
	cursor: pointer;
}

.cdc-video-placeholder::after {
	position: absolute;
	inset: 18px;
	border: 1px solid rgba(255, 255, 255, .72);
	border-radius: 16px;
	content: "";
}

.cdc-video-placeholder:hover .cdc-play-button,
.cdc-video-placeholder:focus-visible .cdc-play-button {
	transform: scale(1.05);
	box-shadow: 0 18px 42px rgba(16, 42, 67, .25);
}

.cdc-play-button {
	position: relative;
	z-index: 2;
	width: 82px;
	height: 82px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--cdc-blue);
	color: var(--cdc-white);
	font-size: 2rem;
	line-height: 1;
	text-indent: 4px;
	box-shadow: 0 16px 34px rgba(29, 114, 184, .26);
	transition: transform .18s ease, box-shadow .18s ease;
}

.cdc-video-thumbnail-text {
	position: absolute;
	left: 22px;
	bottom: 22px;
	z-index: 2;
	padding: 9px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .86);
	color: var(--cdc-navy);
	font-size: .9rem;
	font-weight: 900;
	box-shadow: 0 10px 24px rgba(16, 42, 67, .09);
}

.cdc-video-caption {
	position: relative;
	z-index: 1;
	margin: 18px 0 0;
	color: var(--cdc-muted);
	font-size: .98rem;
}

.cdc-video-trust {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin-top: 18px;
}

.cdc-video-trust span {
	display: grid;
	place-items: center;
	min-height: 38px;
	padding: 8px 10px;
	border: 1px solid rgba(16, 42, 67, .1);
	border-radius: 999px;
	background: rgba(255, 255, 255, .72);
	color: var(--cdc-navy);
	font-size: .78rem;
	font-weight: 900;
	text-align: center;
}

.cdc-trust-strip {
	padding: 22px 0;
	background: var(--cdc-navy);
	color: var(--cdc-white);
}

.cdc-trust-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.cdc-trust-strip span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 10px 12px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 999px;
	color: rgba(255, 255, 255, .9);
	font-size: .9rem;
	font-weight: 700;
	text-align: center;
}

.cdc-section {
	padding: var(--cdc-section-space) 0;
}

.cdc-section--cream {
	background: var(--cdc-cream);
}

.cdc-section--soft-blue {
	background: var(--cdc-soft-blue);
}

.cdc-section--warning {
	background: linear-gradient(135deg, rgba(249, 217, 118, .34), rgba(246, 243, 238, .9));
}

.cdc-section-heading {
	max-width: 760px;
	margin: 0 auto 36px;
	text-align: center;
}

.cdc-card-grid {
	display: grid;
	gap: 22px;
}

.cdc-card-grid--3 {
	grid-template-columns: repeat(3, 1fr);
}

.cdc-card-grid--4 {
	grid-template-columns: repeat(4, 1fr);
}

.cdc-card-grid--stack {
	grid-template-columns: 1fr;
}

.cdc-card {
	padding: 26px;
}

.cdc-treatment-card {
	overflow: hidden;
	display: flex;
	flex-direction: column;
	padding: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(246, 250, 250, .94));
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.cdc-treatment-card__media {
	display: grid;
	place-items: center;
	aspect-ratio: 4 / 3;
	padding: 20px;
	background:
		radial-gradient(circle at 50% 24%, rgba(44, 177, 166, .18), transparent 38%),
		linear-gradient(145deg, #eef8f7, #f8fbfb);
	border-bottom: 1px solid rgba(22, 53, 74, .08);
}

.cdc-treatment-card__media img {
	width: 100%;
	height: 100%;
	max-height: 156px;
	object-fit: contain;
}

.cdc-treatment-card__body {
	flex: 1;
	padding: 24px;
}

@media (hover: hover) {
	.cdc-treatment-card:hover {
		transform: translateY(-6px);
		border-color: rgba(44, 177, 166, .28);
		box-shadow: 0 24px 56px rgba(22, 53, 74, .13);
	}
}

.cdc-card h2,
.cdc-card h3 {
	font-size: 1.35rem;
}

.cdc-card p:last-child,
.cdc-callout-card p:last-child,
.cdc-disclaimer-card p:last-child {
	margin-bottom: 0;
}

.cdc-two-column {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, .82fr);
	align-items: start;
	gap: clamp(28px, 5vw, 64px);
}

.cdc-callout-card,
.cdc-disclaimer-card {
	padding: 30px;
}

.cdc-disclaimer-card {
	background: var(--cdc-navy);
	color: rgba(255, 255, 255, .86);
}

.cdc-disclaimer-card h2,
.cdc-disclaimer-card h3 {
	color: var(--cdc-white);
}

.cdc-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.cdc-step {
	position: relative;
	padding: 26px;
	border-radius: var(--cdc-radius);
	background: var(--cdc-white);
	box-shadow: 0 12px 28px rgba(16, 42, 67, .08);
}

.cdc-step span {
	display: inline-grid;
	width: 40px;
	height: 40px;
	margin-bottom: 18px;
	place-items: center;
	border-radius: 50%;
	background: var(--cdc-teal);
	color: var(--cdc-white);
	font-weight: 900;
}

.cdc-step h3 {
	margin: 0;
	font-size: 1.18rem;
}

.cdc-split-cta {
	padding: 40px 0;
	background: var(--cdc-navy);
}

.cdc-split-cta__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}

.cdc-split-cta__panel {
	padding: clamp(30px, 5vw, 52px);
	border-radius: var(--cdc-radius);
	background: var(--cdc-white);
}

.cdc-split-cta__panel--teal {
	background: linear-gradient(135deg, var(--cdc-teal), #218b84);
	color: var(--cdc-white);
}

.cdc-split-cta__panel--teal h2,
.cdc-split-cta__panel--teal .cdc-eyebrow {
	color: var(--cdc-white);
}

.cdc-faq-list {
	display: grid;
	gap: 14px;
}

.cdc-faq-item {
	border: 1px solid var(--cdc-line);
	border-radius: var(--cdc-radius-sm);
	background: var(--cdc-white);
	box-shadow: 0 10px 24px rgba(16, 42, 67, .06);
}

.cdc-faq-item summary {
	position: relative;
	padding: 20px 54px 20px 22px;
	color: var(--cdc-navy);
	font-weight: 800;
	cursor: pointer;
	list-style: none;
}

.cdc-faq-item summary::-webkit-details-marker {
	display: none;
}

.cdc-faq-item summary::after {
	position: absolute;
	right: 22px;
	top: 50%;
	width: 28px;
	height: 28px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--cdc-soft-blue);
	color: var(--cdc-navy);
	content: "+";
	transform: translateY(-50%);
}

.cdc-faq-item[open] summary::after {
	content: "-";
}

.cdc-faq-item__content {
	padding: 0 22px 22px;
	color: var(--cdc-muted);
}

.cdc-faq-group {
	margin-bottom: 46px;
}

.cdc-final-cta {
	padding: clamp(64px, 9vw, 112px) 0;
	background:
		radial-gradient(circle at 70% 10%, rgba(44, 177, 166, .25), transparent 30%),
		var(--cdc-navy);
	color: rgba(255, 255, 255, .82);
	text-align: center;
}

.cdc-final-cta h2 {
	max-width: 760px;
	margin: 0 auto 10px;
	color: var(--cdc-white);
}

.cdc-final-cta p {
	max-width: 840px;
	margin: 28px auto 0;
	font-size: .95rem;
}

.cdc-form-card {
	padding: clamp(24px, 4vw, 38px);
	background: var(--cdc-white);
}

.cdc-form-card__header {
	max-width: 760px;
	margin-bottom: 24px;
}

.cdc-form {
	display: grid;
	gap: 22px;
}

.cdc-form__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.cdc-field {
	display: grid;
	gap: 8px;
	color: var(--cdc-navy);
	font-weight: 800;
}

.cdc-field--full {
	grid-column: 1 / -1;
}

.cdc-field input,
.cdc-field textarea {
	width: 100%;
	border: 1px solid rgba(16, 42, 67, .18);
	border-radius: 14px;
	background: #fbfdff;
	color: var(--cdc-text);
	font: inherit;
	padding: 13px 14px;
}

.cdc-field textarea {
	resize: vertical;
}

.cdc-check {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	color: var(--cdc-muted);
	font-size: .94rem;
	font-weight: 600;
}

.cdc-check input {
	margin-top: .35rem;
}

.cdc-form__note {
	margin: 0;
	color: var(--cdc-muted);
	font-size: .9rem;
}

.cdc-check-list {
	display: grid;
	gap: 12px;
	padding: 0;
	list-style: none;
}

.cdc-check-list li {
	position: relative;
	padding-left: 30px;
}

.cdc-check-list li::before {
	position: absolute;
	left: 0;
	top: .45rem;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--cdc-teal);
	content: "";
}

.cdc-stack {
	display: grid;
	gap: 22px;
}

.cdc-map-placeholder {
	min-height: 280px;
	padding: 28px;
	display: grid;
	align-content: center;
	background:
		linear-gradient(135deg, rgba(29, 114, 184, .08), rgba(44, 177, 166, .12)),
		var(--cdc-white);
}

.cdc-contact-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-height: 100%;
}

.cdc-contact-card h2,
.cdc-office-card h2 {
	margin-bottom: 0;
}

.cdc-contact-card p {
	margin: 0;
	overflow-wrap: anywhere;
}

.cdc-contact-card p a,
.cdc-contact-list a,
.cdc-footer__contact a {
	color: #0a6f70;
	font-weight: 900;
	text-decoration: none;
}

.cdc-site-footer .cdc-footer__contact a {
	color: var(--cdc-white);
}

.cdc-contact-card p a:hover,
.cdc-contact-card p a:focus-visible,
.cdc-contact-list a:hover,
.cdc-contact-list a:focus-visible,
.cdc-footer__contact a:hover,
.cdc-footer__contact a:focus-visible {
	text-decoration: underline;
}

.cdc-contact-card .cdc-button {
	margin-top: auto;
}

.cdc-contact-main {
	align-items: start;
}

.cdc-contact-form-wrap .cdc-form-card {
	height: 100%;
}

.cdc-office-card {
	position: sticky;
	top: 136px;
	padding: clamp(24px, 4vw, 34px);
}

.cdc-contact-list {
	display: grid;
	gap: 18px;
	margin: 24px 0;
}

.cdc-contact-list div {
	padding-bottom: 16px;
	border-bottom: 1px solid var(--cdc-line);
}

.cdc-contact-list div:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.cdc-contact-list dt {
	color: var(--cdc-navy);
	font-weight: 900;
}

.cdc-contact-list dd {
	margin: 4px 0 0;
	color: var(--cdc-muted);
	line-height: 1.55;
}

.cdc-office-note {
	margin: 0;
	padding: 16px;
	border-radius: 16px;
	background: var(--cdc-cream);
	color: var(--cdc-navy);
	font-weight: 800;
}

.cdc-map-card {
	overflow: hidden;
	border: 1px solid var(--cdc-line);
	border-radius: var(--cdc-radius);
	background: var(--cdc-white);
	box-shadow: var(--cdc-shadow);
}

.cdc-map-card iframe {
	display: block;
	width: 100%;
}

.cdc-map-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: 18px;
	padding: 20px 24px;
	border: 1px solid var(--cdc-line);
	border-radius: 18px;
	background: var(--cdc-white);
	box-shadow: 0 12px 34px rgba(16, 42, 67, .08);
}

.cdc-map-actions p {
	margin: 0;
	color: var(--cdc-navy);
	font-weight: 900;
}

.cdc-contact-referral .cdc-actions {
	align-items: center;
}

@media (max-width: 920px) {
	.cdc-office-card {
		position: static;
	}

	.cdc-map-actions {
		align-items: stretch;
		flex-direction: column;
	}
}

.cdc-crisis-card {
	border-radius: var(--cdc-radius);
	border: 1px solid rgba(141, 58, 58, .16);
	background: #fff7f3;
	padding: clamp(28px, 4vw, 44px);
	text-align: center;
	box-shadow: var(--cdc-shadow);
}

.cdc-crisis-card h2 {
	color: #7a2d2d;
}

.cdc-crisis-card p {
	color: #5f3a35;
	font-weight: 700;
}

.cdc-legal {
	max-width: 820px;
}

.cdc-legal h2 {
	margin-top: 34px;
	font-size: 1.8rem;
}

.cdc-live-page-hero {
	background:
		radial-gradient(circle at 78% 18%, rgba(44, 177, 166, .2), transparent 30%),
		linear-gradient(135deg, #f9fbfd 0%, #eaf4fb 55%, #f6f3ee 100%);
}

.cdc-team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-items: stretch;
	gap: clamp(34px, 5vw, 64px) 24px;
}

.cdc-team-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 100%;
	min-width: 0;
	padding: 8px 12px 30px;
	border: 0;
	background: transparent;
	box-shadow: none;
	scroll-margin-top: 180px;
	text-align: center;
}

.cdc-team-card__media,
.cdc-home-team-card__media {
	position: relative;
	width: min(100%, var(--cdc-team-portrait-size));
	aspect-ratio: 4 / 5;
	margin-bottom: 22px;
	overflow: hidden;
	border: 6px solid var(--cdc-white);
	border-radius: 50%;
	outline: 3px solid rgba(44, 177, 166, .72);
	background: linear-gradient(145deg, var(--cdc-teal), var(--cdc-blue));
	box-shadow: 0 18px 40px rgba(16, 42, 67, .16), 0 5px 14px rgba(44, 177, 166, .12);
}

.cdc-team-card__media {
	--cdc-team-portrait-size: 270px;
}

.cdc-team-card__photo,
.cdc-home-team-card__photo {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: var(--cdc-team-focal-position, center 20%);
}

.cdc-team-card__initial {
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, var(--cdc-teal), var(--cdc-blue));
	color: var(--cdc-white);
	font-size: clamp(2.2rem, 5vw, 3.8rem);
	font-weight: 900;
}

.cdc-team-card > h2 {
	margin: 0 0 8px;
	font-size: clamp(1.35rem, 2vw, 1.7rem);
	line-height: 1.2;
	text-align: center;
}

.cdc-team-card__role {
	margin: 0;
	color: #0a6f70;
	font-weight: 900;
	line-height: 1.45;
	text-align: center;
}

.cdc-team-card__bio {
	width: 100%;
	max-width: 34ch;
	margin-top: 18px;
	text-align: left;
}

.cdc-team-card__bio p:last-child {
	margin-bottom: 0;
}

.cdc-team-grid__empty {
	grid-column: 1 / -1;
	padding: 28px;
	border: 1px solid var(--cdc-line);
	border-radius: var(--cdc-radius-sm);
	background: var(--cdc-soft-blue);
	text-align: center;
}

.cdc-team-preview {
	max-width: 620px;
}

.cdc-team-preview__notice {
	margin-bottom: 24px;
	padding: 16px 18px;
	border: 1px solid rgba(44, 177, 166, .28);
	border-radius: var(--cdc-radius-sm);
	background: var(--cdc-soft-blue);
}

.cdc-legal-meta,
.cdc-legal-notice {
	margin-bottom: 30px;
	padding: 24px;
	border: 1px solid rgba(44, 177, 166, .22);
	border-radius: var(--cdc-radius-sm);
	background: var(--cdc-soft-blue);
}

.cdc-legal-meta p,
.cdc-legal-notice p {
	margin-bottom: .5rem;
}

.cdc-safety-block {
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: var(--cdc-radius-sm);
	background: rgba(255, 255, 255, .06);
}

.cdc-safety-block h3 {
	color: var(--cdc-white);
}

.cdc-safety-block a {
	color: var(--cdc-warning);
	font-weight: 900;
}

.cdc-safety-page .cdc-safety-block,
.cdc-footer__safety--page .cdc-safety-block {
	border-color: var(--cdc-line);
	background: var(--cdc-white);
	box-shadow: var(--cdc-shadow);
}

.cdc-safety-page .cdc-safety-block h3,
.cdc-footer__safety--page .cdc-safety-block h3 {
	color: var(--cdc-navy);
}

.cdc-safety-page .cdc-safety-block a,
.cdc-footer__safety--page .cdc-safety-block a {
	color: #0a6f70;
}

.cdc-site-footer {
	background: #0c2238;
	color: rgba(255, 255, 255, .82);
}

.cdc-footer__inner {
	width: var(--cdc-container);
	margin: 0 auto;
	padding: 58px 0 28px;
}

.cdc-footer__top {
	display: grid;
	grid-template-columns: minmax(260px, .85fr) minmax(0, 1.45fr);
	gap: clamp(28px, 5vw, 68px);
	align-items: start;
}

.cdc-footer__brand {
	max-width: 620px;
}

.cdc-footer__brand h2,
.cdc-site-footer h3 {
	color: var(--cdc-white);
}

.cdc-footer__columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.cdc-footer__column h3 {
	margin-bottom: 14px;
	font-size: 1.08rem;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.cdc-footer__link {
	display: block;
	margin: 0 0 9px;
	color: rgba(255, 255, 255, .78);
	text-decoration: none;
}

.cdc-footer__link:hover,
.cdc-footer__link:focus-visible {
	color: var(--cdc-warning);
}

.cdc-footer__safety {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
	margin-top: 36px;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, .12);
}

.cdc-crisis {
	margin-top: 26px;
	padding: 18px;
	border: 1px solid rgba(249, 217, 118, .35);
	border-radius: 16px;
	background: rgba(249, 217, 118, .08);
}

.cdc-footer__bottom {
	margin: 24px 0 0;
	color: rgba(255, 255, 255, .62);
	font-size: .9rem;
}

:focus-visible {
	outline: 3px solid rgba(44, 177, 166, .55);
	outline-offset: 4px;
}

@media (max-width: 1120px) {
	.cdc-main-header__inner {
		gap: 20px;
	}

	.cdc-brand {
		min-width: 252px;
	}

	.cdc-brand__name {
		font-size: 1.08rem;
	}

	.cdc-primary-nav {
		gap: 18px;
	}

	.cdc-header-actions {
		gap: 10px;
	}

	.cdc-header-cta {
		padding: 0 22px;
	}

	.cdc-card-grid--4,
	.cdc-trust-strip__grid,
	.cdc-team-grid,
	.cdc-steps {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 782px) {
	.admin-bar .cdc-site-header {
		top: 46px;
	}
}

@media (max-width: 900px) {
	.cdc-main-header {
		min-height: 82px;
	}

	.cdc-main-header__inner {
		gap: 14px;
	}

	.cdc-primary-nav {
		display: none;
	}

	.cdc-brand {
		min-width: 0;
		flex: 1 1 auto;
	}

	.cdc-brand__mark {
		width: 48px;
		height: 48px;
		border-radius: 13px;
	}

	.cdc-brand__name {
		font-size: 1rem;
	}

	.cdc-brand__tagline {
		font-size: .7rem;
	}

	.cdc-header-actions {
		margin-left: auto;
	}

	.cdc-search-toggle {
		display: none;
	}

	.cdc-header-cta {
		display: none;
	}

	.cdc-mobile-menu.is-open {
		display: block;
	}
}

@media (max-width: 760px) {
	:root {
		--cdc-container: min(100% - 28px, 1200px);
	}

	.cdc-topbar {
		min-height: 44px;
	}

	.cdc-topbar__inner {
		gap: 12px;
	}

	.cdc-topbar a {
		font-size: .88rem;
	}

	.cdc-topbar__links {
		gap: 14px;
	}

	.cdc-topbar__links a:first-child {
		display: none;
	}

	.cdc-main-header {
		min-height: 78px;
	}

	.cdc-brand {
		gap: 10px;
	}

	.cdc-brand__text {
		max-width: 180px;
	}

	.cdc-brand img,
	.cdc-brand .custom-logo {
		max-height: 54px;
	}

	.cdc-icon-button {
		width: 42px;
		height: 42px;
	}

	.cdc-mobile-menu {
		margin-bottom: 12px;
	}

	.cdc-hero-video {
		min-height: 600px;
		text-align: left;
	}

	.cdc-hero-video__content {
		padding: 70px 22px;
	}

	.cdc-hero-actions,
	.cdc-btn {
		width: 100%;
	}

	.cdc-hero-actions {
		display: grid;
	}

	.cdc-hero-supporting-points {
		display: grid;
		grid-template-columns: 1fr;
	}

	.cdc-hero__grid,
	.cdc-page-hero__grid,
	.cdc-two-column,
	.cdc-split-cta__grid,
	.cdc-card-grid--3,
	.cdc-card-grid--4,
	.cdc-team-grid,
	.cdc-footer__top,
	.cdc-footer__safety,
	.cdc-trust-strip__grid,
	.cdc-steps,
	.cdc-form__grid,
	.cdc-footer__columns {
		grid-template-columns: 1fr;
	}

	.cdc-hero,
	.cdc-page-hero,
	.cdc-section,
	.cdc-final-cta {
		padding: 56px 0;
	}

	.cdc-actions,
	.cdc-button {
		width: 100%;
	}

	.cdc-actions {
		display: grid;
	}

	.cdc-card,
	.cdc-treatment-card__body,
	.cdc-form-card,
	.cdc-video-card,
	.cdc-callout-card,
	.cdc-disclaimer-card {
		padding: 22px;
	}

	.cdc-video-placeholder {
		min-height: 220px;
	}

	.cdc-video-trust {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: .001ms !important;
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
	}

	.cdc-hero-video__media {
		display: none;
	}
}
/* Header logo sizing only - does not change nav, buttons, icons, or layout. */
.cdc-main-header .cdc-brand__logo,
.cdc-main-header .cdc-brand > img.custom-logo {
	display: block;
	width: 145px;
	max-width: 145px;
	height: auto;
	max-height: none;
	object-fit: contain;
}

@media (max-width: 900px) {
	.cdc-main-header .cdc-brand__logo,
	.cdc-main-header .cdc-brand > img.custom-logo {
		width: 105px;
		max-width: 105px;
		height: auto;
		max-height: none;
	}
}

/* Phase 1 patient-journey components. */
.cdc-button,
.cdc-btn {
	border-radius: var(--cdc-button-radius);
}

.cdc-image-frame {
	overflow: hidden;
	border: 1px solid var(--cdc-line);
	border-radius: var(--cdc-card-radius);
	background: var(--cdc-white);
	box-shadow: var(--cdc-shadow);
}

.cdc-form-message {
	margin: 0;
	padding: 14px 16px;
	border-left: 4px solid var(--cdc-blue);
	border-radius: 10px;
	background: var(--cdc-soft-blue);
	color: var(--cdc-navy);
	font-weight: 700;
}

.cdc-form-message--success {
	border-left-color: var(--cdc-success);
	background: #edf8f4;
}

.cdc-form-message--error,
.cdc-field [aria-invalid="true"] {
	border-color: #9b3b3b;
}

.cdc-announcement {
	padding: 9px 20px;
	background: var(--cdc-navy);
	color: var(--cdc-white);
	font-size: .9rem;
	font-weight: 800;
	text-align: center;
}

.cdc-announcement a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.cdc-section--white {
	background: var(--cdc-white);
}

.cdc-two-column--center {
	align-items: center;
}

.cdc-section-action {
	margin-top: 34px;
	text-align: center;
}

.cdc-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	color: #096f73;
	font-weight: 900;
	text-decoration-thickness: 2px;
	text-underline-offset: 5px;
}

.cdc-text-link:hover,
.cdc-text-link:focus-visible {
	color: var(--cdc-navy);
}

.cdc-trust-contact {
	position: relative;
	z-index: 3;
	background: var(--cdc-white);
	box-shadow: 0 18px 42px rgba(16, 42, 67, .09);
}

.cdc-trust-contact__grid {
	display: grid;
	grid-template-columns: .72fr 1.05fr 1.4fr;
}

.cdc-trust-contact__grid a {
	min-width: 0;
	padding: 24px clamp(18px, 3vw, 34px);
	border-right: 1px solid var(--cdc-line);
	color: var(--cdc-navy);
	text-decoration: none;
}

.cdc-trust-contact__grid a:last-child {
	border-right: 0;
}

.cdc-trust-contact__grid a:hover,
.cdc-trust-contact__grid a:focus-visible {
	background: var(--cdc-soft-blue);
}

.cdc-trust-contact__grid span,
.cdc-trust-contact__grid strong {
	display: block;
}

.cdc-trust-contact__grid span {
	margin-bottom: 4px;
	color: var(--cdc-muted);
	font-size: .76rem;
	font-weight: 900;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.cdc-trust-contact__grid strong {
	overflow-wrap: anywhere;
	font-size: clamp(.92rem, 1.5vw, 1.08rem);
}

.cdc-fact-panel,
.cdc-contact-hero__card {
	padding: clamp(28px, 4vw, 44px);
	border: 1px solid rgba(44, 177, 166, .24);
	border-radius: var(--cdc-card-radius);
	background: rgba(255, 255, 255, .92);
	box-shadow: var(--cdc-shadow);
}

.cdc-fact-panel--dark {
	background: var(--cdc-navy);
	color: rgba(255, 255, 255, .84);
}

.cdc-fact-panel--dark h2,
.cdc-fact-panel--dark .cdc-eyebrow {
	color: var(--cdc-white);
}

.cdc-process-timeline {
	position: relative;
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
	margin: 44px 0 0;
	padding: 0;
	list-style: none;
}

.cdc-process-timeline::before {
	position: absolute;
	top: 25px;
	left: 8%;
	right: 8%;
	height: 2px;
	background: rgba(44, 177, 166, .3);
	content: "";
}

.cdc-process-step {
	position: relative;
	z-index: 1;
	min-width: 0;
	text-align: center;
}

.cdc-process-step__number {
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	margin: 0 auto 16px;
	border: 5px solid var(--cdc-cream);
	border-radius: 50%;
	background: var(--cdc-teal);
	color: var(--cdc-white);
	font-weight: 900;
	box-shadow: 0 8px 18px rgba(16, 42, 67, .14);
}

.cdc-process-step strong {
	display: block;
	color: var(--cdc-navy);
	font-size: .94rem;
	line-height: 1.35;
}

.cdc-insurance-panel {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
	gap: clamp(28px, 5vw, 68px);
	align-items: center;
	padding: clamp(30px, 6vw, 68px);
	border-radius: var(--cdc-card-radius);
	background: var(--cdc-navy);
	color: rgba(255, 255, 255, .82);
	box-shadow: var(--cdc-shadow);
}

.cdc-insurance-panel h2,
.cdc-insurance-panel h3,
.cdc-insurance-panel .cdc-eyebrow {
	color: var(--cdc-white);
}

.cdc-insurance-disclaimer {
	padding-left: 16px;
	border-left: 3px solid var(--cdc-teal);
	font-weight: 700;
}

.cdc-insurance-options {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.cdc-insurance-options > div {
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 18px;
	background: rgba(255, 255, 255, .08);
}

.cdc-insurance-options .cdc-check-list li::before {
	background: var(--cdc-warning);
}

.cdc-home-team-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.cdc-home-team-card {
	min-width: 0;
	min-height: 100%;
	background: transparent;
}

.cdc-home-team-card__link {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 6px 8px 14px;
	border-radius: var(--cdc-card-radius);
	color: inherit;
	text-decoration: none;
	transition: transform 220ms ease;
}

.cdc-home-team-card__media {
	--cdc-team-portrait-size: 290px;
	display: grid;
	place-items: center;
	transition: box-shadow 220ms ease, outline-color 220ms ease, outline-offset 220ms ease;
}

.cdc-home-team-card__initial {
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	background: linear-gradient(145deg, var(--cdc-teal), var(--cdc-blue));
	color: var(--cdc-white);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 900;
}

.cdc-home-team-card__body {
	width: 100%;
	min-height: 94px;
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
	padding: 0 8px;
	text-align: center;
}

.cdc-home-team-card__body h3 {
	margin-bottom: 6px;
}

.cdc-home-team-card__body p {
	margin: 0;
	color: var(--cdc-muted);
	line-height: 1.45;
	text-align: center;
}

@media (hover: hover) {
	.cdc-home-team-card__link:hover {
		transform: translateY(-5px);
	}

	.cdc-home-team-card__link:hover .cdc-home-team-card__media {
		box-shadow: 0 22px 46px rgba(16, 42, 67, .21), 0 7px 18px rgba(44, 177, 166, .16);
	}
}

.cdc-home-team-card__link:focus-visible {
	outline: 0;
}

.cdc-home-team-card__link:focus-visible .cdc-home-team-card__media {
	outline: 4px solid var(--cdc-blue);
	outline-offset: 5px;
	box-shadow: 0 22px 46px rgba(16, 42, 67, .22);
}

@media (max-width: 1120px) {
	.cdc-home-team-card__link {
		padding-left: 0;
		padding-right: 0;
	}

	.cdc-team-card__media,
	.cdc-home-team-card__media {
		--cdc-team-portrait-size: 250px;
	}
}

@media (max-width: 760px) {
	.cdc-team-card,
	.cdc-home-team-card__link {
		padding-left: 0;
		padding-right: 0;
	}

	.cdc-team-card__media,
	.cdc-home-team-card__media {
		--cdc-team-portrait-size: 230px;
	}

	.cdc-team-card__bio {
		max-width: 38ch;
	}

	.cdc-team-card {
		scroll-margin-top: 135px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cdc-home-team-card__link:hover {
		transform: none;
	}
}

.cdc-home-location {
	background: linear-gradient(135deg, #eaf4fb, #f6f3ee);
}

.cdc-home-location__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
	align-items: center;
	gap: clamp(30px, 6vw, 78px);
}

.cdc-location-card {
	display: grid;
	gap: 12px;
	padding: clamp(28px, 5vw, 46px);
	border: 1px solid rgba(44, 177, 166, .24);
	border-radius: var(--cdc-card-radius);
	background: var(--cdc-white);
	box-shadow: var(--cdc-shadow);
}

.cdc-location-card__label {
	margin: 0;
	color: var(--cdc-teal);
	font-size: .78rem;
	font-weight: 900;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.cdc-location-card a {
	color: #096f73;
	font-weight: 900;
	overflow-wrap: anywhere;
}

.cdc-final-cta .cdc-eyebrow {
	color: var(--cdc-warning);
}

.cdc-final-cta > .cdc-container > p:not(.cdc-eyebrow) {
	max-width: 720px;
	margin: 0 auto 28px;
}

.cdc-final-cta__disclaimer {
	margin-top: 32px !important;
	font-size: .88rem;
}

.cdc-contact-hero__card a {
	color: #096f73;
	font-weight: 900;
	overflow-wrap: anywhere;
}

.cdc-contact-options {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.cdc-contact-card__icon {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--cdc-soft-blue);
	color: var(--cdc-teal);
	font-weight: 900;
}

.cdc-next-steps {
	padding: clamp(28px, 4vw, 40px);
}

.cdc-next-steps ol {
	display: grid;
	gap: 22px;
	margin: 26px 0;
	padding: 0;
	list-style: none;
	counter-reset: next-step;
}

.cdc-next-steps li {
	position: relative;
	padding-left: 48px;
	counter-increment: next-step;
}

.cdc-next-steps li::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--cdc-teal);
	color: var(--cdc-white);
	content: counter(next-step);
	font-weight: 900;
}

.cdc-next-steps strong,
.cdc-next-steps span {
	display: block;
}

.cdc-next-steps span {
	margin-top: 4px;
	color: var(--cdc-muted);
}

.cdc-field select {
	width: 100%;
	min-height: 52px;
	padding: 13px 42px 13px 14px;
	border: 1px solid rgba(16, 42, 67, .18);
	border-radius: 14px;
	background: #fbfdff;
	color: var(--cdc-text);
	font: inherit;
}

.cdc-field input:focus,
.cdc-field textarea:focus,
.cdc-field select:focus {
	border-color: var(--cdc-teal);
	outline: 3px solid rgba(44, 177, 166, .22);
	outline-offset: 2px;
}

.cdc-map-card--preview {
	min-height: 390px;
}

.cdc-map-card__preview {
	min-height: 390px;
	display: grid;
	place-items: center;
	align-content: center;
	gap: 12px;
	padding: 30px;
	background:
		linear-gradient(rgba(234, 244, 251, .88), rgba(246, 243, 238, .92)),
		repeating-linear-gradient(45deg, transparent 0 24px, rgba(16, 42, 67, .06) 24px 26px);
	text-align: center;
}

.cdc-map-card__pin {
	width: 42px;
	height: 42px;
	border: 12px solid var(--cdc-teal);
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
}

.cdc-map-card__preview strong {
	color: var(--cdc-navy);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.35rem;
}

.cdc-map-card--preview iframe {
	width: 100%;
	height: 390px;
	border: 0;
}

.cdc-fact-grid,
.cdc-research-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.cdc-fact-grid article,
.cdc-research-grid a {
	display: grid;
	gap: 8px;
	padding: 26px;
	border: 1px solid var(--cdc-line);
	border-radius: 18px;
	background: var(--cdc-white);
	box-shadow: 0 12px 28px rgba(16, 42, 67, .07);
}

.cdc-fact-grid strong {
	color: var(--cdc-teal);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.45rem;
}

.cdc-fact-grid span,
.cdc-research-grid span {
	color: var(--cdc-muted);
}

.cdc-session-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.cdc-session-steps article {
	padding: 28px;
	border-top: 4px solid var(--cdc-teal);
	background: var(--cdc-soft-blue);
}

.cdc-session-steps article > span {
	color: var(--cdc-teal);
	font-size: 1.15rem;
	font-weight: 900;
}

.cdc-research-grid a {
	color: var(--cdc-navy);
	text-decoration: none;
}

.cdc-research-grid a:hover,
.cdc-research-grid a:focus-visible {
	border-color: var(--cdc-teal);
	transform: translateY(-2px);
}

/* Semantic, progressively enhanced FAQ accordion. */
.cdc-faq-item__heading {
	margin: 0;
	font-family: inherit;
	font-size: 1rem;
}

.cdc-faq-item__trigger {
	width: 100%;
	min-height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 20px 18px 22px;
	border: 0;
	border-radius: inherit;
	background: transparent;
	color: var(--cdc-navy);
	font: inherit;
	font-weight: 900;
	text-align: left;
	cursor: pointer;
}

.cdc-faq-item__icon {
	width: 30px;
	height: 30px;
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	border-radius: 50%;
	background: var(--cdc-soft-blue);
	font-size: 1.25rem;
}

.cdc-faq-item__trigger[aria-expanded="true"] .cdc-faq-item__icon {
	background: var(--cdc-teal);
	color: var(--cdc-white);
}

.cdc-faq-item__content p:last-child {
	margin-bottom: 0;
}

@media (prefers-reduced-motion: no-preference) {
	.cdc-faq-item__content:not([hidden]) {
		animation: cdc-faq-reveal 180ms ease both;
	}
}

@keyframes cdc-faq-reveal {
	from {
		opacity: 0;
		transform: translateY(-4px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.cdc-mobile-action-bar {
	display: none;
}

.cdc-footer__brand,
.cdc-footer__columns,
.cdc-footer__column {
	min-width: 0;
}

.cdc-footer__contact a {
	overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
	.cdc-primary-nav {
		display: none;
	}
}

@media (max-width: 1120px) {
	.cdc-process-timeline {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		row-gap: 30px;
	}

	.cdc-process-timeline::before {
		display: none;
	}

	.cdc-fact-grid,
	.cdc-research-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	body {
		padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
	}

	.cdc-trust-contact__grid,
	.cdc-insurance-panel,
	.cdc-home-team-grid,
	.cdc-home-location__grid,
	.cdc-contact-options,
	.cdc-fact-grid,
	.cdc-session-steps,
	.cdc-research-grid {
		grid-template-columns: 1fr;
	}

	.cdc-trust-contact__grid a {
		padding: 17px 4px;
		border-right: 0;
		border-bottom: 1px solid var(--cdc-line);
	}

	.cdc-trust-contact__grid a:last-child {
		border-bottom: 0;
	}

	.cdc-process-timeline {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.cdc-process-timeline::before {
		top: 20px;
		bottom: 20px;
		left: 25px;
		right: auto;
		width: 2px;
		height: auto;
		display: block;
	}

	.cdc-process-step {
		min-height: 78px;
		display: grid;
		grid-template-columns: 52px 1fr;
		align-items: center;
		gap: 18px;
		text-align: left;
	}

	.cdc-process-step__number {
		margin: 0;
	}

	.cdc-insurance-panel {
		padding: 28px 22px;
	}

	.cdc-insurance-options {
		grid-template-columns: 1fr;
	}

	.cdc-map-card--preview,
	.cdc-map-card__preview,
	.cdc-map-card--preview iframe {
		min-height: 320px;
		height: 320px;
	}

	.cdc-mobile-action-bar {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 450;
		display: grid;
		grid-template-columns: .8fr 1.2fr;
		gap: 1px;
		padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0px));
		background: rgba(16, 42, 67, .97);
		box-shadow: 0 -10px 30px rgba(16, 42, 67, .18);
	}

	.cdc-mobile-action-bar a {
		min-height: 50px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 10px 12px;
		border: 1px solid rgba(255, 255, 255, .22);
		border-radius: 12px;
		background: var(--cdc-white);
		color: var(--cdc-navy);
		font-size: .86rem;
		font-weight: 900;
		line-height: 1.15;
		text-align: center;
		text-decoration: none;
	}

	.cdc-mobile-action-bar a:last-child {
		background: var(--cdc-teal);
		color: var(--cdc-white);
	}
}

@media (max-width: 360px) {
	.cdc-mobile-action-bar a {
		font-size: .78rem;
	}
}

/* Phase 2A: privacy-safe consultation options (no submitting form). */
.cdc-consultation-options {
	display: grid;
	gap: 30px;
}

.cdc-consultation-options > * {
	min-width: 0;
}

.cdc-consultation-options__header {
	max-width: 760px;
	overflow-wrap: anywhere;
}

.cdc-consultation-options__header > :last-child {
	margin-bottom: 0;
}

.cdc-consultation-options__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.cdc-consultation-option {
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: clamp(24px, 3vw, 34px);
	border: 1px solid var(--cdc-line);
	border-radius: 20px;
	background: rgba(255, 255, 255, .94);
	box-shadow: var(--cdc-shadow);
}

.cdc-consultation-option--primary {
	border-color: rgba(23, 135, 139, .42);
}

.cdc-consultation-option--disabled {
	border-style: dashed;
	background: rgba(234, 244, 251, .72);
}

.cdc-consultation-option__number {
	margin-bottom: 22px;
	color: var(--cdc-teal);
	font-size: .8rem;
	font-weight: 900;
	letter-spacing: .12em;
}

.cdc-consultation-option h3 {
	margin-top: 0;
}

.cdc-consultation-option p {
	flex: 1 1 auto;
}

.cdc-consultation-option .cdc-button {
	max-width: 100%;
	overflow-wrap: anywhere;
}

.cdc-button--disabled {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 18px;
	border: 1px solid rgba(16, 42, 67, .18);
	border-radius: 999px;
	background: rgba(16, 42, 67, .08);
	color: var(--cdc-muted);
	font-weight: 900;
	text-align: center;
}

.cdc-privacy-warning,
.cdc-insurance-call-notice {
	margin: 0;
	padding: 22px 24px;
	border-left: 4px solid var(--cdc-warning);
	background: var(--cdc-cream);
}

.cdc-privacy-warning h3 {
	margin: 0 0 8px;
	font-size: 1.15rem;
}

.cdc-privacy-warning p {
	margin: 0;
}

.cdc-insurance-call-notice {
	font-weight: 800;
}

.cdc-contact-main > .cdc-next-steps {
	margin-top: 32px;
}

.cdc-consultation-links {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

@media (max-width: 960px) {
	.cdc-consultation-options__grid {
		grid-template-columns: 1fr;
	}

	.cdc-consultation-option p {
		flex: 0 1 auto;
	}
}

@media (max-width: 760px) {
	.cdc-consultation-links {
		align-items: flex-start;
		flex-direction: column;
	}

	.cdc-consultation-option {
		padding: 24px 20px;
	}

	.cdc-consultation-option .cdc-button,
	.cdc-consultation-option .cdc-button--disabled {
		width: 100%;
	}
}

/* Phase 3A: breadcrumbs, site directory, patient resources, and recovery pages. */
.cdc-breadcrumbs {
	background: #f8fbfd;
	border-bottom: 1px solid var(--cdc-line);
	color: var(--cdc-muted);
	font-size: .88rem;
}

.cdc-breadcrumbs .cdc-container {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 44px;
}

.cdc-breadcrumbs a {
	color: var(--cdc-blue);
	font-weight: 700;
	text-decoration: none;
}

.cdc-breadcrumbs a:hover,
.cdc-breadcrumbs a:focus-visible {
	text-decoration: underline;
}

.cdc-site-directory {
	background: rgba(255, 255, 255, .98);
	border-top: 1px solid var(--cdc-line);
	box-shadow: 0 18px 36px rgba(16, 42, 67, .12);
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	z-index: 1100;
}

.cdc-site-directory__inner {
	width: var(--cdc-container);
	margin: 0 auto;
	padding: 24px 0;
	display: grid;
	grid-template-columns: minmax(250px, 1.1fr) minmax(380px, 1.8fr) auto;
	align-items: center;
	gap: 32px;
}

.cdc-site-directory__inner p {
	margin-bottom: 4px;
}

.cdc-site-directory__inner nav {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px 24px;
}

.cdc-site-directory__inner nav a {
	color: var(--cdc-navy);
	font-weight: 750;
	text-decoration: none;
}

.cdc-site-directory__inner nav a:hover,
.cdc-site-directory__inner nav a:focus-visible {
	color: var(--cdc-blue);
}

.cdc-site-directory__close,
.cdc-resource-filter {
	appearance: none;
	background: var(--cdc-white);
	border: 1px solid rgba(29, 114, 184, .28);
	border-radius: 999px;
	color: var(--cdc-navy);
	cursor: pointer;
	font: inherit;
	font-weight: 750;
	padding: 9px 16px;
}

.cdc-site-directory__close:hover,
.cdc-site-directory__close:focus-visible,
.cdc-resource-filter:hover,
.cdc-resource-filter:focus-visible,
.cdc-resource-filter.is-active {
	background: var(--cdc-navy);
	border-color: var(--cdc-navy);
	color: var(--cdc-white);
}

.cdc-resource-hero {
	background: linear-gradient(120deg, #eef7fc 0%, var(--cdc-white) 62%, #f6f3ee 100%);
}

.cdc-resource-privacy {
	background: var(--cdc-navy);
	border-left: 5px solid var(--cdc-teal);
	border-radius: var(--cdc-radius-sm);
	box-shadow: var(--cdc-shadow);
	color: var(--cdc-white);
	padding: clamp(24px, 4vw, 38px);
}

.cdc-resource-privacy strong {
	display: block;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.45rem;
	margin-bottom: 10px;
}

.cdc-resource-privacy p {
	color: rgba(255, 255, 255, .82);
	margin: 0;
}

.cdc-resource-guide-grid,
.cdc-resource-grid,
.cdc-help-link-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.cdc-resource-step,
.cdc-resource-card__category {
	color: var(--cdc-blue);
	display: block;
	font-size: .76rem;
	font-weight: 850;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.cdc-resource-guide-grid .cdc-card {
	display: flex;
	flex-direction: column;
}

.cdc-resource-guide-grid .cdc-text-link {
	margin-top: auto;
}

.cdc-resource-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 28px;
}

.cdc-resource-card {
	background: var(--cdc-white);
	border: 1px solid var(--cdc-line);
	border-radius: var(--cdc-radius-sm);
	box-shadow: 0 14px 34px rgba(16, 42, 67, .09);
	overflow: hidden;
}

.cdc-resource-card[hidden] {
	display: none;
}

.cdc-resource-card__image {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.cdc-resource-card__body {
	padding: 24px;
}

.cdc-resource-card__body h3 {
	margin: 7px 0 10px;
}

.cdc-resource-card__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px 20px;
	margin-top: 18px;
}

.cdc-resource-empty,
.cdc-search-empty {
	background: var(--cdc-soft-blue);
	border: 1px solid rgba(29, 114, 184, .18);
	border-radius: var(--cdc-radius-sm);
	padding: 24px;
}

.cdc-help-link-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-bottom: 36px;
}

.cdc-help-link-grid a {
	color: var(--cdc-text);
	text-decoration: none;
}

.cdc-help-link-grid a:hover,
.cdc-help-link-grid a:focus-visible {
	border-color: var(--cdc-blue);
	box-shadow: var(--cdc-shadow);
	transform: translateY(-2px);
}

.cdc-help-link-grid h2 {
	font-size: 1.28rem;
}

.cdc-search-results {
	max-width: 860px;
}

.cdc-search-results ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.cdc-search-results li {
	border-bottom: 1px solid var(--cdc-line);
}

.cdc-search-results li a {
	display: block;
	color: var(--cdc-navy);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.25rem;
	font-weight: 700;
	padding: 18px 4px;
	text-decoration: none;
}

.cdc-search-results li a:hover,
.cdc-search-results li a:focus-visible {
	color: var(--cdc-blue);
}

#location,
.cdc-resource-library {
	scroll-margin-top: 120px;
}

@media (max-width: 980px) {
	.cdc-site-directory__inner {
		grid-template-columns: 1fr auto;
	}

	.cdc-site-directory__inner nav {
		grid-column: 1 / -1;
		grid-row: 2;
		justify-content: flex-start;
	}

	.cdc-resource-guide-grid,
	.cdc-resource-grid,
	.cdc-help-link-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.cdc-breadcrumbs .cdc-container {
		width: min(100% - 32px, var(--cdc-content-width));
	}

	.cdc-site-directory__inner {
		width: min(100% - 36px, var(--cdc-content-width));
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.cdc-site-directory__inner nav {
		grid-column: auto;
		grid-row: auto;
		display: grid;
		grid-template-columns: 1fr 1fr;
		justify-content: stretch;
	}

	.cdc-site-directory__close {
		justify-self: start;
	}

	.cdc-resource-guide-grid,
	.cdc-resource-grid,
	.cdc-help-link-grid {
		grid-template-columns: 1fr;
	}

	.cdc-resource-filter {
		font-size: .9rem;
	}
}
