/**
 * Blog single — Momday-style layout (light, readable, two-column).
 */

/* All blog single posts — 1632px container (article, CTA, latest) */
body.exhale-editorial .exhale-blog-single__shell.exhale-site-container,
body.exhale-editorial .exhale-blog-cta__inner.exhale-site-container,
body.exhale-editorial .exhale-blog-latest__inner.exhale-site-container {
	width: min(1632px, 100%);
	max-width: 1632px;
}

body.exhale-editorial .site-main.exhale-blog-single {
	background: #f8f5f1;
	color: #3d3835;
	padding-top: 7rem;
	padding-bottom: 0;
}

body.exhale-editorial .exhale-blog-single .exhale-card,
body.exhale-editorial .exhale-blog-single .exhale-wrap {
	background: transparent;
	border: 0;
	padding: 0;
	box-shadow: none;
}

.exhale-blog-single__shell {
	padding-bottom: 3.5rem;
	padding-top: 50px;
}

/* Header */
.exhale-blog-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.25rem;
}

.exhale-blog-pill {
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.85rem;
	border-radius: 999px;
	background: #3d3835;
	color: #f8f5f1;
	font-family: var(--font-body-family);
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none;
	text-transform: capitalize;
	transition: background 0.2s ease, color 0.2s ease;
}

.exhale-blog-pill:hover {
	background: #6e7d6d;
	color: #fff;
}

.exhale-blog-single__title {
	margin: 0 0 1.25rem;
	font-family: var(--font-heading-family);
	font-size: clamp(2rem, 4.2vw, 3.5rem);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: #3d3835;
}

.exhale-blog-single__intro {
	margin: 0 0 1.5rem;
	max-width: 52rem;
	font-size: 1.0625rem;
	line-height: 1.65;
	color: rgba(61, 56, 53, 0.82);
}

.exhale-blog-single__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 1.75rem;
	margin-bottom: 0.25rem;
	border-bottom: 1px solid rgba(61, 56, 53, 0.12);
}

.exhale-blog-single__date {
	margin: 0;
	font-size: 0.9375rem;
	color: rgba(61, 56, 53, 0.7);
}

.exhale-blog-share {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.exhale-blog-share__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border: 1px solid rgba(61, 56, 53, 0.18);
	border-radius: 50%;
	background: #fff;
	color: #3d3835;
	font-family: var(--font-body-family);
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.exhale-blog-share__btn:hover {
	border-color: #6e7d6d;
	background: #f5f1ea;
}

.exhale-blog-share__btn.is-copied {
	border-color: #6e7d6d;
	background: #d5ddd0;
}

/* Two-column layout */
.exhale-blog-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
	gap: clamp(2rem, 4vw, 4rem);
	align-items: start;
}

.exhale-blog-single__figure {
	margin: 0 0 2rem;
}

.exhale-blog-single__image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 1.25rem;
	object-fit: cover;
}

/* Prose */
.exhale-blog-prose {
	font-size: 1.0625rem;
	line-height: 1.7;
	color: #3d3835;
}

.exhale-blog-prose > *:first-child {
	margin-top: 0;
}

.exhale-blog-prose p {
	margin: 0 0 1.15rem;
}

.exhale-blog-prose strong {
	font-weight: 600;
	color: #3d3835;
}

.exhale-blog-prose h2,
.exhale-blog-prose h3,
.exhale-blog-prose h4,
.exhale-blog-prose h5 {
	margin: 2.25rem 0 0.85rem;
	font-family: var(--font-heading-family);
	font-weight: 700;
	line-height: 1.25;
	color: #3d3835;
}

.exhale-blog-prose h5 {
	font-size: 1.375rem;
}

.exhale-blog-prose h6 {
	margin: 1.5rem 0 0.65rem;
	font-family: var(--font-heading-family);
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.3;
	color: #3d3835;
}

.exhale-blog-prose ul,
.exhale-blog-prose ol {
	margin: 0 0 1.25rem;
	padding-left: 1.35rem;
}

.exhale-blog-prose li {
	margin-bottom: 0.45rem;
}

.exhale-blog-prose a {
	color: #6e7d6d;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.exhale-blog-prose a:hover {
	color: #3d3835;
}

.exhale-blog-single__footer-tags {
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(61, 56, 53, 0.12);
}

/* Sidebar */
.exhale-blog-sidebar {
	position: sticky;
	top: 6.5rem;
}

.exhale-blog-sidebar__author-img {
	display: block;
	width: 100%;
	max-width: 280px;
	aspect-ratio: 1;
	margin-bottom: 1rem;
	border-radius: 1.25rem;
	object-fit: cover;
}

