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

html {
	min-height: 100%;
	scroll-behavior: smooth;
}

body {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
	margin: 0;
	background: var(--color-paper);
	color: var(--color-ink);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.42;
}

.site-main {
	flex: 1 0 auto;
}

img,
svg {
	display: block;
}

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

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

button,
input,
textarea,
select {
	font: inherit;
}

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

.skip-link:focus {
	position: fixed;
	z-index: 1000;
	top: 1rem;
	left: 1rem;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	clip: auto;
	background: var(--color-accent);
	color: var(--color-white);
	border-radius: 6px;
}

.container {
	width: min(calc(100% - 2rem), var(--container));
	margin-inline: auto;
}

.section {
	padding-block: var(--space-8);
}

.section-heading {
	margin-bottom: var(--space-6);
}

.section-heading p {
	margin: 0;
	color: var(--color-ink);
	font-size: 1.25rem;
}

.section-title {
	position: relative;
	margin: 0;
	padding-bottom: 0.85rem;
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: 0;
}

.section-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 215px;
	max-width: 100%;
	height: 4px;
	background: var(--color-line);
	border-radius: var(--radius-pill);
}

.section-heading--copy-rule {
	--copy-rule-width: 100%;
	--copy-rule-height: 4px;
}

.section-heading__copy {
	position: relative;
	display: inline-grid;
	width: max-content;
	max-width: 100%;
	padding-bottom: 0.85rem;
}

.section-heading__copy::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: var(--copy-rule-width);
	max-width: 100%;
	height: var(--copy-rule-height);
	background: var(--color-line);
	border-radius: var(--radius-pill);
}

.section-heading__copy .section-title {
	padding-bottom: 0;
}

.section-heading__copy .section-title::after {
	display: none;
}

.section-lead {
	max-width: 850px;
	margin: 0 0 var(--space-5);
}

.rule {
	width: 100%;
	height: 4px;
	margin: 0.85rem 0 var(--space-5);
	background: var(--color-line);
	border-radius: var(--radius-pill);
}

.button {
	display: inline-flex;
	min-width: 205px;
	min-height: 58px;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 1.8rem;
	border-radius: var(--radius-pill);
	background: var(--color-accent);
	color: var(--color-white);
	font-size: 1rem;
	font-weight: 400;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 180ms ease;
}

.button:hover,
.button:focus-visible {
	background: var(--color-button-hover);
}

.site-header {
	position: relative;
	z-index: 50;
	background: var(--color-band);
}

.site-header__inner,
.site-footer__inner {
	width: min(calc(100% - 2rem), var(--container-wide));
	margin-inline: auto;
}

.site-header__inner {
	display: flex;
	min-height: var(--header-height);
	align-items: center;
	justify-content: space-between;
	gap: var(--space-6);
}

.menu {
	display: flex;
	align-items: center;
	gap: 2.35rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-menu a,
.footer-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 2.4rem;
	color: var(--color-ink);
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0;
	text-decoration: none;
	text-transform: uppercase;
}

.site-menu a {
	position: relative;
	z-index: 0;
	transition: color 180ms ease;
}

.site-menu a::before {
	content: "";
	position: absolute;
	z-index: -1;
	left: -16px;
	top: 50%;
	width: calc(100% + 32px);
	height: 24px;
	border-radius: 12px;
	background: var(--color-accent);
	transform: translateY(-50%) scaleX(0);
	transform-origin: left center;
	transition: transform 220ms ease;
}

.site-menu a:hover,
.site-menu a:focus-visible {
	color: var(--color-white);
	text-decoration: none;
}

.site-menu a:hover::before,
.site-menu a:focus-visible::before {
	transform: translateY(-50%) scaleX(1);
}

.footer-menu a:hover,
.footer-menu a:focus-visible {
	text-decoration: underline;
}

.site-follow,
.social-links {
	display: flex;
	align-items: center;
}

.site-follow {
	gap: 1rem;
	margin-left: auto;
	font-size: 1rem;
	font-weight: 400;
	text-transform: uppercase;
	white-space: nowrap;
}

.site-follow__arrow .theme-icon {
	width: 29px;
	height: 15px;
	stroke-width: 1.6;
}

.social-links {
	gap: 1rem;
}

.social-links a {
	display: inline-flex;
	width: 34px;
	height: 34px;
	align-items: center;
	justify-content: center;
	color: currentColor;
	text-decoration: none;
}

.theme-icon {
	display: block;
	flex: 0 0 auto;
	max-width: 100%;
	max-height: 100%;
	overflow: hidden;
}

.social-links .theme-icon {
	width: 34px;
	height: 34px;
}

.social-links .theme-icon--linkedin,
.social-links .theme-icon--linkedin-footer {
	width: 29px;
	height: 29px;
}

.nav-toggle {
	display: none;
	border: 0;
	background: transparent;
	color: var(--color-ink);
	cursor: pointer;
}

.nav-toggle .theme-icon {
	width: 32px;
	height: 32px;
}

.nav-toggle__icon--close {
	display: none;
}

