/* ==========================================================================
   Neural — Neuralgebra theme stylesheet
   Mobile-first. Design tokens map to the Neuralgebra blueprint.
   ========================================================================== */

:root {
	--bg: #faf8f3;
	--bg-alt: #f2eee4;
	--bg-tint: #edf2f0;
	--card: #fffdf9;
	--ink: #222a37;
	--text-2: #5d6470;
	--accent: #2f6f67;
	--accent-dark: #255a53;
	--bronze: #8a6534;
	--border: #e4ddce;
	--border-2: #cac1ad;
	--band: #283042;
	--band-2: #313c52;
	--gold: #c9b58c;
	--steel: #b0bcc8;

	--font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--font-head: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
	--font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;

	--wrap: 1200px;
	--read: 42rem;
	--radius: 6px;
	--radius-lg: 12px;
}

/* Reset / base ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--ink);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover, a:focus { color: var(--accent-dark); text-decoration: underline; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); color: var(--ink); line-height: 1.12; margin: 0 0 .5em; font-weight: 700; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.4em; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

/* Layout helpers ---------------------------------------------------------- */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 1.25rem; }
.section { padding-block: 3rem; }
.section--alt { background: var(--bg-alt); }
.section--tint { background: var(--bg-tint); border-block: 1px solid var(--border-2); }
.eyebrow { font-size: .8125rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--bronze); margin: 0 0 .75rem; }
.lede { font-family: var(--font-head); font-size: 1.3rem; color: var(--text-2); font-style: italic; max-width: 44rem; }
.text-muted { color: var(--text-2); }

/* Axis-tick heading signature (hairline rule + perpendicular left tick) */
.axis-heading { position: relative; display: inline-block; padding-bottom: .55rem; margin-bottom: 1.75rem; }
.axis-heading::after {
	content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--accent);
}
.axis-heading::before {
	content: ""; position: absolute; left: 0; bottom: 0; width: 2px; height: 9px; background: var(--accent);
}
.axis-heading--navy::after { background: var(--band); }
.axis-heading--navy::before { background: var(--band); }

/* Buttons / links --------------------------------------------------------- */
.btn {
	display: inline-block; font-family: var(--font-body); font-weight: 700; font-size: .95rem;
	padding: .7rem 1.4rem; border-radius: 999px; border: 1px solid transparent; cursor: pointer;
	line-height: 1.2; transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover, .btn:focus { text-decoration: none; }
.btn--primary { background: var(--band); color: var(--bg); }
.btn--primary:hover, .btn--primary:focus { background: var(--band-2); color: #fff; }
.btn--ivory { background: var(--bg); color: var(--band); }
.btn--ivory:hover, .btn--ivory:focus { background: #fff; color: var(--band); }
.btn--ghost { background: transparent; border-color: var(--border-2); color: var(--ink); }
.btn--ghost:hover, .btn--ghost:focus { border-color: var(--accent); color: var(--accent); }
.arrow-link { font-weight: 700; color: var(--accent); display: inline-block; }
.arrow-link::after { content: " \2192"; }
.ghost-link { color: var(--accent); font-weight: 600; }
.ghost-link::after { content: " \2192"; }

/* Tags / pills ------------------------------------------------------------ */
.tag-bronze { font-size: .6875rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--bronze); }
.pill {
	display: inline-block; font-size: .6875rem; font-weight: 700; color: var(--bronze);
	background: var(--bg-alt); border: 1px solid var(--border); border-radius: 999px; padding: .15rem .55rem;
	letter-spacing: .04em;
}
a.pill:hover, a.pill:focus { border-color: var(--accent); color: var(--accent-dark); text-decoration: none; }

/* Skip link --------------------------------------------------------------- */
.skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 1000;
	background: var(--band); color: var(--bg); padding: .6rem 1rem; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; color: var(--bg); text-decoration: none; }

/* Header ------------------------------------------------------------------ */
.site-header { background: var(--bg); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1.1rem; }
.site-branding .site-title, .site-branding .custom-logo-link { margin: 0; }
.site-branding .site-title { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; line-height: 1; }
.site-branding .site-title a { color: var(--ink); }
.site-branding .site-title a:hover { text-decoration: none; color: var(--ink); }
.custom-logo { max-height: 40px; width: auto; }

.header-nav-group { display: flex; align-items: center; gap: 1.5rem; }
.primary-nav ul { list-style: none; display: flex; gap: 1.6rem; margin: 0; padding: 0; }
.primary-nav a {
	color: var(--ink); font-size: .95rem; padding: .25rem 0; display: inline-block;
	border-bottom: 2px solid transparent;
}
.primary-nav a:hover, .primary-nav a:focus { color: var(--accent); text-decoration: none; }
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a,
.primary-nav .current-menu-ancestor > a { color: var(--accent); border-bottom-color: var(--accent); }

.menu-toggle {
	display: none; background: transparent; border: 1px solid var(--border-2); border-radius: var(--radius);
	padding: .5rem .6rem; cursor: pointer; color: var(--ink);
}
.menu-toggle .bars { display: block; width: 20px; height: 2px; background: var(--ink); position: relative; }
.menu-toggle .bars::before, .menu-toggle .bars::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); }
.menu-toggle .bars::before { top: -6px; }
.menu-toggle .bars::after { top: 6px; }

