/* Healing Messages Blogz - hardcoded article template */

.healing-article-page {
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
}

.healing-article {
	max-width: 1100px;
	margin: 0 auto;
	padding: 1rem;
	box-sizing: border-box;
}

.article-back-link {
	font-size: .9rem;
	margin: .5rem 0 1rem 0;
}

.article-back-link a {
	color: var(--bl-bg-dk);
	font-weight: 700;
}

.article-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
	gap: 1.5rem;
	align-items: stretch;
	background:
		linear-gradient(135deg, rgba(243,239,233,.98), rgba(236,229,219,.94)),
		radial-gradient(circle at top left, rgba(184,43,130,.14), transparent 34%),
		radial-gradient(circle at bottom right, rgba(34,77,129,.18), transparent 38%);
	border-top: 1px solid var(--tan-bg-dk);
	border-bottom: 1px solid var(--tan-bg-dk);
	padding: 2rem;
	margin: 0 0 1.5rem 0;
	box-sizing: border-box;
}

.article-hero-copy {
	align-self: center;
}

.article-kicker {
	font-family: var(--prim-font-family);
	font-size: .82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--bl-bg-dk);
	margin: 0 0 .75rem 0;
}

.article-hero h1 {
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-size: clamp(2rem, 4vw, 3.1rem);
	line-height: 1.12;
	color: var(--bl-bg-dk);
	margin: 0 0 1rem 0;
}

.article-subtitle {
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-size: 1.18rem;
	font-style: italic;
	line-height: 1.55;
	color: #333333;
	margin: 0 0 1rem 0;
}

.article-meta {
	display: flex;
	flex-flow: row wrap;
	gap: .5rem;
	margin-top: 1rem;
}

.article-meta span {
	display: inline-block;
	background-color: #ffffff;
	border: 1px solid var(--tan-bg-dk);
	border-radius: 2rem;
	color: var(--prim-text-color);
	font-size: .85rem;
	font-weight: 700;
	padding: .45rem .75rem;
}

.article-hero-image {
	margin: 0;
	background-color: #ffffff;
	border: 1px solid rgba(34,77,129,.18);
	box-shadow: 0 18px 40px rgba(0,0,0,.18);
	overflow: hidden;
}

.article-hero-image img {
	width: 100%;
	height: auto;
	min-height: 330px;
	object-fit: cover;
	display: block;
}

.article-hero-image figcaption,
.article-figure figcaption {
	background-color: var(--tan-bg-lt-lt);
	border-top: 1px solid var(--tan-bg-dk);
	color: var(--prim-text-color);
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-size: .9rem;
	font-style: italic;
	line-height: 1.45;
	padding: .85rem 1rem;
	text-align: center;
}

.article-intro-note,
.article-footer-note {
	background-color: var(--tan-bg-lt-lt);
	border-left: 6px solid var(--bl-bg-dk);
	box-shadow: 2px 2px 10px rgba(0,0,0,.08);
	margin: 0 0 1rem 0;
	padding: .7rem 1rem;
}

.article-footer-note {
	
	background: #f8f2e6;
	border: 1px solid rgba(214, 151, 42, 0.35);
	border-radius: 18px;
	text-align: center;
}

.article-intro-note p,
.article-footer-note p {
	margin: 0;
}

.article-content {
	background-color: #ffffff;
	border: 1px solid #e5e5e5;
	box-shadow: 2px 2px 14px rgba(0,0,0,.08);
	padding: 2rem;
	box-sizing: border-box;
}

.article-content p,
.article-content li {
	color: var(--prim-text-color);
	font-family: var(--prim-font-family);
	font-size: 1rem;
	line-height: 1.85;
}

.article-content h2 {
	clear: both;
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-size: 1.9rem;
	line-height: 1.25;
	color: var(--bl-bg-dk);
	margin: 2rem 0 1rem 0;
	padding-top: .75rem;
	border-top: 1px solid var(--tan-bg-dk);
}