.mobile-menu-follow {
	display: none;
}

.site-footer {
	flex-shrink: 0;
	background: var(--color-accent);
	color: var(--color-white);
}

.site-footer__inner {
	display: flex;
	min-height: 66px;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-6);
}

.footer-menu a {
	color: var(--color-white);
}

.site-footer .social-links {
	color: var(--color-white);
}

.site-footer .social-links a {
	width: 34px;
	height: 34px;
}

.site-footer .social-links .theme-icon--instagram-footer {
	width: 34px;
	height: 34px;
}

.site-footer .social-links .theme-icon--linkedin-footer {
	width: 29px;
	height: 29px;
}

.cookie-banner {
	position: fixed;
	z-index: 100;
	right: 24px;
	bottom: 24px;
	left: 24px;
	pointer-events: none;
}

.cookie-banner[hidden] {
	display: none;
}

.cookie-banner__inner {
	display: flex;
	width: min(100%, 860px);
	align-items: center;
	justify-content: space-between;
	gap: var(--space-5);
	padding: 1rem 1rem 1rem 1.25rem;
	margin-inline: auto;
	border: 1px solid var(--color-line);
	border-radius: 8px;
	background: var(--color-surface);
	box-shadow: 0 16px 40px rgb(36 32 30 / 0.16);
	color: var(--color-ink);
	pointer-events: auto;
}

.cookie-banner__inner p {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.35;
}

.cookie-banner__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex: 0 0 auto;
}

.cookie-banner__button {
	display: inline-flex;
	min-width: 132px;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	padding: 0.72rem 1.25rem;
	border: 0;
	border-radius: var(--radius-pill);
	background: var(--color-accent);
	color: var(--color-white);
	cursor: pointer;
	font-size: 0.875rem;
	text-align: center;
	text-transform: uppercase;
	transition: background 180ms ease;
}

.cookie-banner__button--secondary {
	background: var(--color-accent);
	color: var(--color-white);
}

.cookie-banner__button:hover,
.cookie-banner__button:focus-visible {
	background: var(--color-button-hover);
}

.cookie-banner__button--secondary:hover,
.cookie-banner__button--secondary:focus-visible {
	background: var(--color-button-hover);
	color: var(--color-white);
}

.hero {
	background: var(--color-paper);
}

.hero--home {
	position: relative;
	padding-block: 102px 0;
	overflow: hidden;
}

.hero--home::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 112px;
	background: var(--color-band);
	pointer-events: none;
	z-index: 0;
}

.hero--about {
	padding-block: 104px 90px;
}

.hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 450px 1fr;
	grid-template-areas:
		"image content"
		"image cta";
	align-items: start;
	column-gap: 32px;
	row-gap: 28px;
}

.hero__grid--about {
	grid-template-columns: 451px 1fr;
	grid-template-areas:
		"image content"
		"image cta";
	column-gap: 32px;
	row-gap: 18px;
}

.framed-image {
	overflow: hidden;
	margin: 0;
	border: 12px solid var(--color-accent);
	border-radius: var(--radius-media);
	background: var(--color-surface);
}

.framed-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero__image {
	grid-area: image;
	aspect-ratio: 450 / 540;
}

.hero__image--about {
	aspect-ratio: 451 / 677;
}

.hero__content {
	grid-area: content;
	align-self: start;
}

.hero__content h1,
.offer-intro__heading h1 {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: 0;
}

.hero__subtitle,
.offer-intro__heading p {
	margin: 0.15rem 0 0;
	font-size: 1.25rem;
	line-height: 1.2;
}

.hero__content p {
	max-width: 720px;
	margin: 0 0 1.18rem;
}

.hero__cta {
	grid-area: cta;
	align-self: start;
	margin-top: 2px;
	text-align: right;
}

.hero__content--about p {
	max-width: none;
	margin-bottom: 0.82rem;
	font-size: 0.96rem;
	line-height: 1.25;
}

@media (min-width: 1101px) {
	.hero--home .hero__cta {
		grid-area: 1 / 1 / -1 / -1;
		position: absolute;
		top: 330px;
		right: 0;
		width: 638px;
	}
}

.intro-band {
	background: var(--color-band);
	padding-block: 42px 78px;
}

.intro-band__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 220px;
	align-items: end;
	gap: var(--space-7);
}

.intro-band__copy {
	max-width: 900px;
	padding-left: 88px;
}

.intro-band__copy p {
	margin: 0 0 1.45rem;
	font-size: 1.25rem;
	font-style: italic;
	font-weight: 700;
	line-height: 1.18;
}

.intro-band__copy p:last-child {
	margin-bottom: 0;
}

.intro-band__action {
	justify-self: end;
	padding-bottom: 1.6rem;
	text-align: right;
}

.support-section {
	background: var(--color-surface);
}

.support-section__grid {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(280px, 352px);
	gap: var(--space-6);
	align-items: start;
}

.support-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem 1.75rem;
}