@media (max-width: 960px) {
	.menu-toggle { display: inline-flex; align-items: center; order: 2; }
	.header-cta { order: 1; }
	.primary-nav {
		position: absolute; left: 0; right: 0; top: 100%; background: var(--bg);
		border-bottom: 1px solid var(--border); box-shadow: 0 8px 22px rgba(34,42,55,.08);
		display: none; padding: .5rem 1.25rem 1rem;
	}
	.primary-nav.is-open { display: block; }
	.primary-nav ul { flex-direction: column; gap: 0; }
	.primary-nav li { border-bottom: 1px solid var(--border); }
	.primary-nav a { display: block; padding: .85rem 0; border-bottom: none; }
	.primary-nav .current-menu-item > a { border-bottom: none; }
}

/* Hero (homepage) --------------------------------------------------------- */
.hero { padding-block: 3.5rem 2.5rem; }
.hero-grid { display: grid; gap: 2.5rem; }
.hero-headline { font-size: clamp(2.2rem, 6vw, 3.3rem); line-height: 1.04; margin: 0 0 1.75rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; align-items: center; }
.hero-lede { font-family: var(--font-head); font-size: 1.3rem; line-height: 1.5; color: var(--ink); font-style: normal; margin-bottom: 1.5rem; }
.hero-topics { font-size: 1rem; }
.hero-topics .label { font-weight: 700; }
.hero-topics a { text-decoration: underline; text-underline-offset: 3px; margin-right: .9rem; }
@media (min-width: 880px) {
	.hero-grid { grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: start; }
}

/* Focus areas ------------------------------------------------------------- */
.focus-grid { display: grid; gap: 2rem 1.5rem; }
.focus-card { }
.focus-card .rule { height: 3px; width: 100%; background: var(--accent); margin-bottom: 1rem; }
.focus-card--governance .rule { background: var(--accent); }
.focus-card--security .rule { background: var(--bronze); }
.focus-card--transformation .rule { background: var(--band); }
.focus-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.focus-card p { font-size: .95rem; color: var(--text-2); margin-bottom: .5rem; }
@media (min-width: 768px) { .focus-grid { grid-template-columns: repeat(3, 1fr); } }

/* Section heading row (kicker + heading + side link) ---------------------- */
.section-head { margin-bottom: 1.75rem; }
.section-head .kicker { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--bronze); margin: 0 0 .35rem; }
.section-head .axis-heading { margin-bottom: 0; }
.section-head--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; border-top: 1px solid var(--border-2); padding-top: 1.5rem; }
.section-head--split .head-link { font-weight: 700; }

