/*
Theme Name: _learn_endobiogeny
Theme URI: 
Author: Omaima M.
Author URI: 
Description: A custom theme for Learn Endobiogeny website
Requires at least: 6.9
Tested up to: 6.9
Requires PHP: 5.7
Version: 
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: _learn_endobiogeny
Tags: 
*/

:root {
	--endo-navy: #2e316a;
	--endo-blue: #0071bc;
	--endo-green: #009245;
	--endo-accent-line: #d9e021;
	--endo-mist: #eff1f5;
	--endo-cloud: #f7f8fb;
	--endo-section-fade: #f1f3f7;
	--endo-lavender: #eff0ff;
	--endo-invite-bg: #121441;
	--endo-ink: #1d214d;
	--endo-white: #ffffff;
	--endo-line: rgba(46, 49, 106, 0.16);
	--endo-shadow: 0 24px 70px rgba(46, 49, 106, 0.12);
	--endo-font: "Hurme Geometric Sans 1", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--endo-container: 1142px;
	--endo-gutter: clamp(20px, 5vw, 149px);
	--endo-header-height: 94px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--endo-white);
	color: var(--endo-navy);
	font-family: var(--endo-font);
	font-size: 18px;
	line-height: 1.55;
}

body .wp-site-blocks {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow-x: clip;
}

body .wp-site-blocks > footer {
	margin-top: auto;
}

body .wp-site-blocks > header {
	position: sticky;
	top: 0;
	z-index: 20;
	width: 100%;
	background: linear-gradient(90deg, var(--endo-mist), var(--endo-white));
}

body .wp-site-blocks > header:has(.endo-site-header.is-menu-open) {
	z-index: 21;
}

a {
	color: inherit;
}

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

.endo-container {
	width: min(var(--endo-container), calc(100vw - (var(--endo-gutter) * 2)));
	margin-inline: auto;
}

.endo-page {
	overflow: hidden;
	background: var(--endo-white);
}

.endo-site-header {
	position: relative;
	z-index: 1;
	overflow: visible;
	background: linear-gradient(90deg, var(--endo-mist), var(--endo-white));
}

.endo-site-header__inner {
	display: grid;
	grid-template-columns: 252px 131px 530px 35px 193px;
	align-items: center;
	min-height: 94px;
}

.endo-logo {
	display: inline-flex;
	grid-column: 1;
	align-items: center;
	text-decoration: none;
	line-height: 0;
}

.endo-logo img {
	display: block;
	width: 252px;
	max-width: 252px;
	height: auto;
}

.endo-nav {
	display: flex;
	grid-column: 3;
	align-items: center;
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
	white-space: nowrap;
}

.endo-nav__list {
	display: flex;
	align-items: center;
	gap: 35px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.endo-nav__list > li {
	position: relative;
}

.endo-nav .menu-item-has-children::before {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 24;
	width: 100%;
	min-width: 220px;
	height: 12px;
}

.endo-nav .menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 6px;
	border-top: 5px solid currentColor;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	vertical-align: middle;
}

.endo-nav .sub-menu {
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	z-index: 25;
	display: none;
	flex-direction: column;
	gap: 0;
	min-width: 220px;
	margin: 0;
	padding: 8px 0;
	list-style: none;
	border: 1px solid var(--endo-line);
	background: var(--endo-white);
	box-shadow: var(--endo-shadow);
}

.endo-nav .menu-item-has-children:hover > .sub-menu,
.endo-nav .menu-item-has-children:focus-within > .sub-menu,
.endo-nav .menu-item-has-children > .sub-menu:hover {
	display: flex;
}

.endo-nav .sub-menu .menu-item-has-children::before {
	top: 0;
	left: 100%;
	width: 12px;
	min-width: 0;
	height: 100%;
}

.endo-nav .sub-menu .menu-item-has-children > .sub-menu {
	top: 0;
	left: calc(100% + 12px);
}

.endo-nav .sub-menu a {
	display: block;
	padding: 12px 20px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	white-space: nowrap;
	color: var(--endo-navy);
}

.endo-nav .sub-menu a:hover,
.endo-nav .sub-menu a:focus-visible {
	background: var(--endo-mist);
	color: var(--endo-blue);
}

.endo-nav a,
.endo-text-link,
.endo-site-footer a {
	text-decoration: none;
}

.endo-nav a:hover,
.endo-text-link:hover {
	color: var(--endo-blue);
}

.endo-site-footer a:hover {
	opacity: 0.85;
}

.endo-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 54px;
	padding: 14px 25px;
	border: 1px solid var(--endo-navy);
	border-radius: 0;
	background: var(--endo-navy);
	color: var(--endo-white);
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.endo-button:hover {
	transform: translateY(-1px);
	background: var(--endo-blue);
	border-color: var(--endo-blue);
}

.endo-button--ghost {
	background: transparent;
	color: var(--endo-navy);
}

.endo-button--large {
	min-height: 74px;
	padding-inline: 64px;
	font-size: 20px;
}

.wp-block-button:not(.is-style-outline) .wp-block-button__link,
.wp-block-button:not(.is-style-outline) .wp-element-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 15px 25px;
	border: 1px solid var(--endo-green);
	border-radius: 14px;
	background: var(--endo-green);
	color: var(--endo-white);
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
	transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover,
.wp-block-button:not(.is-style-outline) .wp-element-button:hover {
	transform: translateY(-1px);
	background: var(--endo-navy);
	border-color: var(--endo-navy);
	color: var(--endo-white);
}

.wp-block-button.is-style-outline .wp-block-button__link,
.wp-block-button.is-style-outline .wp-element-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 15px 25px;
	border: 1px solid var(--endo-navy);
	border-radius: 14px;
	background: transparent;
	color: var(--endo-navy);
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
	transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover,
.wp-block-button.is-style-outline .wp-element-button:hover {
	transform: translateY(-1px);
	background: transparent;
	border-color: var(--endo-blue);
	color: var(--endo-blue);
}

.endo-menu-button {
	display: none;
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	line-height: 0;
}

.endo-menu-button img {
	display: block;
	width: 30px;
	height: 30px;
}

.endo-mobile-menu {
	position: fixed;
	top: var(--endo-header-height, 94px);
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 19;
	overflow-y: auto;
	background: var(--endo-green);
}

.endo-mobile-menu__nav {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 32px var(--endo-gutter) 40px;
}

.endo-mobile-menu__nav__list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.endo-mobile-menu__nav__list > li {
	width: 100%;
}

.endo-mobile-menu__nav .sub-menu {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
	margin: 12px 0 0;
	padding: 0 0 0 16px;
	list-style: none;
	border-left: 2px solid rgba(255, 255, 255, 0.35);
}

.endo-mobile-menu__nav .sub-menu .sub-menu {
	margin-top: 8px;
	padding-left: 14px;
}

.endo-mobile-menu__nav .menu-item-has-children > a {
	display: inline-flex;
	align-items: center;
}

.endo-mobile-menu__nav .menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 8px;
	border-top: 5px solid currentColor;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	opacity: 0.85;
}

.endo-mobile-menu__nav a {
	color: var(--endo-white);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
}

.endo-mobile-menu__nav .sub-menu a {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.35;
	opacity: 0.95;
}

.endo-mobile-menu__nav a:hover,
.endo-mobile-menu__nav a:focus-visible {
	opacity: 0.85;
}

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

.endo-site-header.is-menu-open {
	z-index: 2;
}

.endo-header-cta {
	position: absolute;
	top: 50%;
	left: 50%;
	right: auto;
	width: 193px;
	min-height: 54px;
	padding: 15px 25px;
	border-color: var(--endo-green);
	border-radius: 14px;
	background: var(--endo-green);
	font-family: "Macan", var(--endo-font);
	font-size: 16px;
	line-height: normal;
	white-space: nowrap;
	transform: translateX(calc(min(var(--endo-container), calc(100vw - (var(--endo-gutter) * 2))) / 2 - 100%)) translateY(-50%);
}

.endo-header-cta:hover {
	background: var(--endo-navy);
	border-color: var(--endo-navy);
	transform: translateX(calc(min(var(--endo-container), calc(100vw - (var(--endo-gutter) * 2))) / 2 - 100%)) translateY(calc(-50% - 1px));
}

.endo-hero {
	position: relative;
	height: 712px;
	padding: 0;
	background: var(--endo-white);
}

.endo-hero__grid {
	position: relative;
	height: 100%;
	overflow: hidden;
}

.endo-eyebrow,
.endo-kicker {
	margin: 0 0 8px;
	color: var(--endo-blue);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.4;
}

.endo-hero h1,
.endo-section h2,
.endo-cta-band h2 {
	margin: 0;
	color: var(--endo-navy);
	font-weight: 700;
	letter-spacing: -0.045em;
	line-height: 1.08;
}

.endo-hero h1 {
	position: absolute;
	top: 203px;
	left: 6px;
	z-index: 1;
	width: min(611px, 53.5%);
	height: auto;
	max-width: none;
	font-size: 65px;
	line-height: 80px;
}

.endo-section h2,
.endo-cta-band h2 {
	font-size: clamp(36px, 3.2vw, 45px);
}

.endo-rule {
	width: 190px;
	height: 5px;
	margin: 26px 0 28px;
	background: var(--endo-accent-line);
}

.endo-lede {
	position: absolute;
	top: 493px;
	left: 0;
	z-index: 1;
	width: min(573px, 50.2%);
	height: auto;
	max-width: none;
	margin: 0;
	font-size: 24px;
	line-height: 40px;
}

.endo-hero__mark {
	position: absolute;
	top: 12.64%;
	right: 0;
	left: auto;
	z-index: 0;
	width: 48.5%;
	max-width: 554px;
	aspect-ratio: 1;
	height: auto;
}

.endo-hero__mark img {
	display: block;
	width: 100%;
	height: auto;
}

.endo-hero__content {
	display: contents;
}

.endo-hero__eyebrow {
	position: absolute;
	top: 120px;
	left: 0;
	z-index: 1;
	width: min(410px, 35.9%);
	height: auto;
	margin: 0;
	font-size: 65px;
	line-height: normal;
	white-space: nowrap;
}

.endo-hero .endo-rule {
	position: absolute;
	top: 453px;
	left: 26px;
	z-index: 1;
	margin: 0;
}

.endo-video {
	position: relative;
	min-height: 525px;
	overflow: hidden;
	background: var(--endo-white);
}

.endo-video__bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

.endo-video__circle {
	position: absolute;
	left: 50%;
	border-radius: 50%;
	border: 2px dashed rgba(180, 188, 205, 0.55);
	background: var(--endo-mist);
}

.endo-video__circle--back {
	top: 193px;
	width: 1790px;
	height: 1790px;
	margin-left: calc(-895px - 41px);
}