.support-card {
	overflow: hidden;
	border: 3px solid var(--color-accent);
	border-radius: var(--radius-card);
	background: var(--color-surface);
}

.support-card h3 {
	display: flex;
	min-height: 56px;
	align-items: center;
	justify-content: center;
	padding: 0.7rem 1rem;
	margin: 0;
	background: var(--color-band);
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.18;
	text-align: center;
}

.support-card ul {
	padding: 1rem 1.2rem 1.2rem 1.65rem;
	margin: 0;
}

.support-card li {
	margin-bottom: 0.32rem;
}

.clinical-aside img,
.personal-growth img,
.single-post__image img {
	border-radius: var(--radius-media);
}

.work-for__photo {
	width: min(100%, 352px);
	aspect-ratio: 352 / 350;
	margin: 0;
	overflow: hidden;
	border-radius: 37px;
}

.work-for__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 0;
}

.work-for h3 {
	margin: 1rem 0 0.78rem;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.1;
}

.work-for p,
.work-for li {
	font-size: 0.75rem;
	line-height: 1.17;
}

.work-for p {
	margin: 0;
}

.work-for ul {
	padding-left: 0;
	margin: 0.92rem 0 1.95rem;
	list-style: none;
}

.work-for li {
	position: relative;
	padding-left: 1rem;
}

.work-for li::before {
	content: "\2013";
	position: absolute;
	left: 0;
}

.spaced-list li {
	position: relative;
	padding-left: 1.05rem;
}

.spaced-list li::before {
	content: "-";
	position: absolute;
	left: 0;
}

.work-for .button {
	min-width: 226px;
}

.workshops-band {
	overflow: hidden;
	padding-block-end: 0;
	background: var(--color-surface);
}

.workshops-band .section-heading {
	margin-bottom: 3.75rem;
}

.workshop-features {
	position: relative;
	z-index: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--space-7);
	padding-block: 4.25rem var(--space-7);
}

.workshop-features::before {
	content: "";
	position: absolute;
	z-index: 0;
	inset: 0 calc(50% - 50vw);
	background: var(--color-band);
}

.workshop-features > * {
	position: relative;
	z-index: 1;
}

.workshop-features article {
	display: grid;
	justify-items: center;
	gap: var(--space-4);
	text-align: left;
}

.workshop-features .theme-icon {
	width: 78px;
	height: 78px;
	color: var(--color-accent);
	stroke-width: 1.45;
	margin-inline: auto;
}

.workshop-features p {
	margin: 0;
	font-size: 1.25rem;
	font-style: italic;
	font-weight: 700;
	line-height: 1.18;
}

.contact-section {
	background: var(--color-surface);
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 674px) minmax(280px, 392px);
	gap: 4.25rem;
	align-items: start;
}

.contact-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--space-6);
	margin-bottom: var(--space-7);
}

.contact-pill {
	display: grid;
	min-height: 80px;
	align-content: center;
	justify-items: center;
	padding: 0.8rem 1.4rem;
	border-radius: var(--radius-pill);
	background: var(--color-accent);
	color: var(--color-white);
	text-align: center;
	text-decoration: none;
}

.contact-pill strong {
	font-size: 1.25rem;
	line-height: 1.1;
	text-transform: uppercase;
}

.contact-pill span {
	font-size: 0.92rem;
}

.contact-list {
	padding: 0;
	margin: 0 0 var(--space-7);
	list-style: none;
}

.contact-list li {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	align-items: center;
	gap: var(--space-4);
	min-height: 54px;
	border-bottom: 5px solid var(--color-line);
	font-size: 1.25rem;
}

.contact-list a {
	text-decoration: none;
}

.contact-list .theme-icon {
	width: 28px;
	height: 28px;
	stroke-width: 1.9;
	justify-self: center;
}

.contact-map {
	margin: 0;
	overflow: hidden;
	background: var(--color-band);
}

.contact-map iframe {
	display: block;
	width: 100%;
	height: 262px;
	border: 0;
}

.contact-widgets {
	display: grid;
	gap: 1.5rem;
	justify-items: start;
}

.doctor-frame {
	background: transparent;
}

.doctor-frame--profile {
	width: min(100%, var(--doctor-profile-width));
}

.doctor-frame--widget {
	min-height: var(--doctor-profile-height);
}

.doctor-frame--widget .zl-url {
	display: inline-flex;
	width: 100%;
	min-height: 58px;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 1.8rem;
	border-radius: var(--radius-pill);
	background: var(--color-accent);
	color: var(--color-white);
	font-size: 1rem;
	font-weight: 400;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 180ms ease;
}

.doctor-frame--widget .zl-url:hover,
.doctor-frame--widget .zl-url:focus-visible {
	background: var(--color-button-hover);
}

.doctor-frame--widget iframe {
	max-width: 100%;
}

.doctor-frame--rating {
	width: min(100%, var(--doctor-rating-width));
}

.doctor-frame img {
	width: 100%;
	height: auto;
}

.offer-intro {
	padding-block: 106px 60px;
	background: var(--color-surface);
}

