.single-post-hero {
	padding: clamp(3rem, 6vw, 4.5rem) 0;
	background-color: var(--color-top-bar);
	color: var(--color-white);
}

.single-post-hero__container {
	text-align: center;
}

.single-post-hero__title {
	margin: 0 auto;
	max-width: 52rem;
	color: var(--color-white);
	font-family: var(--font-family-title);
	font-size: clamp(1.85rem, 3.5vw, 2.75rem);
	font-weight: var(--font-weight-semibold);
	line-height: 1.25;
}

.single-post {
	padding: clamp(3.5rem, 5vw, 5rem) 0 0;
	background: var(--color-white);
}

.single-post__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(17rem, 22rem);
	gap: clamp(2rem, 4vw, 5.5rem);
	align-items: start;
}

.single-post__article {
	min-width: 0;
}

.single-post__date {
	display: block;
	margin-bottom: 1.25rem;
	color: var(--color-black);
	font-size: 1rem;
	font-weight: var(--font-weight-semibold);
	line-height: 1.4;
}

.single-post__featured-image {
	margin-bottom: 1.75rem;
	overflow: hidden;
	background: #ececec;
}

.single-post__featured-image picture {
	display: block;
	width: 100%;
}

.single-post__featured-image picture img,
.single-post__featured-image-el {
	display: block;
	width: 100%;
	height: auto;
}

.single-post__toc {
	margin-bottom: 2rem;
	border: 1px solid #d8d8d8;
	background: var(--color-white);
}

.single-post__toc-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	padding: 1rem 1.25rem;
	border: 0;
	background: transparent;
	color: var(--color-black);
	font-family: var(--font-family-title);
	font-size: 1.05rem;
	font-weight: var(--font-weight-semibold);
	line-height: 1.3;
	text-align: left;
	cursor: pointer;
}

.single-post__toc-icon {
	position: relative;
	width: 0.65rem;
	height: 0.65rem;
	flex: 0 0 0.65rem;
}

.single-post__toc-icon::before {
	display: block;
	width: 0.65rem;
	height: 0.65rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	content: "";
	transform: rotate(45deg);
	transition: transform 0.25s ease;
}

.single-post__toc.is-open .single-post__toc-icon::before {
	transform: rotate(-135deg);
}

.single-post__toc-panel {
	display: none;
	padding: 0 1.25rem 1.25rem;
}

.single-post__toc.is-open .single-post__toc-panel {
	display: block;
}

.single-post__toc-list {
	margin: 0;
	padding-left: 1.25rem;
}

.single-post__toc-item + .single-post__toc-item {
	margin-top: 0.65rem;
}

.single-post__toc-link,
.single-post__toc-link:link,
.single-post__toc-link:visited,
.single-post__toc-link:active {
	position: relative;
	display: inline;
	color: var(--color-black);
	font-size: 1rem;
	line-height: 1.5;
	text-decoration: none;
	background-image: linear-gradient(var(--color-primary), var(--color-primary));
	background-position: 0 100%;
	background-repeat: no-repeat;
	background-size: 0% 1px;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	transition: color 0.35s ease, background-size 0.35s ease;
}

.single-post__toc-link:hover,
.single-post__toc-link:focus-visible {
	color: var(--color-primary);
	background-size: 100% 1px;
}

.single-post__content {
	color: var(--color-text);
	font-size: 1.1rem;
    line-height: 1.75;
    font-weight: 400;
	padding-bottom: clamp(3.5rem, 5vw, 5rem);
}

.single-post__content > *:first-child {
	margin-top: 0;
}

.single-post__content > *:last-child {
	margin-bottom: 0;
}

.single-post__content h2,
.single-post__content h3,
.single-post__content h4 {
	margin: 2rem 0 1rem;
	color: var(--color-section-dark-blue);
	font-family: var(--font-family-title);
	font-weight: var(--font-weight-semibold);
	line-height: 1.35;
}

.single-post__content h2 {
	font-size: clamp(1.35rem, 2vw, 1.75rem);
	scroll-margin-top: 7rem;
}

.single-post__content h3 {
	font-size: clamp(1.15rem, 1.8vw, 1.45rem);
}

.single-post__content p,
.single-post__content ul,
.single-post__content ol {
	margin: 0 0 1.25rem;
}