.endo-video__circle--front {
	top: 212px;
	width: 1790px;
	height: 1790px;
	margin-left: -895px;
	background: linear-gradient(180deg, #eff1f5 0%, #f7f8fb 18%, rgba(255, 255, 255, 0) 42%);
}

.endo-video__stage {
	position: relative;
	height: 525px;
	isolation: isolate;
}

.endo-video__frame {
	position: absolute;
	top: 0;
	left: 161px;
	width: 820px;
	height: 425px;
	z-index: 2;
	overflow: hidden;
	border-radius: 17px;
	background: #d7dae2;
	box-shadow: 9px 9px 13.1px rgba(36, 38, 42, 0.06);
}

.endo-video__frame iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.endo-play {
	position: relative;
	width: 144px;
	height: 144px;
	border: 0;
	border-radius: 50%;
	background: rgba(46, 49, 146, 0.75);
	cursor: pointer;
}

.endo-play::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 54%;
	transform: translate(-50%, -50%);
	width: 0;
	height: 0;
	border-top: 30px solid transparent;
	border-bottom: 30px solid transparent;
	border-left: 45px solid var(--endo-white);
}

.endo-quote-card {
	position: absolute;
	top: 188px;
	left: 821px;
	width: 320px;
	height: 231px;
	z-index: 3;
	overflow: visible;
}

.endo-video.is-playing .endo-video__frame {
	z-index: 4;
}

.endo-video.is-playing .endo-quote-card {
	z-index: 1;
}

.endo-quote-card__shape {
	display: block;
	width: 100%;
	height: 100%;
}

.endo-quote-card__shape--mobile,
.endo-quote-card__shadow--mobile {
	display: none;
}

.endo-quote-card__shadow {
	position: absolute;
	pointer-events: none;
}

.endo-quote-card__shadow--desktop {
	top: 231px;
	left: 182px;
	width: 92px;
	height: 13px;
}

.endo-quote-card__text {
	position: absolute;
	top: 22px;
	left: 14px;
	width: 291px;
	height: 147px;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	line-height: 21px;
	font-style: oblique;
	color: var(--endo-white);
	text-align: center;
	word-break: break-word;
}

.endo-intro-band {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 150px;
	background: var(--endo-navy);
	color: var(--endo-white);
}

.endo-intro-band .endo-container {
	width: min(1141px, calc(100vw - (var(--endo-gutter) * 2)));
}

.endo-intro-band p {
	margin: 0;
	padding: 30px 0;
	font-size: 18px;
	line-height: 30px;
	text-align: center;
	word-break: break-word;
}

.endo-section {
	position: relative;
	padding: 110px 0;
}

.endo-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 492px);
	gap: 60px;
	align-items: start;
}

.endo-section p {
	margin: 0 0 22px;
}

.endo-media-panel,
.endo-portrait {
	background:
		linear-gradient(135deg, rgba(46, 49, 106, 0.08), rgba(0, 113, 188, 0.12)),
		var(--endo-mist);
	box-shadow: inset 0 0 0 1px rgba(46, 49, 106, 0.08);
}

.endo-split__media {
	justify-self: end;
	width: 100%;
	max-width: 492px;
}

.endo-image-card {
	position: relative;
	width: 100%;
	aspect-ratio: 492 / 649;
	overflow: visible;
}

.endo-image-card__pluses {
	position: absolute;
	top: 28px;
	left: -66px;
	z-index: 1;
	width: 176px;
	height: auto;
	pointer-events: none;
}

.endo-image-card__photo {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	object-fit: cover;
	object-position: center top;
}

.endo-feature-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 83px;
	margin-top: 80px;
}

.endo-what {
	background: linear-gradient(180deg, var(--endo-section-fade) 0%, var(--endo-white) 100%);
}

.endo-mini-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	text-align: center;
}

.endo-mini-card h3,
.endo-reason-grid h3,
.endo-instructor h3 {
	margin: 0 0 15px;
	color: var(--endo-navy);
	font-size: 24px;
	line-height: 1.25;
	letter-spacing: -0.025em;
}

.endo-mini-card p,
.endo-reason-grid p,
.endo-course-card p {
	margin: 0;
}

.endo-timeline p {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #5e5e5e;
}

.endo-timeline h3 {
	margin: 0 0 3px;
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
	letter-spacing: 0;
	color: var(--endo-navy);
}

.endo-feature-row .endo-mini-card h3 {
	margin: 0;
}

.endo-feature-row .endo-mini-card p {
	font-size: 16px;
	line-height: 1.6;
	color: #5e5e5e;
}

.endo-icon {
	position: static;
	transform: none;
	width: 104px;
	height: 104px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--endo-navy);
}

.endo-icon.endo-icon--physiology {
	display: block;
	overflow: visible;
	background: transparent;
	border-radius: 0;
}

.endo-icon--physiology svg,
.endo-icon--physiology img {
	display: block;
	width: 100%;
	height: 100%;
}

.endo-icon::after,
.endo-small-icon::after {
	content: "";
	position: absolute;
	inset: 28%;
	border: 3px solid var(--endo-white);
	border-radius: 50%;
}

.endo-icon--physiology::after {
	content: none;
}

.endo-icon.endo-icon--process {
	display: block;
	overflow: visible;
	background: transparent;
	border-radius: 0;
}

.endo-icon--process svg,
.endo-icon--process img {
	display: block;
	width: 100%;
	height: 100%;
}

.endo-icon--process::after {
	content: none;
}

.endo-icon.endo-icon--decision {
	display: block;
	overflow: visible;
	background: transparent;
	border-radius: 0;
}

.endo-icon--decision svg,
.endo-icon--decision img {
	display: block;
	width: 100%;
	height: 100%;
}

.endo-icon--decision::after {
	content: none;
}

.endo-why {
	position: relative;
	overflow: visible;
	background: var(--endo-lavender);
}

.endo-why__wave {
	position: absolute;
	left: 0;
	width: 100%;
	height: auto;
	pointer-events: none;
	z-index: 1;
}

.endo-why__wave--top {
	top: -15px;
}

.endo-why__wave--bottom {
	bottom: -15px;
	left: auto;
	right: 0;
	width: min(1195px, 100%);
	transform: scaleY(-1);
}

.endo-why__pluses {
	position: absolute;
	bottom: -68px;
	left: 200px;
	z-index: 2;
	width: 176px;
	height: auto;
	pointer-events: none;
}

.endo-media-panel {
	min-height: 428px;
}

.endo-why .endo-media-panel {
	position: relative;
	overflow: visible;
	min-height: 0;
	background: none;
	box-shadow: none;
}

.endo-why .endo-split {
	grid-template-columns: minmax(0, 470px) minmax(320px, 492px);
	justify-content: space-between;
	gap: clamp(60px, 10vw, 117px);
}

.endo-why .endo-split > div:first-child {
	max-width: 470px;
}

.endo-why .endo-split__media {
	overflow: visible;
}

.endo-why .endo-media-panel__leaf {
	position: absolute;
	top: 19.63%;
	left: -20.53%;
	z-index: 0;
	width: 58.13%;
	height: auto;
	pointer-events: none;
}

.endo-why .endo-media-panel__photo {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 10px 9.9px rgba(94, 94, 94, 0.25);
}

.endo-text-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--endo-blue);
	font-size: 22px;
	font-weight: 700;
}

.endo-reason-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 42px;
	margin-top: 70px;
}

.endo-reason-grid article {
	display: grid;
	grid-template-columns: 62px 1fr;
	column-gap: 18px;
	align-items: start;
}

.endo-reason-grid h3,
.endo-reason-grid p {
	grid-column: 2;
}

.endo-small-icon {
	position: relative;
	grid-row: span 2;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: var(--endo-blue);
}

.endo-small-icon--complex-presentations,
.endo-small-icon--testing-data-overload,
.endo-small-icon--treatment-stacking {
	display: block;
	background: transparent;
	border-radius: 0;
}

.endo-small-icon--complex-presentations::after,
.endo-small-icon--testing-data-overload::after,
.endo-small-icon--treatment-stacking::after {
	content: none;
}

.endo-small-icon--complex-presentations img,
.endo-small-icon--testing-data-overload img,
.endo-small-icon--treatment-stacking img {
	display: block;
	width: 100%;
	height: 100%;
}

.endo-center {
	text-align: center;
}

.endo-center .endo-rule {
	margin-inline: auto;
}

.endo-how {
	background: var(--endo-white);
	padding-bottom: 40px;
}

.endo-how .endo-kicker {
	font-size: 24px;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 20px;
}

.endo-how h2 {
	max-width: 548px;
	margin-inline: auto;
	font-size: 35px;
	font-weight: 600;
	line-height: 45px;
	letter-spacing: 0;
	text-transform: capitalize;
}

.endo-how .endo-center .endo-rule {
	margin: 8px auto 52px;
}

.endo-timeline {
	position: relative;
	max-width: 960px;
	margin-top: 0;
	min-height: 280px;
}

.endo-timeline__track {
	position: absolute;
	top: 0;
	left: 50%;
	width: 20px;
	height: 280px;
	transform: translateX(-50%);
	pointer-events: none;
}

.endo-timeline__path {
	display: block;
	width: 20px;
	height: 280px;
}

.endo-timeline__step {
	width: calc(50% - 30px);
	max-width: 449px;
}

.endo-timeline__step--left {
	margin-right: calc(50% + 20px);
	margin-left: auto;
	text-align: right;
}

.endo-timeline__step--right {
	margin-left: calc(50% + 20px);
}

.endo-timeline__step:nth-child(2) {
	margin-bottom: 25px;
}

.endo-timeline__step:nth-child(3) {
	margin-bottom: 34px;
}

.endo-timeline__step:nth-child(3) h3 {
	margin-bottom: 6px;
}

.endo-treatment {
	margin-top: 75px;
	padding: 40px 92px;
	min-height: 287px;
	background: var(--endo-blue);
	border-radius: 25px;
	overflow: hidden;
	text-align: center;
}

.endo-treatment h3 {
	margin: 0 0 15px;
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
	letter-spacing: 0;
	color: var(--endo-white);
}

.endo-treatment p {
	max-width: 958px;
	margin: 0 auto;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--endo-white);
}

.endo-treatment p + p {
	margin-top: 24px;
}

.endo-treatment em {
	font-style: italic;
}

.endo-audience {
	background: var(--endo-white);
	padding-top: 0;
	padding-bottom: 0;
}

.endo-audience h2 {
	margin: 0;
	font-size: 35px;
	font-weight: 600;
	line-height: 45px;
	letter-spacing: 0;
	text-transform: capitalize;
	color: var(--endo-navy);
}

.endo-audience__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 558px));
	justify-content: space-between;
	gap: 24px;
	margin-top: 40px;
}

.endo-list-card {
	min-height: 688px;
	padding: 50px 37px;
	border-radius: 20px;
	overflow: hidden;
}

.endo-list-card--feel {
	background: linear-gradient(180deg, var(--endo-white) 0%, var(--endo-lavender) 100%);
	border: 1px solid #5e5e5e;
}