.article-content a {
	color: var(--bl-bg-dk);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.article-quote {
	clear: both;
	background:
		linear-gradient(135deg, rgba(243,239,233,.98), rgba(255,255,255,.96)),
		radial-gradient(circle at top right, rgba(184,43,130,.10), transparent 45%);
	border-left: 6px solid var(--bl-bg-dk);
	margin: 1.5rem auto;
	max-width: 760px;
	padding: 1.25rem 1.5rem;
	box-shadow: 2px 2px 10px rgba(0,0,0,.08);
}

.article-quote p {
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-size: 1.25rem;
	font-style: italic;
	line-height: 1.65;
	margin: 0 0 .5rem 0;
}

.article-quote cite {
	display: block;
	font-family: var(--prim-font-family);
	font-size: .9rem;
	font-style: normal;
	font-weight: 700;
	text-align: right;
}

.article-list {
	background-color: var(--tan-bg-lt-lt);
	border: 1px solid var(--tan-bg-dk);
	border-radius: 14px;
	margin: 1.25rem 0;
	padding: 1rem 1rem 1rem 2rem;
}

.article-figure {
	background-color: #ffffff;
	border: 1px solid #d8d8d8;
	box-shadow: 4px 4px 14px rgba(0,0,0,.16);
	margin: 1rem auto 1.25rem auto;
	max-width: 520px;
	padding: .5rem;
	box-sizing: border-box;
}

.article-figure img {
	display: block;
	width: 100%;
	height: auto;
}

.article-figure.image-left {
	float: left;
	margin: .35rem 1.25rem 1rem 0;
	max-width: 360px;
}

.article-figure.image-right {
	float: right;
	margin: .35rem 0 1rem 1.25rem;
	max-width: 360px;
}

.article-video {
	clear: both;
	margin: 1.5rem auto;
	max-width: 820px;
}

.article-button {
	display: inline-block;
	background: linear-gradient(135deg, #4f2f73, #8a5bb8);
	color: #ffffff;
	font-weight: 700;
	text-decoration: none;
	padding: 0.85rem 1.25rem;
	border-radius: 999px;
	box-shadow: 0 8px 18px rgba(79, 47, 115, 0.25);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	
}

.article-button:visited {
	color: #ffffff;
}

.article-button:hover,
.article-button:focus {
	color: #ffffff;
	background: linear-gradient(135deg, #3f245f, #73499e);
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 10px 22px rgba(79, 47, 115, 0.32);
}

.article-button:focus {
	outline: 3px solid rgba(214, 151, 42, 0.45);
	outline-offset: 3px;
}

.video-wrapper {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	background-color: #000000;
}

.video-wrapper iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.article-footer-note {
	clear: both;
	margin-top: 1.5rem;
}

.article-footer-note h3 {
font-weight: 500;
}

.article-footer-note p {

	text-align: center;
}

@media screen and (max-width: 900px) {
	.article-hero {
		grid-template-columns: 1fr;
		padding: 1.25rem;
	}

	.article-hero h1,
	.article-kicker,
	.article-subtitle {
		text-align: center;
	}

	.article-meta {
		justify-content: center;
	}

	.article-content {
		padding: 1.25rem;
	}

	.article-figure.image-left,
	.article-figure.image-right {
		float: none;
		margin: 1rem auto 1.25rem auto;
		max-width: 520px;
	}
}

@media screen and (max-width: 640px) {
	.healing-article {
		padding: .5rem;
	}

	.article-hero {
		padding: 1rem;
	}

	.article-hero h1 {
		font-size: 2rem;
	}

	.article-hero-image img {
		min-height: 0;
	}

	.article-content {
		padding: 1rem;
	}

	.article-content h2 {
		font-size: 1.55rem;
		text-align: center;
	}

	.article-quote {
		padding: 1rem;
	}
}

/* Optional boxed excerpt/story section used in migrated articles */
.article-story-box {
	clear: both;
	background-color: var(--tan-bg-lt-lt);
	border-left: 6px solid var(--tan-bg-dk);
	box-shadow: 2px 2px 10px rgba(0,0,0,.08);
	margin: 1.5rem auto;
	max-width: 850px;
	padding: 1.25rem 1.5rem;
	box-sizing: border-box;
}

.article-story-box p {
	font-family: var(--prim-font-family);
	font-size: 1rem;
	line-height: 1.8;
	margin: 0 0 1rem 0;
}

.article-story-box p:last-child {
	margin-bottom: 0;
}
