/*
Theme Name: markley
Theme URI: https://libertyconcepts.com/
Author: Liberty Concepts
Author URI: https://libertyconcepts.com/
Description: The Jeffrey Markley microsite theme — a navy/blue institutional re-skin of the lc-blocks block-ready starter. Ships chrome (header, footer, navigation, cards, detail styles); blocks self-style from the lc-blocks plugin.
Version: 1.0.1785864054
Requires at least: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blockstart
*/

/* =========================================================================
   Tokens / fallbacks (mirror theme.json so chrome tracks the palette)
   ========================================================================= */
:root {
	--bs-primary: var(--wp--preset--color--primary, #185BB3);
	--bs-primary-hover: var(--wp--preset--color--primary-light, #13478C);
	--bs-secondary: var(--wp--preset--color--secondary, #BFD6F5);
	--bs-subtle: var(--wp--preset--color--subtle, #EDF2F7);
	--bs-dark: var(--wp--preset--color--dark, #0F294D);
	--bs-text: var(--wp--preset--color--text, #1A1D21);
	--bs-white: var(--wp--preset--color--white, #FFFFFF);
	--bs-off-white: var(--wp--preset--color--off-white, #F7FAFC);
	--bs-neutral-200: var(--wp--preset--color--neutral-200, #D5DEE8);
	--bs-muted: var(--wp--preset--color--muted, #5A6B7B);
	--bs-accent-red: var(--wp--preset--color--accent-red, #EE3124);

	/* Design-only hues (not tokenized in theme.json) */
	--bs-navy-900: #0D203B;   /* deep banner */
	--bs-navy-800: #141F2E;   /* hero base / interior nav ink */
	--bs-blue-400: #6290CC;   /* footer column heads */
	--bs-blue-tint: #CCE2FF;  /* on-dark hero text / mobile CTA */
	--bs-mint-50: #EBF5F2;    /* linkedin / footer hairline */
	--bs-hairline: #D1D1D1;   /* light-header bottom border */
	--bs-field-placeholder: #7C8794;

	--bs-heading: var(--wp--preset--font-family--heading, "DM Serif Display", ui-serif, Georgia, "Times New Roman", serif);
	--bs-body: var(--wp--preset--font-family--body, "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);

	--bs-content: 1440px;      /* full page frame */
	--bs-detail: 1020px;       /* detail body wrapper (≈900px effective text) */
	--bs-gutter: 60px;         /* desktop page gutter */
	--bs-header-h: 83px;
	--bs-radius: 4px;          /* cards / photos / icon boxes */

	/* Signature hero gradient (navy → blue, rising from bottom) */
	--bs-gradient-hero: radial-gradient(1037.908px 1551.974px at 43.68% 100%, var(--bs-navy-800) 58.17%, #1A3557 77.73%, #3D7BCC 100%);
	--bs-gradient-band: linear-gradient(180deg, var(--bs-dark) 50%, var(--bs-primary-hover) 100%);
}

/* =========================================================================
   Base
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--bs-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--bs-text);
	background: var(--bs-white);
	-webkit-font-smoothing: antialiased;
}
body.has-mobile-menu { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--bs-primary); text-decoration: none; }
a:hover { color: var(--bs-primary-hover); }
h1, h2, h3, h4, h5, h6 {
	font-family: var(--bs-heading);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: normal;
	text-transform: capitalize;
	color: var(--bs-navy-800);
}

.site-wrapper { overflow-x: clip; }
.site-main { min-height: 40vh; }

/* Centered content width for non-block template bodies (prose pages, single body).
   Inter-element spacing comes from per-element bottom margins in the prose section
   below — not an owl (a `> * + *` top-margin owl is overridden by the more specific
   per-element rules, so blocks lose their spacing). */
.article-content { max-width: 900px; margin-inline: auto; }

/* -------------------------------------------------------------------------
 * Block alignment — the theme owns this (lc-blocks' fallback option is off).
 * ---------------------------------------------------------------------- */
.alignwide {
	max-width: var(--wp--style--global--wide-size, 1440px);
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}
.alignfull { width: 100%; max-width: none; }
.wp-block-separator.has-background:not(.is-style-dots) { border: 0 !important; height: 1px; }
.wp-block-separator.has-background:not(.is-style-dots):not(.alignwide):not(.alignfull) { width: 100%; }

/* Shared external-link glyph appended to nav items given the `is-external` class */
.is-external > a::after,
a.is-external::after {
	content: "";
	display: inline-block;
	width: 14px; height: 14px;
	margin-left: 4px;
	vertical-align: -1px;
	background-color: currentColor;
	-webkit-mask: no-repeat center / contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'><g stroke='black' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'><path d='M9 2h5v5'/><path d='M14 2 7 9'/><path d='M12 9.5V13a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h3.5'/></g></svg>");
	        mask: no-repeat center / contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'><g stroke='black' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'><path d='M9 2h5v5'/><path d='M14 2 7 9'/><path d='M12 9.5V13a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h3.5'/></g></svg>");
}

/* =========================================================================
   Header
   ========================================================================= */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	width: 100%;
	transition: background-color .25s ease, box-shadow .25s ease, color .25s ease;
}
.site-header__inner {
	max-width: var(--bs-content);
	margin-inline: auto;
	min-height: var(--bs-header-h);
	padding: 0 var(--bs-gutter);
	display: flex;
	align-items: center;
	gap: 40px;
}
.site-header__brand { display: inline-flex; align-items: center; flex: 0 0 auto; height: 22px; }
.site-header__logo { height: 22px; width: auto; }
.site-header__nav { flex: 1 1 auto; display: flex; justify-content: flex-end; }

.site-header__menu {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: nowrap;
	justify-content: flex-end;
}
.site-header__menu a {
	text-decoration: none;
	color: inherit;
	font-family: var(--bs-body);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	text-transform: capitalize;
	white-space: nowrap;
	position: relative;
	display: inline-flex;
	align-items: center;
}
.site-header__menu a span::after {
	content: "";
	position: absolute;
	left: 0; bottom: -4px;
	width: 0; height: 2px;
	background: currentColor;
	transition: width .2s ease;
}
.site-header__menu a:hover span::after { width: 100%; }
/* Submenus */
.site-header__menu .sub-menu {
	position: absolute;
	top: 100%; left: 0;
	min-width: 240px;
	max-width: 280px;
	background: var(--bs-white);
	box-shadow: 0 12px 32px rgba(13,32,59,.14);
	border-radius: var(--bs-radius);
	padding: 8px;
	list-style: none;
	margin: 10px 0 0;
	display: none;
	z-index: 10;
}
.site-header__menu li { position: relative; }
.site-header__menu li:hover > .sub-menu { display: block; }
.site-header__menu .sub-menu a { display: block; padding: 8px 12px; color: var(--bs-text); border-radius: var(--bs-radius); }
.site-header__menu .sub-menu a:hover { background: var(--bs-subtle); }
.site-header__menu .menu-item-has-children > a { display: inline-flex; align-items: center; gap: 6px; }
.site-header__menu .menu-item-has-children > a::after {
	content: ""; width: 0; height: 0;
	border-left: 4px solid transparent; border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
}

.site-header__actions { display: flex; align-items: center; gap: 20px; flex: 0 0 auto; }
.site-header__icon-btn {
	background: none; border: 0; cursor: pointer; color: inherit;
	display: inline-flex; padding: 6px;
}
.site-header__login { text-decoration: none; color: inherit; font-size: 16px; font-weight: 500; }
.site-header__cta {
	display: inline-flex; align-items: center; justify-content: center;
	height: 43px;
	padding: 0 20px;
	background: var(--bs-primary);
	color: var(--bs-white);
	border-radius: 100px;
	text-decoration: none;
	font-family: var(--bs-body);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: capitalize;
	white-space: nowrap;
	transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.site-header__cta:hover { background: var(--bs-primary-hover); color: var(--bs-white); }
.site-header__burger { display: none; }

/* Search panel */
.site-header__search { border-top: 0.5px solid var(--bs-hairline); background: var(--bs-white); }
.site-header__search-form { max-width: var(--bs-content); margin-inline: auto; padding: 16px var(--bs-gutter); display: flex; gap: 12px; }
.site-header__search-form input { flex: 1; height: 55px; padding: 0 20px; border: 1px solid var(--bs-hairline); border-radius: var(--bs-radius); font-size: 16px; font-family: var(--bs-body); }
.site-header__search-form button { padding: 0 40px; background: var(--bs-primary); color: #fff; border: 0; border-radius: 100px; cursor: pointer; font-weight: 600; font-size: 16px; }

/* Logo visibility by variant (light-text contexts show the white wordmark) */
.site-header__logo--dark { display: none; }
.site-header__logo--light { display: block; }

/* Transparent: overlays hero, white text + white-outline CTA */
.site-header--transparent {
	position: absolute; top: 0; left: 0; right: 0;
	background: transparent;
	color: var(--bs-white);
	border-bottom: 0.5px solid rgba(255,255,255,0.1);
}
.site-header--transparent .site-header__cta {
	background: transparent;
	color: var(--bs-white);
	box-shadow: inset 0 0 0 1px var(--bs-white);
}
.site-header--transparent .site-header__cta:hover { color: var(--bs-secondary); box-shadow: inset 0 0 0 1px var(--bs-secondary); }
.site-header--transparent.is-scrolled {
	position: fixed;
	background: var(--bs-white);
	color: var(--bs-navy-800);
	border-bottom-color: var(--bs-hairline);
	box-shadow: 0 4px 20px rgba(13,32,59,.08);
}
.site-header--transparent.is-scrolled .site-header__logo--light { display: none; }
.site-header--transparent.is-scrolled .site-header__logo--dark { display: block; }
.site-header--transparent.is-scrolled .site-header__cta { background: var(--bs-primary); color: #fff; box-shadow: none; }
.site-header--transparent.is-scrolled .site-header__cta:hover { background: var(--bs-primary-hover); }

/* Solid: white bg, navy text (interior pages — News List, News Detail, Standard Detail) */
.site-header--solid { background: var(--bs-white); color: var(--bs-navy-800); border-bottom: 0.5px solid var(--bs-hairline); }
.site-header--solid .site-header__logo--light { display: none; }
.site-header--solid .site-header__logo--dark { display: block; }
.site-header--solid.is-scrolled { box-shadow: 0 4px 20px rgba(13,32,59,.06); }

/* Dark: navy bg, white text (DS SiteHeader solid variant) */
.site-header--dark { background: var(--bs-navy-900); color: var(--bs-white); border-bottom: 0.5px solid rgba(255,255,255,0.1); }
.site-header--dark.is-scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.25); }

/* =========================================================================
   Mobile menu
   ========================================================================= */
.site-mobile-menu {
	position: fixed; inset: 0; z-index: 200;
	background: var(--bs-dark);
	color: var(--bs-white);
	padding: 20px 20px 40px;
	display: flex; flex-direction: column; gap: 32px;
	overflow-y: auto;
}
.site-mobile-menu[hidden] { display: none; }
.site-mobile-menu__top { display: flex; align-items: center; justify-content: space-between; }
.site-mobile-menu__brand img { height: 22px; width: auto; }
.site-mobile-menu__close {
	background: none; border: 0; color: var(--bs-white); cursor: pointer;
	padding: 6px; line-height: 0;
}
.site-mobile-menu__menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.site-mobile-menu__menu a { display: inline-flex; align-items: center; padding: 12px 0; color: var(--bs-white); text-decoration: none; font-family: var(--bs-body); font-size: 20px; font-weight: 500; text-transform: capitalize; }
.site-mobile-menu__menu .sub-menu { list-style: none; padding-left: 16px; margin: 0; }
.site-mobile-menu__menu .sub-menu a { font-size: 17px; font-weight: 400; opacity: .85; }
.site-mobile-menu__cta {
	align-self: stretch;
	display: inline-flex; align-items: center; justify-content: center;
	height: 55px; padding: 0 28px;
	background: var(--bs-blue-tint); color: var(--bs-dark);
	border-radius: 100px; text-decoration: none;
	font-weight: 600; font-size: 16px; text-transform: capitalize;
}
.site-header__burger span { transition: transform .2s ease, opacity .2s ease; }

/* =========================================================================
   Footer — DS SiteFooter (navy, wordmark + 3 columns + hairline)
   ========================================================================= */
.site-footer { background: var(--bs-dark); color: var(--bs-white); }
.site-footer__inner {
	max-width: var(--bs-content); margin-inline: auto;
	padding: 80px 80px 40px;
	display: flex; flex-direction: column; gap: 80px;
}
.site-footer__row {
	display: flex; justify-content: space-between; align-items: flex-start;
	gap: 40px; flex-wrap: wrap;
}
.site-footer__brand-logo { height: 26px; width: auto; }
.site-footer__cols { display: flex; gap: 80px; flex-wrap: wrap; }
.site-footer__col { display: flex; flex-direction: column; gap: 40px; }
.site-footer__col-head {
	margin: 0;
	font-family: var(--bs-body); font-weight: 600; font-size: 20px; line-height: 1.2;
	color: var(--bs-blue-400); text-transform: none; letter-spacing: normal;
}
.site-footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.site-footer__links a,
.site-footer__col > a.site-footer__link {
	font-family: var(--bs-body); font-weight: 500; font-size: 16px; line-height: 1.2;
	color: var(--bs-white); text-decoration: none; white-space: nowrap;
	display: inline-flex; align-items: center;
}
.site-footer__links a:hover { color: var(--bs-secondary); }
.site-footer__linkedin {
	width: 40px; height: 40px; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid var(--bs-mint-50); color: var(--bs-mint-50);
}
.site-footer__linkedin:hover { background: var(--bs-mint-50); color: var(--bs-dark); }
.site-footer__bottom { display: flex; flex-direction: column; gap: 30px; }
.site-footer__hairline { height: 1px; background: var(--bs-mint-50); opacity: 0.2; width: 100%; }
.site-footer__copyright { margin: 0; font-family: var(--bs-body); font-weight: 400; font-size: 14px; color: var(--bs-white); }

/* =========================================================================
   Page hero / interior title bands
   ========================================================================= */
/* Light title banner (News List, simple interior pages) */
/* Page hero — post-style navy editorial split (eyebrow + title + description,
   featured image beside it via .page-hero--split; single-column without one). */
.page-hero { background: var(--bs-gradient-band); }
.page-hero__inner { max-width: var(--bs-content); margin-inline: auto; padding: 80px var(--bs-gutter); display: flex; gap: 64px; align-items: center; }
.page-hero__text { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.page-hero__eyebrow { font-family: var(--bs-body); font-weight: 600; font-size: 18px; line-height: 1.2; letter-spacing: 0.04em; text-transform: uppercase; color: var(--bs-blue-tint); }
.page-hero__title { margin: 0; font-family: var(--bs-heading); font-weight: 400; font-size: 62px; line-height: 1.2; text-transform: capitalize; color: var(--bs-blue-tint); }
.page-hero__desc { margin: 0; max-width: 760px; font-family: var(--bs-body); font-size: 18px; line-height: 1.6; color: var(--bs-blue-tint); }
.page-hero__media { width: clamp(320px, 42vw, 600px); aspect-ratio: 600 / 540; flex: none; border-radius: var(--bs-radius); background: var(--bs-dark) center / cover no-repeat; }

/* Page hero responsive: shrink the split image + title, then stack at <=1024. */
@media (max-width: 1280px) { .page-hero__title { font-size: 50px; } }
@media (max-width: 1024px) {
	.page-hero__inner { flex-direction: column; align-items: flex-start; gap: 32px; }
	.page-hero__title { font-size: 44px; }
	.page-hero__media { width: 100%; max-width: 600px; aspect-ratio: 600 / 400; }
}
@media (max-width: 768px) { .page-hero__inner { padding: 60px 20px; } }
@media (max-width: 560px) {
	.page-hero__title { font-size: 34px; }
	.page-hero__media { aspect-ratio: auto; height: 240px; }
}

.page-content { padding: 60px var(--bs-gutter); }

/* =========================================================================
   Eyebrow + red tick (used in chrome/templates outside blocks)
   ========================================================================= */
.eyebrow-label { display: block; font-family: var(--bs-body); font-weight: 600; font-size: 18px; line-height: 1.2; letter-spacing: 0.04em; text-transform: uppercase; color: var(--bs-primary); }
.eyebrow-label--light { color: var(--bs-secondary); }
.eyebrow-label--white { color: var(--bs-white); }
.red-tick { width: 60px; height: 2px; background: var(--bs-accent-red); border: 0; margin: 0 0 20px; }

/* =========================================================================
   NewsCard (DS component) — News List (tint), Homepage/Related (white)
   ========================================================================= */
.card {
	display: flex; flex-direction: column;
	width: 100%; height: 100%;
	border-radius: var(--bs-radius);
	overflow: hidden;
	background: var(--bs-white);
	text-decoration: none; color: inherit;
	transition: transform .2s ease;
}
.card--tint { background: var(--bs-subtle); }
.card:hover { transform: translateY(-4px); color: inherit; }
.card__link { text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; }
.card__media { height: 300px; flex-shrink: 0; background: var(--bs-subtle) center / cover no-repeat; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { display: flex; flex-direction: column; flex-grow: 1; padding: 20px; }
.card__group { display: flex; flex-direction: column; gap: 20px; }
.card__title { margin: 0; font-family: var(--bs-heading); font-weight: 400; font-size: 24px; line-height: 1.4; text-transform: capitalize; color: var(--bs-text); }
.card__excerpt { margin: 0; font-family: var(--bs-body); font-weight: 400; font-size: 14px; line-height: 1.6; color: var(--bs-text); }
.card__date { font-family: var(--bs-body); font-weight: 400; font-size: 14px; color: var(--bs-text); }
.card__spacer { flex: 1 0 20px; }
.card__source { font-family: var(--bs-body); font-weight: 600; font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--bs-primary); }

/* =========================================================================
   Insights archive / News List
   ========================================================================= */
.insights-archive__hero { background: var(--bs-subtle); }
.insights-archive__hero-inner { max-width: var(--bs-content); margin-inline: auto; padding: 80px var(--bs-gutter); display: flex; flex-direction: column; gap: 24px; }
.insights-archive__eyebrow { font-family: var(--bs-body); font-weight: 600; font-size: 18px; line-height: 1.2; letter-spacing: 0.04em; text-transform: uppercase; color: var(--bs-primary); }
.insights-archive__title { margin: 0; font-family: var(--bs-heading); font-weight: 400; font-size: 62px; line-height: 1.2; text-transform: capitalize; color: var(--bs-navy-800); }
.insights-archive__desc { margin: 0; max-width: 760px; font-size: 18px; line-height: 1.6; color: var(--bs-text); }
.insights-archive__inner { max-width: var(--bs-content); margin-inline: auto; padding: 60px var(--bs-gutter) 100px; display: flex; flex-direction: column; gap: 48px; }

.archive, .single { padding: 0 0 0; }
.archive__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.archive__empty { text-align: center; color: var(--bs-muted); padding: 60px 0; }

/* Filter bar */
.nl-filter { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.nl-search { position: relative; flex: 1; min-width: 260px; }
.nl-search__icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.nl-input {
	box-sizing: border-box; width: 100%; height: 55px;
	padding: 0 20px 0 46px;
	border: 1px solid var(--bs-hairline); border-radius: var(--bs-radius);
	background: var(--bs-white);
	font-family: var(--bs-body); font-size: 16px; color: var(--bs-text);
	outline: none;
}
.nl-input::placeholder { color: var(--bs-field-placeholder); }
.nl-select {
	appearance: none; -webkit-appearance: none;
	box-sizing: border-box; height: 55px; min-width: 200px;
	padding: 0 44px 0 20px;
	border: 1px solid var(--bs-hairline); border-radius: var(--bs-radius);
	background-color: var(--bs-white);
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16' fill='none'><path d='M4 6l4 4 4-4' stroke='%23185BB3' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
	background-repeat: no-repeat; background-position: right 18px center;
	font-family: var(--bs-body); font-size: 16px; color: var(--bs-text); cursor: pointer;
}
.nl-btn {
	display: inline-flex; align-items: center; justify-content: center;
	box-sizing: border-box; height: 55px; padding: 0 40px;
	border-radius: 100px; background: var(--bs-primary); color: #fff;
	font-family: var(--bs-body); font-weight: 600; font-size: 16px; line-height: 1.2;
	text-transform: capitalize; text-decoration: none;
	transition: background-color .18s ease; border: 0; cursor: pointer;
}
.nl-btn:hover { background: var(--bs-primary-hover); color: #fff; }
.nl-clear {
	display: inline-flex; align-items: center; height: 55px;
	font-family: var(--bs-body); font-weight: 500; font-size: 16px; color: var(--bs-primary);
	text-decoration: none;
}
.nl-clear:hover { text-decoration: underline; }

/* Pagination */
.archive__pagination { margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.nl-pagination { display: flex; align-items: center; justify-content: center; gap: 8px; }
.archive__pagination ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; justify-content: center; gap: 8px; }
.archive__pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border-radius: var(--bs-radius);
	color: var(--bs-text); font-family: var(--bs-body); font-weight: 500; font-size: 16px;
	text-decoration: none; border: 0; background: transparent;
}
.archive__pagination .page-numbers.current { background: var(--bs-primary); color: #fff; font-weight: 600; }
.archive__pagination .page-numbers.prev,
.archive__pagination .page-numbers.next { border: 1px solid var(--bs-hairline); }
.archive__pagination .page-numbers.dots { border: 0; }

/* =========================================================================
   Single (News / press detail)
   ========================================================================= */
.single__hero { background: var(--bs-gradient-band); }
.single__hero-inner { max-width: var(--bs-content); margin-inline: auto; padding: 80px var(--bs-gutter); display: flex; gap: 64px; align-items: center; }
.single__hero-text { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.single__cat { font-family: var(--bs-body); font-weight: 600; font-size: 14px; line-height: 1.2; letter-spacing: 0.04em; text-transform: uppercase; color: var(--bs-blue-tint); }
.single__cat:hover { color: var(--bs-white); text-decoration: underline; }
.single__title { margin: 0; font-family: var(--bs-heading); font-weight: 400; font-size: 62px; line-height: 1.2; text-transform: capitalize; color: var(--bs-blue-tint); }
.single__meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-family: var(--bs-body); font-size: 14px; color: var(--bs-blue-tint); }
.single__meta-dot { opacity: .5; }
.single__meta-source { font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--bs-blue-tint); }
.single__media { width: clamp(320px, 42vw, 600px); aspect-ratio: 600 / 540; flex: none; border-radius: var(--bs-radius); background: var(--bs-dark) center / cover no-repeat; }

/* News-detail hero responsive: the split shrinks its image + title as it narrows,
   then stacks to one column at ≤1024 so the long title gets full width. */
@media (max-width: 1280px) { .single__title { font-size: 50px; } }
@media (max-width: 1024px) {
	.single__hero-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
	.single__title { font-size: 44px; }
	.single__media { width: 100%; max-width: 600px; aspect-ratio: 600 / 400; }
}
@media (max-width: 768px) {
	.single__hero-inner { padding: 60px 20px; }
}
@media (max-width: 560px) {
	.single__title { font-size: 34px; }
	.single__media { aspect-ratio: auto; height: 240px; }
}

/* Share / print rows */
.share-row { display: flex; align-items: center; gap: 24px; margin-top: 8px; }
.share-row a { display: inline-flex; align-items: center; gap: 8px; font-family: var(--bs-body); font-weight: 500; font-size: 16px; text-decoration: none; color: var(--bs-blue-tint); }
.share-row--dark-on-light a { color: var(--bs-text); }
.share-row svg { flex: none; }
.share-row svg path, .share-row svg circle, .share-row svg rect { stroke: var(--bs-accent-red); }

.single__body { max-width: var(--bs-detail); margin: 0 auto; padding: 80px var(--bs-gutter); }
.single__author-eyebrow { margin: 0 0 8px; font-family: var(--bs-body); font-weight: 600; font-size: 14px; line-height: 1.2; letter-spacing: 0.04em; text-transform: uppercase; color: var(--bs-primary); }
.single__body-close { max-width: var(--bs-detail); margin: 0 auto; padding: 0 var(--bs-gutter) 80px; }
.single__share-repeat { display: flex; gap: 24px; margin-top: 16px; padding-top: 24px; border-top: 0.5px solid var(--bs-secondary); }

/* Related news */
.single__related { background: var(--bs-subtle); }
.single__related-inner { max-width: var(--bs-content); margin-inline: auto; padding: 100px var(--bs-gutter); display: flex; flex-direction: column; gap: 40px; }
.single__related-eyebrow { font-family: var(--bs-body); font-weight: 600; font-size: 18px; line-height: 1.2; letter-spacing: 0.04em; text-transform: uppercase; color: var(--bs-primary); }
.single__related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

/* =========================================================================
   Detail prose (article-content) — shared by single body + Standard Detail.
   Spacing is per-element bottom margins (not an owl), so WP block output —
   paragraphs, headings, lists, quotes, images — always keeps its vertical
   rhythm. The :not([class*="lc-"]) guards keep these prose styles from
   bleeding into LC blocks dropped inside post/page content (blocks own type).
   ========================================================================= */

/* Body text */
.article-content p:not([class*="lc-"]) { font-family: var(--bs-body); font-weight: 400; font-size: 18px; line-height: 2; color: var(--bs-text); margin: 0 0 1.5em; }
.article-content p:not([class*="lc-"]):last-child { margin-bottom: 0; }

/* Headings — DM Serif Display is weight-400 only (heavier renders as synthetic bold).
   margin-top/-bottom (not shorthand) so .alignwide headings keep their breakout margins. */
.article-content h1:not([class*="lc-"]),
.article-content h2:not([class*="lc-"]),
.article-content h3:not([class*="lc-"]),
.article-content h4:not([class*="lc-"]),
.article-content h5:not([class*="lc-"]),
.article-content h6:not([class*="lc-"]) {
	font-family: var(--bs-heading); font-weight: 400; line-height: 1.2; color: var(--bs-navy-800);
	margin-top: 0.8em; margin-bottom: 0.4em;
}
.article-content h1:not([class*="lc-"]) { font-size: 62px; }
.article-content h2:not([class*="lc-"]) { font-size: 52px; }
.article-content h3:not([class*="lc-"]) { font-size: 38px; }
.article-content h4:not([class*="lc-"]) { font-size: 28px; line-height: 1.4; }
.article-content h5:not([class*="lc-"]) { font-size: 24px; line-height: 1.4; }
.article-content h6:not([class*="lc-"]) { font-size: 20px; line-height: 1.4; }
.article-content > *:first-child { margin-top: 0; }

/* Prose links */
.article-content a:not([class*="lc-"]):not([class*="wp-block-"]) { color: var(--bs-primary); text-decoration: underline; text-underline-offset: 2px; }
.article-content a:not([class*="lc-"]):not([class*="wp-block-"]):hover { color: var(--bs-primary-hover); }

/* Unordered list — Markley red-dot bullets */
.article-content ul { list-style: none; margin: 0 0 1.5em; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.article-content ul:last-child { margin-bottom: 0; }
.article-content ul li { position: relative; padding-left: 24px; font-family: var(--bs-body); font-size: 18px; line-height: 2; color: var(--bs-text); }
.article-content ul li::before { content: ""; position: absolute; left: 0; top: 15px; width: 8px; height: 8px; border-radius: 50%; background: var(--bs-accent-red); }

/* Ordered list */
.article-content ol { margin: 0 0 1.5em; padding-left: 1.5em; }
.article-content ol:last-child { margin-bottom: 0; }
.article-content ol li { font-family: var(--bs-body); font-size: 18px; line-height: 2; color: var(--bs-text); }
.article-content ol li::marker { color: var(--bs-primary); }

/* Blockquote — guarded so LC blocks that render a <blockquote> (pull quote)
   keep their own styling instead of the prose rule's rule + inset. */
.article-content blockquote:not([class*="lc-"]) { margin: 1.5em 0; padding: 4px 0 4px 24px; border-left: 3px solid var(--bs-primary); }
.article-content blockquote p:not([class*="lc-"]) { font-style: italic; }
.article-content blockquote cite:not([class*="lc-"]) { display: block; margin-top: 8px; font-size: 14px; font-style: normal; color: var(--bs-muted); }

/* Figures & images — same guard (pull quote wraps its content in a <figure>) */
.article-content figure:not([class*="lc-"]) { margin: 0 0 1.5em; }
.article-content figure:not([class*="lc-"]) img,
.article-content > img,
.article-content .wp-block-image img { display: block; width: 100%; height: auto; border-radius: var(--bs-radius); }
.article-content figcaption:not([class*="lc-"]) { margin-top: 12px; font-family: var(--bs-body); font-weight: 400; font-size: 14px; line-height: 1.2; color: var(--bs-text); }

/* Horizontal rule (WP separators + lc blocks style their own) */
.article-content hr:not([class*="lc-"]):not(.wp-block-separator) { border: 0; border-top: 1px solid var(--bs-hairline); margin: 2.5em 0; }

/* Emphasis */
.article-content strong, .article-content b { font-weight: 700; }
.article-content em, .article-content i { font-style: italic; }

/* WP core layout blocks */
.article-content .wp-block-buttons { margin: 1.5em 0; }
.article-content .wp-block-columns { gap: 60px; margin-bottom: 1.5em; }

/* Author-typed headings inside LC InnerBlocks areas carry no lc- class, so the
   prose heading rules above reach them — re-scope size + rhythm to the block. */
.article-content :is(.lc-feature-split__content, .lc-accordion__item-content, .lc-featured-fw__card) :is(h1, h2, h3, h4, h5, h6) { margin: 0.9em 0 0.5em; }
.article-content :is(.lc-feature-split__content, .lc-accordion__item-content, .lc-featured-fw__card) :is(h1, h2) { font-size: clamp(30px, 3vw, 44px); }
.article-content :is(.lc-feature-split__content, .lc-accordion__item-content, .lc-featured-fw__card) h3 { font-size: clamp(26px, 2.8vw, 38px); }
.article-content :is(.lc-feature-split__content, .lc-accordion__item-content, .lc-featured-fw__card) h4 { font-size: clamp(22px, 2.2vw, 28px); }
.article-content :is(.lc-feature-split__content, .lc-accordion__item-content, .lc-featured-fw__card) h5 { font-size: 20px; }
.article-content :is(.lc-feature-split__content, .lc-accordion__item-content, .lc-featured-fw__card) h6 { font-size: 18px; }
.article-content :is(.lc-feature-split__content, .lc-accordion__item-content, .lc-featured-fw__card) :first-child { margin-top: 0; }

/* =========================================================================
   Alignment breakout inside prose columns (single body, page content)
   -------------------------------------------------------------------------
   Lets alignwide/alignfull blocks and floated images work inside the 900px
   the_content() column. The column is centered exactly like a 900px column
   (single__body is a 1020px box with 60px padding), so the 50%/100% maths
   resolve against the 900px content width. Ported from the LC main theme —
   keep in sync across every the_content() container.
   ========================================================================= */
.article-content { --bs-align-gutter: 60px; }
@media (max-width: 1024px) { .article-content { --bs-align-gutter: 40px; } }
@media (max-width: 768px)  { .article-content { --bs-align-gutter: 20px; } }

/* Wide: break out toward the 1440 wide-size, clamped so it never overflows. */
.article-content > .alignwide {
	--_wide: min(1440px, calc(100vw - 2 * var(--bs-align-gutter)));
	width: var(--_wide);
	max-width: none;
	margin-left: calc((100% - var(--_wide)) / 2);
	margin-right: calc((100% - var(--_wide)) / 2);
	box-sizing: border-box;
}
@media (max-width: 1024px) {
	.article-content > .alignwide { width: auto; max-width: none; margin-left: 0; margin-right: 0; }
}
/* Full: reach the viewport edges. */
.article-content > .alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: 0;
}
/* LC blocks are full-bleed sections that own their inner width via block-inner —
   force their wide/full to full-viewport so backgrounds span edge-to-edge. */
.article-content > .alignwide[class*="wp-block-lc-"],
.article-content > .alignfull[class*="wp-block-lc-"] {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: 0;
}
/* Float alignment for images — inside prose columns and block-hero pages. */
.article-content > .wp-block-image.alignleft,
.article-content > figure.alignleft,
.page-blocks > .wp-block-image.alignleft,
.page-blocks > figure.alignleft {
	float: left; margin: 0.5em 2em 1em 0; max-width: 50%;
}
.article-content > .wp-block-image.alignright,
.article-content > figure.alignright,
.page-blocks > .wp-block-image.alignright,
.page-blocks > figure.alignright {
	float: right; margin: 0.5em 0 1em 2em; max-width: 50%;
}
@media (max-width: 768px) {
	.article-content > .wp-block-image.alignleft,
	.article-content > figure.alignleft,
	.article-content > .wp-block-image.alignright,
	.article-content > figure.alignright,
	.page-blocks > .wp-block-image.alignleft,
	.page-blocks > figure.alignleft,
	.page-blocks > .wp-block-image.alignright,
	.page-blocks > figure.alignright {
		float: none; max-width: 100%; margin: 0 0 1.5em;
	}
}

/* =========================================================================
   Homepage
   ========================================================================= */
.home-hero { position: relative; overflow: hidden; background: var(--bs-gradient-hero); }
.home-hero__inner { max-width: var(--bs-content); margin: 0 auto; padding: 163px var(--bs-gutter) 100px; display: flex; gap: 100px; align-items: flex-end; }
.home-hero__text { flex: 1; display: flex; flex-direction: column; gap: 60px; padding-bottom: 20px; }
.home-hero__intro { display: flex; flex-direction: column; gap: 30px; }
.home-hero__title { margin: 0; font-family: var(--bs-heading); font-weight: 400; font-size: 62px; line-height: 1.2; text-transform: capitalize; color: var(--bs-white); }
.home-hero__lead { margin: 0; max-width: 540px; font-family: var(--bs-body); font-size: 18px; line-height: 1.6; color: var(--bs-white); }
.home-hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.home-hero__media { width: 620px; align-self: stretch; min-height: 560px; flex: none; border-radius: var(--bs-radius); background: var(--bs-dark) center / cover no-repeat; background-position: 31% 50%; }

.home-news { background: var(--bs-subtle); }
.home-news__inner { max-width: var(--bs-content); margin: 0 auto; padding: 100px var(--bs-gutter); display: flex; flex-direction: column; gap: 60px; }
.home-news__head { display: flex; gap: 120px; align-items: flex-start; }
.home-news__title { margin: 0; width: 600px; flex: none; font-family: var(--bs-heading); font-weight: 400; font-size: 52px; line-height: 1.2; text-transform: capitalize; color: var(--bs-text); }
.home-news__intro-wrap { flex: 1; display: flex; flex-direction: column; gap: 30px; }
.home-news__intro { margin: 0; font-family: var(--bs-body); font-size: 18px; line-height: 1.6; color: var(--bs-text); }
.home-news__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.home-quote { background: var(--bs-white); }
.home-quote__inner { max-width: 1280px; margin: 0 auto; padding: 100px 80px; display: flex; flex-direction: column; gap: 40px; }
.home-quote__divider { height: 1px; background: var(--bs-secondary); width: 100%; }

.home-about { position: relative; background-size: cover; background-position: center; }
.home-about__inner { max-width: var(--bs-content); margin: 0 auto; padding: 100px var(--bs-gutter); display: flex; gap: 80px; align-items: center; }
.home-about__left { flex: 1; display: flex; flex-direction: column; gap: 60px; align-items: center; }
.home-about__logo { width: 490px; max-width: 100%; height: auto; }
.home-about__card { width: 670px; flex: none; border-radius: var(--bs-radius); background: var(--bs-white); padding: 60px; display: flex; flex-direction: column; gap: 24px; }
.home-about__body { margin: 0; font-family: var(--bs-body); font-weight: 400; font-size: 18px; line-height: 1.6; color: var(--bs-text); }
.home-about__body strong { font-weight: 700; }

@media (max-width: 1024px) {
	.home-hero__inner { gap: 48px; }
	.home-hero__media { width: 460px; }
	.home-news__head { gap: 48px; }
	.home-news__title { width: 380px; }
	.home-about__card { width: 480px; }
	.home-news__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
	.home-hero__inner { flex-direction: column; align-items: stretch; padding: 120px 20px 60px; gap: 32px; }
	.home-hero__text { gap: 32px; padding-bottom: 0; order: 2; }
	.home-hero__title { font-size: 38px; }
	.home-hero__buttons { flex-direction: column; }
	.home-hero__buttons .btn { width: 100%; }
	.home-hero__media { width: 100%; min-height: 0; height: 320px; order: 1; }
	.home-news__inner { padding: 60px 20px; }
	.home-news__head { flex-direction: column; gap: 24px; }
	.home-news__title { width: auto; font-size: 34px; }
	.home-news__grid { grid-template-columns: 1fr; gap: 20px; }
	.home-quote__inner { padding: 60px 20px; }
	.home-quote__divider { display: none; }
	.home-about__inner { flex-direction: column; padding: 60px 20px; gap: 40px; }
	.home-about__left { align-items: flex-start; }
	.home-about__logo { width: 240px; }
	.home-about__card { width: 100%; padding: 28px; gap: 24px; }
}

/* =========================================================================
   Password-protected post form (markup from bs_password_form)
   Renders inside the 900px content column (.single__body / .page-content__inner).
   ========================================================================= */
.post-password-form { max-width: 900px; }
.post-password-form__intro { margin: 0 0 24px; font-family: var(--bs-body); font-size: 18px; line-height: 1.6; color: var(--bs-text); }
.post-password-form__error { display: flex; align-items: center; gap: 10px; margin: 0 0 16px; font-family: var(--bs-body); font-size: 16px; font-weight: 500; line-height: 1.4; color: #B3261E; }
.post-password-form__error::before {
	content: ""; flex-shrink: 0; width: 18px; height: 18px; background-color: currentColor;
	-webkit-mask: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm1 15h-2v-2h2v2Zm0-4h-2V7h2v6Z'/%3E%3C/svg%3E");
	        mask: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm1 15h-2v-2h2v2Zm0-4h-2V7h2v6Z'/%3E%3C/svg%3E");
}
.post-password-form__label { display: block; margin-bottom: 8px; font-family: var(--bs-body); font-size: 14px; font-weight: 500; line-height: 1.2; color: var(--bs-text); }
.post-password-form__controls { display: flex; align-items: stretch; gap: 12px; }
.post-password-form__input {
	flex: 1; min-width: 0; height: 55px; padding: 0 20px;
	border: 1px solid var(--bs-hairline); border-radius: var(--bs-radius);
	background: var(--bs-white); font-family: var(--bs-body); font-size: 16px; color: var(--bs-text);
	transition: border-color .18s ease, box-shadow .18s ease;
}
.post-password-form__input:focus { outline: none; border-color: var(--bs-primary); box-shadow: 0 0 0 3px rgba(24, 91, 179, .15); }
.post-password-form--error .post-password-form__input { border-color: #B3261E; }
.post-password-form__submit {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px; flex-shrink: 0;
	height: 55px; padding: 0 32px; border: 0; border-radius: 100px;
	background: var(--bs-primary); color: #fff;
	font-family: var(--bs-body); font-weight: 600; font-size: 16px; line-height: 1.2; text-transform: capitalize;
	cursor: pointer; transition: background-color .18s ease;
}
.post-password-form__submit:hover { background: var(--bs-primary-hover); color: #fff; }
.post-password-form__submit svg { flex-shrink: 0; }
@media (max-width: 768px) {
	.post-password-form__controls { flex-direction: column; }
}

/* =========================================================================
   404
   ========================================================================= */
.error-404 { padding: 96px 24px 120px; text-align: center; }
.error-404__inner { max-width: 560px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.error-404__code { font-family: var(--bs-heading); font-size: 96px; font-weight: 400; color: var(--bs-secondary); margin: 0; line-height: 1; }
.error-404__title { font-size: 34px; margin: 0; color: var(--bs-navy-800); }
.error-404__text { color: var(--bs-muted); margin: 0; }
.error-404__btn { display: inline-flex; align-items: center; height: 55px; padding: 0 32px; background: var(--bs-primary); color: #fff; border-radius: 100px; text-decoration: none; font-weight: 600; }
.error-404__btn:hover { background: var(--bs-primary-hover); color: #fff; }

/* =========================================================================
   Responsive
   ========================================================================= */
/* Header: hamburger kicks in before the content-heavy nav (wide wordmark + 4
   items + CTA) would crowd or wrap to a second line. */
@media (max-width: 1200px) {
	.site-header__inner { padding: 16px 20px; min-height: 0; justify-content: space-between; }
	.site-header__nav, .site-header__login { display: none; }
	.site-header__burger {
		display: inline-flex; flex-direction: column; gap: 5px;
		background: none; border: 0; cursor: pointer; padding: 6px;
	}
	.site-header__burger span { width: 24px; height: 2px; background: currentColor; display: block; }
}
/* Super-small: drop the header CTA (it lives in the mobile menu) + shrink the wordmark. */
@media (max-width: 560px) {
	.site-header__cta { display: none; }
	.site-header__brand, .site-header__logo { height: 18px; }
}
@media (max-width: 1024px) {
	.archive__grid, .single__related-grid { grid-template-columns: repeat(2, 1fr); }
	.site-footer__cols { gap: 48px; }
}
@media (max-width: 860px) {
	/* (header switches to hamburger at ≤1200px above; interior hero stacks at ≤1024px above) */

	.single__body, .single__body-close, .page-content { padding-left: 20px; padding-right: 20px; }
	.single__body { padding-top: 60px; padding-bottom: 60px; }
	.single__body-close { padding-bottom: 60px; }
	.single__related-inner { padding: 60px 20px; }
	.article-content p:not([class*="lc-"]), .article-content ul li, .article-content ol li { font-size: 16px; }
	.article-content h1:not([class*="lc-"]) { font-size: 42px; }
	.article-content h2:not([class*="lc-"]) { font-size: 40px; }
	.article-content h3:not([class*="lc-"]) { font-size: 30px; }
	.article-content h4:not([class*="lc-"]) { font-size: 24px; }

	.insights-archive__hero-inner { padding: 60px 20px; gap: 16px; }
	.insights-archive__title { font-size: 38px; }
	.insights-archive__inner { padding: 40px 20px 60px; gap: 40px; }

	.nl-filter { flex-direction: column; align-items: stretch; gap: 12px; }
	.nl-search, .nl-select, .nl-btn, .nl-clear { width: 100%; }
	.nl-clear { height: 44px; justify-content: center; }

	.archive__grid, .single__related-grid { grid-template-columns: 1fr; gap: 20px; }

	.site-footer__inner { padding: 60px 20px 40px; gap: 48px; }
	.site-footer__cols { gap: 40px; }
}