/* Featured perspective ---------------------------------------------------- */
.featured { display: grid; gap: 2rem; align-items: start; }
.featured-media {
	border-radius: 8px; overflow: hidden; background: var(--bg-alt); aspect-ratio: 16 / 10;
	display: flex; align-items: center; justify-content: center;
}
.featured-media img { width: 100%; height: 100%; object-fit: cover; }
.featured-placeholder {
	width: 100%; height: 100%;
	background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
	background-size: 34px 34px; display: flex; align-items: center; justify-content: center;
}
.featured-placeholder span {
	font-family: var(--font-head); font-weight: 700; font-size: 2.4rem; color: var(--accent);
	background: var(--bg-tint); padding: 1.3rem 1.6rem; border-radius: var(--radius);
}
.featured-body .eyebrow { margin-bottom: .5rem; }
.featured-title { font-size: 1.6rem; line-height: 1.12; margin-bottom: .5rem; }
.featured-title a { color: var(--ink); }
.featured-title a:hover { color: var(--accent); text-decoration: none; }
.featured-meta { font-size: .85rem; color: var(--text-2); margin-bottom: .8rem; }
.featured-excerpt { font-family: var(--font-head); font-style: italic; font-size: 1.06rem; color: var(--text-2); margin-bottom: 1rem; }
@media (min-width: 880px) { .featured { grid-template-columns: 7fr 5fr; gap: 3rem; } }

/* Framework cards --------------------------------------------------------- */
.card-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
.fw-card {
	background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
	padding: 1.15rem 1.2rem 1.2rem; display: flex; flex-direction: column; min-height: 100%;
	transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
}
.fw-card:hover { box-shadow: 0 6px 22px rgba(34,42,55,.06); border-color: var(--border-2); transform: translateY(-2px); }
.fw-card .fw-tag { margin-bottom: .6rem; }
.fw-card .fw-tag .kind { color: var(--text-2); font-weight: 400; text-transform: none; letter-spacing: normal; font-size: .8125rem; margin-left: .4rem; }
.fw-card h3 { font-size: 1.2rem; margin-bottom: .45rem; }
.fw-card h3 a { color: var(--ink); }
.fw-card h3 a:hover { color: var(--accent); text-decoration: none; }
.fw-card p { font-size: .85rem; color: var(--text-2); margin-bottom: 1rem; }
.fw-card .arrow-link { font-size: .85rem; margin-top: auto; }

/* Standard content card (related/404) ------------------------------------- */
.std-card {
	background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
	overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
}
.std-card:hover { box-shadow: 0 6px 22px rgba(34,42,55,.06); border-color: var(--border-2); transform: translateY(-2px); }
.std-card .thumb { aspect-ratio: 16 / 9; background: var(--bg-alt); overflow: hidden; }
.std-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.std-card .std-body { padding: 1rem 1.1rem 1.2rem; }
.std-card h3 { font-size: 1.1rem; margin: .35rem 0 .4rem; }
.std-card h3 a { color: var(--ink); }
.std-card h3 a:hover { color: var(--accent); text-decoration: none; }
.std-card p { font-size: .85rem; color: var(--text-2); margin: 0; }

/* Field notes (homepage compact list & archive) --------------------------- */
.notes-list { border-top: 1px solid var(--border-2); }
.note-row { display: grid; gap: .25rem 1.5rem; padding: 1.1rem 0; border-bottom: 1px solid var(--border); }
.note-row .note-date { font-size: .85rem; color: var(--text-2); }
.note-row .note-title { font-size: 1.1rem; margin: 0; }
.note-row .note-title a { color: var(--ink); }
.note-row .note-title a:hover { color: var(--accent); text-decoration: none; }
.note-row .note-excerpt { font-size: .9rem; color: var(--text-2); margin: 0; }
.note-row .note-pill { margin-bottom: .15rem; }
@media (min-width: 760px) {
	.note-row { grid-template-columns: 160px 1fr; }
	.note-row .note-meta { grid-row: span 2; }
}