.endo-list-card--gain {
	background: linear-gradient(180deg, #29abe2 40.228%, var(--endo-blue) 100%);
	border: 1px solid rgba(0, 0, 0, 0.06);
	color: var(--endo-white);
}

.endo-list-card h3 {
	margin: 0 0 20px;
	font-size: 32px;
	font-weight: 600;
	line-height: 38.4px;
	letter-spacing: 0;
	color: var(--endo-navy);
}

.endo-list-card--gain h3 {
	color: var(--endo-white);
}

.endo-list-card__copy {
	margin: 0;
}

.endo-list-card__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.endo-list-card__list li {
	display: flex;
	gap: 19px;
	align-items: flex-start;
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
}

.endo-list-card__list li + li {
	margin-top: 30px;
}

.endo-list-card__list li::before {
	content: "•";
	flex: 0 0 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 30px;
	font-size: 20px;
	line-height: 1;
	font-weight: 400;
}

.endo-list-card--feel .endo-list-card__list li,
.endo-list-card--feel .endo-list-card__list li::before {
	color: #5e5e5e;
}

.endo-list-card--gain .endo-list-card__list li,
.endo-list-card--gain .endo-list-card__list li::before {
	color: var(--endo-white);
}

.endo-list-card__copy + h3 {
	margin-top: 20px;
}

.endo-cta-band {
	padding: 60px 0 calc(120px + 86px);
	background: var(--endo-white);
}

.endo-cta-band h2 {
	max-width: 1140px;
	margin: 0 auto;
	font-size: 35px;
	font-weight: 600;
	line-height: 45px;
	letter-spacing: 0;
	text-transform: capitalize;
	color: var(--endo-navy);
}

.endo-cta-band p {
	max-width: 1060px;
	margin: 30px auto 40px;
	font-size: 24px;
	font-weight: 600;
	line-height: 35px;
	letter-spacing: 0;
	text-transform: capitalize;
	color: #5e5e5e;
}

.endo-cta-band .endo-button--large {
	width: 408px;
	max-width: 100%;
	min-height: 74px;
	padding: 15px 25px;
	gap: 25px;
	border: 0;
	border-radius: 14px;
	background: var(--endo-green);
	font-family: "Macan", var(--endo-font);
	font-size: 18px;
	font-weight: 600;
	line-height: normal;
}

.endo-cta-band .endo-button--large:hover {
	background: var(--endo-green);
	border-color: var(--endo-green);
}

.endo-cta-band .endo-button--large span {
	font-size: 24px;
	line-height: 1;
}

.endo-courses {
	position: relative;
	overflow: visible;
	background: var(--endo-navy);
	color: var(--endo-white);
}

.endo-courses__wave--top {
	position: absolute;
	left: 0;
	width: 100%;
	height: auto;
	pointer-events: none;
	z-index: 1;
	top: 0;
	transform: translateY(calc(-100% + 16px));
}

.endo-courses__wave--bottom {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	pointer-events: none;
	vertical-align: bottom;
}

.endo-courses h2 {
	color: var(--endo-white);
}

.endo-courses__intro {
	max-width: 528px;
}

.endo-courses .endo-kicker {
	font-size: 24px;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 20px;
	color: var(--endo-blue);
}

.endo-courses__intro h2 {
	max-width: 499px;
	margin: 0;
	font-size: 35px;
	font-weight: 600;
	line-height: 45px;
	letter-spacing: 0;
	text-transform: capitalize;
	color: var(--endo-white);
}

.endo-courses__intro .endo-rule {
	width: 190px;
	height: 5px;
	margin: 12px 0 0 235px;
}

.endo-courses__lede {
	margin: 0;
	font-size: 24px;
	font-weight: 600;
	line-height: 35px;
	letter-spacing: 0;
	text-transform: capitalize;
	color: var(--endo-white);
}

.endo-courses__lede:first-of-type {
	margin-top: 30px;
	font-style: italic;
}

.endo-courses__lede + .endo-courses__lede {
	margin-top: 11px;
}

.endo-courses__head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 532px;
	gap: 70px;
	align-items: start;
	margin-bottom: 70px;
}

.endo-course-path {
	padding-top: 50px;
}

.endo-course-path__img {
	display: block;
	width: 100%;
	max-width: 682px;
	height: auto;
}

.endo-course-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 364px));
	justify-content: space-between;
	gap: 25px;
}

.endo-course-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 364px;
	min-height: 956px;
	padding: 40px 24px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 20px;
	background: var(--endo-blue);
	color: var(--endo-white);
}

.endo-course-card__header h3 {
	margin: 0;
	font-size: 26px;
	font-weight: 600;
	line-height: 31px;
	letter-spacing: 0;
	color: var(--endo-white);
}

.endo-course-card__header p,
.endo-course-card__description p {
	margin: 0;
	font-size: 20px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0;
	color: var(--endo-white);
}

.endo-course-card__highlight {
	color: var(--endo-green);
	font-weight: 600;
}

.endo-course-card__highlight-yellow {
	color: #d9e021;
	font-weight: 700;
}

.endo-course-card__header h3 + p,
.endo-course-card__header h3 + .endo-course-card__description {
	margin-top: 11px;
}

.endo-course-card__header p + p,
.endo-course-card__description p + p {
	margin-top: 11px;
}

.endo-course-grid__empty {
	margin: 0;
	color: var(--endo-white);
	font-size: 18px;
	text-align: center;
}

.endo-course-card__features {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
}

.endo-course-card__feature {
	display: flex;
	align-items: flex-start;
	gap: 17px;
}

.endo-course-card__feature-text {
	flex: 1;
	min-width: 0;
	max-width: 267px;
	font-size: 18px;
	font-weight: 400;
	line-height: 23px;
	letter-spacing: 0;
	color: var(--endo-white);
}

.endo-course-card__icon {
	flex-shrink: 0;
	display: block;
	width: 32px;
	height: 32px;
	line-height: 0;
}

.endo-course-card__icon img {
	display: block;
	width: 32px;
	height: 32px;
}

.endo-course-card__actions {
	display: grid;
	gap: 30px;
	margin-top: auto;
	padding-top: 40px;
}

.endo-course-card .endo-button:not(.endo-button--ghost) {
	width: 100%;
	min-height: 67px;
	margin-top: 0;
	gap: 4px;
	padding: 6px 12px;
	border: 1.5px solid var(--endo-green);
	border-radius: 4px;
	background: var(--endo-green);
	color: var(--endo-white);
	font-size: 18px;
	font-weight: 600;
	line-height: normal;
}

.endo-course-card .endo-button:not(.endo-button--ghost):hover {
	transform: none;
	background: var(--endo-green);
	border-color: var(--endo-green);
	color: var(--endo-white);
}

