/* =========================================================
   Single post (article) styles — enqueued on is_single()
   ========================================================= */

/* Hero (self-contained copy of the gradient hero for single) */
.post-hero {
	background: var(--color-forest-deep);
	color: var(--color-white);
	position: relative;
	overflow: hidden;
	padding: 54px 0 48px;
}
.post-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(700px 360px at 88% -10%, rgba(202, 162, 74, .18), transparent 60%);
	pointer-events: none;
}

.post-hero .wrapper {
	position: relative;
	z-index: 1;
}

.post-hero .crumbs {
	font-size: 14px;
	color: var(--color-crumbs);
	margin-bottom: 14px;
}

.post-hero .crumbs a {
	color: var(--color-footer-link);
	text-decoration: none;
}

.post-hero .crumbs a:hover {
	text-decoration: underline;
}

.post-hero .eyebrow {
	display: inline-block;
	background: rgba(255, 255, 255, .14);
	color: var(--color-white);
	font-weight: var(--fw-700);
	font-size: 13px;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: 7px 13px;
	border-radius: 999px;
	margin-bottom: 16px;
}

.post-hero h1 {
	font-size: clamp(30px, 4.4vw, 44px);
	line-height: 1.1;
	margin: 0 0 16px;
	color: var(--color-white);
	max-width: 24ch;
}

.post-hero .page-hero-sub {
	font-size: 21px;
	color: var(--color-hero-sub);
	margin: 0;
	max-width: 60ch;
}

/* Article shell */
.post-article {
	background: var(--color-white);
	padding: 56px 0;
}

.post-article .narrow {
	max-width: 820px;
	margin: 0 auto;
	padding: 0 var(--container-pad);
}

.post-article .meta {
	color: var(--color-stone);
	font-size: 15px;
	margin: 0 0 18px;
}

/* Body typography */
.post-body {
	font-size: 19px;
}

.post-body h2 {
	font-size: 28px;
	color: var(--color-forest-deep);
	margin: 38px 0 10px;
}

.post-body h3 {
	font-size: 22px;
	color: var(--color-forest-deep);
	margin: 26px 0 8px;
}

.post-body p {
	margin: 0 0 16px;
}

.post-body a:hover {
	color: var(--color-terra-deep);
}

/* "In short" answer box = native blockquote */
.post-body blockquote {
	margin: 0 0 28px;
	padding: 18px 20px;
	background: var(--color-cream);
	border: 1px solid var(--color-rule);
	border-left: 5px solid var(--color-forest);
	border-radius: 10px;
	font-size: 18px;
}

.post-body blockquote p {
	margin: 0;
}

.post-body blockquote b,
.post-body blockquote strong {
	color: var(--color-forest-deep);
}

/* Green circle-check lists (auto-styled, no markup needed) */
.post-body ul {
	margin: 0 0 18px;
	padding-left: 0;
	list-style: none;
}

.post-body ul li {
	position: relative;
	padding-left: 34px;
	margin-bottom: 10px;
}

.post-body ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	width: 22px;
	height: 22px;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%231f5d59' stroke-width='2'/%3E%3Cpath d='M8 12l3 3 5-6' stroke='%231f5d59' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Some pasted lists include inline icon SVGs; hide them since CSS draws the bullet */
.post-body ul li>svg {
	display: none;
}

/* "Key takeaways" box (author adds <div class="takeaways">) */
.post-body .takeaways {
	background: var(--color-cream);
	border: 1px solid var(--color-rule);
	border-radius: 14px;
	padding: 24px 26px;
	margin: 30px 0;
}

.post-body .takeaways h3 {
	margin: 0 0 10px;
	color: var(--color-forest-deep);
	font-size: 21px;
}

.post-body .takeaways ul {
	margin: 0;
}

/* CTA band (self-contained for single) */
.post-article+.cta-band,
.cta-band {
	background: linear-gradient(135deg, var(--color-forest), var(--color-forest-deep));
	color: var(--color-white);
}

.cta-band .wrapper {
	padding-top: 56px;
	padding-bottom: 56px;
}

.cta-band h2 {
	color: var(--color-white);
	font-size: var(--font-size-36);
	margin: 0 0 12px;
}

.cta-band p {
	color: var(--color-footer-link);
	font-size: 20px;
	max-width: 60ch;
	margin: 0 auto 26px;
}

.cta-band .cta-row {
	gap: 14px;
}

.cta-band .btn-light {
	background: var(--color-white);
	color: var(--color-forest-deep);
}

.cta-band .btn-light:hover {
	background: var(--color-btn-light-hover);
}