/* Publications-style rows (perspectives / search / archive) --------------- */
.pub-list { border-top: 1px solid var(--border-2); }
.pub-row { display: grid; gap: .3rem 1.5rem; padding: 1.4rem 0; border-bottom: 1px solid var(--border); }
.pub-row .pub-date { font-size: .9rem; color: var(--text-2); }
.pub-row .pub-cat a { font-size: .8125rem; font-weight: 700; color: var(--bronze); text-transform: none; }
.pub-row .pub-cat a:hover { color: var(--accent-dark); }
.pub-row .pub-title { font-size: 1.15rem; margin: 0 0 .25rem; }
.pub-row .pub-title a { color: var(--ink); }
.pub-row .pub-title a:hover { color: var(--accent); text-decoration: none; }
.pub-row .pub-excerpt { font-size: .9rem; color: var(--text-2); max-width: 48rem; margin: 0; }
@media (min-width: 880px) {
	.pub-row { grid-template-columns: 130px 150px 1fr; align-items: baseline; }
	.pub-row .pub-body { grid-column: 3; }
}

/* Playbook items ---------------------------------------------------------- */
.playbook-list { border-top: 1px solid var(--border-2); }
.playbook-item {
	display: grid; gap: 1rem; padding: 1.5rem 0 1.5rem 1.25rem; border-bottom: 1px solid var(--border);
	border-left: 3px solid var(--accent); padding-left: 1.25rem;
}
.playbook-item .pb-kind { margin-bottom: .4rem; }
.playbook-item h3 { font-size: 1.35rem; margin-bottom: .4rem; }
.playbook-item h3 a { color: var(--ink); }
.playbook-item h3 a:hover { color: var(--accent); text-decoration: none; }
.playbook-item .pb-desc { font-family: var(--font-head); font-size: .98rem; color: var(--text-2); max-width: 42rem; margin: 0; }
.playbook-meta {
	background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius);
	padding: 1rem; font-size: .8rem; color: var(--text-2);
}
.playbook-meta .pb-cat { font-size: .75rem; font-weight: 700; color: var(--bronze); display: block; margin-bottom: .3rem; }
.playbook-meta .pb-time { display: block; margin-bottom: .3rem; }
@media (min-width: 880px) {
	.playbook-item { grid-template-columns: 1fr 240px; align-items: start; }
}