.endo-course-card .endo-button__icon {
	display: block;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.endo-course-card .endo-button + .endo-button {
	margin-top: 0;
}

.endo-course-card .endo-button--ghost {
	width: 100%;
	min-height: 67px;
	margin-top: 0;
	gap: 4px;
	padding: 6px 12px;
	border: 1.5px solid var(--endo-white);
	border-radius: 4px;
	background: transparent;
	color: var(--endo-white);
	font-size: 18px;
	font-weight: 600;
	line-height: normal;
}

.endo-course-card .endo-button--ghost:hover {
	transform: none;
	background: transparent;
	border-color: var(--endo-white);
	color: var(--endo-white);
}

.endo-note {
	margin-top: 30px;
	padding-top: 30px;
	color: var(--endo-white);
}

.endo-note__label {
	margin: 0 0 15px;
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
	color: var(--endo-white);
}

.endo-note__body {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: var(--endo-white);
}

.endo-note__body p {
	margin: 0;
}

.endo-note__body p + p {
	margin-top: 24px;
}

.endo-instructor {
	background: var(--endo-white);
}

.endo-instructor .endo-kicker {
	font-size: 24px;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 20px;
	color: var(--endo-blue);
}

.endo-instructor h2 {
	max-width: 532px;
	margin-inline: auto;
	font-size: 35px;
	font-weight: 600;
	line-height: 45px;
	letter-spacing: 0;
	text-transform: capitalize;
	color: var(--endo-navy);
}

.endo-instructor .endo-center .endo-rule {
	width: 190px;
	height: 5px;
	margin: 10px auto 30px;
	background: var(--endo-accent-line);
}

.endo-instructor__intro {
	max-width: 941px;
	margin: 0 auto;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #5e5e5e;
}

.endo-instructor__grid {
	display: grid;
	grid-template-columns: 435px minmax(0, 1fr);
	gap: 178px;
	align-items: center;
	margin-top: 50px;
}

.endo-instructor__portrait {
	position: relative;
	width: 435px;
	max-width: 100%;
	aspect-ratio: 435 / 428;
	overflow: visible;
}

.endo-instructor__leaf {
	position: absolute;
	top: 17.29%;
	left: 63.59%;
	z-index: 0;
	width: 73.1%;
	height: auto;
	pointer-events: none;
}

.endo-instructor__photo {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	box-shadow: 0 10px 9.9px rgba(94, 94, 94, 0.25);
	object-fit: cover;
	object-position: center top;
}

.endo-proof {
	position: relative;
	overflow: visible;
	background: var(--endo-lavender);
}

.endo-proof__wave {
	position: absolute;
	left: 0;
	width: 100%;
	height: auto;
	pointer-events: none;
	z-index: 1;
}

.endo-proof__wave--top {
	top: -22px;
}

.endo-proof__wave--bottom {
	bottom: -15px;
	left: auto;
	right: 0;
	width: min(1195px, 100%);
	transform: scaleY(-1);
}

.endo-proof__pluses {
	position: absolute;
	bottom: -68px;
	left: max(var(--endo-gutter), calc((100% - min(var(--endo-container), 100% - (var(--endo-gutter) * 2))) / 2));
	z-index: 2;
	width: 176px;
	height: auto;
	pointer-events: none;
}

.endo-proof > *:not(.endo-proof__wave, .endo-proof__pluses) {
	position: relative;
}

.endo-proof .endo-kicker {
	font-size: 24px;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 20px;
	color: var(--endo-blue);
}

.endo-proof__title {
	max-width: 704px;
	margin-inline: auto;
}

.endo-proof__head h2 {
	margin: 0;
	font-size: 35px;
	font-weight: 600;
	line-height: 45px;
	letter-spacing: 0;
	text-transform: capitalize;
	color: var(--endo-navy);
}

.endo-proof__rule {
	width: 190px;
	height: 5px;
	margin: 12px 0 0 56.82%;
	background: var(--endo-accent-line);
}

.endo-proof__grid {
	display: grid;
	grid-template-columns: 424px minmax(0, 1fr);
	gap: 30px;
	align-items: start;
	margin-top: 48px;
}

.endo-proof__column {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	min-width: 0;
}

.endo-proof__column .endo-news__link {
	margin-top: 0;
}

.endo-proof-video-stack {
	width: 100%;
	max-width: 424px;
}

.endo-proof-video {
	width: 100%;
}

.endo-proof-video__media {
	position: relative;
	aspect-ratio: 424 / 251;
	overflow: hidden;
	border-radius: 17px;
	background: #d7dae2;
	box-shadow: 9px 9px 13.1px rgba(36, 38, 42, 0.06);
}

.endo-proof-video__iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.endo-proof-video__poster {
	position: absolute;
	inset: 0;
	z-index: 1;
	transition: opacity 160ms ease, visibility 160ms ease;
}

.endo-proof-video.is-playing .endo-proof-video__poster {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.endo-proof-video__label {
	position: absolute;
	top: 14px;
	left: 14px;
	padding: 6px 12px;
	border-radius: 4px;
	background: var(--endo-green);
	color: var(--endo-white);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
}

.endo-proof-video__play {
	position: absolute;
	top: 50%;
	left: 50%;
	padding: 0;
	border: 0;
	background: transparent;
	transform: translate(-50%, -50%);
	cursor: pointer;
	line-height: 0;
}

.endo-proof-video__play img {
	display: block;
	width: 78px;
	height: 78px;
}

.endo-proof-video__duration {
	position: absolute;
	right: 14px;
	bottom: 14px;
	padding: 4px 8px;
	border-radius: 4px;
	background: rgba(0, 0, 0, 0.72);
	color: var(--endo-white);
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
}

.endo-proof-video__progress {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 4px;
	background: #e6007e;
}

.endo-proof-video__pager,
.endo-proof-reviews__pager {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	margin-top: 14px;
}

.endo-proof-video__pager-item,
.endo-proof-reviews__pager-item {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(0, 146, 69, 0.57);
	cursor: pointer;
	transition: width 160ms ease, border-radius 160ms ease;
}

.endo-proof-video__pager-item.is-active,
.endo-proof-reviews__pager-item.is-active {
	width: 29px;
	border-radius: 53px;
}

.endo-proof-reviews-stack {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-width: 0;
}

.endo-proof-reviews {
	overflow: hidden;
	width: 100%;
	--endo-review-peek: 48px;
	--endo-review-gap: 16px;
}

.endo-proof-reviews__track {
	display: flex;
	align-items: stretch;
	gap: var(--endo-review-gap);
	height: 100%;
	transition: transform 320ms ease;
	will-change: transform;
}

.endo-review {
	display: flex;
	flex: 0 0 calc(100% - (2 * var(--endo-review-peek)) - var(--endo-review-gap));
	flex-direction: column;
	gap: 18px;
	width: calc(100% - (2 * var(--endo-review-peek)) - var(--endo-review-gap));
	height: 100%;
	padding: 28px 34px;
	background: var(--endo-white);
	border: 1px solid #5e5e5e;
	border-radius: 12px;
	color: #5e5e5e;
	box-sizing: border-box;
	cursor: pointer;
	transition:
		border-color 160ms ease,
		box-shadow 160ms ease;
}

.endo-review:hover,
.endo-review:focus-visible {
	border-color: var(--endo-green);
	box-shadow: 0 10px 24px rgba(46, 49, 106, 0.12);
	outline: none;
}

.endo-review__stars {
	display: block;
	flex-shrink: 0;
	width: 116px;
	height: 17px;
}

.endo-review__quote {
	flex: 1 1 auto;
	margin: 0;
	overflow: hidden;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

.endo-review__author {
	flex-shrink: 0;
	margin-top: auto;
}

.endo-review__name {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
}

.endo-review__role {
	margin: 0;
	font-size: 14px;
	font-style: italic;
	line-height: 1.3;
}

.endo-proof-reviews__track:has(.endo-review:only-child) .endo-review {
	flex-basis: 100%;
	width: 100%;
}

.endo-proof__empty {
	margin: 0;
	color: var(--endo-navy);
	font-size: 18px;
	line-height: 1.5;
	text-align: center;
}

body.endo-modal-open {
	overflow: hidden;
}

.endo-testimonial-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: none;
	padding: 24px;
}

.endo-testimonial-modal.is-open {
	display: grid;
	place-items: center;
}

.endo-testimonial-modal[hidden] {
	display: none !important;
}

.endo-testimonial-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(46, 49, 106, 0.72);
}

.endo-testimonial-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 680px);
	max-height: min(88vh, 820px);
	overflow: auto;
	padding: 36px 32px 32px;
	border-radius: 20px;
	background: var(--endo-white);
	box-shadow: 0 24px 60px rgba(36, 38, 42, 0.22);
	color: var(--endo-navy);
}

.endo-testimonial-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--endo-lavender);
	color: var(--endo-navy);
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	transition: background 160ms ease, color 160ms ease;
}

.endo-testimonial-modal__close:hover,
.endo-testimonial-modal__close:focus-visible {
	background: var(--endo-green);
	color: var(--endo-white);
	outline: none;
}

.endo-testimonial-modal__header {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 24px;
}

.endo-testimonial-modal__photo {
	flex-shrink: 0;
	width: 96px;
	height: 96px;
	margin: 0;
	overflow: hidden;
	border-radius: 50%;
	background: var(--endo-lavender);
}

.endo-testimonial-modal__photo-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.endo-testimonial-modal__identity {
	min-width: 0;
}

.endo-testimonial-modal__name {
	margin: 0 0 6px;
	color: var(--endo-navy);
	font-size: 28px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.endo-testimonial-modal__credentials {
	margin: 0;
	color: var(--endo-blue);
	font-size: 16px;
	font-style: italic;
	line-height: 1.4;
}

.endo-testimonial-modal__text {
	color: #5e5e5e;
	font-size: 18px;
	line-height: 1.6;
}

.endo-testimonial-modal__text > * + * {
	margin-top: 1em;
}

.endo-testimonial-modal__text p {
	margin: 0;
}

.endo-faq {
	position: relative;
	overflow: visible;
	background: var(--endo-white);
}

.endo-faq .endo-kicker {
	margin: 0 0 20px;
	font-size: 24px;
	font-weight: 400;
	line-height: normal;
	color: var(--endo-blue);
}

.endo-faq__title {
	max-width: 704px;
	margin-inline: auto;
}

.endo-faq__title h2 {
	margin: 0;
	font-size: 35px;
	font-weight: 600;
	line-height: 45px;
	letter-spacing: 0;
	text-transform: capitalize;
	color: var(--endo-navy);
}

.endo-faq__rule {
	width: 190px;
	height: 5px;
	margin: 12px 0 0 48.72%;
	background: var(--endo-accent-line);
}

.endo-faq__grid {
	display: flex;
	gap: 30px;
	align-items: flex-start;
	margin-top: 35px;
}

.endo-faq__column {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 16px;
	min-width: 0;
}

.endo-faq__item {
	min-width: 0;
}

.endo-faq__empty {
	flex: 1 1 100%;
	width: 100%;
	margin: 0;
	padding: 28px 24px;
	border: 1px solid var(--endo-line);
	box-shadow: 0 10px 30px rgba(46, 49, 106, 0.06);
	color: var(--endo-ink);
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
}

.endo-faq details {
	background: var(--endo-white);
	border: 1px solid var(--endo-line);
	box-shadow: 0 10px 30px rgba(46, 49, 106, 0.06);
}

.endo-faq details:not([open]) > :not(summary) {
	display: none;
}

.endo-faq summary {
	position: relative;
	padding: 22px 62px 22px 24px;
	cursor: pointer;
	font-weight: 700;
	list-style: none;
}

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

.endo-faq summary::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 24px;
	transform: translateY(-50%);
	color: var(--endo-blue);
	font-size: 24px;
}

.endo-faq details[open] summary::after {
	content: "-";
}

.endo-faq details p {
	margin: 0;
	padding: 0 24px 24px;
	color: var(--endo-ink);
}

.endo-news {
	background: var(--endo-white);
}

.endo-news .endo-kicker {
	margin: 0 0 20px;
	font-size: 24px;
	font-weight: 400;
	line-height: normal;
	color: var(--endo-blue);
}

.endo-news__head {
	margin-bottom: 50px;
}

.endo-news__row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 40px;
}

.endo-news__title {
	flex: 1 1 662px;
	max-width: 662px;
}

.endo-news__title h2 {
	margin: 0;
	font-size: 35px;
	font-weight: 600;
	line-height: 45px;
	letter-spacing: 0;
	text-transform: capitalize;
	color: var(--endo-navy);
}

.endo-news__rule {
	width: 190px;
	height: 5px;
	margin: 10px 0 0 12.24%;
	background: var(--endo-accent-line);
}

.endo-news__link {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	gap: 8px;
	margin-top: 19px;
	color: var(--endo-green);
	font-size: 18px;
	font-weight: 600;
	line-height: normal;
	text-decoration: none;
}

.endo-news__link:hover {
	opacity: 0.85;
}

.endo-news__link img {
	display: block;
	width: 24px;
	height: 24px;
}

.endo-news__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px 24px;
	align-items: stretch;
}

.endo-news__empty {
	grid-column: 1 / -1;
	margin: 0;
	padding: 28px 24px;
	border: 1px solid var(--endo-line);
	border-radius: 20px;
	color: var(--endo-navy);
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
}

.endo-news-card {
	display: flex;
	height: 100%;
	min-height: 0;
}

.endo-news-card__link {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-width: 0;
	color: inherit;
	text-decoration: none;
}

.endo-news-card__link:focus-visible {
	outline: 2px solid var(--endo-blue);
	outline-offset: 2px;
	border-radius: 15px;
}

.endo-news-card__media {
	position: relative;
	flex-shrink: 0;
	width: 100%;
	height: 220px;
	overflow: hidden;
	border-radius: 15px;
	background:
		linear-gradient(135deg, rgba(46, 49, 106, 0.08), rgba(0, 113, 188, 0.12)),
		var(--endo-mist);
}

.endo-news-card__image,
.endo-news-card__media-placeholder {
	display: block;
	width: 100%;
	height: 100%;
}

.endo-news-card__image {
	object-fit: cover;
}

.endo-news-card__category {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 4px 8px;
	border-radius: 4px;
	background: var(--endo-green);
	color: var(--endo-white);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
}

.endo-news-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 8px;
	padding: 24px 0 16px;
}

.endo-news-card__title {
	margin: 0;
	color: var(--endo-navy);
	font-size: 30px;
	font-weight: 600;
	line-height: 1;
	word-break: break-word;
}

.endo-news-card__excerpt {
	flex: 1;
	margin: 0;
	color: #5e5e5e;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
}

.endo-invite {
	position: relative;
	padding: 0 0 120px;
	background: var(--endo-white);
}

.endo-invite__inner {
	position: relative;
	overflow: visible;
	border-radius: 20px;
	background: var(--endo-invite-bg);
}