.offer-intro__heading {
	width: min(100%, 390px);
}

.services-band {
	background: var(--color-band);
}

.service-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--space-6);
	margin-top: var(--space-7);
	text-align: center;
}

.service-list article,
.service-list__item {
	display: grid;
	justify-items: center;
	gap: var(--space-4);
}

.service-list__item {
	color: inherit;
	text-decoration: none;
}

.service-list__item:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 0.35rem;
	border-radius: var(--radius-card);
}

.service-list .theme-icon {
	width: 78px;
	height: 78px;
	color: var(--color-accent);
	stroke-width: 1.45;
	margin-inline: auto;
}

.service-list h3 {
	margin: 0;
	font-size: 1.25rem;
	font-style: italic;
	font-weight: 700;
}

.clinical-section,
.personal-growth,
.organizations-section,
.archive-hero,
.page-content,
article.single-post {
	background: var(--color-surface);
}

.clinical-section,
.personal-growth,
.organizations-section {
	scroll-margin-top: calc(var(--header-height) + var(--space-4));
}

.section-heading--with-icons {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: var(--space-6);
}

.heading-icons {
	display: flex;
	gap: 1.4rem;
	color: var(--color-accent);
}

.heading-icons .theme-icon {
	width: 66px;
	height: 66px;
}

.clinical-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 352px);
	gap: var(--space-6);
	align-items: start;
}

.support-cards--clinical {
	gap: 1.45rem 2rem;
}

.clinical-aside {
	display: grid;
	gap: var(--space-5);
	align-content: start;
	justify-items: stretch;
}

.clinical-aside .button {
	width: 100%;
}

.personal-growth__grid {
	display: grid;
	grid-template-columns: minmax(250px, 332px) minmax(0, 1fr);
	gap: var(--space-7);
	align-items: center;
}

.personal-growth__grid .section-heading {
	grid-column: 1 / -1;
	margin-bottom: 0;
}

.spaced-list {
	display: grid;
	gap: 1rem;
	padding-left: 0;
	margin: 1rem 0 0;
	list-style: none;
}

.wide-copy {
	max-width: 1100px;
}

.wide-copy p {
	margin: 0 0 1.25rem;
}

.wide-copy .quote {
	margin-top: var(--space-7);
	font-size: 1.15rem;
	font-style: italic;
	font-weight: 700;
}

.topics-heading {
	margin: var(--space-7) 0 var(--space-5);
	font-size: 1.1rem;
}

.training-topics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2rem;
	align-items: stretch;
}

.topic-card {
	padding: 1.3rem 1.4rem;
	border: 3px solid var(--color-accent);
	border-radius: var(--radius-card);
	background: var(--color-surface);
}

.topic-card h4 {
	margin: 0 0 1rem;
	font-size: 1rem;
	line-height: 1.2;
	text-align: center;
}

.topic-card p {
	margin: 0;
}

.topic-card--cta {
	display: grid;
	place-items: center;
	border-color: transparent;
}

.archive-hero {
	min-height: 70vh;
}

.posts-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--space-6);
}

.post-card {
	overflow: hidden;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-card);
	background: var(--color-surface);
	box-shadow: 0 12px 30px rgb(36 32 30 / 0.05);
}

.post-card__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: var(--color-band);
	text-decoration: none;
}

.post-card__media img,
.post-card__placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-card__placeholder {
	display: block;
	background:
		linear-gradient(135deg, rgb(81 95 103 / 0.18), rgb(235 225 216 / 0.9)),
		var(--color-band);
}

.post-card__body {
	padding: 1.2rem;
}

.post-card__date {
	display: block;
	margin-bottom: 0.55rem;
	color: var(--color-muted);
	font-size: 0.9rem;
}

.post-card__title {
	margin: 0 0 0.8rem;
	font-size: 1.35rem;
	line-height: 1.18;
}

.post-card__title a {
	text-decoration: none;
}

.post-card__excerpt p {
	margin: 0;
}

.pagination,
.page-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 12px;
	margin-top: var(--space-7);
}

.pagination .page-numbers,
.page-links span,
.page-links a {
	display: inline-grid;
	min-width: 35px;
	height: 35px;
	place-items: center;
	border-radius: var(--radius-pill);
	background: var(--color-pagination);
	color: var(--color-white);
	font-size: 1.5rem;
	line-height: 1;
	text-decoration: none;
	transition: background 180ms ease;
}

.pagination a.page-numbers:not(.prev):not(.next):hover,
.pagination a.page-numbers:not(.prev):not(.next):focus-visible,
.page-links a:not(.prev):not(.next):hover,
.page-links a:not(.prev):not(.next):focus-visible {
	background: var(--color-button-hover);
}

.pagination .prev,
.pagination .next,
.page-links .prev,
.page-links .next {
	min-width: 17px;
	width: 17px;
	background: transparent;
	color: var(--color-accent);
}

.pagination .disabled,
.page-links .disabled {
	opacity: 0.35;
	pointer-events: none;
}