/* Filter bar -------------------------------------------------------------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.25rem; }
.filter-pill {
	font-size: .85rem; padding: .35rem .9rem; border-radius: 17px; border: 1px solid var(--border-2);
	background: var(--bg-alt); color: var(--text-2);
}
.filter-pill:hover, .filter-pill:focus { border-color: var(--accent); color: var(--accent-dark); text-decoration: none; }
.filter-pill.is-active, .filter-pill[aria-current="true"] { background: var(--band); color: var(--bg); border-color: var(--band); }

/* Bands (advisory / CTA) -------------------------------------------------- */
.band { background: linear-gradient(135deg, var(--band), var(--band-2)); color: var(--bg); }
.band--solid { background: var(--band); }
.band .kicker { color: var(--gold); }
.band h2, .band h3 { color: var(--bg); }
.band p { color: rgba(244,241,232,.85); }
.band .axis-heading::after, .band .axis-heading::before { background: #3d4a62; }

.advisory-band { padding-block: 3.5rem; }
.advisory-services { display: grid; gap: 1.5rem; margin: 2rem 0; }
.advisory-services .svc { border-top: 1px solid #3d4a62; padding-top: .9rem; }
.advisory-services .svc h3 { font-size: 1.05rem; color: var(--bg); margin-bottom: .4rem; }
.advisory-services .svc p { font-size: .85rem; color: var(--steel); margin: 0; }
@media (min-width: 760px) { .advisory-services { grid-template-columns: repeat(4, 1fr); } }

.cta-band { text-align: center; padding-block: 4.5rem; }
.cta-band h2 { font-size: clamp(1.9rem, 5vw, 2.6rem); margin-bottom: .75rem; }
.cta-band p { font-family: var(--font-head); font-size: 1.1rem; margin: 0 auto 1.75rem; max-width: 40rem; }

/* About strip (homepage) -------------------------------------------------- */
.about-strip { display: grid; gap: 1.5rem; }
.about-strip .about-body { font-family: var(--font-head); font-size: 1.1rem; color: var(--ink); }
@media (min-width: 880px) { .about-strip { grid-template-columns: 4fr 6fr; gap: 3rem; } }

/* Page header (archives & static) ----------------------------------------- */
.page-header { padding-block: 3rem 1.5rem; }
.page-header .page-title { font-size: clamp(2.1rem, 5vw, 3rem); margin: 0; }
.page-header .axis-heading { margin-bottom: 1.25rem; }
.page-header .page-desc { font-family: var(--font-head); font-style: italic; font-size: 1.15rem; color: var(--text-2); max-width: 44rem; }
.page-header--split { display: grid; gap: 1.5rem; }
@media (min-width: 880px) {
	.page-header--split { grid-template-columns: 1fr auto; align-items: start; }
	.page-header--split .header-search { width: 320px; }
}

/* Search form ------------------------------------------------------------- */
.search-form { display: flex; gap: .5rem; }
.search-form .search-field {
	flex: 1; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
	padding: .6rem .85rem; font-size: .95rem; color: var(--ink); font-family: var(--font-body);
}
.search-form .search-submit {
	background: var(--band); color: var(--bg); border: none; border-radius: var(--radius);
	padding: .6rem 1rem; font-weight: 700; cursor: pointer; font-family: var(--font-body);
}
.search-form .search-submit:hover { background: var(--band-2); }

/* Single / briefing ------------------------------------------------------- */
.briefing { padding-block: 2.5rem 3rem; }
.briefing-header { max-width: 52rem; margin-inline: auto; padding-bottom: 1.25rem; }
.briefing-header .eyebrow a { color: var(--bronze); }
.briefing-title { font-size: clamp(1.9rem, 4.5vw, 2.4rem); line-height: 1.06; margin-bottom: .6rem; }
.briefing-thesis { font-family: var(--font-head); font-style: italic; font-size: 1.15rem; color: var(--text-2); margin-bottom: 1rem; max-width: 50rem; }
.briefing-meta { font-size: .85rem; color: var(--text-2); border-top: 1px solid var(--border); padding-top: 1rem; }
.briefing-meta .sep { color: var(--border-2); margin: 0 .5rem; }
.briefing-meta a { color: var(--text-2); }
.briefing-meta a:hover { color: var(--accent); }

.briefing-hero { max-width: var(--wrap); margin: 1.75rem auto; padding-inline: 1.25rem; }
.briefing-hero figure { margin: 0; }
.briefing-hero img { width: 100%; max-height: 34rem; object-fit: cover; border-radius: var(--radius-lg); }
.briefing-hero figcaption { font-size: .8rem; color: var(--text-2); margin-top: .5rem; }

.briefing-body { max-width: var(--read); margin-inline: auto; }
.briefing-body { font-family: var(--font-head); font-size: 1.125rem; line-height: 1.75; color: var(--ink); }
.briefing-body h2 { font-size: 1.5rem; margin: 2.2rem 0 .6rem; }
.briefing-body h3 { font-size: 1.25rem; margin: 1.8rem 0 .5rem; }
.briefing-body p { margin-bottom: 1.2rem; }
.briefing-body a { text-decoration: underline; text-underline-offset: 2px; }
.briefing-body ul, .briefing-body ol { margin-bottom: 1.2rem; }
.briefing-body li { margin-bottom: .35rem; }
.briefing-body blockquote {
	border-left: 3px solid var(--accent); padding-left: 1.2rem; margin: 1.5rem 0;
	font-style: italic; color: var(--ink);
}
.briefing-body img { border-radius: var(--radius); margin: 1.5rem 0; }
.briefing-body figcaption { font-family: var(--font-body); font-size: .8rem; color: var(--text-2); text-align: center; }
.briefing-body :where(code):not(pre code) {
	font-family: var(--font-mono); background: var(--bg-alt); border: 1px solid var(--border);
	border-radius: 4px; padding: .1em .35em; font-size: .9em;
}
.briefing-body pre {
	background: #2b3340; color: var(--bg); border-radius: var(--radius); padding: 1rem 1.2rem;
	overflow-x: auto; font-family: var(--font-mono); font-size: .9rem; line-height: 1.6;
}
.briefing-body pre code { font-family: var(--font-mono); background: none; border: none; padding: 0; color: inherit; }
.briefing-body table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-family: var(--font-body); font-size: .95rem; }
.briefing-body th, .briefing-body td { border: 1px solid var(--border); padding: .6rem .8rem; text-align: left; }
.briefing-body th { background: var(--bg-alt); }
/* Wide / full alignment */
.briefing-body .alignwide { max-width: var(--wrap); margin-inline: calc(50% - 50vw); margin-inline: auto; width: min(var(--wrap), 92vw); }
.alignfull { max-width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
.aligncenter { margin-inline: auto; }
.alignleft { float: left; margin: .4rem 1.4rem 1rem 0; }
.alignright { float: right; margin: .4rem 0 1rem 1.4rem; }
.wp-caption-text, .wp-element-caption { font-family: var(--font-body); font-size: .8rem; color: var(--text-2); text-align: center; }

/* Branded callout boxes --------------------------------------------------- */
.ng-callout {
	border: 1px solid var(--border); border-left-width: 3px; border-radius: var(--radius);
	padding: 1.1rem 1.3rem; margin: 2rem 0; background: var(--bg-alt);
}
.ng-callout .ng-callout__label { font-family: var(--font-body); font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; margin-bottom: .4rem; }
.ng-callout p:last-child { margin-bottom: 0; }
.ng-callout p { font-size: 1rem; color: var(--text-2); }
.ng-callout--lens { background: var(--bg-tint); border-left-color: var(--accent); }
.ng-callout--lens .ng-callout__label { color: var(--accent); }
.ng-callout--leaders { border-left-color: var(--bronze); }
.ng-callout--leaders .ng-callout__label { color: var(--bronze); }
.ng-callout--governance { border-left-color: var(--band); }
.ng-callout--governance .ng-callout__label { color: var(--band); }
.ng-callout--practitioner { border-left-color: var(--text-2); }
.ng-callout--practitioner .ng-callout__label { color: var(--text-2); }

/* Briefing footer (tags + share) ------------------------------------------ */
.briefing-footer { max-width: var(--read); margin: 2.5rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.briefing-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.briefing-share { font-size: .9rem; color: var(--text-2); }
.briefing-share a { margin-left: .75rem; }

/* Apply this lens panel --------------------------------------------------- */
.apply-lens {
	max-width: var(--read); margin: 2.5rem auto 0; background: var(--bg-tint);
	border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; text-align: center;
}
.apply-lens h2 { font-size: 1.5rem; margin-bottom: .6rem; }
.apply-lens p { color: var(--text-2); max-width: 32rem; margin: 0 auto 1.25rem; font-family: var(--font-head); }

/* Post navigation --------------------------------------------------------- */
.post-nav { max-width: var(--wrap); margin: 2.5rem auto 0; padding-inline: 1.25rem; }
.post-nav .nav-links { display: grid; gap: 1rem; }
.post-nav .nav-links a { display: block; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 1.2rem; }
.post-nav .nav-links a:hover { border-color: var(--accent); text-decoration: none; }
.post-nav .nav-subtitle { font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--bronze); display: block; margin-bottom: .35rem; }
.post-nav .nav-title { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.post-nav .nav-next { text-align: right; }
@media (min-width: 700px) { .post-nav .nav-links { grid-template-columns: 1fr 1fr; } }

/* Related content --------------------------------------------------------- */
.related { background: var(--bg-alt); border-top: 1px solid var(--border); margin-top: 3rem; padding-block: 3rem; }
.related h2 { font-size: 1.4rem; }
.related .related-group + .related-group { margin-top: 2.5rem; }

/* Comments ---------------------------------------------------------------- */
.comments-area { max-width: var(--read); margin: 3rem auto 0; }
.comment-list { list-style: none; padding: 0; margin: 0; }
.comment-list li { border-top: 1px solid var(--border); padding: 1.2rem 0; }
.comment-author .fn { font-weight: 700; }
.comment-meta { font-size: .8rem; color: var(--text-2); }
.comment-respond input[type="text"], .comment-respond input[type="email"], .comment-respond input[type="url"], .comment-respond textarea {
	width: 100%; max-width: 100%; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
	padding: .6rem .8rem; font-family: var(--font-body); font-size: .95rem; margin-bottom: .75rem;
}

/* Pagination -------------------------------------------------------------- */
.pagination { margin: 2.5rem 0; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.pagination .page-numbers {
	display: inline-flex; min-width: 2.4rem; height: 2.4rem; align-items: center; justify-content: center;
	padding: 0 .6rem; border: 1px solid var(--border); border-radius: 4px; background: var(--card); color: var(--ink); font-size: .95rem;
}
.pagination a.page-numbers:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.pagination .page-numbers.current { background: var(--band); color: var(--bg); border-color: var(--band); }
.pagination .page-numbers.dots { border-color: transparent; background: transparent; }

/* Contact form (advisory) ------------------------------------------------- */
.contact-form { max-width: 52rem; }
.contact-form .field-row { display: grid; gap: 1rem; }
.contact-form input, .contact-form textarea {
	width: 100%; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
	padding: .7rem .85rem; font-family: var(--font-body); font-size: .95rem; color: var(--ink);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form label { font-size: .85rem; font-weight: 600; display: block; margin-bottom: .3rem; }
.contact-form .form-grid { display: grid; gap: 1rem; margin-bottom: 1rem; }
.contact-form .form-note { font-size: .8rem; color: var(--text-2); margin-top: 1rem; }
@media (min-width: 640px) { .contact-form .form-grid--two { grid-template-columns: 1fr 1fr; } }

/* Belief grid (about) ----------------------------------------------------- */
.belief-grid { display: grid; gap: 2rem 2.25rem; }
.belief h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.belief p { font-family: var(--font-head); font-size: .98rem; color: var(--text-2); margin: 0; }
@media (min-width: 768px) { .belief-grid { grid-template-columns: 1fr 1fr; } }

/* Mission strip ----------------------------------------------------------- */
.mission-strip p { font-family: var(--font-head); font-style: italic; font-size: 1.3rem; color: var(--ink); margin: 0; max-width: 60rem; }

/* Footer ------------------------------------------------------------------ */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--border-2); padding-block: 3rem 1.5rem; margin-top: 0; }
.footer-grid { display: grid; gap: 2rem; }
.footer-brand .footer-title { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; margin: 0 0 .6rem; }
.footer-brand .footer-title a { color: var(--ink); }
.footer-brand p { font-size: .85rem; color: var(--text-2); max-width: 22rem; }
.footer-social { display: flex; gap: 1rem; margin-top: .75rem; }
.footer-social a { font-size: .85rem; font-weight: 700; color: var(--ink); }
.footer-social a:hover { color: var(--accent); }
.footer-cols { display: grid; gap: 1.5rem; }
.footer-col h2 { font-family: var(--font-body); font-size: .9rem; font-weight: 700; color: var(--ink); margin: 0 0 .75rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .4rem; }
.footer-col a { font-size: .85rem; color: var(--text-2); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 2rem; padding-top: 1.25rem; font-size: .75rem; color: var(--text-2); }
@media (min-width: 760px) { .footer-cols { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .footer-grid { grid-template-columns: 1.4fr 2.6fr; gap: 3rem; } }

/* Empty state ------------------------------------------------------------- */
.empty-state { padding: 2.5rem 0; }
.empty-state h2 { font-size: 1.4rem; }
.empty-state p { color: var(--text-2); }

/* 404 --------------------------------------------------------------------- */
.error-404 { padding-block: 3rem; }
.error-404 .err-title { font-size: clamp(2rem, 5vw, 3rem); }

/* Utility ----------------------------------------------------------------- */
.screen-reader-text {
	border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; width: 1px;
	margin: -1px; overflow: hidden; padding: 0; position: absolute; word-wrap: normal !important;
}
.screen-reader-text:focus {
	background: var(--bg); clip: auto; clip-path: none; color: var(--ink); display: block;
	height: auto; left: 5px; padding: .6rem 1rem; top: 5px; width: auto; z-index: 100000;
}
.sr-divider { border: 0; border-top: 1px solid var(--border); margin: 0; }
.alignwide, .alignfull { clear: both; }