.endo-invite__wave {
	position: absolute;
	height: auto;
	pointer-events: none;
	z-index: 2;
}

.endo-invite__wave--top {
	top: -14px;
	left: 0;
	width: min(920px, 80%);
}

.endo-invite__wave--bottom {
	bottom: -14px;
	left: auto;
	right: -200px;
	width: min(1195px, 100%);
	transform: scaleY(-1);
}

.endo-invite__content {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 48px;
	align-items: center;
	min-height: 196px;
	padding: 68px 60px;
}

.endo-invite__title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	flex-shrink: 0;
}

.endo-invite__title h2 {
	margin: 0;
	font-size: 35px;
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: 0;
	text-transform: capitalize;
	color: #fbfbfc;
	white-space: nowrap;
}

.endo-invite__title h2 a {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
}

.endo-invite__title h2 a:hover,
.endo-invite__title h2 a:focus-visible {
	text-decoration: underline;
}

.endo-invite__link-icon {
	font-size: 1.4em;
	font-weight: 400;
	line-height: 1;
}

.endo-invite__rule {
	width: 190px;
	height: 5px;
	margin: 10px 0 0;
	margin-left: auto;
	background: var(--endo-accent-line);
}

.endo-invite__text {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #fbfbfc;
}

.endo-inner-page {
	padding: 0 0 80px;
	background: var(--endo-white);
}

.endo-inner-page:not(:has(.endo-page-hero--has-header)) {
	padding-top: 110px;
}

body .wp-site-blocks > main.endo-inner-page:has(.endo-page-hero--has-header),
body .wp-site-blocks > header + main.endo-inner-page:has(.endo-page-hero--has-header) {
	margin-block-start: 0;
}

body .wp-site-blocks:has(> main.endo-inner-page:has(.endo-page-hero--has-header)) {
	padding-block-start: 0;
}

body .wp-site-blocks:has(> main.endo-inner-page:has(.endo-page-hero--has-header)) > header {
	margin-block-end: 0;
}

.endo-inner-page:has(.endo-page-hero--has-header) > .endo-page-hero {
	margin-block-start: 0;
}

.endo-page-hero.endo-news-hero {
	background: none;
}

.endo-inner-page:not(:has(.endo-page-hero--has-header)) .endo-page-hero.endo-news-hero {
	height: auto;
	min-height: 0;
	overflow: visible;
}

.endo-inner-page:not(:has(.endo-page-hero--has-header)) .endo-page-hero .endo-news-hero__overlay,
.endo-inner-page:not(:has(.endo-page-hero--has-header)) .endo-page-hero .endo-news-hero__wave {
	display: none;
}

.endo-inner-page:not(:has(.endo-page-hero--has-header)) .endo-page-hero .wp-block-post-title,
.endo-inner-page:not(:has(.endo-page-hero--has-header)) .endo-page-hero .endo-news-hero__title {
	position: static;
	display: block;
	width: auto;
	height: auto;
	max-width: min(var(--endo-container), calc(100vw - (var(--endo-gutter) * 2)));
	margin: 0 auto 32px;
	padding: 0 var(--endo-gutter);
	border: 0;
	color: var(--endo-navy);
	font-size: clamp(36px, 3.2vw, 45px);
	font-weight: 700;
	line-height: 1.08;
	text-align: left;
	letter-spacing: -0.045em;
}

.endo-inner-page__content {
	padding-top: 0;
}

.endo-inner-page:has(.endo-page-hero--has-header) .endo-inner-page__content {
	padding-top: 80px;
}

.endo-inner-page__entry::after {
	content: "";
	display: table;
	clear: both;
}

.endo-inner-page__entry .wp-block-post-content > * {
	clear: none;
}

.endo-back-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 40px;
	color: var(--endo-green);
	font-size: 18px;
	font-weight: 600;
	line-height: normal;
	text-decoration: none;
}

.endo-back-link:hover {
	opacity: 0.85;
}

.endo-back-link__icon {
	display: block;
	width: 24px;
	height: 24px;
	transform: scaleX(-1);
}

.endo-inner-page__title,
.endo-inner-page .wp-block-post-title.endo-inner-page__title {
	margin: 0 0 20px;
	color: var(--endo-navy);
	font-size: clamp(36px, 3.2vw, 45px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.045em;
	text-align: left;
}

.endo-inner-page .wp-block-post-content {
	color: var(--endo-navy);
	font-size: 18px;
	line-height: 1.55;
}

.endo-inner-page .wp-block-post-content > * + * {
	margin-top: 1.25em;
}

.endo-inner-page__entry {
	width: 100%;
	color: var(--endo-navy);
	font-size: 18px;
	line-height: 1.55;
}

.endo-inner-page__entry .wp-block-post-content {
	display: block;
	width: 100%;
	max-width: none;
	margin: 0;
	color: inherit;
	font-size: inherit;
	line-height: inherit;
}

.endo-inner-page__entry .wp-block-post-content:is(.is-layout-constrained, .wp-block-post-content-is-layout-constrained) > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
	max-width: none;
}

.endo-inner-page__entry .wp-block-post-content > * + * {
	margin-top: 1.25em;
}

.endo-single-post__entry::after {
	content: "";
	display: table;
	clear: both;
}

.endo-single-post__entry .wp-block-post-content {
	display: block;
	width: auto;
	max-width: none;
	margin: 0;
	color: inherit;
	font-size: inherit;
	line-height: inherit;
}

.endo-single-post__entry .wp-block-post-content > * {
	clear: none;
}

.endo-floating-featured-image {
	float: right;
	width: min(42%, 420px);
	margin: 0 0 16px 32px;
	border-radius: 15px;
	overflow: hidden;
	shape-outside: inset(0 round 15px);
	shape-margin: 16px;
}

.endo-floating-featured-image__img {
	display: block;
	width: 100%;
	height: auto;
}

.endo-newsletter-bar-wrap {
	position: relative;
}

.endo-newsletter-bar-wrap.is-docked {
	min-height: 0;
}

.endo-newsletter-bar {
	background: #d4e2ee;
	color: var(--endo-navy);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

.endo-newsletter-bar.is-pinned {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 15;
	box-shadow: 0 -8px 24px rgba(46, 49, 106, 0.12);
}

.endo-newsletter-bar.is-hiding {
	transform: translateY(100%);
	box-shadow: none;
	pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
	.endo-newsletter-bar {
		transition: none;
	}
}

.endo-newsletter-bar__inner {
	display: flex;
	align-items: center;
	gap: 20px;
	padding-block: 24px;
}

.endo-newsletter-bar__dock {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.82);
	color: var(--endo-navy);
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(46, 49, 106, 0.12);
	transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.endo-newsletter-bar__dock:hover,
.endo-newsletter-bar__dock:focus-visible {
	background: var(--endo-white);
	color: var(--endo-blue);
	transform: translateY(1px);
}

.endo-newsletter-bar__dock-icon {
	display: block;
}

.endo-newsletter-bar-wrap.is-docked .endo-newsletter-bar__dock,
.endo-newsletter-bar.is-docked .endo-newsletter-bar__dock {
	display: none;
}

.endo-newsletter-bar .endo-newsletter {
	display: flex;
	flex: 1 1 auto;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px 32px;
	min-width: 0;
}

.endo-newsletter__copy {
	flex: 1 1 240px;
	min-width: 0;
}

.endo-newsletter__title {
	margin: 0;
	font-size: clamp(18px, 2.4vw, 20px);
	font-weight: 700;
	line-height: 1.3;
}

.endo-newsletter__text {
	margin: 6px 0 0;
	font-size: clamp(14px, 2vw, 15px);
	line-height: 1.45;
}

.endo-newsletter__form {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 8px;
	width: 100%;
	max-width: 560px;
	margin-left: auto;
}

.endo-newsletter__controls {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 12px;
	width: 100%;
}

.endo-newsletter__input {
	flex: 1 1 auto;
	width: 100%;
	min-width: 0;
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid rgba(46, 49, 106, 0.18);
	border-radius: 8px;
	background: var(--endo-white);
	color: var(--endo-navy);
	font: inherit;
	box-sizing: border-box;
}

.endo-newsletter__input::placeholder {
	color: rgba(46, 49, 106, 0.55);
}

.endo-newsletter__input:focus {
	outline: 2px solid var(--endo-blue);
	outline-offset: 1px;
	border-color: var(--endo-blue);
}

.endo-newsletter__submit.endo-button {
	flex: 0 0 auto;
	display: inline-block;
	min-height: 44px;
	padding: 10px 20px;
	border-radius: 8px;
	font-size: 15px;
	line-height: 22px;
	cursor: pointer;
	box-sizing: border-box;
}

.endo-newsletter__embed {
	flex: 1 1 320px;
	max-width: 560px;
	margin-left: auto;
	min-width: 0;
}

.endo-newsletter-bar #mc_embed_signup {
	background: transparent;
	clear: none;
	width: 100%;
	font: inherit;
}

.endo-newsletter__field {
	flex: 1 1 auto;
	min-width: 0;
	margin: 0;
	padding: 0;
	clear: none;
	float: none;
	width: auto;
}

.endo-newsletter__field label {
	margin: 0;
}

.endo-newsletter__hp {
	position: absolute;
	left: -5000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.endo-newsletter__responses {
	width: 100%;
	margin: 0;
	clear: none;
}

.endo-newsletter__responses:empty {
	display: none;
}

.endo-newsletter__responses .response {
	margin: 0;
	font-size: 14px;
	line-height: 1.4;
}

.endo-newsletter__responses #mce-error-response {
	color: #b32d2e;
}

.endo-newsletter__responses #mce-success-response {
	color: var(--endo-green);
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.endo-speaking-form-wrap {
	max-width: 720px;
	margin: 48px 0 0;
}

.endo-speaking-form__notice {
	margin: 0 0 24px;
	padding: 14px 16px;
	border-radius: 10px;
	font-size: 15px;
	line-height: 1.5;
}

.endo-speaking-form__notice p {
	margin: 0;
}

.endo-speaking-form__notice--success {
	background: rgba(0, 146, 69, 0.12);
	border: 1px solid rgba(0, 146, 69, 0.28);
	color: var(--endo-navy);
}

.endo-speaking-form__notice--error {
	background: rgba(180, 35, 24, 0.08);
	border: 1px solid rgba(180, 35, 24, 0.24);
	color: #7a1d16;
}

.endo-speaking-form {
	display: grid;
	gap: 20px;
}

.endo-speaking-form__honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.endo-speaking-form__field {
	display: grid;
	gap: 8px;
}

.endo-speaking-form__label {
	font-size: 15px;
	font-weight: 600;
	color: var(--endo-navy);
}

.endo-speaking-form__required {
	color: var(--endo-green);
}

.endo-speaking-form__input,
.endo-speaking-form__textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid rgba(46, 49, 106, 0.18);
	border-radius: 8px;
	background: var(--endo-white);
	color: var(--endo-navy);
	font: inherit;
}