.single-post__content a,
.single-post__content a:link,
.single-post__content a:visited,
.single-post__content a:active {
	position: relative;
	display: inline;
	color: var(--color-primary)!Important;
	text-decoration: none;
	background-image: linear-gradient(var(--color-primary), var(--color-primary));
	background-position: 0 100%;
	background-repeat: no-repeat;
	background-size: 0% 1px;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	transition: color 0.35s ease, background-size 0.35s ease;
	font-weight: 500;
}

.single-post__content a:hover,
.single-post__content a:focus-visible {
	color: var(--color-primary);
	background-size: 100% 1px;
}

.single-post__sidebar {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	min-width: 0;
}

.single-post__cta {
	padding: clamp(1.75rem, 3vw, 2.25rem);
	background: var(--color-top-bar);
	color: var(--color-white);
	text-align: center;
}

.single-post__cta-title {
	margin: 0;
	color: var(--color-white);
	font-family: var(--font-family-title);
	font-size: clamp(1.35rem, 2vw, 1.65rem);
	font-weight: var(--font-weight-semibold);
	line-height: 1.3;
}

.single-post__cta-text {
	margin: 1rem 0 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: 1rem;
	line-height: 1.6;
}

.single-post__cta-button {
	margin-top: 1.35rem;
}

.single-post__cta-button .mbm-button,
.single-post__cta-button-el {
	width: 100%;
}

.single-post__cta-link,
.single-post__cta-link:link,
.single-post__cta-link:visited,
.single-post__cta-link:active {
	display: inline-block;
	margin-top: 1rem;
	color: var(--color-primary);
	font-size: 0.95rem;
	font-weight: var(--font-weight-semibold);
	line-height: 1.4;
	text-decoration: none;
}

.single-post__cta-link--text {
	margin-top: 1rem;
	color: var(--color-primary);
}

.single-post__share {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid #d8d8d8;
}

.single-post__share-label {
	color: #25392d;
    font-size: 1.4rem;
    font-weight: 500;
}