.pagination__arrow {
	width: 17px;
	height: 35px;
	overflow: visible;
}

.pagination .current,
.page-links .current {
	background: var(--color-button-hover);
}

article.single-post {
	padding-block: 98px var(--space-8);
}

.single-post__header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: var(--space-5);
	margin-bottom: var(--space-7);
}

.single-post__header .section-title {
	width: max-content;
	max-width: 100%;
}

.single-post__header .section-title::after {
	width: 100%;
}

.single-post__header time {
	padding-bottom: 0.8rem;
	font-size: 1.25rem;
}

.single-post__image {
	margin-block: 0 var(--space-7);
	overflow: hidden;
	aspect-ratio: 1121 / 339;
	border-radius: var(--radius-media);
}

.single-post__image img {
	width: 100%;
	height: 100%;
	max-height: none;
	object-fit: cover;
}

.entry-content {
	font-size: 0.9375rem;
	line-height: 1.2;
}

.entry-content > * {
	margin-top: 0;
	margin-bottom: 1.35rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-top: var(--space-7);
	line-height: 1.18;
}

.entry-content h2 {
	font-size: 1.25rem;
	font-family: var(--font-sans);
	font-weight: 700;
}

.entry-content h3 {
	font-size: 1.25rem;
	font-family: var(--font-sans);
	font-weight: 700;
}

.entry-content img {
	border-radius: var(--radius-media);
}

.entry-content .alignwide {
	max-width: var(--container-wide);
}

.entry-content .aligncenter {
	margin-inline: auto;
}

.post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: var(--space-5);
	padding-bottom: var(--space-8);
}

.post-navigation__prev {
	justify-self: start;
}

.post-navigation__next {
	justify-self: end;
}

.post-navigation__link {
	display: inline-grid;
	width: 17px;
	height: 35px;
	place-items: center;
	color: var(--color-accent);
	text-decoration: none;
	transition: color 180ms ease;
}

.post-navigation__link:hover,
.post-navigation__link:focus-visible {
	color: var(--color-button-hover);
}

.post-navigation__link .pagination__arrow {
	width: 17px;
	height: 35px;
}

.empty-state {
	margin: 0;
	font-size: 1.1rem;
}

.not-found .button {
	margin-top: var(--space-5);
}

