/*
 * Dwarka Puri — blog.css
 * Styles for archive.php (blog listing) and single.php (blog post)
 * Matches blog-home-mockup.html and blog-post-mockup.html design
 * @package DwarkaPuri
 * @version 1.1.0
 */

/* ══════════════════════════════════════════════
   BLOG SHARED VARIABLES
   ══════════════════════════════════════════════ */
:root {
	--blog-max: 1380px;
	--blog-pad: 72px;
	--blog-sidebar: 340px;
	--blog-gap: 52px;
}

/* ══════════════════════════════════════════════
   BLOG HEADER
   ══════════════════════════════════════════════ */
.blog-header {
	background: var(--off, #FDFAF6);
	border-bottom: 1px solid var(--border, #E8DDD0);
	padding: 68px var(--blog-pad) 56px;
}

.bh-inner {
	max-width: var(--blog-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 72px;
	align-items: center;
}

.bh-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 10.5px;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: var(--gold, #B8751A);
	margin-bottom: 14px;
	font-weight: 500;
}
.bh-eyebrow::before { content: '✦'; font-size: 8px; }

.bh-title {
	font-family: var(--serif, 'Playfair Display', Georgia, serif);
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 700;
	color: var(--ink, #1C1208);
	line-height: 1.05;
	margin-bottom: 16px;
}
.bh-title em { font-style: italic; color: var(--gold, #B8751A); }

.bh-sub {
	font-size: 17px;
	color: var(--grey, #5A4A3A);
	line-height: 1.8;
	max-width: 520px;
}

.bh-stats { display: flex; flex-direction: column; gap: 12px; }

.bh-stat {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 20px;
	background: #fff;
	border: 1px solid var(--border, #E8DDD0);
	border-left: 3px solid var(--gold, #B8751A);
}

.bhs-n {
	font-family: var(--serif, Georgia, serif);
	font-size: 28px;
	font-weight: 700;
	color: var(--gold, #B8751A);
	line-height: 1;
	min-width: 72px;
}
.bhs-n span { font-size: 16px; }

.bhs-l { font-size: 14px; color: var(--grey, #5A4A3A); line-height: 1.4; }
.bhs-l span { font-size: 12px; color: var(--grey2, #8A7A6A); }

/* ══════════════════════════════════════════════
   CATEGORY TABS
   ══════════════════════════════════════════════ */
.cat-bar {
	background: #fff;
	border-bottom: 1px solid var(--border, #E8DDD0);
	padding: 0 var(--blog-pad);
	display: flex;
	align-items: center;
	overflow-x: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.cat-bar::-webkit-scrollbar { display: none; }

.cat-tab {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 18px 22px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .08em;
	color: var(--grey, #5A4A3A);
	text-decoration: none;
	white-space: nowrap;
	border-bottom: 2px solid transparent;
	transition: all .25s;
}
.cat-tab:hover { color: var(--gold, #B8751A); }
.cat-tab.active {
	color: var(--gold, #B8751A);
	border-bottom-color: var(--gold, #B8751A);
	font-weight: 600;
}

.cat-count {
	background: var(--gold-pale, #FBF6EC);
	color: var(--gold, #B8751A);
	font-size: 10px;
	padding: 2px 7px;
	font-weight: 600;
}
.cat-tab.active .cat-count { background: var(--gold, #B8751A); color: #fff; }

/* ══════════════════════════════════════════════
   MAIN BLOG LAYOUT
   ══════════════════════════════════════════════ */
.blog-wrap {
	max-width: var(--blog-max);
	margin: 0 auto;
	padding: 52px var(--blog-pad);
	display: grid;
	grid-template-columns: 1fr var(--blog-sidebar);
	gap: var(--blog-gap);
}

/* ══════════════════════════════════════════════
   FEATURED CARD
   ══════════════════════════════════════════════ */
.featured-section { margin-bottom: 48px; }

.section-label {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}
.sl-line { height: 1px; background: linear-gradient(90deg, var(--gold, #B8751A), transparent); flex: 1; }
.sl-text { font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold, #B8751A); font-weight: 600; white-space: nowrap; }

.featured-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border: 1px solid var(--border, #E8DDD0);
	overflow: hidden;
	transition: box-shadow .35s;
}
.featured-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.08); }

.fc-img {
	position: relative;
	min-height: 400px;
	overflow: hidden;
	background: linear-gradient(135deg, var(--saffron, #8B3E0E) 0%, #6B3320 50%, #C4862A 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 28px;
	background-size: cover;
	background-position: center;
}
.fc-img::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(20,8,2,.15) 0%, rgba(20,8,2,.65) 100%);
	z-index: 1;
}
.fc-img-sym, .fc-img-badge, .fc-img-meta { position: relative; z-index: 2; }

.fc-img-sym {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -60%);
	font-family: var(--serif, Georgia, serif);
	font-size: 140px;
	color: rgba(255,255,255,.06);
	user-select: none;
	z-index: 0;
}
.fc-img-badge {
	align-self: flex-start;
	background: var(--gold, #B8751A);
	color: #fff;
	font-size: 9px;
	letter-spacing: .2em;
	text-transform: uppercase;
	padding: 5px 14px;
	font-weight: 700;
	margin-bottom: auto;
}
.fc-img-meta { display: flex; align-items: center; gap: 10px; }
.fc-author-img {
	width: 36px; height: 36px; border-radius: 50%;
	background: rgba(255,255,255,.2);
	display: flex; align-items: center; justify-content: center;
	font-family: var(--serif, Georgia, serif);
	font-size: 11px; color: #fff; font-weight: 700;
	border: 2px solid rgba(255,255,255,.3);
	flex-shrink: 0;
}
.fc-author-name { font-size: 12px; color: rgba(255,255,255,.85); font-weight: 500; }
.fc-author-role { font-size: 10px; color: rgba(255,255,255,.5); }

.fc-content {
	padding: 36px 32px;
	display: flex;
	flex-direction: column;
	background: #fff;
}
.fc-cat { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold, #B8751A); margin-bottom: 10px; font-weight: 600; }
.fc-title { font-family: var(--serif, Georgia, serif); font-size: 24px; font-weight: 700; color: var(--ink, #1C1208); line-height: 1.2; margin-bottom: 14px; }
.fc-title a { color: inherit; text-decoration: none; }
.fc-title a:hover { color: var(--gold, #B8751A); }
.fc-title em { font-style: italic; color: var(--gold, #B8751A); }
.fc-excerpt { font-size: 16px; color: var(--grey, #5A4A3A); line-height: 1.78; margin-bottom: auto; padding-bottom: 20px; font-weight: 300; }
.fc-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border, #E8DDD0); padding-top: 18px; }
.fc-date { font-size: 12px; color: var(--grey2, #8A7A6A); }
.fc-read { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold, #B8751A); font-weight: 600; text-decoration: none; }
.fc-read:hover { color: var(--saffron, #8B3E0E); }

/* ══════════════════════════════════════════════
   POSTS GRID
   ══════════════════════════════════════════════ */
.posts-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 24px; }
.ph-title { font-family: var(--serif, Georgia, serif); font-size: 22px; font-weight: 700; color: var(--ink, #1C1208); }
.ph-title em { font-style: italic; color: var(--gold, #B8751A); }

.posts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }

.post-card {
	border: 1px solid var(--border, #E8DDD0);
	overflow: hidden;
	background: #fff;
	transition: all .35s;
	display: flex;
	flex-direction: column;
}
.post-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,.08); transform: translateY(-3px); }

.pc-img {
	height: 240px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	padding: 14px;
	background: linear-gradient(135deg, #3D1C0E 0%, #8B4513 100%);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.pc-img img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform .6s ease;
	z-index: 0;
}
.post-card:hover .pc-img img { transform: scale(1.06); }
.pc-img::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(10,4,0,.5) 100%);
	z-index: 1;
}

.pc-img-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #3D1C0E, #8B4513);
}
.pc-cat {
	position: relative;
	z-index: 2;
	background: var(--gold, #B8751A);
	color: #fff;
	font-size: 9px;
	letter-spacing: .18em;
	text-transform: uppercase;
	padding: 4px 12px;
	font-weight: 700;
	align-self: flex-start;
}

.pc-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.pc-title { font-family: var(--serif, Georgia, serif); font-size: 17px; font-weight: 700; color: var(--ink, #1C1208); line-height: 1.3; margin-bottom: 8px; }
.pc-title a { color: inherit; text-decoration: none; }
.pc-title a:hover { color: var(--gold, #B8751A); }
.pc-excerpt { font-size: 14px; color: var(--grey, #5A4A3A); line-height: 1.7; flex: 1; margin-bottom: 16px; font-weight: 300; }
.pc-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--gold-pale2, #F5EDD8); padding-top: 12px; }
.pc-author { display: flex; align-items: center; gap: 8px; }
.pc-author-av {
	width: 28px; height: 28px; border-radius: 50%;
	background: var(--gold-pale2, #F5EDD8);
	display: flex; align-items: center; justify-content: center;
	font-size: 11px; font-weight: 700; color: var(--gold, #B8751A);
	flex-shrink: 0;
}
.pa-name { font-size: 11px; font-weight: 600; color: var(--ink2, #2E1E0C); }
.pa-date { font-size: 10px; color: var(--grey2, #8A7A6A); }
.pc-read { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold, #B8751A); font-weight: 600; text-decoration: none; }
.pc-read:hover { color: var(--saffron, #8B3E0E); }

/* ══════════════════════════════════════════════
   PAGINATION
   ══════════════════════════════════════════════ */
.blog-pagination { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 16px 0 8px; }
.blog-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border: 1px solid var(--border, #E8DDD0);
	font-size: 13px;
	color: var(--grey, #5A4A3A);
	text-decoration: none;
	transition: all .2s;
}
.blog-pagination .page-numbers:hover { border-color: var(--gold, #B8751A); color: var(--gold, #B8751A); }
.blog-pagination .page-numbers.current { background: var(--gold, #B8751A); border-color: var(--gold, #B8751A); color: #fff; font-weight: 700; }
.blog-pagination .prev, .blog-pagination .next { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--gold, #B8751A); }

/* ══════════════════════════════════════════════
   SIDEBAR — SHARED
   ══════════════════════════════════════════════ */
.blog-sidebar, .post-sidebar {}

.sw { border: 1px solid var(--border, #E8DDD0); background: #fff; margin-bottom: 24px; overflow: hidden; }
.sw-head { padding: 14px 18px; border-bottom: 1px solid var(--border, #E8DDD0); background: var(--off, #FDFAF6); }
.sw-head-title {
	font-family: var(--serif, Georgia, serif);
	font-size: 15px;
	font-weight: 700;
	color: var(--ink, #1C1208);
	display: flex;
	align-items: center;
	gap: 8px;
}
.sw-head-title::before { content: ''; width: 3px; height: 14px; background: var(--gold, #B8751A); display: inline-block; flex-shrink: 0; }
.sw-body { padding: 16px 18px; }

/* Cat list */
.cat-list { list-style: none; }
.cat-item { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--gold-pale2, #F5EDD8); }
.cat-item:last-child { border-bottom: none; }
.ci-name { font-size: 14px; color: var(--grey, #5A4A3A); display: flex; align-items: center; gap: 8px; text-decoration: none; }
.ci-name::before { content: '›'; color: var(--gold, #B8751A); font-size: 18px; }
.ci-name:hover { color: var(--gold, #B8751A); }
.ci-count { font-size: 11px; color: var(--gold, #B8751A); font-weight: 600; background: var(--gold-pale, #FBF6EC); padding: 2px 8px; }

/* Recent posts */
.recent-item { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--gold-pale2, #F5EDD8); align-items: flex-start; }
.recent-item:last-child { border-bottom: none; }
.ri-img {
	width: 60px; height: 48px; flex-shrink: 0;
	background-size: cover; background-position: center;
	background-color: var(--gold-pale2, #F5EDD8);
}
.ri-img-default {
	display: flex; align-items: center; justify-content: center;
	font-size: 12px; font-weight: 700; color: var(--gold, #B8751A);
}
.ri-title { font-size: 13px; font-weight: 600; color: var(--ink, #1C1208); line-height: 1.35; margin-bottom: 4px; }
.ri-title a { color: inherit; text-decoration: none; }
.ri-title a:hover { color: var(--gold, #B8751A); }
.ri-meta { font-size: 11px; color: var(--grey2, #8A7A6A); }

/* Tags cloud */
.tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill { padding: 6px 14px; border: 1px solid var(--border, #E8DDD0); font-size: 12px; color: var(--grey, #5A4A3A); text-decoration: none; transition: all .2s; }
.tag-pill:hover { background: var(--gold, #B8751A); color: #fff; border-color: var(--gold, #B8751A); }

/* Sidebar CTA */
.sidebar-cta {
	background: var(--saffron, #8B3E0E);
	padding: 24px 20px;
}
.sc-tag { font-size: 9px; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 8px; }
.sc-title { font-family: var(--serif, Georgia, serif); font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.sc-title em { font-style: italic; color: var(--gold3, #F0C878); }
.sc-sub { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 18px; }
.sc-btn {
	display: block;
	background: var(--gold, #B8751A);
	color: #fff;
	text-align: center;
	padding: 12px;
	font-size: 11px;
	letter-spacing: .18em;
	text-transform: uppercase;
	font-weight: 700;
	text-decoration: none;
	transition: background .25s;
}
.sc-btn:hover { background: var(--gold2, #D4952E); }

/* No posts */
.no-posts { padding: 48px; text-align: center; font-size: 16px; color: var(--grey, #5A4A3A); }

/* ══════════════════════════════════════════════
   SINGLE POST PAGE
   ══════════════════════════════════════════════ */
.blog-post-main {}

/* Post Hero */
.post-hero {
	background: var(--off, #FDFAF6);
	border-bottom: 1px solid var(--border, #E8DDD0);
	padding: 52px var(--blog-pad) 44px;
}
.ph-inner { max-width: 980px; margin: 0 auto; }

.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--grey2, #8A7A6A); margin-bottom: 16px; }
.breadcrumb a { color: var(--grey2, #8A7A6A); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--gold, #B8751A); }
.breadcrumb span { color: var(--grey3, #C4B8A8); }

.post-cat { display: inline-flex; align-items: center; gap: 8px; font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold, #B8751A); margin-bottom: 12px; font-weight: 600; }
.post-cat::before { content: '✦'; font-size: 8px; }

.post-title {
	font-family: var(--serif, Georgia, serif);
	font-size: clamp(26px, 3.5vw, 44px);
	font-weight: 700;
	color: var(--ink, #1C1208);
	line-height: 1.12;
	margin-bottom: 18px;
}
.post-title em { font-style: italic; color: var(--gold, #B8751A); }

.post-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.pm-author { display: flex; align-items: center; gap: 10px; }
.pm-av {
	width: 44px; height: 44px; border-radius: 50%;
	background: var(--gold-pale2, #F5EDD8);
	display: flex; align-items: center; justify-content: center;
	font-family: var(--serif, Georgia, serif);
	font-size: 12px; font-weight: 700; color: var(--gold, #B8751A);
	flex-shrink: 0; border: 2px solid var(--gold, #B8751A);
	letter-spacing: .02em;
}
.pm-name { font-size: 14px; font-weight: 600; color: var(--ink2, #2E1E0C); }
.pm-role { font-size: 11px; color: var(--grey2, #8A7A6A); }
.pm-divider { width: 1px; height: 32px; background: var(--border, #E8DDD0); }
.pm-info { display: flex; flex-direction: column; gap: 3px; }
.pm-date { font-size: 12px; color: var(--grey2, #8A7A6A); }
.pm-read { display: inline-flex; align-items: center; gap: 6px; background: var(--gold-pale, #FBF6EC); color: var(--gold, #B8751A); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; padding: 4px 12px; font-weight: 600; }

/* Featured Image */
.feat-img-wrap { max-width: 980px; margin: 0 auto; }
.feat-img {
	background: linear-gradient(135deg, var(--saffron, #8B3E0E) 0%, #6B3320 45%, #C4862A 100%);
	height: 440px;
	display: flex;
	align-items: flex-end;
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center;
}
.fi-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(10,4,0,.5) 100%);
}
.fi-caption { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,0,0,.4); padding: 10px 20px; z-index: 2; }
.fi-cap-text { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.55); }

/* Content layout */
.post-content-wrap {
	max-width: var(--blog-max);
	margin: 0 auto;
	padding: 52px var(--blog-pad);
	display: grid;
	grid-template-columns: 1fr var(--blog-sidebar);
	gap: 56px;
}

/* Post body — Gutenberg content */
.post-article {}

.post-body {
	font-size: 17px;
	color: var(--grey, #5A4A3A);
	line-height: 1.88;
	font-weight: 300;
}

/* ── Headings ── */
.post-body h2 {
	font-family: var(--serif, Georgia, serif);
	font-size: 26px;
	font-weight: 700;
	color: var(--ink, #1C1208);
	margin: 36px 0 14px;
	line-height: 1.15;
}
.post-body h3 {
	font-family: var(--serif, Georgia, serif);
	font-size: 20px;
	font-weight: 700;
	color: var(--ink2, #2E1E0C);
	margin: 24px 0 10px;
}
.post-body h4 {
	font-size: 17px;
	font-weight: 700;
	color: var(--ink2, #2E1E0C);
	margin: 20px 0 8px;
}

/* ── Paragraphs ── */
.post-body p { margin-bottom: 18px; }
.post-body p strong { color: var(--ink, #1C1208); font-weight: 600; }
.post-body a { color: var(--gold, #B8751A); text-decoration: underline; text-underline-offset: 3px; }

/* ══════════════════════════════════════════════
   BULLET POINTS & LISTS — FIXED
   Style matches reference: gold checkmark bullet,
   bold term inline with description, single line.
   ══════════════════════════════════════════════ */

/* Standard ul/ol reset */
.post-body ul,
.post-body ol {
	margin: 16px 0 24px 0;
	padding-left: 0;
	list-style: none;
}

/* Each li — checkmark style, single flowing block */
.post-body ul li,
.post-body ol li {
	position: relative;
	padding: 10px 0 10px 36px;
	font-size: 16px;
	color: var(--grey, #5A4A3A);
	line-height: 1.75;
	border-bottom: none;
}

/* Gold checkmark bullet for ul */
.post-body ul li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 11px;
	width: 22px;
	height: 22px;
	background: var(--gold, #B8751A);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 2px;
	flex-shrink: 0;
}

/* Numbered counter for ol */
.post-body ol { counter-reset: post-ol; }
.post-body ol li { counter-increment: post-ol; }
.post-body ol li::before {
	content: counter(post-ol);
	position: absolute;
	left: 0;
	top: 11px;
	width: 22px;
	height: 22px;
	background: var(--gold, #B8751A);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 2px;
	line-height: 1;
}

/* Bold term inside li — stays INLINE with description */
.post-body ul li strong,
.post-body ol li strong {
	color: var(--ink, #1C1208);
	font-weight: 700;
	display: inline;
	margin-right: 4px;
}

/* ──────────────────────────────────────────────
   TABLE BLOCK USED AS BULLET LIST — FIXED
   WordPress 2-column table (Term | Desc) converted
   to single-line bullet: ✓ Bold Term: Description
   ────────────────────────────────────────────── */

/* Normal tables with thead — keep as proper table */
.post-body table {
	width: 100%;
	border-collapse: collapse;
	margin: 24px 0;
	font-size: 15px;
}
.post-body table th {
	background: var(--ink, #1C1208);
	color: #fff;
	padding: 12px 16px;
	text-align: left;
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
}
.post-body table td {
	padding: 12px 16px;
	border-bottom: 1px solid var(--border, #E8DDD0);
	color: var(--grey, #5A4A3A);
	vertical-align: top;
}
.post-body table tr:nth-child(even) { background: var(--off, #FDFAF6); }

/* Tables WITHOUT thead = bullet list style */
.post-body table:not(:has(thead)) {
	border: none;
	background: none;
	display: block;
}
.post-body table:not(:has(thead)) thead { display: none; }
.post-body table:not(:has(thead)) tbody {
	display: flex;
	flex-direction: column;
}
/* Each row = one bullet item */
.post-body table:not(:has(thead)) tr {
	display: flex;
	align-items: flex-start;
	gap: 0;
	background: none !important;
	border-bottom: none;
	padding: 10px 0 10px 36px;
	position: relative;
}
/* Gold checkmark bullet */
.post-body table:not(:has(thead)) tr::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 11px;
	width: 22px;
	height: 22px;
	background: var(--gold, #B8751A);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 2px;
	flex-shrink: 0;
}
/* First cell = bold term — inline, no line break */
.post-body table:not(:has(thead)) td:first-child {
	font-weight: 700;
	color: var(--ink, #1C1208);
	font-size: 16px;
	border-bottom: none;
	padding: 0;
	line-height: 1.75;
	white-space: nowrap;
	flex-shrink: 0;
	margin-right: 6px;
}
/* Colon after term */
.post-body table:not(:has(thead)) td:first-child::after {
	content: ':';
	font-weight: 700;
	color: var(--ink, #1C1208);
}
/* Second cell = description — flows inline after term */
.post-body table:not(:has(thead)) td:last-child {
	color: var(--grey, #5A4A3A);
	font-size: 16px;
	border-bottom: none;
	padding: 0;
	line-height: 1.75;
	flex: 1;
}

/* ── Blockquote ── */
.post-body blockquote {
	border-left: 3px solid var(--gold, #B8751A);
	padding: 16px 20px;
	margin: 24px 0;
	font-family: var(--serif, Georgia, serif);
	font-style: italic;
	font-size: 18px;
	color: var(--ink2, #2E1E0C);
	background: var(--off, #FDFAF6);
}

/* ── Images ── */
.post-body img { max-width: 100%; height: auto; display: block; margin: 24px 0; }
.post-body figure { margin: 24px 0; }
.post-body figcaption { font-size: 12px; color: var(--grey2, #8A7A6A); text-align: center; margin-top: 8px; letter-spacing: .08em; }

/* ── Gutenberg specific blocks ── */
.post-body .wp-block-separator { border: none; border-top: 1px solid var(--border, #E8DDD0); margin: 32px 0; }
.post-body .wp-block-quote { border-left: 3px solid var(--gold, #B8751A); padding: 16px 20px; margin: 24px 0; font-family: var(--serif, Georgia, serif); font-style: italic; }
.post-body .wp-block-image img { border: 1px solid var(--border, #E8DDD0); }
.post-body .wp-block-pullquote { border-top: 3px solid var(--gold, #B8751A); border-bottom: 3px solid var(--gold, #B8751A); padding: 24px; margin: 32px 0; text-align: center; }
.post-body .wp-block-pullquote blockquote { border: none; padding: 0; background: none; }
.post-body .wp-block-code { background: #f4f4f4; padding: 16px; font-size: 14px; overflow-x: auto; border: 1px solid var(--border, #E8DDD0); }
.post-body .wp-block-buttons { display: flex; gap: 12px; margin: 24px 0; flex-wrap: wrap; }
.post-body .wp-block-button__link {
	background: var(--gold, #B8751A);
	color: #fff;
	padding: 12px 28px;
	font-size: 12px;
	letter-spacing: .16em;
	text-transform: uppercase;
	font-weight: 700;
	text-decoration: none;
	transition: background .25s;
}
.post-body .wp-block-button__link:hover { background: var(--saffron, #8B3E0E); }

/* Tags */
.post-tags { border-top: 1px solid var(--border, #E8DDD0); padding-top: 24px; margin-top: 32px; }
.tags-label { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--grey2, #8A7A6A); font-weight: 600; margin-bottom: 10px; }
.tags-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { padding: 6px 14px; border: 1px solid var(--border, #E8DDD0); font-size: 12px; color: var(--grey, #5A4A3A); text-decoration: none; transition: all .2s; }
.tag:hover { background: var(--gold, #B8751A); color: #fff; border-color: var(--gold, #B8751A); }

/* ══════════════════════════════════════════════
   AUTHOR SECTION — EEAT
   ══════════════════════════════════════════════ */
.author-section { border: 1px solid var(--border, #E8DDD0); margin: 40px 0; overflow: hidden; }
.author-header {
	background: var(--off, #FDFAF6);
	border-bottom: 1px solid var(--border, #E8DDD0);
	padding: 14px 24px;
	font-size: 10px;
	letter-spacing: .26em;
	text-transform: uppercase;
	color: var(--grey2, #8A7A6A);
	font-weight: 600;
	display: flex; align-items: center; gap: 8px;
}
.author-header::before { content: '✦'; color: var(--gold, #B8751A); font-size: 8px; }
.author-body { padding: 28px 24px; display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start; }
.author-avatar {
	width: 96px; height: 96px; border-radius: 50%;
	background: linear-gradient(135deg, var(--saffron, #8B3E0E), var(--gold, #B8751A));
	display: flex; align-items: center; justify-content: center;
	font-family: var(--serif, Georgia, serif);
	font-size: 14px; font-weight: 700; color: #fff;
	flex-shrink: 0;
	border: 3px solid var(--gold-pale2, #F5EDD8);
	text-align: center; line-height: 1.2; padding: 8px;
	letter-spacing: .02em;
}
.author-name-wrap { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 4px; }
.author-name { font-family: var(--serif, Georgia, serif); font-size: 22px; font-weight: 700; color: var(--ink, #1C1208); }
.author-verified {
	background: var(--gold, #B8751A);
	color: #fff;
	font-size: 9px; letter-spacing: .16em; text-transform: uppercase;
	padding: 3px 10px; font-weight: 700;
	display: inline-flex; align-items: center; gap: 4px;
}
.author-verified::before { content: '✓'; font-weight: 800; }
.author-role { font-size: 14px; color: var(--grey2, #8A7A6A); margin-bottom: 14px; }
.author-role strong { color: var(--gold, #B8751A); font-weight: 600; }
.author-credentials { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.cred-pill {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 5px 12px; border: 1px solid var(--border, #E8DDD0);
	font-size: 11.5px; color: var(--grey, #5A4A3A); background: #fff;
}
.cred-pill::before { content: '✓'; color: var(--gold, #B8751A); font-weight: 700; font-size: 11px; }
.author-bio { font-size: 14px; color: var(--grey, #5A4A3A); line-height: 1.78; margin-bottom: 16px; }
.author-bio strong { color: var(--ink2, #2E1E0C); }
.author-trust { background: var(--off, #FDFAF6); border: 1px solid var(--border, #E8DDD0); padding: 14px 16px; margin-bottom: 16px; }
.at-title { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold, #B8751A); font-weight: 600; margin-bottom: 10px; }
.at-items { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.at-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--grey, #5A4A3A); }
.at-item::before { content: '✦'; color: var(--gold, #B8751A); font-size: 8px; flex-shrink: 0; }
.author-social { display: flex; gap: 10px; }
.social-link { padding: 7px 16px; border: 1px solid var(--border, #E8DDD0); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--grey, #5A4A3A); text-decoration: none; transition: all .2s; }
.social-link:hover { background: var(--gold, #B8751A); color: #fff; border-color: var(--gold, #B8751A); }

/* ══════════════════════════════════════════════
   RELATED POSTS
   ══════════════════════════════════════════════ */
.related-section { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border, #E8DDD0); }
.rs-title { font-family: var(--serif, Georgia, serif); font-size: 22px; font-weight: 700; color: var(--ink, #1C1208); margin-bottom: 20px; }
.rs-title em { font-style: italic; color: var(--gold, #B8751A); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card { border: 1px solid var(--border, #E8DDD0); overflow: hidden; transition: all .3s; }
.related-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.07); transform: translateY(-2px); }
.rc-img {
	height: 180px;
	display: flex; align-items: flex-end; padding: 10px;
	position: relative; overflow: hidden;
	background: linear-gradient(135deg, #3D1C0E, #8B4513);
	background-size: cover; background-position: center; background-repeat: no-repeat;
}
.rc-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.rc-img-sym { position: relative; z-index: 1; font-size: 36px; color: rgba(255,255,255,.1); font-family: var(--serif, Georgia, serif); }
.rc-cat { position: relative; z-index: 2; background: var(--gold, #B8751A); color: #fff; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; padding: 3px 10px; font-weight: 700; align-self: flex-start; }
.rc-body { padding: 14px; }
.rc-title { font-family: var(--serif, Georgia, serif); font-size: 15px; font-weight: 700; color: var(--ink, #1C1208); line-height: 1.3; margin-bottom: 8px; }
.rc-title a { color: inherit; text-decoration: none; }
.rc-title a:hover { color: var(--gold, #B8751A); }
.rc-meta { font-size: 11px; color: var(--grey2, #8A7A6A); }

/* ══════════════════════════════════════════════
   SIDEBAR — POST PAGE
   ══════════════════════════════════════════════ */

/* Lead Form Widget */
.lead-form-widget { background: var(--off, #FDFAF6); border: 1px solid var(--border, #E8DDD0); border-top: 3px solid var(--gold, #B8751A); margin-bottom: 24px; overflow: hidden; }
.lfw-header { background: var(--saffron, #8B3E0E); padding: 20px 18px; }
.lfw-tag { font-size: 9px; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 6px; }
.lfw-title { font-family: var(--serif, Georgia, serif); font-size: 18px; font-weight: 700; color: #fff; line-height: 1.2; }
.lfw-title em { font-style: italic; color: var(--gold3, #F0C878); }
.lfw-body { padding: 18px; }

/* TOC Widget */
.toc-widget {}
.toc-list { list-style: none; counter-reset: toc; }
.toc-item { counter-increment: toc; padding: 8px 0; border-bottom: 1px solid var(--gold-pale2, #F5EDD8); }
.toc-item:last-child { border-bottom: none; }
.toc-link {
	font-size: 14px; color: var(--grey, #5A4A3A); text-decoration: none;
	display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; transition: color .2s;
}
.toc-link::before { content: counter(toc); color: var(--gold, #B8751A); font-weight: 700; font-size: 12px; flex-shrink: 0; min-width: 16px; }
.toc-link:hover { color: var(--gold, #B8751A); }

/* Schema Widget */
.schema-widget { background: var(--gold-pale, #FBF6EC); border: 1px solid rgba(184,117,26,.25); padding: 16px 18px; }
.schema-title { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold, #B8751A); font-weight: 600; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.schema-title::before { content: '✦'; font-size: 8px; }
.schema-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.schema-pill { background: var(--gold, #B8751A); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .1em; padding: 4px 12px; text-transform: uppercase; }
.schema-note { font-size: 11px; color: var(--grey2, #8A7A6A); margin-top: 8px; line-height: 1.5; }

/* ══════════════════════════════════════════════
   TABLE OF CONTENTS — JS GENERATED
   ══════════════════════════════════════════════ */
#toc-widget { position: sticky; top: 90px; }
#toc-list:empty + .toc-empty { display: block; }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1100px) {
	:root { --blog-pad: 40px; --blog-sidebar: 300px; }
	.bh-inner { grid-template-columns: 1fr; gap: 36px; }
	.bh-stats { flex-direction: row; flex-wrap: wrap; }
	.bh-stat { flex: 1; min-width: 200px; }
}

@media (max-width: 900px) {
	:root { --blog-pad: 24px; }
	.blog-wrap, .post-content-wrap { grid-template-columns: 1fr; }
	.blog-sidebar, .post-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
	.featured-card { grid-template-columns: 1fr; }
	.fc-img { min-height: 260px; }
	.related-grid { grid-template-columns: 1fr 1fr; }
	#toc-widget { position: static; }
	/* Bullet table responsive — term can wrap */
	.post-body table:not(:has(thead)) td:first-child {
		white-space: normal;
	}
}

@media (max-width: 640px) {
	.posts-grid { grid-template-columns: 1fr; }
	.related-grid { grid-template-columns: 1fr; }
	.blog-sidebar, .post-sidebar { grid-template-columns: 1fr; }
	.bh-stats { flex-direction: column; }
	.author-body { grid-template-columns: 1fr; }
	.at-items { grid-template-columns: 1fr; }
	.post-meta { flex-direction: column; align-items: flex-start; gap: 8px; }
	.cat-bar { padding: 0 24px; }
	/* Bullet table mobile — stacks naturally since inline */
	.post-body table:not(:has(thead)) td:first-child {
		white-space: normal;
	}
}