.single-post__share-links {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.single-post__share-link,
.single-post__share-link:link,
.single-post__share-link:visited,
.single-post__share-link:active {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	color: var(--color-black);
	font-size: 0.95rem;
	text-decoration: none;
	transition: color 0.35s ease, opacity 0.35s ease;
}

.single-post__share-link:hover,
.single-post__share-link:focus-visible {
	color: var(--color-primary);
}

.single-post__more-heading {
	margin: 0 0 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid #d8d8d8;
	color: var(--color-section-dark-blue);
	font-family: var(--font-family-title);
	font-size: 1.15rem;
	font-weight: var(--font-weight-semibold);
	line-height: 1.3;
}

.single-post__more-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.single-post__more-item {
	display: grid;
	grid-template-columns: 5.25rem minmax(0, 1fr);
	gap: 1rem;
	align-items: start;
}

.single-post__more-media {
	display: block;
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 5.25rem;
	aspect-ratio: 4 / 3;
	background: #ececec;
}

.single-post__more-media picture {
	display: block;
	width: 100%;
	height: 100%;
}

.single-post__more-media picture img,
.single-post__more-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.single-post__more-body {
	min-width: 0;
}

.single-post__more-item-title {
	margin: 0;
	font-family: var(--font-family-title);
	font-size: 0.85rem;
	font-weight: var(--font-weight-semibold);
	line-height: 1.35;
}

.single-post__more-item-title a,
.single-post__more-item-title a:link,
.single-post__more-item-title a:visited,
.single-post__more-item-title a:active {
	display: inline;
	color: var(--color-section-dark-blue);
	text-decoration: none;
	background-image: linear-gradient(var(--color-primary), var(--color-primary));
	background-position: 0 100%;
	background-repeat: no-repeat;
	background-size: 0% 1px;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	transition: color 0.35s ease, background-size 0.35s ease;
}

.single-post__more-item-title a:hover,
.single-post__more-item-title a:focus-visible {
	color: var(--color-primary);
	background-size: 100% 1px;
}

.single-post__more-excerpt {
	margin: 0.35rem 0 0;
	color: var(--color-muted);
	font-size: 0.78rem;
	line-height: 1.5;
}

@media (max-width: 991px) {
	.single-post__layout {
		grid-template-columns: 1fr;
	}

	.single-post__sidebar {
		max-width: 28rem;
	}
}

@media (max-width: 767px) {
	.single-post {
		padding: clamp(3.5rem, 5vw, 5rem) 0 0;
	}

	.single-post-hero {
		padding: 2.25rem 0;
	}

	.single-post__more-item {
		grid-template-columns: 4rem minmax(0, 1fr);
	}

	.single-post__more-media {
		max-width: 4rem;
	}
}

.single-post-nav {
	padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
	background: var(--color-white);
}

.single-post-nav__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.single-post-nav__placeholder {
	display: block;
	min-height: 1px;
}

.single-post-nav__item,
.single-post-nav__item:link,
.single-post-nav__item:visited,
.single-post-nav__item:active {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	min-height: 100%;
	padding: clamp(1.25rem, 2.5vw, 1.75rem);
	color: inherit;
	text-decoration: none;
	transition: background-color 0.35s ease;
}

.single-post-nav__item--previous {
	border-right: 1px solid #d8d8d8;
}

.single-post-nav__item:hover,
.single-post-nav__item:focus-visible {
	background: #fafafa;
}

.single-post-nav__item--next {
	align-items: flex-end;
	text-align: right;
}

.single-post-nav__label {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: #9a9a9a;
	font-size: 0.85rem;
	font-weight: var(--font-weight-semibold);
	line-height: 1.3;
}

.single-post-nav__arrow {
	color: var(--color-primary);
	font-size: 1rem;
	line-height: 1;
}

.single-post-nav__card {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	width: 100%;
	min-width: 0;
}

.single-post-nav__item--next .single-post-nav__card {
	flex-direction: row-reverse;
}

.single-post-nav__media {
	display: block;
	flex: 0 0 5rem;
	width: 5rem;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: #ececec;
}

.single-post-nav__media picture {
	display: block;
	width: 100%;
	height: 100%;
}

.single-post-nav__media picture img,
.single-post-nav__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.single-post-nav__title {
	display: -webkit-box;
	overflow: hidden;
	color: var(--color-section-dark-blue);
	font-family: var(--font-family-title);
	font-size: clamp(0.95rem, 1.2vw, 1.05rem);
	font-weight: var(--font-weight-semibold);
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	transition: color 0.35s ease;
}

.single-post-nav__item:hover .single-post-nav__title,
.single-post-nav__item:focus-visible .single-post-nav__title {
	color: var(--color-primary);
}

@media (max-width: 767px) {
	.single-post-nav {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}

	.single-post-nav__grid {
		grid-template-columns: 1fr;
	}

	.single-post-nav__placeholder {
		display: none;
	}

	.single-post-nav__item--previous {
		border-right: 0;
		border-bottom: 1px solid #d8d8d8;
	}

	.single-post-nav__item--next {
		align-items: flex-start;
		text-align: left;
	}

	.single-post-nav__item--next .single-post-nav__card {
		flex-direction: row;
	}

	.single-post-nav__card {
		align-items: center;
	}

	.single-post-nav__media {
		flex: 0 0 4.25rem;
		width: 4.25rem;
	}

	.single-post-nav__title {
		flex: 1 1 auto;
		min-width: 0;
		-webkit-line-clamp: 4;
	}
}

.single-post-bottom-cta {
	padding: clamp(3rem, 6vw, 4.5rem) 0;
	background-color: var(--color-top-bar);
	color: var(--color-white);
	text-align: center;
}

.single-post-bottom-cta__container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.single-post-bottom-cta__title {
	margin: 0;
	max-width: 46rem;
	color: var(--color-white);
	font-family: var(--font-family-title);
	font-size: clamp(1.65rem, 3vw, 2.35rem);
	font-weight: var(--font-weight-semibold);
	line-height: 1.25;
}

.single-post-bottom-cta__text {
	margin: 1rem 0 0;
	max-width: 40rem;
	color: var(--color-white);
	font-size: 0.8rem;
	font-weight: var(--font-weight-semibold);
	letter-spacing: 0.12em;
	line-height: 1.5;
	text-transform: uppercase;
}

.single-post-bottom-cta__button {
	margin-top: 1.75rem;
}

.single-post-bottom-cta__button .mbm-button,
.single-post-bottom-cta__button-el {
	min-width: min(100%, 18rem);
}

.single-post__more-title {
	color: #25392d;
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.meet-our-doctors__logos {
	display: none;
}