.exhale-blog-sidebar__eyebrow {
	margin: 0 0 0.75rem;
	font-family: var(--font-body-family);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #3d3835;
}

.exhale-blog-sidebar__bio {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: rgba(61, 56, 53, 0.78);
}
.exhale-blog-sidebar__related-title,
.exhale-blog-sidebar__programs-title {
	margin: 0 0 1.25rem;
	font-family: var(--font-body-family);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #3d3835;
}

.exhale-blog-related-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.exhale-blog-related-list__item + .exhale-blog-related-list__item {
	margin-top: 1.25rem;
}

.exhale-blog-related-list__link {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 0.85rem;
	align-items: start;
	text-decoration: none;
	color: inherit;
}

.exhale-blog-related-list__thumb {
	width: 72px;
	height: 72px;
	border-radius: 0.75rem;
	object-fit: cover;
}

.exhale-blog-related-list__title {
	display: block;
	font-family: var(--font-heading-family);
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.35;
	color: #3d3835;
}

.exhale-blog-related-list__date {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.75rem;
	color: rgba(61, 56, 53, 0.6);
}

.exhale-blog-related-list__link:hover .exhale-blog-related-list__title {
	color: #6e7d6d;
}

.exhale-blog-sidebar__programs {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(61, 56, 53, 0.12);
}

.exhale-blog-sidebar__programs-btn {
	width: 100%;
	justify-content: center;
}

/* CTA band */
.exhale-blog-cta {
	background: #f5f1ea;
	border-top: 1px solid rgba(61, 56, 53, 0.08);
	padding: 3.5rem 0;
}

.exhale-blog-cta__eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(61, 56, 53, 0.65);
	text-align: center;
}

.exhale-blog-cta__title {
	margin: 0 0 1rem;
	font-family: var(--font-heading-family);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 700;
	line-height: 1.15;
	text-align: center;
	color: #3d3835;
}

.exhale-blog-cta__lead {
	margin: 0 auto 1.5rem;
	max-width: 40rem;
	font-size: 1rem;
	line-height: 1.65;
	text-align: center;
	color: rgba(61, 56, 53, 0.78);
}

.exhale-blog-cta__actions {
	display: flex;
	justify-content: center;
	margin-bottom: 4.5rem;
}

.exhale-blog-cta__primary {
	margin: 0;
}

.exhale-blog-cta__cols {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2rem;
}

.exhale-blog-cta__col-title {
	margin: 0 0 0.65rem;
	font-family: var(--font-heading-family);
	font-size: 1.125rem;
	font-weight: 700;
	color: #3d3835;
}

.exhale-blog-cta__col p {
	margin: 0 0 0.75rem;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: rgba(61, 56, 53, 0.78);
}

.exhale-blog-cta__link {
	font-size: 0.9375rem;
	font-weight: 600;
	color: #6e7d6d;
	text-decoration: none;
}

.exhale-blog-cta__link:hover {
	color: #3d3835;
	text-decoration: underline;
}

/* Latest articles */
.exhale-blog-latest {
	padding: 3.5rem 0 4.5rem;
	background: #f8f5f1;
}

.exhale-blog-latest__title {
	margin: 0 0 2rem;
	font-family: var(--font-heading-family);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	color: #3d3835;
}

.exhale-blog-latest__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
	max-width: 100%;
}

.exhale-blog-latest-card__link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.exhale-blog-latest-card__media {
	position: relative;
	margin-bottom: 1rem;
	overflow: hidden;
	border-radius: 1.25rem;
}

.exhale-blog-latest-card__image {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.exhale-blog-latest-card__link:hover .exhale-blog-latest-card__image {
	transform: scale(1.03);
}

.exhale-blog-latest-card__tags {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
}

.exhale-blog-latest-card__tag {
	padding: 0.25rem 0.55rem;
	border-radius: 999px;
	background: rgba(248, 245, 241, 0.92);
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: capitalize;
	color: #3d3835;
}

.exhale-blog-latest-card__title {
	margin: 0;
	font-family: var(--font-heading-family);
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.35;
	color: #3d3835;
}

.exhale-blog-latest-card__link:hover .exhale-blog-latest-card__title {
	color: #6e7d6d;
}

@media (max-width: 1199px) {
	.exhale-blog-single__shell,
	.exhale-blog-cta__inner,
	.exhale-blog-latest__inner {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media (max-width: 991px) {
	.exhale-blog-single__layout {
		grid-template-columns: 1fr;
	}

	.exhale-blog-sidebar {
		position: static;
	}

	.exhale-blog-cta__cols {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.exhale-blog-latest__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.exhale-blog-latest__grid {
		grid-template-columns: 1fr;
	}

	.exhale-blog-single__meta {
		align-items: flex-start;
		flex-direction: column;
	}
}