.endo-speaking-form__input:focus,
.endo-speaking-form__textarea:focus {
	outline: 2px solid rgba(0, 113, 188, 0.35);
	outline-offset: 1px;
	border-color: rgba(0, 113, 188, 0.45);
}

.endo-speaking-form__textarea {
	min-height: 160px;
	resize: vertical;
}

.endo-speaking-form__submit.endo-button {
	justify-self: start;
	min-width: 180px;
}

.endo-news-page {
	margin-block-start: 0;
	padding-block-start: 0;
	background: var(--endo-white);
}

body .wp-site-blocks > main.endo-news-page,
body .wp-site-blocks > header + main.endo-news-page {
	margin-block-start: 0;
}

body .wp-site-blocks:has(> main.endo-news-page) {
	padding-block-start: 0;
}

body .wp-site-blocks:has(> main.endo-news-page) > header {
	margin-block-end: 0;
}

.endo-news-page:not(:has(.endo-page-hero--has-header)) {
	padding-top: 110px;
}

.endo-news-page:not(:has(.endo-page-hero--has-header)) .endo-page-hero.endo-news-hero {
	height: auto;
	min-height: 0;
	overflow: visible;
	background: none;
}

.endo-news-page:not(:has(.endo-page-hero--has-header)) .endo-page-hero .endo-news-hero__overlay,
.endo-news-page:not(:has(.endo-page-hero--has-header)) .endo-page-hero .endo-news-hero__wave {
	display: none;
}

.endo-news-page:not(:has(.endo-page-hero--has-header)) .endo-page-hero .wp-block-post-title,
.endo-news-page:not(:has(.endo-page-hero--has-header)) .endo-page-hero .endo-news-hero__title {
	position: static;
	display: block;
	width: auto;
	height: auto;
	max-width: min(var(--endo-container), calc(100vw - (var(--endo-gutter) * 2)));
	margin: 0 auto 32px;
	padding: 0 var(--endo-gutter);
	border: 0;
	color: var(--endo-navy);
	font-size: clamp(36px, 3.2vw, 45px);
	font-weight: 700;
	line-height: 1.08;
	text-align: left;
	letter-spacing: -0.045em;
}

.endo-page-hero--has-header.endo-news-hero {
	height: 300px;
	overflow: visible;
	background: none;
}

.endo-news-page > .endo-news-hero {
	margin-block-start: 0;
}

.endo-news-hero {
	position: relative;
	display: grid;
	grid-template-areas: "hero";
	height: 300px;
	margin: 0;
	overflow: visible;
	background: url("/wp-content/themes/_learn_endobiogeny/assets/images/news-hero-default.jpg") center / cover no-repeat;
}

.endo-news-hero > * {
	grid-area: hero;
	margin: 0;
}

.endo-news-hero .wp-block-html {
	display: contents;
}

.endo-news-hero .wp-block-post-featured-image::after,
.endo-news-hero .wp-block-post-featured-image__overlay,
.endo-news-hero .components-placeholder {
	display: none;
}

.endo-news-hero:has(.wp-block-post-featured-image img) {
	background: none;
}

.endo-news-hero .endo-news-hero__image,
.endo-news-hero .wp-block-post-featured-image {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	max-width: none;
	height: 100%;
	margin: 0;
}

.endo-news-hero .endo-news-hero__image img,
.endo-news-hero .wp-block-post-featured-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.endo-news-hero .wp-block-post-featured-image.alignfull {
	margin-left: 0;
	margin-right: 0;
	width: 100%;
	max-width: none;
}

.endo-news-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(46, 49, 106, 0.38);
	pointer-events: none;
}

.endo-news-hero__title,
.endo-news-hero .wp-block-post-title {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0 24px;
	border: 0;
	color: var(--endo-white);
	font-size: 65px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	letter-spacing: -0.045em;
}

.endo-news-hero__wave {
	position: absolute;
	left: auto;
	right: -200px;
	bottom: -15px;
	z-index: 3;
	width: min(1195px, 100%);
	height: auto;
	transform: scale(-1, -1);
	pointer-events: none;
}

.endo-news-page__content {
	padding: 80px 0 110px;
}

.endo-news-page__content .wp-block-post-content {
	color: var(--endo-navy);
	font-size: 18px;
	line-height: 1.55;
}

.endo-news-page__content .wp-block-post-content > * + * {
	margin-top: 1.25em;
}

.endo-news-list-page__content {
	padding: 56px 0 110px;
}

.endo-news-list-page__content .wp-block-post-content {
	width: 100%;
	max-width: none;
	margin: 0 0 40px;
	color: var(--endo-navy);
	font-size: 18px;
	line-height: 1.55;
}

.endo-news-list-page__content .wp-block-post-content > * + * {
	margin-top: 1.25em;
}

.endo-news-list-page .endo-news__grid {
	margin-top: 0;
}

.endo-videos-list-page__content,
.endo-testimonials-list-page__content {
	padding: 56px 0 110px;
}

.endo-videos-list-page__content .wp-block-post-content,
.endo-testimonials-list-page__content .wp-block-post-content {
	width: 100%;
	max-width: none;
	margin: 0 0 40px;
	color: var(--endo-navy);
	font-size: 18px;
	line-height: 1.55;
}

.endo-videos-list-page__content .wp-block-post-content > * + *,
.endo-testimonials-list-page__content .wp-block-post-content > * + * {
	margin-top: 1.25em;
}

.endo-videos-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 48px 36px;
}

.endo-video-card {
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-width: 0;
}

.endo-video-card__media {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 18px;
	background: #d7dae2;
	box-shadow: 0 16px 36px rgba(46, 49, 106, 0.1);
}

.endo-video-card__iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.endo-video-card__poster {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	transition: opacity 160ms ease, visibility 160ms ease;
}

.endo-video-card.is-playing .endo-video-card__poster {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.endo-video-card__play {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	transition: transform 160ms ease;
}

.endo-video-card__play:hover,
.endo-video-card__play:focus-visible {
	transform: scale(1.05);
	outline: none;
}

.endo-video-card__play img {
	display: block;
	width: 78px;
	height: 78px;
}

.endo-video-card__title {
	margin: 0;
	color: var(--endo-navy);
	font-size: 24px;
	font-weight: 600;
	line-height: 1.3;
}

.endo-videos-grid__empty,
.endo-testimonials-list__empty {
	margin: 0;
	color: var(--endo-navy);
	font-size: 18px;
	line-height: 1.5;
	text-align: center;
}

.endo-testimonials-list {
	display: grid;
	gap: 28px;
}

.endo-testimonial-full {
	padding: 36px 40px;
	background: var(--endo-white);
	border: 1px solid rgba(46, 49, 106, 0.1);
	border-left: 4px solid var(--endo-green);
	border-radius: 16px;
	box-shadow: 0 14px 34px rgba(46, 49, 106, 0.06);
}

.endo-testimonial-full__header {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 24px;
	align-items: center;
	margin-bottom: 24px;
}

.endo-testimonial-full__photo {
	flex-shrink: 0;
	width: 88px;
	height: 88px;
	margin: 0;
	overflow: hidden;
	border-radius: 50%;
}

.endo-testimonial-full__photo-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.endo-testimonial-full__identity {
	min-width: 0;
}

.endo-testimonial-full__stars {
	display: block;
	width: 116px;
	height: 17px;
	margin-bottom: 12px;
}

.endo-testimonial-full__name {
	margin: 0;
	color: var(--endo-navy);
	font-size: 24px;
	font-weight: 600;
	line-height: 1.25;
}

.endo-testimonial-full__credentials {
	margin: 6px 0 0;
	color: #5e5e5e;
	font-size: 16px;
	font-style: italic;
	line-height: 1.4;
}

.endo-testimonial-full__text {
	color: #5e5e5e;
	font-size: 18px;
	line-height: 1.65;
}

.endo-testimonial-full__text > * + * {
	margin-top: 1em;
}

.endo-testimonial-full__text p {
	margin: 0;
}

.endo-single-post__content {
	padding: 56px 0 110px;
}

.endo-single-post__meta {
	margin: 0 0 24px;
	color: #5e5e5e;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
}

.endo-news-hero--post {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.endo-site-footer {
	background: var(--endo-navy);
	color: var(--endo-white);
}

.endo-site-footer__inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	min-height: 74px;
	padding-block: 22px 20px;
	gap: 14px;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: -0.3px;
}

.endo-site-footer__columns {
	width: 100%;
	margin: 0;
	gap: 32px;
}

.endo-site-footer__column {
	color: var(--endo-white);
	font-size: 16px;
	line-height: 24px;
}

.endo-site-footer__column > :first-child {
	margin-top: 0;
}

.endo-site-footer__column p,
.endo-site-footer__column .wp-block-heading {
	margin: 0 0 0.75em;
	color: var(--endo-white);
}

.endo-site-footer__column p:last-child,
.endo-site-footer__column .wp-block-heading:last-child {
	margin-bottom: 0;
}

.endo-site-footer__column a {
	color: rgba(255, 255, 255, 0.9);
}

.endo-site-footer__column a:hover,
.endo-site-footer__column a:focus-visible {
	color: var(--endo-accent-line);
	opacity: 1;
}

.endo-site-footer__menu {
	margin-bottom: 0;
}

.endo-site-footer .is-style-footer-logos,
.endo-site-footer .endo-footer-logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: 0;
}

.endo-site-footer .is-style-footer-logo-chip,
.endo-site-footer .endo-footer-logo-chip {
	background: var(--endo-white);
	border-radius: 8px;
	padding: 10px 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}

.endo-site-footer .is-style-footer-logo-chip .wp-block-image,
.endo-site-footer .endo-footer-logo-chip .wp-block-image,
.endo-site-footer .is-style-footer-logo-chip figure,
.endo-site-footer .endo-footer-logo-chip figure {
	margin: 0;
	line-height: 0;
}

.endo-site-footer .is-style-footer-logo-chip img,
.endo-site-footer .endo-footer-logo-chip img {
	display: block;
	width: auto;
	max-width: 180px;
	max-height: 48px;
	height: auto;
}

.endo-site-footer .wp-block-navigation.endo-site-footer__menu-nav {
	margin: 0;
}

.endo-site-footer .wp-block-navigation.endo-site-footer__menu-nav .wp-block-navigation__container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

.endo-site-footer .wp-block-navigation.endo-site-footer__menu-nav .wp-block-navigation-item__content {
	color: rgba(255, 255, 255, 0.9);
	font-size: 18px;
	font-weight: 500;
	line-height: 26px;
	letter-spacing: -0.2px;
	transition: color 160ms ease;
}

.endo-site-footer .wp-block-navigation.endo-site-footer__menu-nav .wp-block-navigation-item__content:hover,
.endo-site-footer .wp-block-navigation.endo-site-footer__menu-nav .wp-block-navigation-item__content:focus-visible {
	color: var(--endo-accent-line);
	opacity: 1;
}