@media (max-width: 1100px) {
	:root {
		--container: 680px;
		--container-wide: 704px;
		--header-height: 59px;
	}

	.site-header__inner {
		gap: var(--space-4);
	}

	.nav-toggle {
		display: inline-flex;
		width: 42px;
		height: 42px;
		align-items: center;
		justify-content: center;
		padding: 0;
	}

	.nav-toggle .theme-icon {
		width: 37px;
		height: 30px;
	}

	.site-nav--primary {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: block;
		max-height: 0;
		overflow: hidden;
		padding: 0;
		background: var(--color-band);
		box-shadow: none;
		opacity: 0;
		pointer-events: none;
		transform: translateY(-12px);
		transition: max-height 320ms ease, opacity 220ms ease, transform 320ms ease, visibility 0s linear 320ms;
		visibility: hidden;
	}

	.site-header.is-open .site-nav--primary {
		max-height: 520px;
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
		transition: max-height 360ms ease, opacity 220ms ease, transform 360ms ease;
		visibility: visible;
	}

	.site-header.is-open .nav-toggle__icon--open {
		display: block;
	}

	.site-header.is-open .nav-toggle__icon--close {
		display: none;
	}

	.site-menu {
		width: 100%;
		margin-inline: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		border-top: 2px solid var(--color-accent);
	}

	.site-menu a {
		width: 100%;
		min-height: 44px;
		justify-content: center;
		border-bottom: 2px solid var(--color-accent);
		font-size: 1rem;
		font-weight: 400;
	}

	.site-menu a::before {
		display: none;
	}

	.site-menu a:hover,
	.site-menu a:focus-visible {
		color: var(--color-ink);
	}

	.site-follow {
		gap: 0.8rem;
		margin-left: 0;
	}

	.hero--home,
	.hero--about,
	.offer-intro {
		padding-block-start: var(--space-6);
	}

	.hero--home::after {
		height: 88px;
	}

	.hero__grid,
	.hero__grid--about {
		grid-template-columns: 331px minmax(0, 1fr);
		grid-template-areas:
			"image content"
			"image cta";
		column-gap: 18px;
		row-gap: 14px;
		align-items: start;
	}

	.hero__content h1,
	.offer-intro__heading h1 {
		font-size: 1.25rem;
	}

	.hero__subtitle,
	.offer-intro__heading p {
		font-size: 1rem;
	}

	.hero__content p {
		font-size: 0.75rem;
	}

	.hero__content--about p {
		font-size: 0.9rem;
	}

	.hero__cta {
		margin-top: 0;
		text-align: left;
	}

	.hero--home .hero__cta {
		position: relative;
		z-index: 2;
		transform: translateY(-24px);
	}

	.button {
		min-width: 176px;
		min-height: 43px;
		padding: 0.55rem 1.2rem;
		font-size: 0.875rem;
	}

	.section-title {
		font-size: 1.25rem;
		padding-bottom: 0.72rem;
	}

	.section-title::after {
		width: 112px;
		height: 3px;
	}

	.section-heading p {
		font-size: 1rem;
	}

	.section-heading--copy-rule {
		--copy-rule-height: 3px;
	}

	.section-heading__copy {
		padding-bottom: 0.72rem;
	}

	.intro-band__inner {
		grid-template-columns: 1fr;
		gap: var(--space-5);
	}

	.intro-band__copy {
		padding-left: 0;
	}

	.intro-band__copy p {
		font-size: 1rem;
		line-height: 1.15;
	}

	.intro-band__action {
		justify-self: end;
		padding-bottom: 0;
	}

	.support-card h3 {
		font-size: 1rem;
	}

	.support-section__grid {
		grid-template-columns: 1fr;
	}

	.work-for {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(260px, 331px);
		gap: var(--space-5);
		align-items: start;
	}

	.work-for__photo {
		grid-column: 2;
		grid-row: 1 / span 4;
		width: min(100%, 331px);
	}

	.work-for h3 {
		margin: 0 0 0.95rem;
		font-size: 1rem;
		line-height: 1.1;
	}

	.work-for h3::before {
		content: "\201e";
	}

	.work-for ul {
		margin: 0.92rem 0 1.55rem;
	}

	.work-for .button {
		min-width: 163px;
		min-height: 43px;
		padding: 0.62rem 1.35rem;
		font-size: 0.875rem;
	}

	.workshops-band .section-heading {
		margin-bottom: 2rem;
	}

	.workshop-features {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: var(--space-5);
		padding-block-start: 3.75rem;
	}

	.workshop-features p {
		font-size: 1rem;
		line-height: 1.15;
	}

	.workshop-features article:last-child {
		grid-column: 1 / -1;
		justify-self: center;
		max-width: 430px;
	}

	.contact-layout {
		grid-template-columns: 1fr;
		gap: var(--space-6);
	}

	.contact-map iframe {
		height: 264px;
	}

	.contact-widgets {
		grid-template-columns: minmax(0, var(--doctor-profile-width));
		align-items: start;
		justify-items: start;
	}

	.doctor-frame--profile {
		width: min(100%, var(--doctor-profile-width));
	}

	.service-list {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: var(--space-4);
	}

	.service-list h3 {
		font-size: 1rem;
	}

	.clinical-grid {
		grid-template-columns: 1fr;
	}

	.clinical-aside {
		grid-template-columns: minmax(260px, 330px) minmax(180px, 1fr);
		align-items: end;
	}

	.clinical-aside .button {
		width: auto;
		justify-self: start;
	}

	.single-post__header time {
		font-size: 1rem;
	}

	.entry-content {
		font-size: 0.75rem;
		line-height: 1.17;
	}

	.entry-content h2,
	.entry-content h3 {
		font-size: 1rem;
	}

	.training-topics,
	.posts-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	:root {
		--container: 358px;
		--container-wide: 358px;
		--space-8: 3rem;
		--space-9: 4rem;
		--doctor-profile-width: 358px;
		--doctor-rating-width: 276px;
	}

	body {
		font-size: 16px;
	}

	.site-header__inner,
	.site-footer__inner,
	.container {
		width: min(calc(100% - 32px), var(--container));
	}

	.site-header__inner {
		width: 100%;
		padding-inline: 14px;
	}

	.site-follow {
		display: none;
	}

	.site-menu {
		width: 100%;
	}

	.site-follow > span:first-child,
	.site-follow__arrow {
		display: none;
	}

	.mobile-menu-follow {
		display: flex;
		min-height: 45px;
		align-items: center;
		justify-content: center;
		gap: 1.45rem;
		background: var(--color-accent);
		color: var(--color-white);
		font-size: 1rem;
		text-transform: uppercase;
	}

	.mobile-menu-follow__arrow .theme-icon {
		width: 29px;
		height: 15px;
	}

	.mobile-menu-follow .social-links {
		gap: 1.45rem;
	}

	.social-links a {
		width: 28px;
		height: 28px;
	}

	.social-links .theme-icon {
		width: 28px;
		height: 28px;
	}

	.social-links .theme-icon--linkedin,
	.social-links .theme-icon--linkedin-footer {
		width: 24px;
		height: 24px;
	}

	.site-footer .social-links a {
		width: 34px;
		height: 34px;
	}

	.site-footer .social-links .theme-icon--instagram-footer {
		width: 34px;
		height: 34px;
	}

	.site-footer .social-links .theme-icon--linkedin-footer {
		width: 29px;
		height: 29px;
	}

	.site-footer__inner {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: end;
		min-height: 114px;
		padding-block: 22px 18px;
	}

	.footer-menu {
		flex-wrap: wrap;
		gap: 0.65rem 1.45rem;
	}

	.footer-menu a {
		min-height: 24px;
		font-size: 0.875rem;
	}

	.site-footer__social {
		align-self: end;
	}

	.cookie-banner {
		right: 16px;
		bottom: 16px;
		left: 16px;
	}

	.cookie-banner__inner {
		display: grid;
		gap: 0.85rem;
		padding: 0.95rem;
	}

	.cookie-banner__inner p {
		font-size: 0.875rem;
	}

	.cookie-banner__actions {
		display: grid;
		width: 100%;
		gap: 0.65rem;
	}

	.cookie-banner__button {
		width: 100%;
		min-height: 43px;
	}

	.section-title {
		font-size: 1.25rem;
		padding-bottom: 0.72rem;
	}

	.section-title::after {
		width: 112px;
		height: 3px;
	}

	.section-heading {
		margin-bottom: 1.45rem;
	}

	.section-heading p {
		font-size: 1rem;
	}

	.section {
		padding-block: 2.35rem;
	}

	.hero--home {
		padding-block-start: 37px;
	}

	.hero--home::after {
		display: block;
		height: 190px;
	}

	.hero--about {
		padding-block: 43px 35px;
	}

	.offer-intro {
		padding-block: 42px 38px;
	}

	.services-band {
		padding-block: 22px 32px;
	}

	.clinical-section,
	.personal-growth,
	.organizations-section {
		padding-block: 2.2rem;
	}

	.hero__grid,
	.hero__grid--about {
		grid-template-columns: 1fr;
		grid-template-areas:
			"content"
			"image"
			"cta";
		row-gap: 16px;
	}

	.hero--home .hero__image {
		width: min(calc(100vw - 32px), 358px);
		max-width: none;
		aspect-ratio: 358 / 433;
		margin-inline: auto;
	}

	.hero--about .hero__image {
		width: min(calc(100vw - 32px), 358px);
		max-width: none;
		margin-inline: auto;
	}

	.framed-image {
		border-width: 5px;
		border-radius: 14px;
	}

	.hero__image--about {
		border-width: 7px;
		border-radius: 28px;
	}

	.hero__content h1,
	.offer-intro__heading h1 {
		font-size: 1.25rem;
		line-height: 1.05;
	}

	.hero__subtitle,
	.offer-intro__heading p {
		font-size: 1rem;
		line-height: 1.05;
	}

	.hero__content p {
		margin-bottom: 0.86rem;
		font-size: 0.75rem;
		line-height: 1.17;
	}

	.hero__content--about p {
		margin-bottom: 1rem;
		font-size: 0.875rem;
		line-height: 1.18;
	}

	.hero__cta,
	.intro-band__action {
		text-align: left;
		justify-self: center;
	}

	.hero__cta {
		margin-top: 0;
	}

	.hero--home .hero__cta {
		margin-top: 15px;
		transform: none;
	}

	.button {
		min-width: 172px;
		min-height: 41px;
		padding: 0.55rem 1.25rem;
		font-size: 0.875rem;
	}

	.intro-band {
		padding-block: 24px 32px;
	}

	.intro-band__copy p {
		margin-bottom: 1.05rem;
		font-size: 1rem;
		line-height: 1.08;
	}

	.support-cards,
	.support-cards--clinical,
	.workshop-features,
	.training-topics,
	.posts-grid,
	.contact-actions,
	.contact-widgets {
		grid-template-columns: 1fr;
	}

	.service-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2rem 2.2rem;
		margin-top: 2rem;
	}

	.service-list .theme-icon {
		width: 58px;
		height: 58px;
	}

	.service-list h3 {
		font-size: 0.875rem;
	}

	.section-heading--with-icons {
		align-items: start;
	}

	.heading-icons .theme-icon {
		width: 48px;
		height: 48px;
	}

	.section-lead {
		max-width: 329px;
		margin-inline: auto;
		font-size: 0.6875rem;
		line-height: 1.18;
	}

	.support-section {
		padding-block: 2rem;
	}

	.support-cards {
		gap: 1rem;
	}

	.support-cards .support-card:nth-child(1) {
		order: 1;
	}

	.support-cards .support-card:nth-child(2) {
		order: 4;
	}

	.support-cards .support-card:nth-child(3) {
		order: 2;
	}

	.support-cards .support-card:nth-child(4) {
		order: 5;
	}

	.support-cards .support-card:nth-child(5) {
		order: 3;
	}

	.support-cards .support-card:nth-child(6) {
		order: 6;
	}

	.support-card {
		border-width: 2px;
		border-radius: 9px;
	}

	.support-card h3 {
		min-height: 44px;
		padding: 0.45rem 0.8rem;
		font-size: 1rem;
	}

	.support-card ul {
		padding: 0.82rem 1rem 0.95rem 1.55rem;
		font-size: 0.875rem;
		line-height: 1.18;
	}

	.work-for {
		display: block;
	}

	.work-for__photo {
		margin: 1.65rem auto 1rem;
		width: min(100%, 331px);
	}

	.work-for h3 {
		margin: 1.55rem 0 1rem;
		font-size: 1rem;
		line-height: 1.1;
	}

	.work-for p,
	.work-for li {
		font-size: 0.75rem;
		line-height: 1.16;
	}

	.work-for ul {
		margin: 0.92rem 0 1.55rem;
	}

	.work-for .button {
		display: flex;
		width: max-content;
		min-width: 169px;
		max-width: 100%;
		margin-inline: auto;
	}

	.workshops-band .section-heading {
		margin-bottom: 2.55rem;
	}

	.workshop-features {
		gap: 1.1rem;
		padding-block-start: 2.4rem;
	}

	.workshop-features .theme-icon {
		width: 48px;
		height: 48px;
		margin-inline: 0;
	}

	.workshop-features article {
		grid-template-columns: 58px minmax(0, 1fr);
		justify-items: start;
		align-items: center;
		text-align: left;
	}

	.workshop-features p {
		font-size: 1rem;
		line-height: 1.15;
	}

	.workshop-features article:last-child {
		grid-column: auto;
		justify-self: stretch;
		max-width: none;
	}

	.contact-section {
		padding-block: 2.35rem 2rem;
	}

	.contact-actions {
		gap: 2.25rem;
		margin: 2rem 0 2.15rem;
		justify-items: center;
	}

	.contact-pill {
		width: 264px;
		min-height: 80px;
	}

	.contact-list li {
		grid-template-columns: 34px minmax(0, 1fr);
		min-height: 58px;
		border-bottom-width: 4px;
		font-size: 1rem;
		line-height: 1.25;
	}

	.contact-pill strong {
		font-size: 1rem;
	}

	.contact-pill span {
		font-size: 0.95rem;
	}

	.contact-map {
		margin-top: 1.55rem;
	}

	.contact-map iframe {
		height: 191px;
	}

	.doctor-frame--profile {
		width: min(100%, 370px);
		min-height: 325px;
	}

	.doctor-frame--rating {
		width: min(100%, var(--doctor-rating-width));
		justify-self: center;
	}

	.section-heading--with-icons,
	.single-post__header {
		display: block;
	}

	.heading-icons {
		margin-top: var(--space-4);
	}

	.clinical-aside,
	.personal-growth__grid {
		grid-template-columns: 1fr;
	}

	.clinical-aside {
		gap: 1rem;
	}

	.clinical-aside img,
	.personal-growth img {
		width: min(100%, 331px);
		margin-inline: auto;
	}

	.clinical-aside .button {
		justify-self: stretch;
		width: 100%;
	}

	.personal-growth__grid {
		gap: var(--space-5);
	}

	.spaced-list {
		gap: 0.75rem;
		font-size: 0.75rem;
		line-height: 1.2;
	}

	.wide-copy,
	.topic-card p {
		font-size: 0.75rem;
		line-height: 1.2;
	}

	.wide-copy .quote {
		margin-top: 1.8rem;
		font-size: 0.875rem;
		line-height: 1.16;
	}

	.topic-card {
		border-width: 2px;
		border-radius: 9px;
		padding: 1rem;
	}

	.topic-card h4 {
		font-size: 0.875rem;
	}

	article.single-post {
		padding-block-start: 42px;
	}

	.single-post__header time {
		display: none;
	}

	.single-post__header {
		margin-bottom: 1.55rem;
	}

	.single-post__image {
		margin-bottom: 2.45rem;
		aspect-ratio: 358 / 229;
	}

	.single-post__image img {
		max-height: none;
		border-radius: 14px;
	}

	.entry-content {
		font-size: 0.75rem;
		line-height: 1.18;
	}

	.entry-content h2 {
		font-size: 0.9375rem;
	}

	.entry-content h3 {
		font-size: 0.9375rem;
	}

	.post-navigation {
		display: grid;
	}
}