.endo-site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
}

.endo-site-footer__list,
.endo-site-footer__menu .menu {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.endo-site-footer__list a,
.endo-site-footer__menu .menu a {
	color: rgba(255, 255, 255, 0.9);
	font-size: 18px;
	font-weight: 500;
	line-height: 26px;
	letter-spacing: -0.2px;
	transition: color 160ms ease;
}

.endo-site-footer__list a:hover,
.endo-site-footer__list a:focus-visible,
.endo-site-footer__menu .menu a:hover,
.endo-site-footer__menu .menu a:focus-visible {
	color: var(--endo-accent-line);
	opacity: 1;
}

.endo-site-footer__copyright,
.endo-site-footer p {
	margin: 0;
	color: var(--endo-white);
}

.endo-site-footer__legal {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-shrink: 0;
	white-space: nowrap;
	margin: 0;
}

.endo-site-footer__legal a,
.endo-site-footer__legal span {
	color: var(--endo-white);
}

.endo-site-footer__legal span {
	padding: 0 8px;
}

@media (max-width: 1180px) {
	:root {
		--endo-gutter: 40px;
	}

	.endo-site-header__inner {
		display: flex;
		justify-content: space-between;
		gap: 28px;
	}

	.endo-nav,
	.endo-header-cta {
		display: none;
	}

	.endo-menu-button {
		display: block;
	}

	.endo-feature-row,
	.endo-course-grid,
	.endo-news__grid {
		gap: 24px;
	}

	.endo-instructor__grid {
		gap: 70px;
	}
}

@media (max-width: 782px) {
	:root {
		--endo-gutter: 20px;
		--endo-container: 362px;
		--endo-header-height: 54px;
	}

	body {
		font-size: 16px;
		line-height: 1.45;
	}

	.endo-site-header__inner {
		min-height: 54px;
		gap: 0;
	}

	.endo-logo {
		max-width: 158px;
	}

	.endo-logo img {
		width: 158px;
		max-width: 158px;
	}

	.endo-nav {
		display: none;
	}

	.endo-site-header {
		position: relative;
		z-index: auto;
		background: transparent;
		padding-top: var(--endo-header-height);
		padding-bottom: 44px;
	}

	.endo-site-header.is-menu-open {
		z-index: auto;
	}

	.endo-site-header__inner {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 101;
		width: 100%;
		max-width: none;
		margin-inline: 0;
		padding-inline: var(--endo-gutter);
		box-sizing: border-box;
		background: linear-gradient(90deg, var(--endo-mist), var(--endo-white));
	}

	.endo-mobile-menu {
		z-index: 99;
	}

	body .wp-site-blocks > header {
		position: static;
		z-index: auto;
		background: transparent;
	}

	body .wp-site-blocks > header:has(.endo-site-header.is-menu-open) .endo-site-header__inner {
		z-index: 101;
	}

	.endo-site-header.is-menu-open .endo-header-cta {
		visibility: hidden;
		pointer-events: none;
	}

	.endo-header-cta {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: calc(var(--endo-header-height) + 20px);
		z-index: auto;
		transform: translateX(calc(min(var(--endo-container), calc(100vw - (var(--endo-gutter) * 2))) / 2 - 100%));
	}

	.endo-hero {
		height: 322px;
		padding: 0;
	}

	.endo-hero__grid {
		position: relative;
		height: 100%;
		overflow: hidden;
	}

	.endo-hero__content {
		display: contents;
	}

	.endo-eyebrow,
	.endo-kicker {
		font-size: 20px;
	}

	.endo-how .endo-kicker {
		font-size: 24px;
	}

	.endo-instructor .endo-kicker {
		font-size: 24px;
	}

	.endo-how h2 {
		font-size: 35px;
		line-height: 45px;
	}

	.endo-instructor h2 {
		font-size: 35px;
		line-height: 45px;
	}

	.endo-how {
		padding-bottom: 32px;
	}

	.endo-audience h2 {
		font-size: 35px;
		line-height: 45px;
	}

	.endo-hero h1 {
		top: 71px;
		left: 0;
		z-index: 1;
		width: 100%;
		height: auto;
		font-size: 32px;
		line-height: 41px;
	}

	.endo-lede {
		top: 220px;
		left: 0;
		z-index: 1;
		width: 100%;
		height: auto;
		font-size: 18px;
		line-height: 25.6px;
	}

	.endo-rule {
		width: 133px;
		height: 2px;
	}

	.endo-hero__mark {
		top: 6.16%;
		right: 0;
		left: 38.12%;
		z-index: 0;
		width: auto;
		height: auto;
		aspect-ratio: 1;
		margin: 0;
	}

	.endo-hero__mark img {
		width: 100%;
		height: auto;
	}

	.endo-hero__eyebrow {
		top: 30px;
		left: 0;
		z-index: 1;
		width: 100%;
		height: auto;
		font-size: 32px;
		line-height: normal;
	}

	.endo-hero .endo-rule {
		top: 200px;
		left: 26px;
		z-index: 1;
		width: 159px;
	}

	.endo-video {
		min-height: 0;
		margin-top: -24px;
		padding-bottom: 40px;
		overflow: visible;
	}

	.endo-video__circle--back {
		top: 18px;
		width: 500px;
		height: 500px;
		margin-left: calc(-250px - 11px);
	}

	.endo-video__circle--front {
		top: 12px;
		width: 500px;
		height: 500px;
		margin-left: -250px;
	}

	.endo-video__stage {
		height: 468px;
	}

	.endo-video__frame {
		top: 44px;
		left: 0;
		width: 362px;
		height: 188px;
		border-radius: 8px;
		box-shadow: 4px 4px 5.8px rgba(36, 38, 42, 0.06);
	}

	.endo-quote-card {
		top: 226px;
		left: 44px;
		width: 318px;
		height: 227px;
	}

	.endo-quote-card__shape--desktop,
	.endo-quote-card__shadow--desktop {
		display: none;
	}

	.endo-quote-card__shape--mobile,
	.endo-quote-card__shadow--mobile {
		display: block;
	}

	.endo-quote-card__shadow--mobile {
		top: 227px;
		left: 178px;
		width: 91px;
		height: 12px;
	}

	.endo-quote-card__text {
		top: 20px;
		left: 12px;
		width: 294px;
		height: 158px;
		font-size: 16px;
		line-height: 23px;
	}

	.endo-intro-band {
		min-height: 182px;
	}

	.endo-intro-band p {
		padding: 25px 0;
		font-size: 14px;
		line-height: 22px;
	}

	.endo-section {
		padding: 70px 0;
	}

	.endo-inner-page:not(:has(.endo-page-hero--has-header)) {
		padding-top: 70px;
	}

	.endo-inner-page:not(:has(.endo-page-hero--has-header)) .endo-page-hero .wp-block-post-title,
	.endo-inner-page:not(:has(.endo-page-hero--has-header)) .endo-page-hero .endo-news-hero__title {
		margin-bottom: 24px;
		font-size: 31px;
	}

	.endo-inner-page:has(.endo-page-hero--has-header) .endo-inner-page__content {
		padding-top: 50px;
	}

	.endo-news-page:not(:has(.endo-page-hero--has-header)) {
		padding-top: 70px;
	}

	.endo-news-page:not(:has(.endo-page-hero--has-header)) .endo-page-hero .wp-block-post-title,
	.endo-news-page:not(:has(.endo-page-hero--has-header)) .endo-page-hero .endo-news-hero__title {
		margin-bottom: 24px;
		font-size: 31px;
	}

	.endo-inner-page__title,
	.endo-inner-page .wp-block-post-title.endo-inner-page__title {
		margin-bottom: 16px;
		font-size: 31px;
	}

	.endo-floating-featured-image {
		float: none;
		width: 100%;
		margin: 0 0 20px;
	}

	.endo-news-hero {
		height: 200px;
	}

	.endo-news-hero__wave {
		right: -120px;
		width: min(760px, 100%);
	}

	.endo-news-hero__title,
	.endo-news-hero .wp-block-post-title {
		font-size: 31px;
		line-height: 1.15;
	}

	.endo-news-page__content {
		padding: 50px 0 70px;
	}

	.endo-single-post__content {
		padding: 32px 0 70px;
	}

	.endo-news-list-page__content {
		padding: 32px 0 70px;
	}

	.endo-videos-list-page__content,
	.endo-testimonials-list-page__content {
		padding: 32px 0 70px;
	}

	.endo-videos-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 32px;
	}

	.endo-video-card__title {
		font-size: 20px;
	}

	.endo-testimonial-full {
		padding: 24px 22px;
	}

	.endo-testimonial-full__header {
		grid-template-columns: minmax(0, 1fr);
		gap: 16px;
		margin-bottom: 18px;
	}

	.endo-testimonial-full__photo {
		width: 72px;
		height: 72px;
	}

	.endo-testimonial-full__name {
		font-size: 20px;
	}

	.endo-testimonial-full__text {
		font-size: 16px;
		line-height: 1.6;
	}

	.endo-newsletter-bar__inner {
		position: relative;
		flex-wrap: nowrap;
		align-items: flex-start;
		gap: 12px;
		padding-block: 16px;
		padding-right: 48px;
	}

	.endo-newsletter-bar__dock {
		position: absolute;
		top: 16px;
		right: 0;
		width: 40px;
		height: 40px;
		margin-left: 0;
	}

	.endo-newsletter-bar .endo-newsletter {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		width: 100%;
	}

	.endo-newsletter__copy,
	.endo-newsletter__embed {
		flex: 0 0 auto;
	}

	.endo-newsletter__embed {
		max-width: none;
		margin-left: 0;
	}

	.endo-newsletter__form {
		max-width: none;
		margin-left: 0;
	}

	.endo-newsletter__controls {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	.endo-newsletter__submit.endo-button {
		width: 100%;
	}

	.endo-section h2,
	.endo-cta-band h2 {
		font-size: 31px;
		line-height: 1.22;
	}

	.endo-split,
	.endo-courses__head,
	.endo-instructor__grid {
		display: block;
	}

	.endo-invite__content {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.endo-invite__title {
		align-items: flex-start;
	}

	.endo-invite__title h2,
	.endo-invite__title h2 a {
		white-space: normal;
	}

	.endo-what .endo-split {
		display: grid;
		grid-template-columns: 1fr;
	}

	.endo-what .endo-split__media {
		order: -1;
		justify-self: stretch;
		max-width: none;
		margin: 0 0 20px;
	}

	.endo-what .endo-image-card {
		aspect-ratio: 362 / 237;
	}

	.endo-image-card__pluses {
		display: none;
	}

	.endo-feature-row {
		grid-template-columns: 1fr;
		gap: 30px;
		width: min(233px, calc(100vw - 40px));
		margin-top: 55px;
	}

	.endo-what {
		padding-bottom: 80px;
	}

	.endo-mini-card h3,
	.endo-reason-grid h3,
	.endo-instructor h3 {
		font-size: 20px;
	}

	.endo-news-card__title {
		font-size: 24px;
	}

	.endo-icon {
		width: 75px;
		height: 75px;
	}

	.endo-why {
		padding-top: 68px;
	}

	.endo-why__wave--top {
		top: -5px;
	}

	.endo-why__pluses {
		left: 48px;
		width: 103px;
		bottom: -40px;
	}

	.endo-why__wave--bottom {
		right: -90px;
		bottom: -10px;
	}

	.endo-why .endo-media-panel {
		min-height: 0;
		margin-top: 35px;
	}

	.endo-text-link {
		font-size: 18px;
	}

	.endo-reason-grid {
		grid-template-columns: 1fr;
		gap: 28px;
		margin-top: 40px;
	}

	.endo-reason-grid article {
		grid-template-columns: 48px 1fr;
	}

	.endo-small-icon {
		width: 48px;
		height: 48px;
	}

	.endo-how .endo-center .endo-rule {
		margin-bottom: 42px;
	}

	.endo-timeline {
		min-height: 280px;
	}

	.endo-timeline__track {
		left: 50%;
		transform: translateX(-50%);
		height: 280px;
	}

	.endo-timeline__path {
		display: block;
		height: 280px;
	}

	.endo-timeline__step {
		width: min(165px, calc(50% - 26px));
		max-width: calc(50% - 26px);
	}

	.endo-timeline__step--left {
		margin-right: calc(50% + 10px);
		margin-left: auto;
		text-align: right;
	}

	.endo-timeline__step--right {
		margin-left: calc(50% + 10px);
		margin-right: 0;
		text-align: left;
	}

	.endo-timeline__step:nth-child(2) {
		margin-bottom: -14px;
	}

	.endo-timeline__step:nth-child(3) {
		margin-bottom: -10px;
	}

	.endo-timeline h3 {
		margin-bottom: 4px;
		font-size: 14px;
		line-height: 18px;
	}

	.endo-timeline p {
		font-size: 12px;
		line-height: 18px;
	}

	.endo-treatment {
		margin-top: 34px;
		padding: 40px 20px;
		min-height: 0;
		border-radius: 25px;
		text-align: center;
	}

	.endo-audience__grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.endo-list-card {
		min-height: 0;
		padding: 30px 24px;
	}

	.endo-list-card h3 {
		font-size: 32px;
		line-height: 38.4px;
	}

	.endo-list-card__copy {
		margin: 0;
	}

	.endo-cta-band {
		padding: 20px 0 calc(55px + 70px);
	}

	.endo-cta-band h2 {
		font-size: 35px;
		line-height: 45px;
	}

	.endo-cta-band p {
		margin: 30px auto 40px;
		font-size: 24px;
		line-height: 35px;
	}

	.endo-button--large,
	.endo-button {
		width: 100%;
		min-height: 58px;
		padding-inline: 20px;
		font-size: 16px;
	}

	.endo-header-cta.endo-button {
		width: auto;
		max-width: calc(100% - (var(--endo-gutter) * 2));
		min-height: 40px;
		padding: 10px 16px;
		border-radius: 12px;
		font-size: 14px;
		line-height: 1.2;
		white-space: nowrap;
	}

	.endo-header-cta.endo-button:hover {
		transform: translateX(calc(min(var(--endo-container), calc(100vw - (var(--endo-gutter) * 2))) / 2 - 100%)) translateY(-1px);
	}

	.endo-cta-band .endo-button--large {
		min-height: 74px;
		padding: 15px 25px;
		gap: 25px;
		font-size: 18px;
	}

	.endo-courses__head {
		margin-bottom: 34px;
	}

	.endo-courses .endo-kicker {
		margin-bottom: 3px;
	}

	.endo-courses__intro h2 {
		max-width: none;
		font-size: 31px;
		line-height: 1.22;
	}

	.endo-courses__intro .endo-rule {
		margin-top: 12px;
		margin-left: 164px;
	}

	.endo-courses__lede {
		font-size: 14px;
		line-height: 20px;
	}

	.endo-courses__lede:first-of-type {
		margin-top: 20px;
	}

	.endo-courses__lede + .endo-courses__lede {
		margin-top: 3px;
	}

	.endo-course-path {
		padding-top: 18px;
	}

	.endo-course-grid {
		grid-template-columns: 1fr;
		gap: 30px;
		width: min(312px, calc(100vw - 40px));
	}

	.endo-course-card {
		max-width: none;
		min-height: 657px;
		padding: 34px 21px 30px;
	}

	.endo-course-card__header h3 {
		font-size: 18px;
		line-height: 22px;
	}

	.endo-course-card__header p,
	.endo-course-card__description p {
		font-size: 16px;
		line-height: 18px;
	}

	.endo-course-card__header h3 + p,
	.endo-course-card__header h3 + .endo-course-card__description,
	.endo-course-card__header p + p,
	.endo-course-card__description p + p {
		margin-top: 9px;
	}

	.endo-course-card__features {
		gap: 10px;
		margin-top: 25px;
	}

	.endo-course-card__feature {
		gap: 15px;
	}

	.endo-course-card__feature-text {
		max-width: 228px;
		font-size: 16px;
		line-height: 18px;
	}

	.endo-course-card__icon,
	.endo-course-card__icon img {
		width: 27px;
		height: 27px;
	}

	.endo-course-card__actions {
		gap: 20px;
		padding-top: 30px;
	}

	.endo-course-card .endo-button:not(.endo-button--ghost),
	.endo-course-card .endo-button--ghost {
		min-height: 57px;
		gap: 3.43px;
		padding: 5.14px 10.29px;
		border-width: 1.286px;
		border-radius: 3.43px;
		font-size: 16px;
	}

	.endo-course-card .endo-button__icon {
		width: 20.57px;
		height: 20.57px;
	}

	.endo-instructor__grid {
		margin-top: 25px;
	}

	.endo-instructor__portrait {
		width: min(272px, 100%);
		margin-bottom: 30px;
	}

	.endo-proof__grid {
		grid-template-columns: 1fr;
		gap: 22px;
		margin-top: 35px;
	}

	.endo-proof__column {
		align-items: center;
	}

	.endo-proof__column .endo-news__link {
		align-self: center;
	}

	.endo-proof-video-stack {
		width: min(244px, 100%);
		margin-inline: auto;
	}

	.endo-proof {
		padding-bottom: 74px;
	}

	.endo-proof__pluses {
		left: var(--endo-gutter);
		width: 103px;
		bottom: -40px;
	}

	.endo-proof__wave--bottom {
		left: auto;
		right: -374px;
		bottom: -20px;
		width: min(920px, 235vw);
		transform: scaleY(-1);
		z-index: 3;
	}

	.endo-faq {
		padding-top: 56px;
	}

	.endo-proof-reviews-stack {
		width: min(100%, 520px);
		margin-inline: auto;
	}

	.endo-proof-reviews {
		--endo-review-peek: 36px;
		height: auto;
		overflow-x: hidden;
		overflow-y: visible;
		touch-action: pan-y;
	}

	.endo-proof-reviews__track {
		height: auto;
		align-items: stretch;
	}

	.endo-review {
		height: auto;
		padding: 22px 24px;
		gap: 14px;
	}

	.endo-review__quote {
		flex: 0 1 auto;
		overflow: visible;
		font-size: 14px;
		line-height: 21px;
	}

	.endo-review__author {
		margin-top: 0;
	}

	.endo-proof-video__media {
		touch-action: pan-y;
	}

	.endo-review__name {
		font-size: 16px;
	}

	.endo-review__role {
		font-size: 13px;
	}

	.endo-testimonial-modal {
		padding: 16px;
	}

	.endo-testimonial-modal__dialog {
		padding: 32px 22px 24px;
	}

	.endo-testimonial-modal__header {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}

	.endo-testimonial-modal__name {
		font-size: 24px;
	}

	.endo-faq__grid {
		flex-direction: column;
		gap: 15px;
	}

	.endo-faq__column {
		display: contents;
	}

	.endo-faq__item--1 {
		order: 1;
	}

	.endo-faq__item--2 {
		order: 2;
	}

	.endo-faq__item--3 {
		order: 3;
	}

	.endo-faq__item--4 {
		order: 4;
	}

	.endo-faq summary {
		padding: 14px 44px 14px 16px;
		font-size: 14px;
	}

	.endo-faq summary::after {
		right: 16px;
	}

	.endo-faq details p {
		padding: 0 16px 16px;
		font-size: 14px;
	}

	.endo-news__head {
		margin-bottom: 24px;
	}

	.endo-news__row {
		flex-direction: column;
		gap: 20px;
	}

	.endo-news__title {
		flex: 0 0 auto;
		max-width: none;
	}

	.endo-news__title h2 {
		font-size: 24px;
		line-height: 32px;
	}

	.endo-news__rule {
		width: 133px;
		height: 2px;
		margin-top: 8px;
	}

	.endo-news__link {
		margin-top: 0;
		font-size: 16px;
	}

	.endo-news__grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.endo-news-card__media {
		height: 220px;
	}

	.endo-news-card__content {
		padding-top: 20px;
	}

	.endo-news-card__title {
		font-size: 22px;
	}

	.endo-news-card__excerpt {
		font-size: 14px;
		line-height: 1.45;
	}

	.endo-invite {
		padding-bottom: 45px;
	}

	.endo-invite__content {
		min-height: 133px;
		padding: 24px 43px;
		text-align: center;
	}

	.endo-invite__title {
		align-items: center;
	}

	.endo-invite__title h2,
	.endo-invite__title h2 a {
		white-space: normal;
	}

	.endo-invite__title h2 {
		font-size: 22px;
		line-height: 1.3;
	}

	.endo-invite__rule {
		width: 133px;
		height: 2px;
		margin: 8px auto 0;
	}

	.endo-invite__text {
		margin-top: 12px;
		font-size: 14px;
		line-height: 1.5;
	}

	.endo-invite__wave--top {
		width: min(520px, 100%);
	}

	.endo-invite__wave--bottom {
		width: min(760px, 100%);
	}

	.endo-site-footer__inner {
		align-items: center;
		padding-block: 20px 18px;
		text-align: center;
	}

	.endo-site-footer__columns {
		gap: 24px;
	}

	.endo-site-footer__column {
		text-align: center;
	}

	.endo-site-footer .wp-block-navigation.endo-site-footer__menu-nav .wp-block-navigation__container {
		align-items: center;
	}

	.endo-site-footer__menu {
		margin-bottom: 0;
	}

	.endo-site-footer__list,
	.endo-site-footer__menu .menu {
		align-items: center;
	}

	.endo-site-footer__bottom {
		flex-direction: column;
		align-items: center;
		gap: 8px;
	}

	.endo-site-footer__legal {
		justify-content: center;
	}
}