.offer-intro__heading {
	position: relative;
	display: inline-grid;
	width: max-content;
	max-width: 100%;
	padding-bottom: 1.7rem;
}

.offer-intro__heading::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: clamp(3px, 0.35vw, 5px);
	border-radius: var(--radius-pill);
	background: var(--color-line);
}

.services-band .section-title::after {
	display: none;
}

.clinical-section .section-heading--with-icons,
.organizations-section .section-heading--with-icons {
	justify-content: flex-start;
	align-items: flex-end;
}

.clinical-section .section-heading__copy {
	padding-bottom: 1.55rem;
}

.clinical-section .section-title {
	padding-bottom: 0;
}

.clinical-section .section-title::after {
	display: none;
}

.personal-growth .section-title,
.organizations-section .section-title {
	display: inline-block;
	width: max-content;
	max-width: 100%;
}

.personal-growth .section-title::after,
.organizations-section .section-title::after {
	left: 0;
	width: 100%;
	height: clamp(3px, 0.35vw, 5px);
}

.clinical-aside img,
.personal-growth .personal-growth__image {
	border-radius: 36px;
}

.personal-growth .personal-growth__image {
	width: min(100%, 332px);
	height: min(285px, calc((100vw - 2rem) * 285 / 332));
	object-fit: cover;
	object-position: 50% 0;
}
