/* =========================================================
   The Blog Edit Editorial v0.1.2
   ========================================================= */

:root {
	--wve-ink: #202124;
	--wve-accent-dark: #374151;
	--wve-muted: #6B7280;
	--wve-line: #D1D5DB;
	--wve-paper: #F9FAFB;
	--wve-warm: #EEF0F3;
	--wve-soft: #F3F4F6;
	--wve-card: #FFFFFF;
	--wve-accent: #374151;
	--wve-shell: 1220px;
	--wve-reading: 790px;
	--wve-font:
		-apple-system,
		BlinkMacSystemFont,
		"SF Pro Text",
		"SF Pro Display",
		"Helvetica Neue",
		"Segoe UI",
		Arial,
		sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--wve-paper);
	color: var(--wve-ink);
	font-family: var(--wve-font);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea,
select {
	font-family: var(--wve-font);
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover,
a:focus-visible {
	color: var(--wve-accent-dark);
}

.wve-shell {
	width: min(calc(100% - 44px), var(--wve-shell));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.wve-skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 9999;
	padding: 10px 14px;
	background: var(--wve-ink);
	color: #ffffff;
	transform: translateY(-150%);
}

.wve-skip-link:focus {
	transform: translateY(0);
}

/* Header */

.wve-site-header {
	position: relative;
	z-index: 100;
	border-bottom: 1px solid var(--wve-line);
	background: rgba(249, 250, 251, 0.97);
}

.wve-header-inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	min-height: 74px;
	align-items: center;
	gap: 28px;
}

.wve-site-title {
	margin: 0;
	font-size: 32px;
	font-weight: 720;
	letter-spacing: -0.04em;
	line-height: 1;
	text-transform: lowercase;
}

.wve-site-title a,
.wve-site-title a:hover {
	color: var(--wve-ink);
}

.wve-site-title img {
	width: auto;
	max-width: 240px;
	max-height: 42px;
}

.wve-primary-navigation {
	justify-self: end;
}

.wve-primary-menu {
	display: flex;
	align-items: center;
	gap: 32px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.wve-primary-menu li {
	position: relative;
	margin: 0;
}

.wve-primary-menu a {
	display: flex;
	min-height: 44px;
	align-items: center;
	font-size: 17px;
	font-weight: 600;
}

.wve-primary-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: -16px;
	display: none;
	min-width: 200px;
	margin: 0;
	padding: 12px 16px;
	border: 1px solid var(--wve-line);
	background: #ffffff;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
	list-style: none;
}

.wve-primary-menu li:hover > .sub-menu,
.wve-primary-menu li:focus-within > .sub-menu {
	display: block;
}

.wve-menu-toggle,
.wve-search-toggle {
	display: inline-flex;
	min-width: 44px;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--wve-ink);
	cursor: pointer;
}

.wve-menu-toggle {
	display: none;
	gap: 10px;
	font-size: 14px;
	font-weight: 700;
}

.wve-menu-toggle__icon,
.wve-menu-toggle__icon::before,
.wve-menu-toggle__icon::after {
	display: block;
	width: 22px;
	height: 1.5px;
	background: currentColor;
	content: "";
}

.wve-menu-toggle__icon {
	position: relative;
}

.wve-menu-toggle__icon::before {
	position: absolute;
	top: -7px;
	left: 0;
}

.wve-menu-toggle__icon::after {
	position: absolute;
	top: 7px;
	left: 0;
}

.wve-search-icon {
	position: relative;
	display: block;
	width: 24px;
	height: 24px;
}

.wve-search-icon::before {
	position: absolute;
	top: 2px;
	left: 2px;
	width: 14px;
	height: 14px;
	border: 2px solid var(--wve-ink);
	border-radius: 50%;
	content: "";
}

.wve-search-icon::after {
	position: absolute;
	right: 1px;
	bottom: 3px;
	width: 9px;
	height: 2px;
	border-radius: 2px;
	background: var(--wve-ink);
	content: "";
	transform: rotate(45deg);
}

.wve-header-search {
	border-top: 1px solid var(--wve-line);
	background: var(--wve-warm);
	padding-block: 22px;
}

.wve-header-search form,
.wve-empty-state form,
.wve-404 form {
	display: flex;
	max-width: 720px;
	margin: 0 auto;
}

.wve-header-search input[type="search"],
.wve-empty-state input[type="search"],
.wve-404 input[type="search"] {
	width: 100%;
	min-height: 52px;
	padding: 12px 16px;
	border: 1px solid #ccc8c2;
	background: #ffffff;
	font-size: 16px;
}

.wve-header-search input[type="submit"],
.wve-empty-state input[type="submit"],
.wve-404 input[type="submit"] {
	padding: 12px 22px;
	border: 0;
	background: var(--wve-ink);
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
}

/* Homepage */

.wve-home-hero {
	background:
		linear-gradient(
			135deg,
			var(--wve-paper) 0%,
			var(--wve-warm) 58%,
			var(--wve-line) 100%
		);
}

.wve-home-hero__content {
	max-width: 900px;
	padding-block: clamp(72px, 9vw, 126px);
}

.wve-home-heading {
	max-width: 850px;
	font-size: clamp(42px, 5.4vw, 70px);
	font-weight: 620;
	letter-spacing: -0.055em;
	line-height: 1.02;
}

.wve-home-hero p {
	max-width: 780px;
	margin: 24px 0 0;
	color: #373739;
	font-family: var(--wve-font);
	font-size: clamp(17px, 2vw, 21px);
	font-style: italic;
	line-height: 1.55;
}

.wve-posts-section {
	padding-block: clamp(54px, 7vw, 92px);
}

.wve-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 56px 34px;
}

.wve-post-card {
	min-width: 0;
}

.wve-card-image {
	display: block;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: #eeece8;
}

.wve-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 480ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.wve-post-card:hover .wve-card-image img {
	transform: scale(1.025);
}

.wve-card-content {
	padding-top: 15px;
}

.wve-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 12px;
	color: var(--wve-muted);
	font-size: 11px;
	font-weight: 650;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.wve-card-meta span:first-child {
	color: var(--wve-ink);
}

.wve-post-card h2 {
	margin: 0 0 16px;
	font-size: clamp(20px, 1.8vw, 25px);
	font-weight: 610;
	letter-spacing: -0.035em;
	line-height: 1.17;
}

.wve-view-more {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	font-size: 13px;
	font-weight: 720;
}

.wve-load-more-wrap {
	display: flex;
	justify-content: flex-start;
	margin-top: 48px;
}

.wve-load-more,
.wve-button {
	display: inline-flex;
	min-width: 150px;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 20px;
	border: 1px solid var(--wve-ink);
	background: var(--wve-ink);
	color: #ffffff !important;
	font-size: 13px;
	font-weight: 700;
}

/* Single article */

.wve-single {
	padding-top: clamp(52px, 7vw, 92px);
}

.wve-article-header {
	max-width: 1040px;
}

.wve-breadcrumbs,
.wve-breadcrumbs p {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: 0 0 28px;
	color: var(--wve-muted);
	font-size: 13px;
}

.wve-breadcrumbs .wve-category {
	margin: 0;
	font-size: inherit;
	letter-spacing: 0;
	text-transform: none;
}

.wve-category {
	display: inline-flex;
	width: fit-content;
	margin-bottom: 18px;
	color: var(--wve-accent-dark);
	font-size: 12px;
	font-weight: 750;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.wve-article-header h1 {
	max-width: 1000px;
	margin: 0;
	font-size: clamp(44px, 6vw, 74px);
	font-weight: 630;
	letter-spacing: -0.055em;
	line-height: 1;
}

.wve-article-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-top: 36px;
}

.wve-author-chip {
	display: flex;
	align-items: center;
	gap: 12px;
}

.wve-author-chip img {
	border-radius: 50%;
}

.wve-author-chip span,
.wve-author-chip strong {
	display: block;
}

.wve-author-chip span {
	color: var(--wve-muted);
	font-size: 12px;
}

.wve-author-chip strong {
	font-size: 14px;
	font-weight: 700;
}

.wve-article-meta > p {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: 0;
	color: var(--wve-muted);
	font-size: 13px;
}

.wve-article-hero {
	max-width: 1160px;
	margin-top: clamp(36px, 5vw, 62px);
}

.wve-article-hero img {
	width: 100%;
	max-height: 730px;
	object-fit: cover;
}

.wve-article-tools {
	max-width: 850px;
	margin-top: 22px;
}

.wve-tldr {
	margin: 0;
	padding: 20px 24px;
	border: 1px solid #cfd5d0;
	border-left: 4px solid var(--wve-accent);
	background: #f6f8f6;
}

.wve-tldr__head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 7px;
}

.wve-tldr__head > span {
	color: var(--wve-accent);
}

.wve-tldr h2 {
	margin: 0 !important;
	padding: 0 !important;
	font-size: 17px;
	font-weight: 750;
	line-height: 1.2;
}

.wve-tldr__body,
.wve-tldr__body p {
	margin: 0;
	font-size: 16px;
	line-height: 1.65;
}

.wve-quick-take {
	margin-top: 16px;
	border: 1px solid var(--wve-line);
	background: var(--wve-warm);
}

.wve-quick-take summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 24px;
	cursor: pointer;
	list-style: none;
}

.wve-quick-take summary::-webkit-details-marker {
	display: none;
}

.wve-quick-take summary strong,
.wve-quick-take summary small {
	display: block;
}

.wve-quick-take summary strong {
	font-size: 17px;
	font-weight: 740;
}

.wve-quick-take summary small {
	margin-top: 3px;
	color: var(--wve-muted);
	font-size: 12px;
}

.wve-quick-take__icon {
	font-size: 25px;
	font-weight: 300;
	transition: transform 180ms ease;
}

.wve-quick-take[open] .wve-quick-take__icon {
	transform: rotate(45deg);
}

.wve-quick-take ol {
	margin: 0;
	padding: 10px 24px 22px 48px;
	border-top: 1px solid var(--wve-line);
}

.wve-quick-take li {
	padding: 11px 0;
	border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.wve-quick-take li:last-child {
	border-bottom: 0;
}

.wve-quick-take li a {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.wve-quick-take__heading {
	font-size: 14px;
	font-weight: 700;
}

.wve-quick-take__excerpt {
	color: var(--wve-muted);
	font-size: 13px;
}

.wve-article-layout {
	display: grid;
	grid-template-columns: 58px minmax(0, var(--wve-reading)) 58px;
	justify-content: center;
	gap: 30px;
	margin-top: clamp(46px, 6vw, 76px);
}

.wve-article-main {
	grid-column: 2;
	min-width: 0;
}

.wve-share-rail {
	position: sticky;
	top: 30px;
	grid-column: 1;
	align-self: start;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.wve-share-rail > span {
	margin-bottom: 4px;
	color: var(--wve-muted);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
}

.wve-share-rail a {
	display: inline-flex;
	width: 38px;
	height: 38px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--wve-line);
	border-radius: 50%;
	font-size: 12px;
	font-weight: 700;
}

.wve-article-content {
	color: #242426;
	font-size: 18px;
	line-height: 1.78;
}

.wve-article-content > :first-child {
	margin-top: 0;
}

.wve-article-content p {
	margin: 0 0 1.5em;
}

.wve-article-content h2,
.wve-article-content h3 {
	color: var(--wve-ink);
	font-weight: 650;
	letter-spacing: -0.035em;
	scroll-margin-top: 100px;
}

.wve-article-content h2 {
	margin: 2.1em 0 0.7em;
	font-size: clamp(30px, 4vw, 41px);
	line-height: 1.1;
}

.wve-article-content h3 {
	margin: 1.7em 0 0.6em;
	font-size: clamp(24px, 3vw, 30px);
	line-height: 1.16;
}

.wve-article-content a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.wve-article-content blockquote {
	margin: 2em 0;
	padding: 4px 0 4px 24px;
	border-left: 3px solid var(--wve-accent);
	font-family: var(--wve-font);
	font-size: 23px;
	line-height: 1.5;
}

.wve-article-content figure {
	margin-block: 2.2em;
}

.wve-faq {
	margin: 22px 0;
	padding: 20px 22px;
	border: 1px solid var(--wve-line);
	background: var(--wve-soft);
}

.wve-faq h3 {
	margin: 0 0 8px;
	font-size: 18px;
}

.wve-faq p:last-child {
	margin-bottom: 0;
}

.wve-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 40px;
}

.wve-tags a {
	padding: 7px 10px;
	border: 1px solid var(--wve-line);
	font-size: 12px;
	font-weight: 650;
}

.wve-author-box {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 22px;
	margin-top: 50px;
	padding-top: 32px;
	border-top: 1px solid var(--wve-line);
}

.wve-author-box img {
	border-radius: 50%;
}

.wve-author-box h2 {
	margin: 0 0 6px;
	font-size: 24px;
}

.wve-author-box p:last-child {
	margin: 0;
	color: var(--wve-muted);
}

.wve-kicker {
	margin: 0 0 8px;
	color: var(--wve-muted);
	font-size: 11px;
	font-weight: 750;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.wve-related {
	margin-top: clamp(76px, 9vw, 126px);
	padding-block: clamp(62px, 7vw, 92px);
	background: var(--wve-warm);
}

.wve-section-title {
	margin-bottom: 36px;
	font-size: clamp(34px, 4vw, 48px);
	font-weight: 630;
	letter-spacing: -0.045em;
	line-height: 1.05;
}

/* Archives, pages, 404 */

.wve-archive,
.wve-page,
.wve-404 {
	padding-block: clamp(56px, 8vw, 104px);
}

.wve-archive-header {
	margin-bottom: 46px;
}

.wve-archive-header h1,
.wve-page-article h1,
.wve-404 h1 {
	max-width: 900px;
	margin: 0;
	font-size: clamp(42px, 5.5vw, 68px);
	font-weight: 630;
	letter-spacing: -0.055em;
	line-height: 1.02;
}

.wve-archive-description {
	max-width: 700px;
	margin-top: 20px;
	color: var(--wve-muted);
	font-size: 18px;
}

.wve-page-article {
	max-width: 940px;
}

.wve-page-content {
	max-width: var(--wve-reading);
	margin-top: 36px;
	font-size: 18px;
	line-height: 1.78;
}

.wve-empty-state,
.wve-404-inner {
	max-width: 780px;
	margin-inline: auto;
	text-align: center;
}

.wve-404 {
	min-height: 65vh;
	display: grid;
	align-items: center;
}

.wve-404-inner > p:not(.wve-kicker) {
	margin: 22px auto 0;
	color: var(--wve-muted);
}

.wve-404 form {
	margin-top: 26px;
}

.wve-404 .wve-button {
	margin-top: 22px;
}

/* Hide common legacy TOC plugin output while testing the replacement. */

.ez-toc-container,
#ez-toc-container,
.lwptoc,
.toc_container,
.toc-wrap,
.rank-math-toc-block {
	display: none !important;
}

/* Footer */

.wve-site-footer {
	margin-top: clamp(74px, 9vw, 120px);
	background: #1f1d1b;
	color: #ffffff;
}

.wve-footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(170px, 0.6fr));
	gap: clamp(36px, 6vw, 90px);
	padding-block: clamp(56px, 7vw, 88px);
}

.wve-footer-title {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	font-size: 30px;
	font-weight: 720;
	letter-spacing: -0.04em;
	text-transform: lowercase;
}

.wve-footer-brand p {
	max-width: 430px;
	margin: 15px 0 0;
	color: #b8b4b0;
	font-size: 14px;
}

.wve-footer-column h2 {
	margin: 0 0 14px;
	font-size: 12px;
	font-weight: 750;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.wve-footer-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.wve-footer-list li {
	margin: 0;
}

.wve-footer-list a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	padding-block: 7px;
	color: #c7c4c1;
	font-size: 14px;
}

.wve-footer-list a:hover {
	color: #ffffff;
}

.wve-footer-bottom {
	padding-block: 24px 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	text-align: center;
}

.wve-footer-bottom p {
	margin: 0;
	color: #aaa6a2;
	font-size: 12px;
}

.wve-disclaimer {
	max-width: 1050px;
	margin: 12px auto 0 !important;
	line-height: 1.55;
}

/* Responsive */

@media (max-width: 980px) {
	.wve-header-inner {
		grid-template-columns: auto auto 1fr auto;
	}

	.wve-menu-toggle {
		display: inline-flex;
		grid-column: 3;
		justify-self: end;
	}

	.wve-primary-navigation {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		display: none;
		padding: 18px 22px 26px;
		border-top: 1px solid var(--wve-line);
		background: #ffffff;
	}

	.wve-primary-navigation.is-open {
		display: block;
	}

	.wve-primary-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.wve-primary-menu a {
		font-size: 18px;
	}

	.wve-primary-menu .sub-menu {
		position: static;
		display: block;
		padding: 0 0 4px 18px;
		border: 0;
		box-shadow: none;
	}

	.wve-post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wve-article-layout {
		grid-template-columns: minmax(0, var(--wve-reading));
	}

	.wve-article-main {
		grid-column: 1;
	}

	.wve-share-rail {
		position: static;
		grid-column: 1;
		flex-direction: row;
		justify-content: flex-start;
		margin-bottom: 20px;
	}

	.wve-share-rail > span {
		margin: 0 6px 0 0;
		writing-mode: initial;
		transform: none;
	}

	.wve-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wve-footer-brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 700px) {
	.wve-shell {
		width: min(calc(100% - 28px), var(--wve-shell));
	}

	.wve-header-inner {
		min-height: 68px;
		gap: 12px;
	}

	.wve-site-title {
		font-size: 26px;
	}

	.wve-menu-toggle__text {
		position: absolute !important;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
	}

	.wve-home-hero__content {
		padding-block: 58px;
	}

	.wve-home-heading {
		font-size: 42px;
	}

	.wve-home-hero p {
		font-size: 17px;
	}

	.wve-post-grid {
		grid-template-columns: 1fr;
		gap: 44px;
	}

	.wve-post-card h2 {
		font-size: 25px;
	}

	.wve-article-header h1 {
		font-size: 43px;
	}

	.wve-article-meta {
		align-items: flex-start;
		flex-direction: column;
	}

	.wve-article-hero {
		width: 100%;
	}

	.wve-article-tools,
	.wve-article-layout {
		width: min(calc(100% - 28px), var(--wve-reading));
	}

	.wve-article-layout {
		gap: 0;
	}

	.wve-article-content {
		font-size: 17px;
	}

	.wve-footer-grid {
		grid-template-columns: 1fr;
		gap: 28px;
		padding-block: 48px 38px;
	}

	.wve-footer-brand {
		grid-column: 1;
	}

	.wve-footer-list a {
		width: 100%;
	}

	.wve-footer-bottom {
		text-align: left;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.wve-card-image img,
	.wve-quick-take__icon {
		transition: none;
	}
}


/* =========================================================
   v0.1.1 card-width and graphite palette refinements
   ========================================================= */

/*
 * GeneratePress previously added column-width classes to post articles.
 * Those inherited widths made each post one-third of its CSS Grid cell.
 */
.wve-post-grid > .wve-post-card,
.wve-post-grid > article.wve-post-card,
.wve-post-card.generate-columns,
.wve-post-card[class*="grid-"] {
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;
	float: none !important;
	clear: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.wve-post-grid {
	width: 100%;
	align-items: stretch;
}

.wve-post-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--wve-card);
	border: 1px solid rgba(209, 213, 219, 0.72);
}

.wve-card-image {
	width: 100%;
}

.wve-card-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 18px 20px 20px;
}

.wve-post-card h2 {
	margin-bottom: 10px;
	color: var(--wve-ink);
}

.wve-card-excerpt {
	margin: 0 0 16px;
	color: var(--wve-muted);
	font-size: 14px;
	line-height: 1.58;
}

.wve-view-more {
	width: fit-content;
	margin-top: auto;
	color: var(--wve-accent-dark);
}

.wve-view-more:hover,
.wve-view-more:focus-visible {
	color: var(--wve-ink);
}

.wve-card-meta {
	color: var(--wve-muted);
}

.wve-card-meta span:first-child {
	color: var(--wve-accent-dark);
}

.wve-load-more,
.wve-button {
	border-color: var(--wve-accent-dark);
	background: var(--wve-accent-dark);
}

.wve-load-more:hover,
.wve-load-more:focus-visible,
.wve-button:hover,
.wve-button:focus-visible {
	border-color: var(--wve-ink);
	background: var(--wve-ink);
}

.wve-site-footer {
	background: var(--wve-ink);
}

.wve-tldr {
	border-color: var(--wve-line);
	border-left-color: var(--wve-accent-dark);
	background: var(--wve-soft);
}

.wve-quick-take {
	border-color: var(--wve-line);
	background: var(--wve-soft);
}

.wve-related {
	background: var(--wve-warm);
}

@media (max-width: 700px) {
	.wve-card-content {
		padding: 17px 18px 19px;
	}

	.wve-card-excerpt {
		font-size: 15px;
	}
}


/* v0.1.2 footer project links */

.wve-project-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 4px 20px;
	margin-top: 10px;
}

.wve-project-links a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	padding-block: 8px;
	color: #c7c4c1;
	font-size: 12px;
	font-weight: 600;
}

.wve-project-links a:hover,
.wve-project-links a:focus-visible {
	color: #ffffff;
}

@media (max-width: 700px) {
	.wve-project-links {
		justify-content: flex-start;
		gap: 0 18px;
	}

	.wve-project-links a {
		font-size: 13px;
	}
}


/* =========================================================
   v0.1.7 ACF FAQ section
   ========================================================= */

.wve-acf-faq-section {
	margin-top: 58px;
	padding-top: 42px;
	border-top: 1px solid var(--wve-line);
}

.wve-acf-faq-section > h2 {
	margin: 0 0 24px;
	color: var(--wve-ink);
	font-size: clamp(30px, 4vw, 40px);
	font-weight: 650;
	letter-spacing: -0.04em;
	line-height: 1.08;
}

.wve-acf-faq-list {
	border-top: 1px solid var(--wve-line);
}

.wve-acf-faq-item {
	border-bottom: 1px solid var(--wve-line);
}

.wve-acf-faq-item summary {
	display: flex;
	min-height: 66px;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 16px 0;
	color: var(--wve-ink);
	cursor: pointer;
	font-size: 18px;
	font-weight: 680;
	line-height: 1.35;
	list-style: none;
}

.wve-acf-faq-item summary::-webkit-details-marker {
	display: none;
}

.wve-acf-faq-icon {
	flex: 0 0 auto;
	font-size: 25px;
	font-weight: 300;
	transition: transform 180ms ease;
}

.wve-acf-faq-item[open] .wve-acf-faq-icon {
	transform: rotate(45deg);
}

.wve-acf-faq-answer {
	max-width: 720px;
	padding: 0 44px 22px 0;
	color: var(--wve-muted);
	font-size: 16px;
	line-height: 1.7;
}

.wve-acf-faq-answer p {
	margin: 0 0 1em;
}

.wve-acf-faq-answer p:last-child {
	margin-bottom: 0;
}

@media (max-width: 700px) {
	.wve-acf-faq-section {
		margin-top: 46px;
		padding-top: 34px;
	}

	.wve-acf-faq-item summary {
		min-height: 62px;
		font-size: 17px;
	}

	.wve-acf-faq-answer {
		padding-right: 24px;
		font-size: 15px;
	}
}


/* =========================================================
   The Blog Edit Editorial v0.2.9
   Featureby-inspired homepage, archive and frontend frame
   ========================================================= */

:root {
	--wve-frame-bg: #F9FAFB;
	--wve-frame-surface: #FFFFFF;
	--wve-frame-soft: #F3F4F6;
	--wve-frame-soft-2: #E5E7EB;
	--wve-frame-text: #202124;
	--wve-frame-muted: #6B7280;
	--wve-frame-line: #D1D5DB;
	--wve-frame-accent: #374151;
	--wve-frame-accent-hover: #202124;
	--wve-frame-dark: #202124;
	--wve-frame-shell: 1300px;
	--wve-frame-shadow: 0 18px 50px rgba(17, 19, 21, 0.10);
}

body {
	background: var(--wve-frame-bg);
	color: var(--wve-frame-text);
}

.wve-shell {
	width: min(calc(100% - 48px), var(--wve-frame-shell));
}

/* Header */

.wve-frame-header {
	position: relative;
	z-index: 100;
	border-bottom: 1px solid #202124;
	background: var(--wve-frame-dark);
	color: #ffffff;
}

.wve-frame-header__inner {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) auto;
	align-items: center;
	min-height: 76px;
	gap: 20px;
}

.wve-frame-brand {
	display: flex;
	align-items: center;
	min-width: 0;
}

.wve-frame-brand .custom-logo-link,
.wve-frame-footer__brand .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.wve-frame-brand .custom-logo {
	width: auto;
	max-width: 220px;
	max-height: 46px;
}

.wve-frame-footer__brand .custom-logo {
	width: auto;
	max-width: 200px;
	max-height: 48px;
}

.wve-wordmark {
	display: inline-flex;
	align-items: baseline;
	color: #ffffff;
	font-size: 34px;
	font-weight: 850;
	line-height: 1;
	letter-spacing: -0.055em;
	text-decoration: none;
	text-transform: lowercase;
}

.wve-wordmark:visited,
.wve-wordmark:hover,
.wve-wordmark:focus-visible {
	color: #ffffff;
}

.wve-wordmark strong {
	color: #D1D5DB;
	font-weight: 850;
}

.wve-frame-icon {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #ffffff;
	cursor: pointer;
}

.wve-frame-icon:hover,
.wve-frame-icon:focus-visible {
	background: #202124;
	color: #ffffff;
}

.wve-frame-menu-toggle {
	align-content: center;
	gap: 4px;
}

.wve-frame-menu-toggle span {
	display: block;
	width: 17px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	transition: transform 160ms ease, opacity 160ms ease;
}

.wve-frame-menu-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.wve-frame-menu-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.wve-frame-menu-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.wve-frame-actions {
	display: flex;
	align-items: center;
	gap: 4px;
}

.wve-frame-icon svg {
	width: 23px;
	height: 23px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.wve-frame-menu-panel,
.wve-frame-search-panel {
	border-top: 1px solid #202124;
	background: var(--wve-frame-dark);
	color: #ffffff;
}

.wve-frame-menu-panel__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
	gap: 70px;
	padding-block: 46px 54px;
}

.wve-frame-nav,
.wve-frame-nav ul,
.wve-frame-footer__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.wve-frame-nav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 40px;
}

.wve-frame-nav a {
	display: inline-block;
	padding-block: 5px;
	color: #ffffff;
	font-size: clamp(24px, 3vw, 42px);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.04em;
	text-decoration: none;
}

.wve-frame-nav a:hover,
.wve-frame-menu-categories a:hover {
	color: #D1D5DB;
}

.wve-frame-menu-categories {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 9px;
	padding: 24px;
	border: 1px solid #374151;
	border-radius: 18px;
	background: #202124;
}

.wve-frame-menu-categories p {
	margin: 0 0 8px;
	color: #9CA3AF;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.wve-frame-menu-categories a {
	color: #ffffff;
	font-size: 17px;
	font-weight: 700;
	text-decoration: none;
}

.wve-frame-search-panel__inner {
	padding-block: 24px;
}

.wve-frame-search-panel .search-form {
	display: flex;
	gap: 10px;
}

.wve-frame-search-panel .search-field {
	width: 100%;
	min-height: 54px;
	padding: 0 18px;
	border: 1px solid #4B5563;
	border-radius: 12px;
	background: #202124;
	color: #ffffff;
	font-size: 17px;
}

.wve-frame-search-panel .search-submit {
	min-width: 110px;
	border: 0;
	border-radius: 12px;
	background: #ffffff;
	color: var(--wve-frame-dark);
	font-weight: 800;
	cursor: pointer;
}

/* Homepage hero */

.wve-frame-hero {
	position: relative;
	min-height: 430px;
	overflow: hidden;
	background:
		linear-gradient(135deg, #374151 0%, #6B7280 58%, #D1D5DB 100%);
	background-image: var(--wve-hero-image);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.wve-frame-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(
		90deg,
		rgba(17, 19, 21, 0.88) 0%,
		rgba(17, 19, 21, 0.62) 48%,
		rgba(17, 19, 21, 0.12) 82%
	);
}

.wve-frame-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	min-height: 430px;
}

.wve-frame-hero__copy {
	width: min(650px, 55%);
	padding-block: 58px;
}

.wve-frame-kicker {
	margin: 0 0 13px;
	color: #D1D5DB;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.wve-frame-hero h1 {
	max-width: 760px;
	margin: 0;
	color: #ffffff;
	font-size: clamp(48px, 5.1vw, 74px);
	font-weight: 850;
	line-height: 0.96;
	letter-spacing: -0.065em;
}

.wve-frame-hero__subtitle {
	max-width: 660px;
	margin: 24px 0 0;
	color: #F3F4F6;
	font-size: 20px;
	font-style: italic;
	line-height: 1.45;
}

.wve-frame-hero__actions {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 28px;
}

.wve-frame-button,
.wve-frame-load-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 23px;
	border: 1px solid var(--wve-frame-dark);
	border-radius: 999px;
	background: var(--wve-frame-dark);
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition: transform 160ms ease, background-color 160ms ease;
}

.wve-frame-button:hover,
.wve-frame-load-more:hover {
	background: #202124;
	color: #ffffff;
	transform: translateY(-2px);
}

.wve-frame-text-link {
	display: inline-flex;
	align-items: center;
	min-height: 48px;
	padding-inline: 4px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.wve-frame-text-link:hover {
	color: #D1D5DB;
}

/* Homepage category strip */

.wve-frame-category-bar {
	border-bottom: 1px solid #202124;
	background: var(--wve-frame-dark);
	color: #ffffff;
}

.wve-frame-category-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	min-height: 72px;
}

.wve-frame-category-bar__inner > span {
	color: #9CA3AF;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.wve-frame-category-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px 30px;
}

.wve-frame-category-links a {
	color: #F9FAFB;
	font-size: 14px;
	font-weight: 750;
	text-decoration: none;
}

.wve-frame-category-links a:hover {
	color: #D1D5DB;
}

/* Latest articles and cards */

.wve-frame-latest {
	padding-block: 78px 100px;
}

.wve-frame-section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	margin-bottom: 30px;
}

.wve-frame-section-heading .wve-frame-kicker,
.wve-frame-archive__header .wve-frame-kicker,
.wve-frame-empty .wve-frame-kicker {
	color: var(--wve-frame-muted);
}

.wve-frame-section-heading h2 {
	margin: 0;
	color: var(--wve-frame-text);
	font-size: clamp(34px, 4vw, 54px);
	font-weight: 850;
	line-height: 1;
	letter-spacing: -0.055em;
}

.wve-frame-section-heading h2 span {
	color: var(--wve-frame-muted);
}

.wve-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px 24px;
	width: 100%;
	align-items: stretch;
}

.wve-post-grid > .wve-editorial-card {
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;
	float: none !important;
	clear: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.wve-editorial-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--wve-frame-line);
	border-radius: 16px;
	background: var(--wve-frame-surface);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.wve-editorial-card:hover {
	transform: translateY(-5px);
	border-color: #9CA3AF;
	box-shadow: var(--wve-frame-shadow);
}

.wve-editorial-card__media {
	display: block;
	height: 205px;
	overflow: hidden;
	background: var(--wve-frame-soft);
}

.wve-editorial-card__media img,
.wve-editorial-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 300ms ease;
}

.wve-editorial-card:hover .wve-editorial-card__media img {
	transform: scale(1.025);
}

.wve-editorial-card__placeholder {
	background: linear-gradient(135deg, var(--wve-frame-soft-2), var(--wve-frame-soft));
}

.wve-editorial-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 22px 22px 20px;
}

.wve-editorial-pill {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	min-height: 25px;
	margin-bottom: 13px;
	padding: 5px 9px;
	border-radius: 999px;
	background: var(--wve-frame-soft);
	color: var(--wve-frame-accent);
	font-size: 10px;
	font-weight: 850;
	line-height: 1;
	letter-spacing: 0.075em;
	text-decoration: none;
	text-transform: uppercase;
}

.wve-editorial-card h2 {
	margin: 0;
	color: var(--wve-frame-text);
	font-size: 22px;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.035em;
}

.wve-editorial-card h2 a {
	color: inherit;
	text-decoration: none;
}

.wve-editorial-card h2 a:hover {
	color: var(--wve-frame-muted);
}

.wve-editorial-card__content > p {
	margin: 13px 0 22px;
	color: var(--wve-frame-muted);
	font-size: 14px;
	line-height: 1.55;
}

.wve-editorial-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 17px;
	border-top: 1px solid var(--wve-frame-line);
}

.wve-editorial-card__footer time {
	color: var(--wve-frame-muted);
	font-size: 12px;
}

.wve-editorial-card__action {
	color: var(--wve-frame-text);
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
}

.wve-editorial-card__action:hover {
	color: var(--wve-frame-muted);
}

.wve-frame-all-articles,
.wve-load-more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 48px;
}

.wve-frame-load-more {
	min-width: 160px;
	gap: 10px;
}

/* Empty state */

.wve-frame-empty {
	max-width: 720px;
	padding: 52px;
	border: 1px solid var(--wve-frame-line);
	border-radius: 22px;
	background: var(--wve-frame-soft);
}

.wve-frame-empty h2,
.wve-frame-empty h3 {
	margin: 0 0 12px;
	color: var(--wve-frame-text);
	font-size: 34px;
	line-height: 1.1;
	letter-spacing: -0.04em;
}

.wve-frame-empty > p:not(.wve-frame-kicker) {
	margin: 0 0 24px;
	color: var(--wve-frame-muted);
}

/* Archives and category pages */

.wve-frame-archive__header {
	padding-block: 78px 40px;
	border-bottom: 1px solid var(--wve-frame-line);
}

.wve-frame-archive__header h1 {
	margin: 0;
	color: var(--wve-frame-text);
	font-size: clamp(50px, 7vw, 94px);
	font-weight: 850;
	line-height: 0.96;
	letter-spacing: -0.065em;
}

.wve-frame-archive__description {
	max-width: 680px;
	margin-top: 22px;
	color: var(--wve-frame-muted);
	font-size: 18px;
}

.wve-frame-archive__description p {
	margin: 0;
}

.wve-frame-archive__feed {
	padding-block: 54px 100px;
}

/* Author archives */

.wve-frame-author__header {
	padding-block: clamp(46px, 6vw, 68px);
}

.wve-frame-author__profile {
	display: grid;
	grid-template-columns: 156px minmax(0, 1fr);
	gap: clamp(30px, 4vw, 54px);
	align-items: center;
	max-width: 980px;
}

.wve-frame-author__portrait {
	width: 156px;
	height: 156px;
}

.wve-frame-author__avatar {
	display: block;
	width: 156px;
	height: 156px;
	border: 1px solid var(--wve-frame-line);
	border-radius: 50%;
	background: var(--wve-frame-surface);
	object-fit: cover;
	object-position: center;
}

.wve-frame-author__content .wve-frame-kicker {
	margin-bottom: 11px;
}

.wve-frame-author__content h1 {
	font-size: clamp(44px, 5.5vw, 72px);
	line-height: 0.98;
}

.wve-frame-author__description {
	max-width: 720px;
	margin-top: 17px;
	color: var(--wve-frame-muted);
	font-size: 18px;
	line-height: 1.62;
}

.wve-frame-author__description p {
	margin: 0;
}

.wve-frame-author__latest {
	display: flex;
	align-items: end;
	justify-content: space-between;
	margin-bottom: 30px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--wve-frame-line);
}

.wve-frame-author__latest h2 {
	margin: 0;
	color: var(--wve-frame-text);
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 780;
	line-height: 1.05;
	letter-spacing: -0.04em;
}

/* Footer */

.wve-frame-footer {
	border-top: 1px solid #202124;
	background: var(--wve-frame-dark);
	color: #ffffff;
}

.wve-frame-footer__main {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
	gap: 80px;
	padding-block: 62px 54px;
}

.wve-frame-footer__brand p {
	max-width: 390px;
	margin: 20px 0 0;
	color: #9CA3AF;
	font-size: 14px;
	line-height: 1.55;
}

.wve-frame-footer__columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px;
}

.wve-frame-footer__column h2 {
	margin: 0 0 13px;
	color: #9CA3AF;
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.wve-frame-footer__column ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.wve-frame-footer__column li + li {
	margin-top: 7px;
}

.wve-frame-footer__column a {
	color: #F9FAFB;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.wve-frame-footer__column a:hover {
	color: #D1D5DB;
}

.wve-frame-footer__bottom {
	background: #111315;
	color: #ffffff;
}

.wve-frame-footer__bottom-inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
	min-height: 46px;
	font-size: 10px;
}

.wve-frame-footer__bottom p {
	margin: 0;
	white-space: nowrap;
}

.wve-frame-network,
.wve-frame-legal {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px 12px;
}

.wve-frame-network {
	justify-content: center;
}

.wve-frame-legal {
	justify-content: flex-end;
}

.wve-frame-footer__bottom a {
	color: #ffffff;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.wve-frame-back-to-top {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 30;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--wve-frame-dark);
	color: #ffffff;
	font-size: 19px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	box-shadow: 0 12px 25px rgba(17, 19, 21, 0.28);
}

/* Keep article-related cards aligned with the new frontend system. */

.wve-related .wve-post-grid {
	margin-top: 30px;
}

/* Responsive */

@media (max-width: 1180px) {
	.wve-frame-footer__bottom-inner {
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 8px;
		padding-block: 12px;
		text-align: center;
	}

	.wve-frame-legal {
		justify-content: center;
	}
}

@media (max-width: 900px) {
	.wve-shell,
	.wve-page-article {
		width: min(calc(100% - 36px), var(--wve-frame-shell));
	}

	.wve-frame-menu-panel__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.wve-post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wve-frame-hero {
		min-height: 470px;
		background-position: 62% center;
	}

	.wve-frame-hero__inner {
		min-height: 470px;
	}

	.wve-frame-hero__copy {
		width: 68%;
	}

	.wve-frame-category-bar__inner {
		align-items: flex-start;
		flex-direction: column;
		padding-block: 18px;
	}

	.wve-frame-footer__main {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 640px) {
	.wve-frame-header__inner {
		min-height: 66px;
		gap: 10px;
	}

	.wve-frame-brand .custom-logo {
		max-width: 165px;
		max-height: 38px;
	}

	.wve-wordmark {
		font-size: 29px;
	}

	.wve-frame-icon {
		width: 38px;
		height: 38px;
	}

	.wve-frame-nav {
		grid-template-columns: 1fr;
	}

	.wve-frame-nav a {
		font-size: 30px;
	}

	.wve-frame-search-panel .search-form {
		flex-direction: column;
	}

	.wve-frame-search-panel .search-submit {
		min-height: 48px;
	}

	.wve-frame-hero {
		min-height: 590px;
		background-position: 68% center;
	}

	.wve-frame-hero::after {
		background: rgba(17, 19, 21, 0.72);
	}

	.wve-frame-hero__inner {
		align-items: flex-end;
		min-height: 590px;
	}

	.wve-frame-hero__copy {
		width: 100%;
		padding-block: 52px;
	}

	.wve-frame-hero h1 {
		font-size: 50px;
	}

	.wve-frame-hero__subtitle {
		font-size: 18px;
	}

	.wve-frame-hero__actions {
		align-items: flex-start;
		flex-direction: column;
		gap: 7px;
	}

	.wve-frame-category-links {
		gap: 9px 18px;
	}

	.wve-frame-latest,
	.wve-frame-archive__feed {
		padding-block: 52px 72px;
	}

	.wve-post-grid {
		grid-template-columns: 1fr;
	}

	.wve-editorial-card__media {
		height: 220px;
	}

	.wve-frame-empty {
		padding: 32px 24px;
	}

	.wve-frame-archive__header {
		padding-block: 55px 32px;
	}

	.wve-frame-author__header {
		padding-block: 42px 34px;
	}

	.wve-frame-author__profile {
		grid-template-columns: 1fr;
		gap: 22px;
		justify-items: center;
		text-align: center;
	}

	.wve-frame-author__portrait,
	.wve-frame-author__avatar {
		width: 128px;
		height: 128px;
	}

	.wve-frame-author__content h1 {
		font-size: clamp(40px, 13vw, 54px);
	}

	.wve-frame-author__description {
		margin-top: 14px;
		font-size: 16px;
		line-height: 1.58;
	}

	.wve-frame-author__latest {
		margin-bottom: 24px;
		padding-bottom: 15px;
	}

	.wve-frame-author__latest h2 {
		font-size: 28px;
	}

	.wve-frame-footer__main {
		padding-block: 48px 42px;
	}

	.wve-frame-footer__columns {
		grid-template-columns: 1fr 1fr;
		gap: 28px;
	}

	.wve-frame-footer__bottom p {
		white-space: normal;
	}

	.wve-frame-back-to-top {
		right: 14px;
		bottom: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wve-editorial-card,
	.wve-editorial-card__media img,
	.wve-frame-button,
	.wve-frame-load-more {
		transition: none;
	}
}


/* =========================================================
   v0.2.1 green palette, dark mode and heading refinement
   ========================================================= */

:root,
html[data-wve-theme="light"] {
	--wve-frame-bg: #FFFFFF;
	--wve-frame-surface: #FFFFFF;
	--wve-frame-soft: #F3F4F6;
	--wve-frame-soft-2: #E5E7EB;
	--wve-frame-text: #111827;
	--wve-frame-muted: #4C6E61;
	--wve-frame-line: #E5E7EB;
	--wve-frame-accent: #111827;
	--wve-frame-accent-hover: #111827;
	--wve-frame-dark: #111827;
	--wve-frame-mid: #111827;
	--wve-frame-sea: #66B3A1;
	--wve-frame-mint: #E5E7EB;
	--wve-frame-pale: #F3F4F6;
	--wve-frame-header-bg: #FFFFFF;
	--wve-frame-header-text: #111827;
	--wve-frame-panel-bg: #FFFFFF;
	--wve-frame-panel-text: #111827;
	--wve-frame-shadow: 0 18px 50px rgba(0, 77, 0, 0.10);
}

html[data-wve-theme="dark"] {
	--wve-frame-bg: #07110B;
	--wve-frame-surface: #0D1D13;
	--wve-frame-soft: #10271A;
	--wve-frame-soft-2: #174127;
	--wve-frame-text: #F3F4F6;
	--wve-frame-muted: #A6CBBF;
	--wve-frame-line: #1D4B2D;
	--wve-frame-accent: #66B3A1;
	--wve-frame-accent-hover: #E5E7EB;
	--wve-frame-dark: #111827;
	--wve-frame-mid: #111827;
	--wve-frame-sea: #66B3A1;
	--wve-frame-mint: #E5E7EB;
	--wve-frame-pale: #F3F4F6;
	--wve-frame-header-bg: #07110B;
	--wve-frame-header-text: #F3F4F6;
	--wve-frame-panel-bg: #0D1D13;
	--wve-frame-panel-text: #F3F4F6;
	--wve-frame-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
}

html {
	color-scheme: light;
}

html[data-wve-theme="dark"] {
	color-scheme: dark;
}

body {
	background: var(--wve-frame-bg);
	color: var(--wve-frame-text);
	transition: background-color 180ms ease, color 180ms ease;
}

.wve-frame-hero h1,
.wve-frame-section-heading h2,
.wve-frame-archive__header h1,
.wve-frame-empty h2,
.wve-frame-empty h3,
.wve-article-header h1,
.wve-article-content h2,
.wve-page-article h1,
.wve-404 h1,
.wve-section-title,
.wve-acf-faq-section > h2 {
	font-weight: 700 !important;
}

/* Light mode header is always white. */

.wve-frame-header {
	border-bottom-color: var(--wve-frame-line);
	background: var(--wve-frame-header-bg);
	color: var(--wve-frame-header-text);
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.wve-frame-header .wve-wordmark,
.wve-frame-header .wve-wordmark:visited,
.wve-frame-header .wve-wordmark:hover,
.wve-frame-header .wve-wordmark:focus-visible {
	color: var(--wve-frame-header-text);
}

.wve-frame-header .wve-wordmark strong {
	color: var(--wve-frame-accent);
}

.wve-frame-header .custom-logo-link,
.wve-frame-header .custom-logo-link:hover,
.wve-frame-header .custom-logo-link:focus-visible {
	opacity: 1;
	filter: none;
}

.wve-frame-icon {
	color: var(--wve-frame-header-text);
}

.wve-frame-icon:hover,
.wve-frame-icon:focus-visible {
	background: var(--wve-frame-pale);
	color: var(--wve-frame-accent-hover);
}

html[data-wve-theme="dark"] .wve-frame-icon:hover,
html[data-wve-theme="dark"] .wve-frame-icon:focus-visible {
	background: var(--wve-frame-soft);
	color: var(--wve-frame-pale);
}

.wve-theme-icon--moon {
	display: none;
}

html[data-wve-theme="dark"] .wve-theme-icon--sun {
	display: none;
}

html[data-wve-theme="dark"] .wve-theme-icon--moon {
	display: block;
}

/* Panels */

.wve-frame-menu-panel,
.wve-frame-search-panel {
	border-top-color: var(--wve-frame-line);
	background: var(--wve-frame-panel-bg);
	color: var(--wve-frame-panel-text);
}

.wve-frame-nav a,
.wve-frame-menu-categories a {
	color: var(--wve-frame-panel-text);
}

.wve-frame-nav a:hover,
.wve-frame-menu-categories a:hover {
	color: var(--wve-frame-accent);
}

.wve-frame-menu-categories {
	border-color: var(--wve-frame-line);
	background: var(--wve-frame-soft);
}

.wve-frame-menu-categories p {
	color: var(--wve-frame-muted);
}

.wve-frame-search-panel .search-field {
	border-color: var(--wve-frame-line);
	background: var(--wve-frame-surface);
	color: var(--wve-frame-text);
}

.wve-frame-search-panel .search-submit {
	background: var(--wve-frame-accent);
	color: #FFFFFF;
}

.wve-frame-search-panel .search-submit:hover,
.wve-frame-search-panel .search-submit:focus-visible {
	background: var(--wve-frame-accent-hover);
}

/* Hero */

.wve-frame-hero {
	background:
		linear-gradient(
			135deg,
			#111827 0%,
			#111827 42%,
			#66B3A1 72%,
			#E5E7EB 100%
		);
	background-image: var(--wve-hero-image);
}

.wve-frame-hero::after {
	background: linear-gradient(
		90deg,
		rgba(0, 77, 0, 0.90) 0%,
		rgba(0, 122, 51, 0.64) 48%,
		rgba(102, 179, 161, 0.14) 84%
	);
}

html[data-wve-theme="dark"] .wve-frame-hero::after {
	background: linear-gradient(
		90deg,
		rgba(3, 17, 8, 0.94) 0%,
		rgba(0, 77, 0, 0.74) 50%,
		rgba(0, 122, 51, 0.20) 84%
	);
}

.wve-frame-kicker {
	color: var(--wve-frame-mint);
}

.wve-frame-hero__subtitle {
	color: #F3F4F6;
}

.wve-frame-button,
.wve-frame-load-more {
	border-color: var(--wve-frame-accent);
	background: var(--wve-frame-accent);
	color: #FFFFFF;
}

.wve-frame-button:hover,
.wve-frame-button:focus-visible,
.wve-frame-load-more:hover,
.wve-frame-load-more:focus-visible {
	border-color: var(--wve-frame-accent-hover);
	background: var(--wve-frame-accent-hover);
	color: #FFFFFF;
}

.wve-frame-text-link:hover,
.wve-frame-text-link:focus-visible {
	color: var(--wve-frame-mint);
}

/* Topic strip */

.wve-frame-category-bar {
	border-bottom-color: #006B2E;
	background: var(--wve-frame-dark);
}

.wve-frame-category-bar__inner > span {
	color: var(--wve-frame-mint);
}

.wve-frame-category-links a {
	color: #FFFFFF;
}

.wve-frame-category-links a:hover,
.wve-frame-category-links a:focus-visible {
	color: var(--wve-frame-mint);
}

/* Homepage, archives and cards */

.wve-frame-latest,
.wve-frame-archive,
.wve-frame-archive__feed,
.wve-frame-archive__header {
	background: var(--wve-frame-bg);
	color: var(--wve-frame-text);
}

.wve-frame-section-heading .wve-frame-kicker,
.wve-frame-archive__header .wve-frame-kicker,
.wve-frame-empty .wve-frame-kicker {
	color: var(--wve-frame-accent);
}

.wve-frame-section-heading h2,
.wve-frame-archive__header h1,
.wve-frame-empty h2,
.wve-frame-empty h3 {
	color: var(--wve-frame-text);
}

.wve-frame-section-heading h2 span {
	color: var(--wve-frame-sea);
}

.wve-frame-archive__description,
.wve-frame-empty > p:not(.wve-frame-kicker) {
	color: var(--wve-frame-muted);
}

.wve-editorial-card {
	border-color: var(--wve-frame-line);
	background: var(--wve-frame-surface);
}

.wve-editorial-card:hover {
	border-color: var(--wve-frame-sea);
	box-shadow: var(--wve-frame-shadow);
}

.wve-editorial-card__media,
.wve-editorial-card__placeholder {
	background: var(--wve-frame-soft);
}

.wve-editorial-card__placeholder {
	background: linear-gradient(135deg, var(--wve-frame-pale), var(--wve-frame-mint));
}

html[data-wve-theme="dark"] .wve-editorial-card__placeholder {
	background: linear-gradient(135deg, var(--wve-frame-soft), var(--wve-frame-soft-2));
}

.wve-editorial-pill {
	background: var(--wve-frame-pale);
	color: var(--wve-frame-accent);
}

html[data-wve-theme="dark"] .wve-editorial-pill {
	background: var(--wve-frame-soft);
	color: var(--wve-frame-sea);
}

.wve-editorial-card h2,
.wve-editorial-card__action {
	color: var(--wve-frame-text);
}

.wve-editorial-card h2 a:hover,
.wve-editorial-card__action:hover {
	color: var(--wve-frame-accent);
}

.wve-editorial-card__content > p,
.wve-editorial-card__footer time {
	color: var(--wve-frame-muted);
}

.wve-editorial-card__footer {
	border-top-color: var(--wve-frame-line);
}

.wve-frame-empty {
	border-color: var(--wve-frame-line);
	background: var(--wve-frame-soft);
}

/* Single articles and pages */

.wve-single,
.wve-page,
.wve-404,
.wve-related,
.wve-article-content,
.wve-page-content {
	background: var(--wve-frame-bg);
	color: var(--wve-frame-text);
}

.wve-article-header h1,
.wve-article-content h2,
.wve-article-content h3,
.wve-page-article h1,
.wve-404 h1,
.wve-section-title {
	color: var(--wve-frame-text);
}

.wve-article-content,
.wve-page-content {
	color: var(--wve-frame-text);
}

.wve-article-content a,
.wve-page-content a {
	color: var(--wve-frame-accent);
}

.wve-article-content blockquote {
	border-left-color: var(--wve-frame-accent);
	color: var(--wve-frame-text);
}

.wve-tldr,
.wve-quick-take,
.wve-faq,
.wve-acf-faq-item,
.wve-author-box {
	border-color: var(--wve-frame-line);
	background: var(--wve-frame-soft);
	color: var(--wve-frame-text);
}

.wve-tldr {
	border-left-color: var(--wve-frame-accent);
}

.wve-tldr__head > span,
.wve-category,
.wve-kicker {
	color: var(--wve-frame-accent);
}

.wve-quick-take__excerpt,
.wve-acf-faq-answer,
.wve-author-box p:last-child,
.wve-article-meta > p,
.wve-author-chip span,
.wve-breadcrumbs,
.wve-breadcrumbs p {
	color: var(--wve-frame-muted);
}

.wve-related {
	background: var(--wve-frame-soft);
}

/* Footer */

.wve-frame-footer {
	border-top-color: #006B2E;
	background: #111827;
	color: #FFFFFF;
}

.wve-frame-footer__brand .wve-wordmark,
.wve-frame-footer__brand .wve-wordmark:visited,
.wve-frame-footer__brand .wve-wordmark:hover {
	color: #FFFFFF;
}

.wve-frame-footer__brand .wve-wordmark strong {
	color: #E5E7EB;
}

.wve-frame-footer__brand p,
.wve-frame-footer__column h2 {
	color: #E5E7EB;
}

.wve-frame-footer__column a,
.wve-frame-footer__column a:visited {
	color: #FFFFFF;
}

.wve-frame-footer__column a:hover,
.wve-frame-footer__column a:focus-visible {
	color: #E5E7EB;
}

.wve-frame-footer__bottom {
	background: #111827;
}

.wve-frame-back-to-top {
	background: #111827;
	color: #FFFFFF;
	box-shadow: 0 12px 25px rgba(0, 77, 0, 0.32);
}

.wve-frame-back-to-top:hover,
.wve-frame-back-to-top:focus-visible {
	background: #111827;
	color: #FFFFFF;
}

@media (max-width: 640px) {
	.wve-frame-hero::after,
	html[data-wve-theme="dark"] .wve-frame-hero::after {
		background: rgba(0, 77, 0, 0.76);
	}
}

@media (prefers-reduced-motion: reduce) {
	body,
	.wve-frame-header {
		transition: none;
	}
}


/* =========================================================
   v0.2.2 neutral editorial palette
   Green is reserved for the vue wordmark, buttons and links
   ========================================================= */

:root,
html[data-wve-theme="light"] {
	--wve-frame-bg: #FFFFFF;
	--wve-frame-surface: #FFFFFF;
	--wve-frame-soft: #F7F7F7;
	--wve-frame-soft-2: #ECECEC;
	--wve-frame-text: #111111;
	--wve-frame-muted: #6B6B6B;
	--wve-frame-line: #E1E1E1;
	--wve-frame-accent: #111827;
	--wve-frame-accent-hover: #111827;
	--wve-frame-dark: #111111;
	--wve-frame-header-bg: #FFFFFF;
	--wve-frame-header-text: #111111;
	--wve-frame-panel-bg: #FFFFFF;
	--wve-frame-panel-text: #111111;
	--wve-frame-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
}

html[data-wve-theme="dark"] {
	--wve-frame-bg: #0F0F0F;
	--wve-frame-surface: #171717;
	--wve-frame-soft: #202020;
	--wve-frame-soft-2: #2A2A2A;
	--wve-frame-text: #F7F7F7;
	--wve-frame-muted: #B5B5B5;
	--wve-frame-line: #303030;
	--wve-frame-accent: #111827;
	--wve-frame-accent-hover: #8BC28B;
	--wve-frame-dark: #0F0F0F;
	--wve-frame-header-bg: #0F0F0F;
	--wve-frame-header-text: #F7F7F7;
	--wve-frame-panel-bg: #171717;
	--wve-frame-panel-text: #F7F7F7;
	--wve-frame-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

/* Keep all standard text neutral. */

html[data-wve-theme="light"] body,
html[data-wve-theme="light"] .wve-frame-section-heading h2,
html[data-wve-theme="light"] .wve-frame-archive__header h1,
html[data-wve-theme="light"] .wve-frame-empty h2,
html[data-wve-theme="light"] .wve-frame-empty h3,
html[data-wve-theme="light"] .wve-editorial-card h2,
html[data-wve-theme="light"] .wve-article-header h1,
html[data-wve-theme="light"] .wve-article-content,
html[data-wve-theme="light"] .wve-article-content h2,
html[data-wve-theme="light"] .wve-article-content h3,
html[data-wve-theme="light"] .wve-page-content,
html[data-wve-theme="light"] .wve-page-article h1,
html[data-wve-theme="light"] .wve-section-title,
html[data-wve-theme="light"] .wve-acf-faq-section > h2 {
	color: #111111 !important;
}

/* Wordmark: wealthy neutral, vue green. */

.wve-frame-header .wve-wordmark,
.wve-frame-header .wve-wordmark:visited,
.wve-frame-header .wve-wordmark:hover,
.wve-frame-header .wve-wordmark:focus-visible {
	color: var(--wve-frame-header-text);
}

.wve-frame-header .wve-wordmark strong {
	color: #111827 !important;
}

.wve-frame-footer__brand .wve-wordmark {
	color: #FFFFFF !important;
}

.wve-frame-footer__brand .wve-wordmark strong {
	color: #111827 !important;
}

/* Remove coloured surfaces from the header and panels. */

.wve-frame-header {
	border-bottom-color: var(--wve-frame-line);
	background: var(--wve-frame-header-bg);
	color: var(--wve-frame-header-text);
}

.wve-frame-menu-panel,
.wve-frame-search-panel {
	border-top-color: var(--wve-frame-line);
	background: var(--wve-frame-panel-bg);
	color: var(--wve-frame-panel-text);
}

.wve-frame-menu-categories {
	border-color: var(--wve-frame-line);
	background: var(--wve-frame-soft);
}

.wve-frame-icon:hover,
.wve-frame-icon:focus-visible {
	background: var(--wve-frame-soft);
	color: var(--wve-frame-accent);
}

/* Hero keeps the image but uses a neutral overlay. */

.wve-frame-hero {
	background:
		linear-gradient(
			135deg,
			#111111 0%,
			#4A4A4A 55%,
			#D8D8D8 100%
		);
	background-image: var(--wve-hero-image);
}

.wve-frame-hero::after {
	background: linear-gradient(
		90deg,
		rgba(17, 17, 17, 0.88) 0%,
		rgba(17, 17, 17, 0.58) 48%,
		rgba(17, 17, 17, 0.08) 84%
	);
}

html[data-wve-theme="dark"] .wve-frame-hero::after {
	background: linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.94) 0%,
		rgba(0, 0, 0, 0.70) 50%,
		rgba(0, 0, 0, 0.16) 84%
	);
}

.wve-frame-hero .wve-frame-kicker,
.wve-frame-hero__subtitle {
	color: #F2F2F2;
}

/* Buttons and text links are the only green UI accents. */

.wve-frame-button,
.wve-frame-load-more,
.wve-frame-search-panel .search-submit {
	border-color: #111827;
	background: #111827;
	color: #FFFFFF;
}

.wve-frame-button:hover,
.wve-frame-button:focus-visible,
.wve-frame-load-more:hover,
.wve-frame-load-more:focus-visible,
.wve-frame-search-panel .search-submit:hover,
.wve-frame-search-panel .search-submit:focus-visible {
	border-color: #111827;
	background: #111827;
	color: #FFFFFF;
}

a,
.wve-frame-text-link,
.wve-frame-section-heading h2 span,
.wve-frame-section-heading .wve-frame-kicker,
.wve-frame-archive__header .wve-frame-kicker,
.wve-frame-empty .wve-frame-kicker,
.wve-editorial-card h2 a:hover,
.wve-editorial-card__action,
.wve-article-content a,
.wve-page-content a,
.wve-category,
.wve-kicker,
.wve-tldr__head > span {
	color: #111827;
}

html[data-wve-theme="dark"] a,
html[data-wve-theme="dark"] .wve-frame-text-link,
html[data-wve-theme="dark"] .wve-frame-section-heading h2 span,
html[data-wve-theme="dark"] .wve-frame-section-heading .wve-frame-kicker,
html[data-wve-theme="dark"] .wve-frame-archive__header .wve-frame-kicker,
html[data-wve-theme="dark"] .wve-frame-empty .wve-frame-kicker,
html[data-wve-theme="dark"] .wve-editorial-card__action,
html[data-wve-theme="dark"] .wve-article-content a,
html[data-wve-theme="dark"] .wve-page-content a,
html[data-wve-theme="dark"] .wve-category,
html[data-wve-theme="dark"] .wve-kicker,
html[data-wve-theme="dark"] .wve-tldr__head > span {
	color: #111827;
}

/* Category bar becomes neutral rather than green. */

.wve-frame-category-bar {
	border-bottom-color: #222222;
	background: #111111;
}

.wve-frame-category-bar__inner > span {
	color: #B8B8B8;
}

.wve-frame-category-links a {
	color: #FFFFFF;
}

.wve-frame-category-links a:hover,
.wve-frame-category-links a:focus-visible {
	color: #111827;
}

/* Cards and content surfaces stay white/grey only. */

.wve-editorial-card,
.wve-frame-empty,
.wve-tldr,
.wve-quick-take,
.wve-faq,
.wve-acf-faq-item,
.wve-author-box {
	border-color: var(--wve-frame-line);
	background: var(--wve-frame-surface);
}

.wve-editorial-card__media,
.wve-editorial-card__placeholder,
.wve-related {
	background: var(--wve-frame-soft);
}

.wve-editorial-pill {
	background: var(--wve-frame-soft);
	color: #111111;
}

html[data-wve-theme="dark"] .wve-editorial-pill {
	background: var(--wve-frame-soft);
	color: #F7F7F7;
}

.wve-editorial-card:hover {
	border-color: #BDBDBD;
	box-shadow: var(--wve-frame-shadow);
}

/* TL;DR and Quick Take use neutral fills. */

.wve-tldr {
	border-left-color: #111827;
}

html[data-wve-theme="dark"] .wve-tldr {
	border-left-color: #111827;
}

/* Footer is black, not green. */

.wve-frame-footer {
	border-top-color: #222222;
	background: #111111;
	color: #FFFFFF;
}

.wve-frame-footer__brand p,
.wve-frame-footer__column h2 {
	color: #B8B8B8;
}

.wve-frame-footer__column a,
.wve-frame-footer__column a:visited {
	color: #FFFFFF;
}

.wve-frame-footer__column a:hover,
.wve-frame-footer__column a:focus-visible {
	color: #111827;
}

.wve-frame-footer__bottom {
	background: #080808;
}

.wve-frame-back-to-top {
	background: #111827;
	color: #FFFFFF;
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.28);
}

.wve-frame-back-to-top:hover,
.wve-frame-back-to-top:focus-visible {
	background: #111827;
	color: #FFFFFF;
}

/* Mobile keeps the hero neutral. */

@media (max-width: 640px) {
	.wve-frame-hero::after,
	html[data-wve-theme="dark"] .wve-frame-hero::after {
		background: rgba(17, 17, 17, 0.76);
	}
}


/* =========================================================
   v0.2.3 link-state and footer refinements
   ========================================================= */

/*
 * Never allow browser visited-link colours to introduce purple or blue.
 * Component-specific colours remain identical before and after visiting.
 */
a:visited {
	color: inherit;
}

.wve-frame-text-link,
.wve-frame-text-link:visited,
.wve-editorial-card__action,
.wve-editorial-card__action:visited,
.wve-article-content a,
.wve-article-content a:visited,
.wve-page-content a,
.wve-page-content a:visited,
.wve-category,
.wve-category:visited,
.wve-frame-section-heading h2 a,
.wve-frame-section-heading h2 a:visited {
	color: #111827;
}

html[data-wve-theme="dark"] .wve-frame-text-link,
html[data-wve-theme="dark"] .wve-frame-text-link:visited,
html[data-wve-theme="dark"] .wve-editorial-card__action,
html[data-wve-theme="dark"] .wve-editorial-card__action:visited,
html[data-wve-theme="dark"] .wve-article-content a,
html[data-wve-theme="dark"] .wve-article-content a:visited,
html[data-wve-theme="dark"] .wve-page-content a,
html[data-wve-theme="dark"] .wve-page-content a:visited,
html[data-wve-theme="dark"] .wve-category,
html[data-wve-theme="dark"] .wve-category:visited {
	color: #111827;
}

.wve-frame-button,
.wve-frame-button:visited,
.wve-frame-load-more,
.wve-frame-load-more:visited,
.wve-frame-search-panel .search-submit,
.wve-frame-back-to-top,
.wve-frame-back-to-top:visited {
	color: #FFFFFF;
}

/* Hero secondary action must remain white in every state. */

.wve-frame-hero .wve-frame-text-link,
.wve-frame-hero .wve-frame-text-link:visited {
	color: #FFFFFF !important;
}

.wve-frame-hero .wve-frame-text-link:hover,
.wve-frame-hero .wve-frame-text-link:focus-visible {
	color: #E7E7E7 !important;
}

/* Footer links remain white after visiting. */

.wve-frame-footer a,
.wve-frame-footer a:visited,
.wve-frame-footer__bottom a,
.wve-frame-footer__bottom a:visited {
	color: #FFFFFF;
}

.wve-frame-footer a:hover,
.wve-frame-footer a:focus-visible,
.wve-frame-footer__bottom a:hover,
.wve-frame-footer__bottom a:focus-visible {
	color: #111827;
}

/* Increase the small project and legal links at the very bottom. */

.wve-frame-footer__bottom-inner {
	font-size: 12px;
}

.wve-frame-network a,
.wve-frame-network a:visited,
.wve-frame-legal a,
.wve-frame-legal a:visited {
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
}

@media (max-width: 640px) {
	.wve-frame-footer__bottom-inner,
	.wve-frame-network a,
	.wve-frame-network a:visited,
	.wve-frame-legal a,
	.wve-frame-legal a:visited {
		font-size: 13px;
	}
}


/* =========================================================
   v0.2.4 heading weight and footer disclaimer
   ========================================================= */

/* All frontend headings and editorial titles use weight 700. */

.wve-frame-hero h1,
.wve-frame-section-heading h2,
.wve-frame-archive__header h1,
.wve-frame-empty h2,
.wve-frame-empty h3,
.wve-editorial-card h2,
.wve-article-header h1,
.wve-article-content h2,
.wve-article-content h3,
.wve-page-article h1,
.wve-page-content h2,
.wve-page-content h3,
.wve-404 h1,
.wve-404 h2,
.wve-section-title,
.wve-author-box h2,
.wve-acf-faq-section > h2,
.wve-acf-faq-item summary,
.wve-tldr h2,
.wve-faq h3 {
	font-weight: 700 !important;
}

/* Bottom-footer disclaimer. */

.wve-frame-footer__disclaimer {
	padding: 0 0 18px;
	text-align: center;
}

.wve-frame-footer__disclaimer p {
	max-width: 1100px;
	margin: 0 auto;
	color: #AFAFAF;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.55;
}

@media (max-width: 640px) {
	.wve-frame-footer__disclaimer {
		padding-bottom: 22px;
		text-align: left;
	}

	.wve-frame-footer__disclaimer p {
		font-size: 12px;
	}
}


/* =========================================================
   v0.2.5 homepage Load More
   ========================================================= */

#wve-load-more[aria-busy="true"] {
	cursor: wait;
	opacity: 0.72;
	pointer-events: none;
}

#wve-load-more[aria-busy="true"] span:last-child {
	animation: wve-load-more-pulse 900ms ease-in-out infinite alternate;
}

@keyframes wve-load-more-pulse {
	from {
		transform: translateY(-2px);
		opacity: 0.45;
	}

	to {
		transform: translateY(2px);
		opacity: 1;
	}
}

@media (prefers-reduced-motion: reduce) {
	#wve-load-more[aria-busy="true"] span:last-child {
		animation: none;
	}
}


/* =========================================================
   v0.2.6 bottom-footer links: white in every state
   ========================================================= */

.wve-frame-footer__bottom a,
.wve-frame-footer__bottom a:link,
.wve-frame-footer__bottom a:visited,
.wve-frame-footer__bottom a:hover,
.wve-frame-footer__bottom a:focus,
.wve-frame-footer__bottom a:focus-visible,
.wve-frame-footer__bottom a:active,
.wve-frame-network a,
.wve-frame-network a:link,
.wve-frame-network a:visited,
.wve-frame-network a:hover,
.wve-frame-network a:focus,
.wve-frame-network a:focus-visible,
.wve-frame-network a:active,
.wve-frame-legal a,
.wve-frame-legal a:link,
.wve-frame-legal a:visited,
.wve-frame-legal a:hover,
.wve-frame-legal a:focus,
.wve-frame-legal a:focus-visible,
.wve-frame-legal a:active,
html[data-wve-theme="dark"] .wve-frame-footer__bottom a,
html[data-wve-theme="dark"] .wve-frame-footer__bottom a:link,
html[data-wve-theme="dark"] .wve-frame-footer__bottom a:visited,
html[data-wve-theme="dark"] .wve-frame-footer__bottom a:hover,
html[data-wve-theme="dark"] .wve-frame-footer__bottom a:focus,
html[data-wve-theme="dark"] .wve-frame-footer__bottom a:focus-visible,
html[data-wve-theme="dark"] .wve-frame-footer__bottom a:active {
	color: #FFFFFF !important;
}

.wve-frame-footer__bottom a:hover,
.wve-frame-footer__bottom a:focus-visible {
	text-decoration-thickness: 2px;
}


/* =========================================================
   v0.2.7 dark-mode title and footer-link correction
   ========================================================= */

/*
 * All dark-mode editorial titles remain white in every state.
 * Green is reserved for deliberate text links and buttons.
 */
html[data-wve-theme="dark"] .wve-frame-hero h1,
html[data-wve-theme="dark"] .wve-frame-section-heading h2,
html[data-wve-theme="dark"] .wve-frame-archive__header h1,
html[data-wve-theme="dark"] .wve-frame-empty h2,
html[data-wve-theme="dark"] .wve-frame-empty h3,
html[data-wve-theme="dark"] .wve-editorial-card h2,
html[data-wve-theme="dark"] .wve-article-header h1,
html[data-wve-theme="dark"] .wve-article-content h2,
html[data-wve-theme="dark"] .wve-article-content h3,
html[data-wve-theme="dark"] .wve-page-article h1,
html[data-wve-theme="dark"] .wve-page-content h2,
html[data-wve-theme="dark"] .wve-page-content h3,
html[data-wve-theme="dark"] .wve-404 h1,
html[data-wve-theme="dark"] .wve-404 h2,
html[data-wve-theme="dark"] .wve-section-title,
html[data-wve-theme="dark"] .wve-author-box h2,
html[data-wve-theme="dark"] .wve-acf-faq-section > h2,
html[data-wve-theme="dark"] .wve-acf-faq-item summary,
html[data-wve-theme="dark"] .wve-tldr h2,
html[data-wve-theme="dark"] .wve-faq h3 {
	color: #FFFFFF !important;
}

html[data-wve-theme="dark"] .wve-editorial-card h2 a,
html[data-wve-theme="dark"] .wve-editorial-card h2 a:link,
html[data-wve-theme="dark"] .wve-editorial-card h2 a:visited,
html[data-wve-theme="dark"] .wve-editorial-card h2 a:hover,
html[data-wve-theme="dark"] .wve-editorial-card h2 a:focus,
html[data-wve-theme="dark"] .wve-editorial-card h2 a:focus-visible,
html[data-wve-theme="dark"] .wve-editorial-card h2 a:active,
html[data-wve-theme="dark"] .wve-frame-section-heading h2 a,
html[data-wve-theme="dark"] .wve-frame-section-heading h2 a:link,
html[data-wve-theme="dark"] .wve-frame-section-heading h2 a:visited,
html[data-wve-theme="dark"] .wve-frame-section-heading h2 a:hover,
html[data-wve-theme="dark"] .wve-frame-section-heading h2 a:focus,
html[data-wve-theme="dark"] .wve-frame-section-heading h2 a:focus-visible,
html[data-wve-theme="dark"] .wve-frame-section-heading h2 a:active {
	color: #FFFFFF !important;
}

/*
 * Every footer link, including Instagram and X, stays pure white.
 * This overrides global dark-mode link and visited-link styling.
 */
.wve-frame-footer a,
.wve-frame-footer a:link,
.wve-frame-footer a:visited,
.wve-frame-footer a:hover,
.wve-frame-footer a:focus,
.wve-frame-footer a:focus-visible,
.wve-frame-footer a:active,
html[data-wve-theme="dark"] .wve-frame-footer a,
html[data-wve-theme="dark"] .wve-frame-footer a:link,
html[data-wve-theme="dark"] .wve-frame-footer a:visited,
html[data-wve-theme="dark"] .wve-frame-footer a:hover,
html[data-wve-theme="dark"] .wve-frame-footer a:focus,
html[data-wve-theme="dark"] .wve-frame-footer a:focus-visible,
html[data-wve-theme="dark"] .wve-frame-footer a:active {
	color: #FFFFFF !important;
}


/* =========================================================
   v0.2.8 dedicated The Blog Edit homepage hero artwork
   ========================================================= */

.wve-frame-hero {
	background-position: center 62%;
}

@media (max-width: 900px) {
	.wve-frame-hero {
		background-position: 58% center;
	}
}

@media (max-width: 640px) {
	.wve-frame-hero {
		background-position: 61% center;
	}
}


/* =========================================================
   v0.2.9 single-post affiliate disclosure
   ========================================================= */

.wve-affiliate-disclosure {
	margin-top: 18px;
	padding: 15px 18px;
	border: 1px solid var(--wve-frame-line);
	border-radius: 10px;
	background: var(--wve-frame-surface);
	color: var(--wve-frame-muted);
	font-size: 13px;
	font-weight: 400;
	line-height: 1.55;
}

.wve-affiliate-disclosure strong {
	color: var(--wve-frame-text);
	font-weight: 700;
}

.wve-affiliate-disclosure a,
.wve-affiliate-disclosure a:link,
.wve-affiliate-disclosure a:visited {
	color: #111827;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.wve-affiliate-disclosure a:hover,
.wve-affiliate-disclosure a:focus-visible,
.wve-affiliate-disclosure a:active {
	color: #111827;
}

html[data-wve-theme="dark"] .wve-affiliate-disclosure {
	border-color: var(--wve-frame-line);
	background: var(--wve-frame-surface);
	color: var(--wve-frame-muted);
}

html[data-wve-theme="dark"] .wve-affiliate-disclosure strong {
	color: #FFFFFF;
}

html[data-wve-theme="dark"] .wve-affiliate-disclosure a,
html[data-wve-theme="dark"] .wve-affiliate-disclosure a:link,
html[data-wve-theme="dark"] .wve-affiliate-disclosure a:visited,
html[data-wve-theme="dark"] .wve-affiliate-disclosure a:hover,
html[data-wve-theme="dark"] .wve-affiliate-disclosure a:focus-visible,
html[data-wve-theme="dark"] .wve-affiliate-disclosure a:active {
	color: #111827;
}

@media (max-width: 640px) {
	.wve-affiliate-disclosure {
		padding: 14px 15px;
		font-size: 12px;
	}
}


/* =========================================================
   v0.3.0 The Blog Edit quiet-luxury editorial direction
   ========================================================= */

:root,
html[data-wve-theme="light"] {
	--wve-frame-bg: #F5F2EB;
	--wve-frame-surface: #FFFFFF;
	--wve-frame-soft: #ECE7DD;
	--wve-frame-soft-2: #DED7CA;
	--wve-frame-text: #171612;
	--wve-frame-muted: #6D685E;
	--wve-frame-line: #D9D2C6;
	--wve-frame-accent: #8C7248;
	--wve-frame-accent-hover: #6E5735;
	--wve-frame-dark: #181714;
	--wve-frame-header-bg: #F5F2EB;
	--wve-frame-header-text: #171612;
	--wve-frame-panel-bg: #F5F2EB;
	--wve-frame-panel-text: #171612;
	--wve-frame-shadow: 0 20px 55px rgba(36, 31, 24, 0.08);
}

html[data-wve-theme="dark"] {
	--wve-frame-bg: #141310;
	--wve-frame-surface: #1C1B17;
	--wve-frame-soft: #25231E;
	--wve-frame-soft-2: #322F28;
	--wve-frame-text: #F3EFE6;
	--wve-frame-muted: #B9B1A4;
	--wve-frame-line: #39352E;
	--wve-frame-accent: #C0A477;
	--wve-frame-accent-hover: #D5BE98;
	--wve-frame-dark: #0E0D0B;
	--wve-frame-header-bg: #141310;
	--wve-frame-header-text: #F3EFE6;
	--wve-frame-panel-bg: #1C1B17;
	--wve-frame-panel-text: #F3EFE6;
	--wve-frame-shadow: 0 20px 55px rgba(0, 0, 0, 0.30);
}

body,
button,
input,
select,
textarea {
	font-family: var(--wve-font);
}

.wve-lux-home,
.wve-lux-home h1,
.wve-lux-home h2,
.wve-lux-home h3,
.wve-lux-home p {
	margin-top: 0;
}

.wve-lux-home h1,
.wve-lux-home h2,
.wve-lux-feature h2 {
	font-family: var(--wve-font);
	font-weight: 500 !important;
	letter-spacing: -0.035em;
}

/* Quiet header treatment. */
.wve-frame-header {
	border-bottom: 1px solid var(--wve-frame-line);
	background: var(--wve-frame-header-bg);
}

.wve-frame-header .wve-wordmark,
.wve-frame-header .wve-wordmark:visited,
.wve-frame-header .wve-wordmark:hover,
.wve-frame-header .wve-wordmark:focus-visible {
	color: var(--wve-frame-header-text) !important;
}

.wve-frame-header .wve-wordmark strong,
.wve-frame-footer__brand .wve-wordmark strong {
	color: var(--wve-frame-accent) !important;
}

.wve-frame-icon:hover,
.wve-frame-icon:focus-visible {
	background: transparent;
	color: var(--wve-frame-accent);
}

.wve-frame-menu-panel,
.wve-frame-search-panel,
.wve-frame-menu-categories {
	background: var(--wve-frame-panel-bg);
	border-color: var(--wve-frame-line);
	color: var(--wve-frame-panel-text);
}

/* Homepage hero. */
.wve-lux-hero {
	padding: clamp(58px, 8vw, 118px) 0 clamp(58px, 7vw, 100px);
	background: var(--wve-frame-bg);
}

.wve-lux-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
	gap: clamp(44px, 7vw, 108px);
	align-items: center;
}

.wve-lux-hero__copy {
	max-width: 620px;
}

.wve-lux-kicker,
.wve-lux-category {
	color: var(--wve-frame-accent) !important;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	line-height: 1.4;
	text-transform: uppercase;
}

.wve-lux-hero h1 {
	max-width: 660px;
	margin: 18px 0 24px;
	color: var(--wve-frame-text) !important;
	font-size: clamp(54px, 6.7vw, 100px);
	line-height: 0.92;
}

.wve-lux-hero__intro {
	max-width: 570px;
	margin-bottom: 34px;
	color: var(--wve-frame-muted);
	font-family: var(--wve-font);
	font-size: clamp(19px, 2vw, 25px);
	line-height: 1.55;
}

.wve-lux-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	align-items: center;
}

.wve-lux-button,
.wve-lux-outline-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 13px 23px;
	border: 1px solid var(--wve-frame-text);
	border-radius: 0;
	background: var(--wve-frame-text);
	color: var(--wve-frame-bg) !important;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.wve-lux-button:hover,
.wve-lux-button:focus-visible {
	border-color: var(--wve-frame-accent);
	background: var(--wve-frame-accent);
	color: #FFFFFF !important;
}

.wve-lux-text-link,
.wve-lux-text-link:link,
.wve-lux-text-link:visited {
	color: var(--wve-frame-text) !important;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-decoration: none;
	text-transform: uppercase;
}

.wve-lux-text-link:hover,
.wve-lux-text-link:focus-visible {
	color: var(--wve-frame-accent) !important;
}

.wve-lux-hero__media {
	position: relative;
	min-height: 560px;
	margin: 0;
	overflow: hidden;
	background: var(--wve-frame-soft);
}

.wve-lux-hero__media::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(25, 22, 17, 0.02), rgba(25, 22, 17, 0.13));
	content: "";
	pointer-events: none;
}

.wve-lux-hero__media img {
	width: 100%;
	height: 100%;
	min-height: 560px;
	object-fit: cover;
	object-position: 62% center;
	filter: saturate(0.55) sepia(0.08) contrast(0.96);
}

/* Thin editorial topic bar. */
.wve-lux-topic-bar {
	border-top: 1px solid var(--wve-frame-line);
	border-bottom: 1px solid var(--wve-frame-line);
	background: var(--wve-frame-bg);
}

.wve-lux-topic-bar__inner {
	display: flex;
	min-height: 72px;
	gap: 38px;
	align-items: center;
	justify-content: space-between;
}

.wve-lux-topic-bar__inner > span {
	color: var(--wve-frame-muted);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.wve-lux-topic-links {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(24px, 4vw, 58px);
}

.wve-lux-topic-links a,
.wve-lux-topic-links a:visited {
	color: var(--wve-frame-text) !important;
	font-family: var(--wve-font);
	font-size: 17px;
	text-decoration: none;
}

.wve-lux-topic-links a:hover,
.wve-lux-topic-links a:focus-visible {
	color: var(--wve-frame-accent) !important;
}

/* Featured editorial perspective. */
.wve-lux-perspective {
	padding-top: clamp(72px, 8vw, 126px);
	padding-bottom: clamp(72px, 8vw, 126px);
}

.wve-lux-section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
	gap: 36px;
	align-items: end;
	margin-bottom: 42px;
}

.wve-lux-section-heading h1,
.wve-lux-section-heading h2 {
	margin: 8px 0 0;
	color: var(--wve-frame-text) !important;
	font-size: clamp(39px, 5vw, 66px);
	line-height: 1;
}

.wve-lux-section-heading > p {
	margin-bottom: 6px;
	color: var(--wve-frame-muted);
	font-family: var(--wve-font);
	font-size: 19px;
	line-height: 1.55;
}

.wve-lux-feature-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(310px, 0.85fr);
	grid-template-rows: 1fr 1fr;
	gap: 28px 34px;
}

.wve-lux-feature {
	display: grid;
	grid-template-columns: minmax(120px, 0.85fr) minmax(0, 1fr);
	gap: 22px;
	align-items: start;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--wve-frame-line);
}

.wve-lux-feature--lead {
	grid-row: 1 / span 2;
	grid-template-columns: 1fr;
	padding-bottom: 0;
	border-bottom: 0;
}

.wve-lux-feature__media {
	display: block;
	overflow: hidden;
	background: var(--wve-frame-soft);
}

.wve-lux-feature__media img,
.wve-lux-feature__placeholder {
	display: block;
	width: 100%;
	height: 180px;
	object-fit: cover;
	filter: saturate(0.78);
	transition: transform 280ms ease;
}

.wve-lux-feature--lead .wve-lux-feature__media img,
.wve-lux-feature--lead .wve-lux-feature__placeholder {
	height: clamp(440px, 45vw, 640px);
}

.wve-lux-feature:hover .wve-lux-feature__media img {
	transform: scale(1.015);
}

.wve-lux-feature__content {
	padding-top: 2px;
}

.wve-lux-feature--lead .wve-lux-feature__content {
	padding-top: 24px;
}

.wve-lux-category,
.wve-lux-category:visited {
	text-decoration: none;
}

.wve-lux-feature h2 {
	margin: 10px 0 12px;
	color: var(--wve-frame-text) !important;
	font-size: clamp(25px, 2.7vw, 42px);
	line-height: 1.06;
}

.wve-lux-feature:not(.wve-lux-feature--lead) h2 {
	font-size: clamp(21px, 2vw, 30px);
}

.wve-lux-feature h2 a,
.wve-lux-feature h2 a:visited {
	color: inherit !important;
	text-decoration: none;
}

.wve-lux-feature h2 a:hover,
.wve-lux-feature h2 a:focus-visible {
	color: var(--wve-frame-accent) !important;
}

.wve-lux-feature__content > p {
	max-width: 720px;
	margin-bottom: 18px;
	color: var(--wve-frame-muted);
	font-size: 16px;
	line-height: 1.65;
}

.wve-lux-feature__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	color: var(--wve-frame-muted);
	font-size: 11px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

/* Journal grid. */
.wve-lux-journal {
	padding: clamp(72px, 8vw, 124px) 0;
	background: var(--wve-frame-surface);
}

html[data-wve-theme="dark"] .wve-lux-journal {
	background: var(--wve-frame-surface);
}

.wve-lux-section-heading--journal {
	grid-template-columns: 1fr;
}

.wve-lux-post-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 52px 28px;
}

.wve-lux-post-grid .wve-editorial-card {
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.wve-lux-post-grid .wve-editorial-card:hover {
	border-color: transparent;
	box-shadow: none;
	transform: none;
}

.wve-lux-post-grid .wve-editorial-card__media,
.wve-lux-post-grid .wve-editorial-card__media img,
.wve-lux-post-grid .wve-editorial-card__placeholder {
	height: 270px;
	border-radius: 0;
}

.wve-lux-post-grid .wve-editorial-card__media img {
	filter: saturate(0.78);
}

.wve-lux-post-grid .wve-editorial-card__content {
	padding: 19px 0 0;
}

.wve-lux-post-grid .wve-editorial-pill {
	padding: 0;
	background: transparent;
	color: var(--wve-frame-accent) !important;
	font-size: 10px;
	letter-spacing: 0.14em;
}

.wve-lux-post-grid .wve-editorial-card h2 {
	font-family: var(--wve-font);
	font-size: 26px;
	font-weight: 500 !important;
	line-height: 1.12;
	letter-spacing: -0.025em;
}

.wve-lux-post-grid .wve-editorial-card h2 a,
.wve-lux-post-grid .wve-editorial-card h2 a:visited {
	color: var(--wve-frame-text) !important;
}

.wve-lux-post-grid .wve-editorial-card h2 a:hover,
.wve-lux-post-grid .wve-editorial-card h2 a:focus-visible {
	color: var(--wve-frame-accent) !important;
}

.wve-lux-post-grid .wve-editorial-card__content > p {
	color: var(--wve-frame-muted);
}

.wve-lux-post-grid .wve-editorial-card__footer {
	border-top-color: var(--wve-frame-line);
}

.wve-lux-post-grid .wve-editorial-card__action,
.wve-lux-post-grid .wve-editorial-card__action:visited {
	color: var(--wve-frame-text) !important;
}

.wve-lux-post-grid .wve-editorial-card__action:hover,
.wve-lux-post-grid .wve-editorial-card__action:focus-visible {
	color: var(--wve-frame-accent) !important;
}

.wve-lux-journal__action {
	display: flex;
	justify-content: center;
	margin-top: 58px;
}

.wve-lux-outline-button,
.wve-lux-outline-button:visited {
	gap: 14px;
	border-color: var(--wve-frame-text);
	background: transparent;
	color: var(--wve-frame-text) !important;
}

.wve-lux-outline-button:hover,
.wve-lux-outline-button:focus-visible {
	border-color: var(--wve-frame-text);
	background: var(--wve-frame-text);
	color: var(--wve-frame-bg) !important;
}

/* Brand statement. */
.wve-lux-manifesto {
	padding: clamp(88px, 10vw, 154px) 0;
	background: var(--wve-frame-dark);
	color: #F3EFE6;
}

.wve-lux-manifesto__inner {
	max-width: 920px;
	text-align: center;
}

.wve-lux-manifesto h2 {
	margin: 18px 0 26px;
	color: #F3EFE6 !important;
	font-size: clamp(45px, 6vw, 78px);
	line-height: 0.98;
}

.wve-lux-manifesto__inner > p:not(.wve-lux-kicker) {
	max-width: 720px;
	margin: 0 auto 30px;
	color: #C9C0B2;
	font-family: var(--wve-font);
	font-size: clamp(19px, 2.2vw, 24px);
	line-height: 1.6;
}

.wve-lux-manifesto .wve-lux-text-link,
.wve-lux-manifesto .wve-lux-text-link:visited {
	color: #F3EFE6 !important;
}

.wve-lux-manifesto .wve-lux-text-link:hover,
.wve-lux-manifesto .wve-lux-text-link:focus-visible {
	color: #C0A477 !important;
}

.wve-lux-empty {
	padding: 44px;
	border: 1px solid var(--wve-frame-line);
	background: var(--wve-frame-surface);
}

.wve-lux-empty__message {
	margin: 0;
	color: var(--wve-frame-text);
	font-size: 24px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -0.025em;
}

/* Global editorial accents now use muted gold rather than green. */
a,
.wve-frame-text-link,
.wve-frame-text-link:visited,
.wve-editorial-card__action,
.wve-editorial-card__action:visited,
.wve-article-content a,
.wve-article-content a:visited,
.wve-page-content a,
.wve-page-content a:visited,
.wve-category,
.wve-category:visited,
.wve-kicker,
.wve-tldr__head > span,
.wve-frame-section-heading .wve-frame-kicker,
.wve-frame-archive__header .wve-frame-kicker,
.wve-frame-empty .wve-frame-kicker {
	color: var(--wve-frame-accent);
}

.wve-frame-button,
.wve-frame-button:visited,
.wve-frame-load-more,
.wve-frame-load-more:visited,
.wve-frame-search-panel .search-submit,
.wve-frame-back-to-top,
.wve-frame-back-to-top:visited {
	border-color: var(--wve-frame-text);
	background: var(--wve-frame-text);
	color: #FFFFFF !important;
}

.wve-frame-button:hover,
.wve-frame-button:focus-visible,
.wve-frame-load-more:hover,
.wve-frame-load-more:focus-visible,
.wve-frame-search-panel .search-submit:hover,
.wve-frame-search-panel .search-submit:focus-visible,
.wve-frame-back-to-top:hover,
.wve-frame-back-to-top:focus-visible {
	border-color: var(--wve-frame-accent);
	background: var(--wve-frame-accent);
	color: #FFFFFF !important;
}

.wve-tldr {
	border-left-color: var(--wve-frame-accent);
}

.wve-affiliate-disclosure a,
.wve-affiliate-disclosure a:link,
.wve-affiliate-disclosure a:visited,
.wve-affiliate-disclosure a:hover,
.wve-affiliate-disclosure a:focus-visible,
.wve-affiliate-disclosure a:active {
	color: var(--wve-frame-accent);
}

/* Footer remains restrained and dark. */
.wve-frame-footer {
	border-top-color: #2F2C27;
	background: #181714;
}

.wve-frame-footer__brand p,
.wve-frame-footer__column h2 {
	color: #BDB4A6;
}

.wve-frame-footer__bottom {
	background: #0F0E0C;
}

@media (max-width: 1040px) {
	.wve-lux-hero__inner {
		grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
		gap: 48px;
	}

	.wve-lux-hero__media,
	.wve-lux-hero__media img {
		min-height: 500px;
	}

	.wve-lux-feature-grid {
		grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
	}
}

@media (max-width: 820px) {
	.wve-lux-hero__inner,
	.wve-lux-section-heading,
	.wve-lux-feature-grid {
		grid-template-columns: 1fr;
	}

	.wve-lux-hero__copy {
		max-width: 720px;
	}

	.wve-lux-hero__media,
	.wve-lux-hero__media img {
		min-height: 560px;
	}

	.wve-lux-section-heading {
		align-items: start;
	}

	.wve-lux-section-heading > p {
		max-width: 540px;
	}

	.wve-lux-feature--lead {
		grid-row: auto;
	}

	.wve-lux-post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.wve-lux-hero {
		padding-top: 46px;
	}

	.wve-lux-hero h1 {
		font-size: clamp(48px, 16vw, 70px);
	}

	.wve-lux-hero__media,
	.wve-lux-hero__media img {
		min-height: 430px;
	}

	.wve-lux-topic-bar__inner {
		align-items: flex-start;
		flex-direction: column;
		gap: 16px;
		padding-top: 22px;
		padding-bottom: 22px;
	}

	.wve-lux-topic-links {
		gap: 14px 24px;
	}

	.wve-lux-feature {
		grid-template-columns: 120px minmax(0, 1fr);
	}

	.wve-lux-feature--lead {
		grid-template-columns: 1fr;
	}

	.wve-lux-feature__media img,
	.wve-lux-feature__placeholder {
		height: 142px;
	}

	.wve-lux-feature--lead .wve-lux-feature__media img,
	.wve-lux-feature--lead .wve-lux-feature__placeholder {
		height: 390px;
	}

	.wve-lux-post-grid {
		grid-template-columns: 1fr;
	}

	.wve-lux-post-grid .wve-editorial-card__media,
	.wve-lux-post-grid .wve-editorial-card__media img,
	.wve-lux-post-grid .wve-editorial-card__placeholder {
		height: 250px;
	}

	.wve-lux-manifesto__inner {
		text-align: left;
	}

	.wve-lux-manifesto__inner > p:not(.wve-lux-kicker) {
		margin-left: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wve-lux-feature__media img,
	.wve-lux-button,
	.wve-lux-outline-button {
		transition: none;
	}
}

/* End The Blog Edit Editorial v0.3.0 */

/* =========================================================
   v0.3.1 The Blog Edit premium financial-card direction
   ========================================================= */

:root,
html[data-wve-theme="light"] {
	--wve-frame-bg: #F3F4F2;
	--wve-frame-surface: #FFFFFF;
	--wve-frame-soft: #E8EBED;
	--wve-frame-soft-2: #D5D9DD;
	--wve-frame-text: #202124;
	--wve-frame-muted: #66707C;
	--wve-frame-line: #D6DADF;
	--wve-frame-accent: #111827;
	--wve-frame-accent-hover: #111827;
	--wve-frame-dark: #202124;
	--wve-frame-header-bg: #FFFFFF;
	--wve-frame-header-text: #202124;
	--wve-frame-panel-bg: #FFFFFF;
	--wve-frame-panel-text: #202124;
	--wve-frame-shadow: 0 24px 70px rgba(17, 19, 21, 0.12);
}

html[data-wve-theme="dark"] {
	--wve-frame-bg: #111315;
	--wve-frame-surface: #202124;
	--wve-frame-soft: #202124;
	--wve-frame-soft-2: #202124;
	--wve-frame-text: #F2F4F6;
	--wve-frame-muted: #AEB6BF;
	--wve-frame-line: #303A47;
	--wve-frame-accent: #111827;
	--wve-frame-accent-hover: #DADCE0;
	--wve-frame-dark: #111315;
	--wve-frame-header-bg: #111315;
	--wve-frame-header-text: #F2F4F6;
	--wve-frame-panel-bg: #202124;
	--wve-frame-panel-text: #F2F4F6;
	--wve-frame-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

/* Precise institutional header. */
.wve-frame-header {
	background: var(--wve-frame-header-bg);
	border-bottom-color: var(--wve-frame-line);
}

.wve-frame-header .wve-wordmark strong,
.wve-frame-footer__brand .wve-wordmark strong {
	color: var(--wve-frame-text) !important;
}

.wve-frame-icon:hover,
.wve-frame-icon:focus-visible {
	color: var(--wve-frame-accent-hover);
}

/* Platinum hero with original The Blog Edit identity card. */
.wve-lux-hero {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 48%),
		var(--wve-frame-bg);
}

.wve-lux-hero::before {
	position: absolute;
	top: 0;
	right: 0;
	width: min(46vw, 760px);
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(66, 133, 244, 0.08));
	content: "";
	pointer-events: none;
}

.wve-lux-hero__inner {
	position: relative;
	z-index: 1;
	grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
}

.wve-lux-kicker,
.wve-lux-category {
	color: var(--wve-frame-accent-hover) !important;
	letter-spacing: 0.19em;
}

.wve-lux-hero h1 {
	font-family: var(--wve-font);
	font-size: clamp(54px, 6.5vw, 96px);
	font-weight: 500 !important;
	line-height: 0.94;
}

.wve-lux-hero__intro {
	color: var(--wve-frame-muted);
	font-family: var(--wve-font);
	font-size: clamp(18px, 1.8vw, 23px);
	line-height: 1.6;
}

.wve-lux-button,
.wve-lux-outline-button {
	border-color: #202124;
	background: #202124;
	color: #FFFFFF !important;
	letter-spacing: 0.12em;
}

html[data-wve-theme="dark"] .wve-lux-button,
html[data-wve-theme="dark"] .wve-lux-outline-button {
	border-color: #F2F4F6;
	background: #F2F4F6;
	color: #202124 !important;
}

.wve-lux-button:hover,
.wve-lux-button:focus-visible,
.wve-lux-outline-button:hover,
.wve-lux-outline-button:focus-visible {
	border-color: var(--wve-frame-accent-hover);
	background: var(--wve-frame-accent-hover);
	color: #FFFFFF !important;
}

.wve-lux-card-stage {
	position: relative;
	display: grid;
	min-height: 520px;
	place-items: center;
	padding: clamp(26px, 4vw, 58px);
	border: 1px solid var(--wve-frame-line);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(215, 221, 226, 0.56)),
		repeating-linear-gradient(90deg, rgba(17, 19, 21, 0.025) 0, rgba(17, 19, 21, 0.025) 1px, transparent 1px, transparent 9px);
}

html[data-wve-theme="dark"] .wve-lux-card-stage {
	background:
		linear-gradient(145deg, rgba(42, 52, 64, 0.86), rgba(17, 19, 21, 0.9)),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 9px);
}

.wve-lux-card-stage::before,
.wve-lux-card-stage::after {
	position: absolute;
	border: 1px solid rgba(96, 127, 153, 0.25);
	content: "";
	pointer-events: none;
}

.wve-lux-card-stage::before {
	top: 24px;
	right: 24px;
	bottom: 24px;
	left: 24px;
}

.wve-lux-card-stage::after {
	top: 37px;
	right: 37px;
	bottom: 37px;
	left: 37px;
	border-color: rgba(255, 255, 255, 0.34);
}

.wve-lux-identity-card {
	position: relative;
	isolation: isolate;
	width: min(100%, 660px);
	aspect-ratio: 1.586 / 1;
	overflow: hidden;
	padding: clamp(28px, 4vw, 46px);
	border: 1px solid rgba(241, 243, 244, 0.46);
	border-radius: 18px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 38%),
		linear-gradient(120deg, #202124 0%, #202124 46%, #111315 100%);
	box-shadow:
		0 34px 70px rgba(17, 19, 21, 0.24),
		inset 0 1px 0 rgba(255, 255, 255, 0.18),
		inset 0 -1px 0 rgba(0, 0, 0, 0.35);
	color: #F1F3F4;
	transform: rotate(-2.2deg);
}

.wve-lux-identity-card::before {
	position: absolute;
	z-index: -2;
	inset: 0;
	background-image: var(--wve-card-texture, none);
	background-position: center;
	background-size: cover;
	content: "";
	opacity: 0.08;
	filter: grayscale(1) contrast(1.2);
}

.wve-lux-identity-card::after {
	position: absolute;
	z-index: -1;
	inset: 0;
	background:
		radial-gradient(circle at 78% 20%, rgba(218, 220, 224, 0.22), transparent 28%),
		linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.06) 47%, transparent 67%);
	content: "";
}

.wve-lux-identity-card__grid {
	position: absolute;
	z-index: -1;
	inset: 0;
	background:
		repeating-linear-gradient(122deg, transparent 0, transparent 17px, rgba(218, 220, 224, 0.06) 18px, transparent 19px),
		repeating-linear-gradient(32deg, transparent 0, transparent 29px, rgba(218, 220, 224, 0.035) 30px, transparent 31px);
	mask-image: linear-gradient(90deg, transparent, #000 22%, #000 100%);
}

.wve-lux-identity-card__top,
.wve-lux-identity-card__bottom {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: clamp(9px, 0.9vw, 12px);
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.wve-lux-identity-card__top span:last-child {
	color: #DADCE0;
	font-weight: 500;
}

.wve-lux-identity-card__mark {
	position: absolute;
	top: 50%;
	left: 50%;
	display: grid;
	width: clamp(88px, 10vw, 126px);
	aspect-ratio: 1;
	place-items: center;
	border: 1px solid rgba(241, 243, 244, 0.46);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.035);
	box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.02);
	font-family: var(--wve-font);
	font-size: clamp(30px, 4vw, 52px);
	letter-spacing: -0.07em;
	transform: translate(-50%, -50%);
}

.wve-lux-identity-card__bottom {
	position: absolute;
	right: clamp(28px, 4vw, 46px);
	bottom: clamp(28px, 4vw, 46px);
	left: clamp(28px, 4vw, 46px);
	justify-content: flex-start;
	gap: clamp(14px, 2vw, 30px);
	color: #DADCE0;
	font-size: clamp(8px, 0.78vw, 10px);
}

.wve-lux-identity-card__bottom span + span::before {
	margin-right: clamp(14px, 2vw, 30px);
	color: #111827;
	content: "•";
}

/* More disciplined section architecture. */
.wve-lux-topic-bar {
	background: var(--wve-frame-surface);
}

.wve-lux-topic-links a,
.wve-lux-topic-links a:visited {
	font-family: var(--wve-font);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.035em;
}

.wve-lux-section-heading h1,
.wve-lux-section-heading h2,
.wve-lux-feature h2,
.wve-lux-post-grid .wve-editorial-card h2,
.wve-lux-manifesto h2 {
	color: var(--wve-frame-text) !important;
}

.wve-lux-feature {
	border-bottom-color: var(--wve-frame-line);
}

.wve-lux-feature__media,
.wve-lux-post-grid .wve-editorial-card__media {
	border: 1px solid var(--wve-frame-line);
}

.wve-lux-feature__media img,
.wve-lux-post-grid .wve-editorial-card__media img {
	filter: saturate(0.62) contrast(0.98);
}

.wve-lux-post-grid .wve-editorial-card {
	padding-bottom: 24px;
	border-bottom: 1px solid var(--wve-frame-line);
}

.wve-lux-post-grid .wve-editorial-pill {
	color: var(--wve-frame-accent-hover) !important;
}

.wve-lux-journal {
	background: #FFFFFF;
}

html[data-wve-theme="dark"] .wve-lux-journal {
	background: var(--wve-frame-surface);
}

.wve-lux-manifesto {
	background:
		linear-gradient(120deg, rgba(96, 127, 153, 0.1), transparent 46%),
		#202124;
}

.wve-lux-manifesto h2 {
	color: #F1F3F4 !important;
}

.wve-lux-manifesto__inner > p:not(.wve-lux-kicker) {
	color: #BFC8D1;
}

.wve-lux-manifesto .wve-lux-text-link:hover,
.wve-lux-manifesto .wve-lux-text-link:focus-visible {
	color: #111827 !important;
}

/* Global silver-blue accents replace muted gold. */
a,
.wve-frame-text-link,
.wve-frame-text-link:visited,
.wve-editorial-card__action,
.wve-editorial-card__action:visited,
.wve-article-content a,
.wve-article-content a:visited,
.wve-page-content a,
.wve-page-content a:visited,
.wve-category,
.wve-category:visited,
.wve-kicker,
.wve-tldr__head > span,
.wve-frame-section-heading .wve-frame-kicker,
.wve-frame-archive__header .wve-frame-kicker,
.wve-frame-empty .wve-frame-kicker {
	color: var(--wve-frame-accent-hover);
}

.wve-frame-button,
.wve-frame-button:visited,
.wve-frame-load-more,
.wve-frame-load-more:visited,
.wve-frame-search-panel .search-submit,
.wve-frame-back-to-top,
.wve-frame-back-to-top:visited {
	border-color: #202124;
	background: #202124;
	color: #FFFFFF !important;
}

.wve-frame-button:hover,
.wve-frame-button:focus-visible,
.wve-frame-load-more:hover,
.wve-frame-load-more:focus-visible,
.wve-frame-search-panel .search-submit:hover,
.wve-frame-search-panel .search-submit:focus-visible,
.wve-frame-back-to-top:hover,
.wve-frame-back-to-top:focus-visible {
	border-color: var(--wve-frame-accent-hover);
	background: var(--wve-frame-accent-hover);
}

.wve-tldr {
	border-left-color: var(--wve-frame-accent-hover);
}

.wve-affiliate-disclosure a,
.wve-affiliate-disclosure a:link,
.wve-affiliate-disclosure a:visited,
.wve-affiliate-disclosure a:hover,
.wve-affiliate-disclosure a:focus-visible,
.wve-affiliate-disclosure a:active {
	color: var(--wve-frame-accent-hover);
}

/* Graphite/navy footer. */
.wve-frame-footer {
	border-top-color: #202124;
	background: #202124;
}

.wve-frame-footer__brand p,
.wve-frame-footer__column h2 {
	color: #AEB8C2;
}

.wve-frame-footer__bottom {
	background: #111315;
}

@media (max-width: 1040px) {
	.wve-lux-hero__inner {
		grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
	}

	.wve-lux-card-stage {
		min-height: 460px;
	}
}

@media (max-width: 820px) {
	.wve-lux-hero__inner {
		grid-template-columns: 1fr;
	}

	.wve-lux-card-stage {
		min-height: 500px;
	}

	.wve-lux-identity-card {
		width: min(90%, 660px);
	}
}

@media (max-width: 640px) {
	.wve-lux-card-stage {
		min-height: 350px;
		padding: 28px 18px;
	}

	.wve-lux-card-stage::before {
		top: 14px;
		right: 14px;
		bottom: 14px;
		left: 14px;
	}

	.wve-lux-card-stage::after {
		display: none;
	}

	.wve-lux-identity-card {
		width: 100%;
		padding: 24px;
		border-radius: 14px;
		transform: rotate(-1deg);
	}

	.wve-lux-identity-card__bottom {
		right: 24px;
		bottom: 24px;
		left: 24px;
		gap: 10px;
	}

	.wve-lux-identity-card__bottom span + span::before {
		margin-right: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wve-lux-identity-card {
		transform: none;
	}
}

/* End The Blog Edit Editorial v0.3.1 */

/* Keep secondary journal actions understated. */
.wve-lux-outline-button,
.wve-lux-outline-button:visited {
	border-color: var(--wve-frame-text);
	background: transparent;
	color: var(--wve-frame-text) !important;
}

html[data-wve-theme="dark"] .wve-lux-outline-button,
html[data-wve-theme="dark"] .wve-lux-outline-button:visited {
	border-color: var(--wve-frame-text);
	background: transparent;
	color: var(--wve-frame-text) !important;
}

.wve-lux-outline-button:hover,
.wve-lux-outline-button:focus-visible,
html[data-wve-theme="dark"] .wve-lux-outline-button:hover,
html[data-wve-theme="dark"] .wve-lux-outline-button:focus-visible {
	border-color: var(--wve-frame-accent-hover);
	background: var(--wve-frame-accent-hover);
	color: #FFFFFF !important;
}

/* =========================================================
   The Blog Edit Editorial v0.3.2
   Perspective layout and footer wordmark corrections
   ========================================================= */

/* Keep the selected-perspective layout independent of theme post sizing. */
.wve-lux-feature-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.65fr) minmax(390px, 0.9fr);
	gap: clamp(38px, 4vw, 64px);
	align-items: start;
	width: 100%;
}

.wve-lux-feature-grid .wve-lux-feature,
.wve-lux-feature-stack {
	min-width: 0;
}

.wve-lux-feature-grid .wve-lux-feature {
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0;
}

.wve-lux-feature-stack {
	display: grid;
	gap: 30px;
	align-content: start;
}

.wve-lux-feature--lead {
	display: block;
	grid-row: auto;
	padding: 0;
	border: 0;
}

.wve-lux-feature--lead .wve-lux-feature__media {
	width: 100%;
	aspect-ratio: 16 / 10;
}

.wve-lux-feature--lead .wve-lux-feature__media img,
.wve-lux-feature--lead .wve-lux-feature__placeholder {
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
}

.wve-lux-feature--lead .wve-lux-feature__content {
	max-width: 760px;
	padding-top: 26px;
}

.wve-lux-feature--lead h2 {
	font-size: clamp(36px, 3.7vw, 54px);
	line-height: 1.02;
}

.wve-lux-feature--support {
	display: grid;
	grid-template-columns: minmax(160px, 42%) minmax(0, 1fr);
	gap: 24px;
	align-items: start;
	padding-bottom: 30px;
}

.wve-lux-feature--support .wve-lux-feature__media {
	width: 100%;
	aspect-ratio: 4 / 3;
}

.wve-lux-feature--support .wve-lux-feature__media img,
.wve-lux-feature--support .wve-lux-feature__placeholder {
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
}

.wve-lux-feature--support .wve-lux-feature__content {
	min-width: 0;
	padding-top: 0;
}

.wve-lux-feature--support h2 {
	margin-top: 9px;
	font-size: clamp(23px, 1.8vw, 30px);
	line-height: 1.1;
	overflow-wrap: normal;
	word-break: normal;
}

/* Keep the complete The Blog Edit wordmark visible on the graphite footer. */
.wve-frame-footer__brand .wve-wordmark,
.wve-frame-footer__brand .wve-wordmark:link,
.wve-frame-footer__brand .wve-wordmark:visited,
.wve-frame-footer__brand .wve-wordmark:hover,
.wve-frame-footer__brand .wve-wordmark:focus-visible {
	color: #FFFFFF !important;
}

.wve-frame-footer__brand .wve-wordmark strong,
html[data-wve-theme="dark"] .wve-frame-footer__brand .wve-wordmark strong {
	color: #111827 !important;
}

@media (max-width: 1040px) {
	.wve-lux-feature-grid {
		grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
		gap: 38px;
	}

	.wve-lux-feature--support {
		grid-template-columns: 145px minmax(0, 1fr);
		gap: 20px;
	}
}

@media (max-width: 860px) {
	.wve-lux-feature-grid {
		grid-template-columns: 1fr;
	}

	.wve-lux-feature-stack {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px;
	}

	.wve-lux-feature--support {
		display: block;
		padding-bottom: 26px;
	}

	.wve-lux-feature--support .wve-lux-feature__content {
		padding-top: 18px;
	}
}

@media (max-width: 620px) {
	.wve-lux-feature-stack {
		grid-template-columns: 1fr;
	}

	.wve-lux-feature--lead .wve-lux-feature__media {
		aspect-ratio: 4 / 3;
	}

	.wve-lux-feature--support {
		display: grid;
		grid-template-columns: 120px minmax(0, 1fr);
		gap: 18px;
	}

	.wve-lux-feature--support .wve-lux-feature__content {
		padding-top: 0;
	}
}

/* End The Blog Edit Editorial v0.3.2 */

/* =========================================================
   The Blog Edit Editorial v0.3.3
   Perspective spacing and supporting-image correction
   ========================================================= */

/* Remove the unused second grid row inherited from the original layout. */
.wve-lux-perspective {
	padding-bottom: clamp(56px, 6vw, 86px);
}

.wve-lux-feature-grid {
	grid-template-columns: minmax(0, 1.65fr) minmax(410px, 1fr);
	grid-template-rows: auto;
	grid-auto-rows: auto;
	column-gap: clamp(36px, 4vw, 58px);
	row-gap: 0;
}

.wve-lux-feature--lead {
	grid-column: 1;
	grid-row: 1;
}

.wve-lux-feature-stack {
	grid-column: 2;
	grid-row: 1;
	gap: 26px;
}

/* Give the supporting stories stronger, more useful thumbnails. */
.wve-lux-feature--support {
	grid-template-columns: minmax(185px, 45%) minmax(0, 1fr);
	gap: 22px;
	padding-bottom: 26px;
}

.wve-lux-feature--support .wve-lux-feature__media {
	aspect-ratio: 4 / 3;
}

.wve-lux-feature--support h2 {
	font-size: clamp(22px, 1.65vw, 28px);
}

@media (max-width: 1120px) {
	.wve-lux-feature-grid {
		grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.9fr);
		column-gap: 36px;
	}

	.wve-lux-feature--support {
		grid-template-columns: minmax(160px, 44%) minmax(0, 1fr);
		gap: 18px;
	}
}

@media (max-width: 860px) {
	.wve-lux-feature-grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		row-gap: 34px;
	}

	.wve-lux-feature--lead,
	.wve-lux-feature-stack {
		grid-column: 1;
		grid-row: auto;
	}
}

@media (max-width: 620px) {
	.wve-lux-perspective {
		padding-bottom: 52px;
	}

	.wve-lux-feature--support {
		grid-template-columns: 132px minmax(0, 1fr);
		gap: 16px;
	}
}

/* End The Blog Edit Editorial v0.3.3 */

/* =========================================================
   The Blog Edit Editorial v0.3.5
   Full-width supporting cards and reliable journal route
   ========================================================= */

/*
 * The supporting stories now use the whole right-hand column. This removes
 * the cramped image/text split and gives each article a proper editorial image.
 */
.wve-lux-feature-grid {
	grid-template-columns: minmax(0, 1.52fr) minmax(430px, 0.9fr);
	grid-template-rows: auto;
	column-gap: clamp(40px, 4vw, 62px);
	row-gap: 0;
	align-items: start;
}

.wve-lux-feature--lead .wve-lux-feature__media {
	aspect-ratio: 4 / 3;
}

.wve-lux-feature-stack {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	align-content: start;
}

.wve-lux-feature--support {
	display: block;
	width: 100%;
	padding-bottom: 30px;
}

.wve-lux-feature--support .wve-lux-feature__media {
	width: 100%;
	aspect-ratio: 2 / 1;
}

.wve-lux-feature--support .wve-lux-feature__content {
	padding-top: 18px;
}

.wve-lux-feature--support h2 {
	max-width: 520px;
	margin: 9px 0 14px;
	font-size: clamp(25px, 2vw, 33px);
	line-height: 1.06;
}

@media (max-width: 1100px) {
	.wve-lux-feature-grid {
		grid-template-columns: minmax(0, 1.35fr) minmax(390px, 0.9fr);
		column-gap: 34px;
	}
}

@media (max-width: 900px) {
	.wve-lux-feature-grid {
		grid-template-columns: 1fr;
		row-gap: 40px;
	}

	.wve-lux-feature--lead,
	.wve-lux-feature-stack {
		grid-column: 1;
		grid-row: auto;
	}

	.wve-lux-feature-stack {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px;
	}

	.wve-lux-feature--support .wve-lux-feature__media {
		aspect-ratio: 4 / 3;
	}
}

@media (max-width: 620px) {
	.wve-lux-feature--lead .wve-lux-feature__media {
		aspect-ratio: 4 / 3;
	}

	.wve-lux-feature-stack {
		grid-template-columns: 1fr;
	}

	.wve-lux-feature--support {
		display: block;
	}

	.wve-lux-feature--support .wve-lux-feature__media {
		aspect-ratio: 16 / 10;
	}
}

/* End The Blog Edit Editorial v0.3.5 */

/* =========================================================
   The Blog Edit Editorial v0.3.6
   Homepage post loading and perspective-heading alignment
   ========================================================= */

/* Keep the perspective introduction directly beneath its heading. */
.wve-lux-perspective > .wve-lux-section-heading {
	display: block;
	max-width: 900px;
	margin-bottom: 42px;
}

.wve-lux-perspective .wve-lux-section-heading__intro {
	max-width: 720px;
	margin: 18px 0 0;
	color: var(--wve-frame-muted);
	font-family: var(--wve-font);
	font-size: 19px;
	line-height: 1.55;
}

/* The homepage action now expands the existing article grid in place. */
.wve-lux-journal__action.wve-load-more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 58px;
}

.wve-lux-journal__action #wve-load-more[aria-busy="true"] {
	pointer-events: none;
	opacity: 0.68;
}

@media (max-width: 760px) {
	.wve-lux-perspective .wve-lux-section-heading__intro {
		font-size: 17px;
	}
}

/* End The Blog Edit Editorial v0.3.6 */

/* =========================================================
   The Blog Edit Editorial v0.3.7
   Neutral archive and related-card link states
   ========================================================= */

/*
 * Archive and single-post related cards should read as editorial content,
 * not as green calls to action. Keep their titles and article links neutral.
 */
.wve-frame-archive .wve-editorial-card h2 a,
.wve-frame-archive .wve-editorial-card h2 a:link,
.wve-frame-archive .wve-editorial-card h2 a:visited,
.wve-related .wve-editorial-card h2 a,
.wve-related .wve-editorial-card h2 a:link,
.wve-related .wve-editorial-card h2 a:visited,
.wve-frame-archive .wve-editorial-card__action,
.wve-frame-archive .wve-editorial-card__action:link,
.wve-frame-archive .wve-editorial-card__action:visited,
.wve-related .wve-editorial-card__action,
.wve-related .wve-editorial-card__action:link,
.wve-related .wve-editorial-card__action:visited {
	color: var(--wve-frame-text) !important;
}

.wve-frame-archive .wve-editorial-card h2 a:hover,
.wve-frame-archive .wve-editorial-card h2 a:focus,
.wve-frame-archive .wve-editorial-card h2 a:focus-visible,
.wve-related .wve-editorial-card h2 a:hover,
.wve-related .wve-editorial-card h2 a:focus,
.wve-related .wve-editorial-card h2 a:focus-visible,
.wve-frame-archive .wve-editorial-card__action:hover,
.wve-frame-archive .wve-editorial-card__action:focus,
.wve-frame-archive .wve-editorial-card__action:focus-visible,
.wve-related .wve-editorial-card__action:hover,
.wve-related .wve-editorial-card__action:focus,
.wve-related .wve-editorial-card__action:focus-visible {
	color: var(--wve-frame-muted) !important;
}

html[data-wve-theme="dark"] .wve-frame-archive .wve-editorial-card h2 a,
html[data-wve-theme="dark"] .wve-frame-archive .wve-editorial-card h2 a:link,
html[data-wve-theme="dark"] .wve-frame-archive .wve-editorial-card h2 a:visited,
html[data-wve-theme="dark"] .wve-related .wve-editorial-card h2 a,
html[data-wve-theme="dark"] .wve-related .wve-editorial-card h2 a:link,
html[data-wve-theme="dark"] .wve-related .wve-editorial-card h2 a:visited,
html[data-wve-theme="dark"] .wve-frame-archive .wve-editorial-card__action,
html[data-wve-theme="dark"] .wve-frame-archive .wve-editorial-card__action:link,
html[data-wve-theme="dark"] .wve-frame-archive .wve-editorial-card__action:visited,
html[data-wve-theme="dark"] .wve-related .wve-editorial-card__action,
html[data-wve-theme="dark"] .wve-related .wve-editorial-card__action:link,
html[data-wve-theme="dark"] .wve-related .wve-editorial-card__action:visited {
	color: #F7F7F7 !important;
}

html[data-wve-theme="dark"] .wve-frame-archive .wve-editorial-card h2 a:hover,
html[data-wve-theme="dark"] .wve-frame-archive .wve-editorial-card h2 a:focus-visible,
html[data-wve-theme="dark"] .wve-related .wve-editorial-card h2 a:hover,
html[data-wve-theme="dark"] .wve-related .wve-editorial-card h2 a:focus-visible,
html[data-wve-theme="dark"] .wve-frame-archive .wve-editorial-card__action:hover,
html[data-wve-theme="dark"] .wve-frame-archive .wve-editorial-card__action:focus-visible,
html[data-wve-theme="dark"] .wve-related .wve-editorial-card__action:hover,
html[data-wve-theme="dark"] .wve-related .wve-editorial-card__action:focus-visible {
	color: #B5B5B5 !important;
}

/* End The Blog Edit Editorial v0.3.7 */

/* =========================================================
   The Blog Edit Editorial v0.3.8
   Dark single-post legacy-green cleanup
   ========================================================= */

/*
 * Older global link rules could still colour several single-post details
 * green in dark mode. Keep these elements within the current graphite and
 * silver-blue editorial palette.
 */
html[data-wve-theme="dark"] body.single-post .wve-breadcrumbs,
html[data-wve-theme="dark"] body.single-post .wve-breadcrumbs p,
html[data-wve-theme="dark"] body.single-post .wve-breadcrumbs span,
html[data-wve-theme="dark"] body.single-post .wve-breadcrumbs .last,
html[data-wve-theme="dark"] body.single-post .wve-breadcrumbs .separator {
	color: #AEB6BF !important;
}

html[data-wve-theme="dark"] body.single-post .wve-breadcrumbs a,
html[data-wve-theme="dark"] body.single-post .wve-breadcrumbs a:link,
html[data-wve-theme="dark"] body.single-post .wve-breadcrumbs a:visited,
html[data-wve-theme="dark"] body.single-post .wve-breadcrumbs .wve-category,
html[data-wve-theme="dark"] body.single-post .wve-breadcrumbs .wve-category:link,
html[data-wve-theme="dark"] body.single-post .wve-breadcrumbs .wve-category:visited {
	color: #D5DCE3 !important;
}

html[data-wve-theme="dark"] body.single-post .wve-breadcrumbs a:hover,
html[data-wve-theme="dark"] body.single-post .wve-breadcrumbs a:focus-visible,
html[data-wve-theme="dark"] body.single-post .wve-breadcrumbs .wve-category:hover,
html[data-wve-theme="dark"] body.single-post .wve-breadcrumbs .wve-category:focus-visible {
	color: #111827 !important;
}

html[data-wve-theme="dark"] body.single-post .wve-author-box .wve-kicker {
	color: #111827 !important;
}

html[data-wve-theme="dark"] body.single-post .wve-share-rail > span {
	color: #AEB6BF !important;
}

html[data-wve-theme="dark"] body.single-post .wve-share-rail a,
html[data-wve-theme="dark"] body.single-post .wve-share-rail a:link,
html[data-wve-theme="dark"] body.single-post .wve-share-rail a:visited {
	border-color: #46515E !important;
	background: transparent !important;
	color: #F2F4F6 !important;
}

html[data-wve-theme="dark"] body.single-post .wve-share-rail a:hover,
html[data-wve-theme="dark"] body.single-post .wve-share-rail a:focus-visible,
html[data-wve-theme="dark"] body.single-post .wve-share-rail a:active {
	border-color: #111827 !important;
	background: #202124 !important;
	color: #FFFFFF !important;
}

html[data-wve-theme="dark"] body.single-post .wve-tldr {
	border-color: #303A47 !important;
	border-left-color: #111827 !important;
}

html[data-wve-theme="dark"] body.single-post .wve-tldr__head > span {
	color: #111827 !important;
}

html[data-wve-theme="dark"] body.single-post .wve-affiliate-disclosure a,
html[data-wve-theme="dark"] body.single-post .wve-affiliate-disclosure a:link,
html[data-wve-theme="dark"] body.single-post .wve-affiliate-disclosure a:visited {
	color: #111827 !important;
}

html[data-wve-theme="dark"] body.single-post .wve-affiliate-disclosure a:hover,
html[data-wve-theme="dark"] body.single-post .wve-affiliate-disclosure a:focus-visible,
html[data-wve-theme="dark"] body.single-post .wve-affiliate-disclosure a:active {
	color: #DADCE0 !important;
}

/* End The Blog Edit Editorial v0.3.8 */

/* =========================================================
   The Blog Edit Editorial v0.3.9
   Dark article links, sharing icons and content-box correction
   ========================================================= */

/*
 * Remove the remaining legacy green from ordinary links inside dark-mode
 * article content. Silver-blue keeps links visible without reintroducing the
 * old green palette.
 */
html[data-wve-theme="dark"] body.single-post .wve-article-content a,
html[data-wve-theme="dark"] body.single-post .wve-article-content a:link,
html[data-wve-theme="dark"] body.single-post .wve-article-content a:visited {
	color: #111827 !important;
}

html[data-wve-theme="dark"] body.single-post .wve-article-content a:hover,
html[data-wve-theme="dark"] body.single-post .wve-article-content a:focus,
html[data-wve-theme="dark"] body.single-post .wve-article-content a:focus-visible,
html[data-wve-theme="dark"] body.single-post .wve-article-content a:active {
	color: #F1F3F4 !important;
}

/* Button labels and social-network marks must remain white. */
html[data-wve-theme="dark"] body.single-post .wve-article-content .wp-block-button__link,
html[data-wve-theme="dark"] body.single-post .wve-article-content .wp-block-button__link:link,
html[data-wve-theme="dark"] body.single-post .wve-article-content .wp-block-button__link:visited,
html[data-wve-theme="dark"] body.single-post .wve-article-content .wp-block-button__link:hover,
html[data-wve-theme="dark"] body.single-post .wve-article-content .wp-block-button__link:focus-visible {
	color: #FFFFFF !important;
}

html[data-wve-theme="dark"] body.single-post :is(
	.a2a_kit,
	.addtoany_share_save_container,
	.heateor_sss_sharing_container,
	.heateor_sss_sharing_ul,
	.sharedaddy,
	.shared-counts-wrap,
	.scriptlesssocialsharing,
	.essb_links,
	.nc_socialPanel,
	.swp_social_panel,
	.sassy-social-share,
	.wp-block-social-links,
	.sd-sharing,
	[class*="social-sharing"],
	[class*="social-share"],
	[class*="share-buttons"],
	[class*="sharing-buttons"]
) a {
	color: #FFFFFF !important;
}

html[data-wve-theme="dark"] body.single-post :is(
	.a2a_kit,
	.addtoany_share_save_container,
	.heateor_sss_sharing_container,
	.heateor_sss_sharing_ul,
	.sharedaddy,
	.shared-counts-wrap,
	.scriptlesssocialsharing,
	.essb_links,
	.nc_socialPanel,
	.swp_social_panel,
	.sassy-social-share,
	.wp-block-social-links,
	.sd-sharing,
	[class*="social-sharing"],
	[class*="social-share"],
	[class*="share-buttons"],
	[class*="sharing-buttons"]
) a :is(i, span),
html[data-wve-theme="dark"] body.single-post :is(
	.a2a_kit,
	.addtoany_share_save_container,
	.heateor_sss_sharing_container,
	.heateor_sss_sharing_ul,
	.sharedaddy,
	.shared-counts-wrap,
	.scriptlesssocialsharing,
	.essb_links,
	.nc_socialPanel,
	.swp_social_panel,
	.sassy-social-share,
	.wp-block-social-links,
	.sd-sharing,
	[class*="social-sharing"],
	[class*="social-share"],
	[class*="share-buttons"],
	[class*="sharing-buttons"]
) a::before,
html[data-wve-theme="dark"] body.single-post :is(
	.a2a_kit,
	.addtoany_share_save_container,
	.heateor_sss_sharing_container,
	.heateor_sss_sharing_ul,
	.sharedaddy,
	.shared-counts-wrap,
	.scriptlesssocialsharing,
	.essb_links,
	.nc_socialPanel,
	.swp_social_panel,
	.sassy-social-share,
	.wp-block-social-links,
	.sd-sharing,
	[class*="social-sharing"],
	[class*="social-share"],
	[class*="share-buttons"],
	[class*="sharing-buttons"]
) a::after {
	color: inherit !important;
}

html[data-wve-theme="dark"] body.single-post :is(
	.a2a_kit,
	.addtoany_share_save_container,
	.heateor_sss_sharing_container,
	.heateor_sss_sharing_ul,
	.sharedaddy,
	.shared-counts-wrap,
	.scriptlesssocialsharing,
	.essb_links,
	.nc_socialPanel,
	.swp_social_panel,
	.sassy-social-share,
	.wp-block-social-links,
	.sd-sharing,
	[class*="social-sharing"],
	[class*="social-share"],
	[class*="share-buttons"],
	[class*="sharing-buttons"]
) a svg,
html[data-wve-theme="dark"] body.single-post :is(
	.a2a_kit,
	.addtoany_share_save_container,
	.heateor_sss_sharing_container,
	.heateor_sss_sharing_ul,
	.sharedaddy,
	.shared-counts-wrap,
	.scriptlesssocialsharing,
	.essb_links,
	.nc_socialPanel,
	.swp_social_panel,
	.sassy-social-share,
	.wp-block-social-links,
	.sd-sharing,
	[class*="social-sharing"],
	[class*="social-share"],
	[class*="share-buttons"],
	[class*="sharing-buttons"]
) a svg path {
	fill: currentColor !important;
	color: inherit !important;
}

/*
 * Gutenberg and legacy content callouts with their own light background must
 * become dark surfaces in dark mode. This includes the existing Key Takeaways
 * boxes without changing their light-mode appearance.
 */
html[data-wve-theme="dark"] body.single-post .wve-article-content :is(
	.wp-block-group.has-background,
	.wp-block-columns.has-background,
	.wp-block-column.has-background,
	.wp-block-media-text.has-background,
	[class*="takeaway"],
	[class*="key-takeaway"]
),
html[data-wve-theme="dark"] body.single-post .wve-article-content :is(
	.wp-block-group,
	.wp-block-columns,
	.wp-block-column,
	.gb-container,
	.kt-inside-inner-col,
	section,
	aside,
	div
):has(:is(h2, h3)[id*="takeaway" i]) {
	border-color: #303A47 !important;
	background-color: #202124 !important;
	background-image: none !important;
	color: #F2F4F6 !important;
}

html[data-wve-theme="dark"] body.single-post .wve-article-content :is(
	.wp-block-group.has-background,
	.wp-block-columns.has-background,
	.wp-block-column.has-background,
	.wp-block-media-text.has-background,
	[class*="takeaway"],
	[class*="key-takeaway"]
) :is(h1, h2, h3, h4, h5, h6),
html[data-wve-theme="dark"] body.single-post .wve-article-content :is(
	.wp-block-group,
	.wp-block-columns,
	.wp-block-column,
	.gb-container,
	.kt-inside-inner-col,
	section,
	aside,
	div
):has(:is(h2, h3)[id*="takeaway" i]) :is(h1, h2, h3, h4, h5, h6) {
	color: #FFFFFF !important;
}

html[data-wve-theme="dark"] body.single-post .wve-article-content :is(
	.wp-block-group.has-background,
	.wp-block-columns.has-background,
	.wp-block-column.has-background,
	.wp-block-media-text.has-background,
	[class*="takeaway"],
	[class*="key-takeaway"]
) :is(p, li, strong, em),
html[data-wve-theme="dark"] body.single-post .wve-article-content :is(
	.wp-block-group,
	.wp-block-columns,
	.wp-block-column,
	.gb-container,
	.kt-inside-inner-col,
	section,
	aside,
	div
):has(:is(h2, h3)[id*="takeaway" i]) :is(p, li, strong, em) {
	color: #F2F4F6 !important;
}

/* End The Blog Edit Editorial v0.3.9 */

/* =========================================================
   The Blog Edit Editorial v0.3.10
   Simplified menu and white Perspective section
   ========================================================= */

/* The expanded menu now contains only the assigned primary navigation. */
.wve-frame-menu-panel__inner {
	grid-template-columns: minmax(0, 1fr);
	gap: 0;
}

.wve-frame-menu-panel__inner > nav {
	width: 100%;
}

/* Give the complete three-story Perspective area a clean white surface. */
.wve-lux-perspective {
	background: var(--wve-frame-surface);
	box-shadow: 0 0 0 100vmax var(--wve-frame-surface);
	clip-path: inset(0 -100vmax);
}

/* End The Blog Edit Editorial v0.3.10 */

/* =========================================================
   The Blog Edit Editorial v0.3.11
   Compact vertical menu, simplified homepage and Apple typography
   ========================================================= */

/* Keep the open navigation compact, conventional and vertically stacked. */
.wve-frame-menu-panel__inner {
	display: block;
	padding-block: 22px 26px;
}

.wve-frame-menu-panel__inner > nav {
	width: 100%;
}

.wve-frame-nav {
	display: flex;
	max-width: 360px;
	flex-direction: column;
	gap: 0;
}

.wve-frame-nav > li + li {
	border-top: 1px solid var(--wve-frame-line);
}

.wve-frame-nav a,
.wve-frame-nav a:link,
.wve-frame-nav a:visited {
	display: block;
	padding: 10px 0;
	color: var(--wve-frame-panel-text) !important;
	font-family: var(--wve-font);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.01em;
}

.wve-frame-nav a:hover,
.wve-frame-nav a:focus-visible {
	color: var(--wve-frame-accent) !important;
}

.wve-frame-nav .sub-menu {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 0 0 8px 18px;
}

.wve-frame-nav .sub-menu a,
.wve-frame-nav .sub-menu a:link,
.wve-frame-nav .sub-menu a:visited {
	padding: 7px 0;
	color: var(--wve-frame-muted) !important;
	font-size: 15px;
	font-weight: 500;
}

/* The former Explore/category strip is no longer part of the homepage. */
.wve-lux-topic-bar {
	display: none !important;
}

/* Tighten the transition into the three-story Perspective section. */
.wve-lux-perspective {
	padding-top: clamp(46px, 5vw, 70px);
	padding-bottom: clamp(52px, 5.5vw, 78px);
}

.wve-lux-perspective > .wve-lux-section-heading {
	margin-bottom: 28px;
}

.wve-lux-perspective .wve-lux-section-heading__intro {
	margin-top: 10px;
}

/* Use one Apple/system type family throughout the publication. */
body,
button,
input,
select,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
.wve-wordmark,
.wve-home-hero p,
.wve-article-content blockquote,
.wve-lux-home h1,
.wve-lux-home h2,
.wve-lux-feature h2,
.wve-lux-hero__intro,
.wve-lux-section-heading > p,
.wve-lux-post-grid .wve-editorial-card h2,
.wve-lux-manifesto__inner > p:not(.wve-lux-kicker),
.wve-lux-identity-card__mark,
.wve-lux-perspective .wve-lux-section-heading__intro {
	font-family: var(--wve-font) !important;
}

@media (max-width: 760px) {
	.wve-frame-menu-panel__inner {
		padding-block: 18px 22px;
	}

	.wve-frame-nav {
		max-width: none;
	}

	.wve-frame-nav a,
	.wve-frame-nav a:link,
	.wve-frame-nav a:visited {
		font-size: 17px;
	}

	.wve-lux-perspective {
		padding-top: 40px;
		padding-bottom: 52px;
	}
}

/* End The Blog Edit Editorial v0.3.11 */

/* =========================================================
   The Blog Edit Editorial v0.3.12
   Homepage More from The Blog Edit spacing and card-footer cleanup
   ========================================================= */

/* Bring the article grid closer to the preceding Perspective section. */
.wve-lux-journal {
	padding-top: clamp(34px, 3.8vw, 54px);
}

.wve-lux-section-heading--journal {
	margin-bottom: 30px;
}

/* Keep homepage article metadata clean and open rather than boxed by rules. */
.wve-lux-post-grid .wve-editorial-card {
	padding-bottom: 0;
	border-bottom: 0;
}

.wve-lux-post-grid .wve-editorial-card__footer {
	padding-top: 0;
	border-top: 0;
}

@media (max-width: 760px) {
	.wve-lux-journal {
		padding-top: 30px;
	}
}

/* End The Blog Edit Editorial v0.3.12 */

/* =========================================================
   The Blog Edit Editorial v0.3.13
   Article-card metadata and row alignment
   ========================================================= */

/* Keep the category and publication date together above each card title. */
.wve-editorial-card__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px;
	min-height: 18px;
	margin-bottom: 13px;
	color: var(--wve-frame-muted);
	font-size: 10px;
	font-weight: 650;
	line-height: 1.2;
	letter-spacing: 0.075em;
	text-transform: uppercase;
}

.wve-editorial-card__meta .wve-editorial-pill {
	margin: 0;
}

.wve-editorial-card__meta time {
	color: var(--wve-frame-muted);
	font: inherit;
}

.wve-editorial-card__meta-separator {
	color: var(--wve-frame-muted);
}

/* Read Article is intentionally removed: the image and title remain the card links. */
.wve-editorial-card__footer,
.wve-editorial-card__action {
	display: none;
}

/* Align the title and excerpt rows across the three-column homepage cards. */
@media (min-width: 761px) {
	.wve-lux-post-grid .wve-editorial-card h2 {
		min-height: 3.36em;
	}

	.wve-lux-post-grid .wve-editorial-card__content > p {
		min-height: 4.65em;
		margin-bottom: 0;
	}
}

@media (max-width: 760px) {
	.wve-editorial-card__meta {
		margin-bottom: 11px;
	}
}

/* End The Blog Edit Editorial v0.3.13 */

/* =========================================================
   The Blog Edit Editorial v0.3.14
   Homepage boxed editorial cards
   ========================================================= */

/* A restrained grey field gives the white homepage cards definition. */
.wve-lux-journal {
	background: #F4F5F6;
}

html[data-wve-theme="dark"] .wve-lux-journal {
	background: #111315;
}

.wve-lux-post-grid {
	gap: 32px 24px;
	align-items: stretch;
}

/* Match the established rounded editorial-card design on the homepage only. */
.wve-lux-post-grid .wve-editorial-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	padding: 0;
	border: 1px solid var(--wve-frame-line);
	border-radius: 16px;
	background: var(--wve-frame-surface);
	box-shadow: none;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.wve-lux-post-grid .wve-editorial-card:hover {
	transform: translateY(-4px);
	border-color: #AEB7C0;
	box-shadow: var(--wve-frame-shadow);
}

.wve-lux-post-grid .wve-editorial-card__media,
.wve-lux-post-grid .wve-editorial-card__media img,
.wve-lux-post-grid .wve-editorial-card__placeholder {
	height: 205px;
	border: 0;
	border-radius: 0;
}

.wve-lux-post-grid .wve-editorial-card__media img {
	filter: none;
	object-fit: cover;
}

.wve-lux-post-grid .wve-editorial-card:hover .wve-editorial-card__media img {
	transform: scale(1.025);
}

.wve-lux-post-grid .wve-editorial-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 22px 22px 24px;
}

.wve-lux-post-grid .wve-editorial-card__meta {
	margin-bottom: 13px;
}

.wve-lux-post-grid .wve-editorial-pill,
.wve-lux-post-grid .wve-editorial-pill:link,
.wve-lux-post-grid .wve-editorial-pill:visited {
	min-height: 25px;
	padding: 5px 9px;
	border-radius: 999px;
	background: var(--wve-frame-soft);
	color: var(--wve-frame-text) !important;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.075em;
}

.wve-lux-post-grid .wve-editorial-pill:hover,
.wve-lux-post-grid .wve-editorial-pill:focus-visible {
	color: var(--wve-frame-accent-hover) !important;
}

.wve-lux-post-grid .wve-editorial-card h2 {
	margin: 0;
	font-size: 22px;
	font-weight: 800 !important;
	line-height: 1.15;
	letter-spacing: -0.035em;
}

.wve-lux-post-grid .wve-editorial-card__content > p {
	margin: 13px 0 0;
	color: var(--wve-frame-muted);
	font-size: 14px;
	line-height: 1.55;
}

html[data-wve-theme="dark"] .wve-lux-post-grid .wve-editorial-card {
	background: var(--wve-frame-surface);
}

html[data-wve-theme="dark"] .wve-lux-post-grid .wve-editorial-pill,
html[data-wve-theme="dark"] .wve-lux-post-grid .wve-editorial-pill:link,
html[data-wve-theme="dark"] .wve-lux-post-grid .wve-editorial-pill:visited {
	background: var(--wve-frame-soft);
	color: var(--wve-frame-text) !important;
}

@media (min-width: 761px) {
	.wve-lux-post-grid .wve-editorial-card h2 {
		min-height: 3.45em;
	}

	.wve-lux-post-grid .wve-editorial-card__content > p {
		min-height: 4.65em;
	}
}

@media (max-width: 760px) {
	.wve-lux-post-grid {
		gap: 24px;
	}

	.wve-lux-post-grid .wve-editorial-card__media,
	.wve-lux-post-grid .wve-editorial-card__media img,
	.wve-lux-post-grid .wve-editorial-card__placeholder {
		height: 220px;
	}
}

/* End The Blog Edit Editorial v0.3.14 */


/* =========================================================
   The Blog Edit Editorial v0.3.15
   Consistent post-card title weight
   ========================================================= */

/* Use a confident but less heavy 700 weight on every post-card title. */
.wve-post-card h2,
.wve-editorial-card h2,
.wve-lux-post-grid .wve-editorial-card h2,
.wve-frame-archive .wve-editorial-card h2,
.wve-related .wve-editorial-card h2 {
	font-weight: 700 !important;
}

/* End The Blog Edit Editorial v0.3.15 */

/* =========================================================
   The Blog Edit Editorial v0.3.16
   More from The Blog Edit heading size
   ========================================================= */

/* Use the requested fixed size for the homepage article-grid heading. */
.wve-lux-section-heading--journal h2 {
	font-size: 39px;
}

/* End The Blog Edit Editorial v0.3.16 */

/* =========================================================
   The Blog Edit Editorial v0.3.18
   Yahoo-inspired single-article surface
   ========================================================= */

/*
 * Place the complete story on one generous white editorial surface.
 * The surrounding platinum-grey page creates the same clear separation
 * seen on large news sites without turning the article into a small card.
 */
.wve-single {
	padding: clamp(42px, 5vw, 76px) 0 0;
	background: var(--wve-frame-bg);
}

.wve-single > .wve-article {
	width: min(calc(100% - 48px), 1260px);
	margin-inline: auto;
	padding: clamp(48px, 5vw, 78px) clamp(28px, 4.5vw, 72px) clamp(58px, 6vw, 92px);
	overflow: hidden;
	border: 0;
	border-radius: 20px;
	background: #FFFFFF;
	box-shadow: none;
}

/* Allow the existing editorial widths to sit naturally inside the panel. */
.wve-single > .wve-article > .wve-shell {
	width: 100%;
}

.wve-single .wve-article-header,
.wve-single .wve-article-hero,
.wve-single .wve-article-tools,
.wve-single .wve-article-layout,
.wve-single .wve-article-main,
.wve-single .wve-article-content {
	background: transparent;
}

/* Related stories remain a visibly separate section below the article. */
.wve-single .wve-related {
	margin-top: clamp(54px, 6vw, 86px);
}

html[data-wve-theme="dark"] .wve-single > .wve-article {
	background: var(--wve-frame-surface);
}

@media (max-width: 900px) {
	.wve-single {
		padding-top: 26px;
	}

	.wve-single > .wve-article {
		width: min(calc(100% - 28px), 1260px);
		padding: 40px 28px 58px;
		border-radius: 16px;
	}
}

@media (max-width: 620px) {
	.wve-single {
		padding-top: 10px;
	}

	.wve-single > .wve-article {
		width: calc(100% - 12px);
		padding: 30px 18px 44px;
		border-radius: 10px;
	}

	.wve-single .wve-related {
		margin-top: 38px;
	}
}

/* End The Blog Edit Editorial v0.3.18 */
/* =========================================================
   The Blog Edit Editorial v0.3.20
   Optional article call-to-action box
   ========================================================= */

.wve-article-cta {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: clamp(24px, 5vw, 48px);
	margin: clamp(46px, 7vw, 72px) 0 0;
	padding: clamp(26px, 5vw, 42px);
	border: 1px solid #D1D5DB;
	border-radius: 16px;
	background: #F3F4F6;
	color: #202124;
}

.wve-article-cta__content {
	min-width: 0;
}

.wve-article-cta h2 {
	margin: 0 0 12px;
	color: #202124;
	font-size: clamp(25px, 4vw, 34px);
	font-weight: 700;
	letter-spacing: -0.035em;
	line-height: 1.12;
}

.wve-article-cta__description {
	max-width: 620px;
	color: #4B5563;
	font-size: 16px;
	line-height: 1.65;
}

.wve-article-cta__description p {
	margin: 0;
}

.wve-article-cta__button,
.wve-article-cta__button:link,
.wve-article-cta__button:visited {
	flex-shrink: 0;
	min-width: 168px;
	border-color: #202124;
	border-radius: 999px;
	background: #202124;
	color: #FFFFFF !important;
	text-decoration: none;
}

.wve-article-cta__button:hover,
.wve-article-cta__button:focus-visible {
	border-color: #374151;
	background: #374151;
	color: #FFFFFF !important;
	transform: translateY(-1px);
}

html[data-wve-theme="dark"] .wve-article-cta {
	border-color: #3F4652;
	background: #252A32;
	color: #FFFFFF;
}

html[data-wve-theme="dark"] .wve-article-cta h2 {
	color: #FFFFFF !important;
}

html[data-wve-theme="dark"] .wve-article-cta__description {
	color: #C9CED6;
}

html[data-wve-theme="dark"] .wve-article-cta__button,
html[data-wve-theme="dark"] .wve-article-cta__button:link,
html[data-wve-theme="dark"] .wve-article-cta__button:visited {
	border-color: #FFFFFF;
	background: #FFFFFF;
	color: #202124 !important;
}

html[data-wve-theme="dark"] .wve-article-cta__button:hover,
html[data-wve-theme="dark"] .wve-article-cta__button:focus-visible {
	border-color: #D6DAE1;
	background: #D6DAE1;
	color: #202124 !important;
}

@media (max-width: 760px) {
	.wve-article-cta {
		grid-template-columns: 1fr;
		align-items: start;
		gap: 22px;
		border-radius: 14px;
	}

	.wve-article-cta__button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wve-article-cta__button:hover,
	.wve-article-cta__button:focus-visible {
		transform: none;
	}
}

/* End The Blog Edit Editorial v0.3.20 */


/* =========================================
   Optional article standfirst
   ========================================= */
.wve-article-header .wve-standfirst {
	max-width: 760px;
	margin: 18px 0 22px;
	color: #111827;
	font-size: 23px;
	font-weight: 400;
	line-height: 1.42;
	letter-spacing: -0.012em;
}

.wve-article-header .wve-standfirst p {
	margin: 0;
}

.wve-article-header .wve-standfirst p + p {
	margin-top: 0.75em;
}

html[data-wve-theme="dark"] .wve-article-header .wve-standfirst {
	color: #DADCE0;
}

@media (max-width: 767px) {
	.wve-article-header .wve-standfirst {
		margin: 14px 0 18px;
		font-size: 18px;
		line-height: 1.48;
	}
}

/* =========================================================
   The Blog Edit Editorial v0.3.26
   Lighter post-card title weight
   ========================================================= */

/* Use a refined medium weight across every post-card title. */
.wve-post-card h2,
.wve-editorial-card h2,
.wve-lux-feature h2,
.wve-lux-post-grid .wve-editorial-card h2,
.wve-frame-archive .wve-editorial-card h2,
.wve-related .wve-editorial-card h2 {
	font-weight: 500 !important;
}

/* End The Blog Edit Editorial v0.3.26 */

/* =========================================================
   The Blog Edit Editorial v0.3.27
   Clickable author links
   ========================================================= */

.wve-author-avatar-link {
	display: inline-flex;
	flex: 0 0 auto;
	border-radius: 50%;
	line-height: 0;
}

.wve-author-avatar-link:focus-visible,
.wve-author-chip strong a:focus-visible,
.wve-author-box h2 a:focus-visible {
	outline: 2px solid #111827;
	outline-offset: 3px;
}

.wve-author-chip strong a,
.wve-author-box h2 a {
	color: inherit;
	text-decoration: none;
}

.wve-author-chip strong a:hover,
.wve-author-box h2 a:hover {
	color: #111827;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

/* End The Blog Edit Editorial v0.3.27 */

/* =========================================================
   The Blog Edit Editorial v0.3.28
   Author biography avatar sizing
   ========================================================= */

.wve-author-box > .wve-author-avatar-link {
	width: 88px;
	height: 88px;
	align-self: start;
	overflow: hidden;
	border-radius: 50%;
}

.wve-author-box > .wve-author-avatar-link img {
	display: block;
	width: 88px !important;
	height: 88px !important;
	max-width: none;
	object-fit: cover;
	object-position: 50% 20%;
	border-radius: 50%;
}

@media (max-width: 600px) {
	.wve-author-box > .wve-author-avatar-link,
	.wve-author-box > .wve-author-avatar-link img {
		width: 72px !important;
		height: 72px !important;
	}
}

/* End The Blog Edit Editorial v0.3.28 */

/* =========================================================
   The Blog Edit Editorial v0.3.29
   Editorial transparency note
   ========================================================= */

.wve-editorial-transparency-note {
	margin: clamp(38px, 6vw, 52px) 0 0;
	color: var(--wve-muted);
	font-size: 14px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.65;
}

.wve-article-cta + .wve-editorial-transparency-note {
	margin-top: 28px;
}

.wve-editorial-transparency-note + .wve-acf-faq-section {
	margin-top: 24px;
}

html[data-wve-theme="dark"] .wve-editorial-transparency-note {
	color: #AEB5BF;
}

@media (max-width: 700px) {
	.wve-editorial-transparency-note {
		margin-top: 34px;
		font-size: 13px;
	}

	.wve-article-cta + .wve-editorial-transparency-note {
		margin-top: 24px;
	}

	.wve-editorial-transparency-note + .wve-acf-faq-section {
		margin-top: 20px;
	}
}

/* End The Blog Edit Editorial v0.3.29 */
/* =========================================================
   The Blog Edit Editorial v0.3.30
   Tighter single-post breadcrumb spacing
   ========================================================= */

/* Lift the breadcrumb higher within the article surface and tighten the gap before the title. */
body.single-post .wve-single > .wve-article {
	padding-top: clamp(30px, 3vw, 44px);
}

body.single-post .wve-breadcrumbs,
body.single-post .wve-breadcrumbs p {
	margin-bottom: 12px;
}

@media (max-width: 900px) {
	body.single-post .wve-single > .wve-article {
		padding-top: 26px;
	}

	body.single-post .wve-breadcrumbs,
	body.single-post .wve-breadcrumbs p {
		margin-bottom: 10px;
	}
}

@media (max-width: 620px) {
	body.single-post .wve-single > .wve-article {
		padding-top: 22px;
	}
}

/* End The Blog Edit Editorial v0.3.30 */

/* =========================================================
   The Blog Edit Editorial v0.3.31
   Optional homepage hero
   ========================================================= */

/* Removing the hero lets the existing Perspective spacing provide the
   homepage opening rhythm; its conditional H1 shares the section-title style. */

/* End The Blog Edit Editorial v0.3.31 */

/* =========================================================
   The Blog Edit Editorial v0.3.34
   Capitalized two-colour text wordmark
   ========================================================= */

.wve-wordmark {
	text-transform: none;
}

.wve-frame-header .wve-wordmark strong,
html[data-wve-theme="dark"] .wve-frame-header .wve-wordmark strong,
.wve-frame-footer__brand .wve-wordmark strong,
html[data-wve-theme="dark"] .wve-frame-footer__brand .wve-wordmark strong {
	color: #111827 !important;
}

/* End The Blog Edit Editorial v0.3.34 */

/* =========================================================
   The Blog Edit Editorial v0.3.35
   Tighter three-story Perspective layout
   ========================================================= */

/*
 * Keep the established lead-left/two-stories-right composition, but close
 * the oversized gutters so the latest three stories read as one editorial
 * unit. Copy remains below each image with no overlay treatment.
 */
.wve-lux-feature-grid {
	grid-template-columns: minmax(0, 1.52fr) minmax(400px, 0.9fr);
	column-gap: clamp(16px, 1.6vw, 22px);
}

.wve-lux-feature-stack {
	gap: clamp(16px, 1.6vw, 22px);
}

.wve-lux-feature--lead .wve-lux-feature__content {
	padding-top: 20px;
}

.wve-lux-feature--lead h2 {
	margin-top: 10px;
	margin-bottom: 12px;
}

.wve-lux-feature--support {
	padding-bottom: 0;
	border-bottom: 0;
}

.wve-lux-feature--support .wve-lux-feature__content {
	padding-top: 14px;
}

.wve-lux-feature--support h2 {
	margin: 8px 0 11px;
	font-size: clamp(24px, 1.8vw, 30px);
	line-height: 1.08;
}

@media (max-width: 1100px) {
	.wve-lux-feature-grid {
		grid-template-columns: minmax(0, 1.36fr) minmax(370px, 0.9fr);
		column-gap: 16px;
	}

	.wve-lux-feature-stack {
		gap: 16px;
	}
}

@media (max-width: 900px) {
	.wve-lux-feature-grid {
		grid-template-columns: 1fr;
		row-gap: 28px;
	}

	.wve-lux-feature-stack {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
	}
}

@media (max-width: 620px) {
	.wve-lux-feature-grid {
		row-gap: 24px;
	}

	.wve-lux-feature-stack {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.wve-lux-feature--support .wve-lux-feature__content {
		padding-top: 13px;
	}
}

/* End The Blog Edit Editorial v0.3.35 */

/* =========================================================
   The Blog Edit Editorial v0.3.39
   Joined five-story editorial homepage lead
   ========================================================= */

.wve-magazine-hero {
	padding: clamp(20px, 2.8vw, 38px) 0;
	background: var(--wve-frame-surface);
}

.wve-magazine-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(520px, 1fr);
	gap: 1px;
	overflow: hidden;
	border: 1px solid #D6DAE0;
	background: #D6DAE0;
}

.wve-magazine-hero__supporting {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 1px;
	min-width: 0;
	background: #D6DAE0;
}

.wve-magazine-story {
	min-width: 0;
	min-height: 0;
	margin: 0;
	background: #FFFFFF;
	color: #202124;
}

/*
 * GeneratePress adds responsive column classes to posts in the main loop.
 * Reset those inherited widths so every hero story fills its CSS Grid cell.
 */
.wve-magazine-hero .wve-magazine-story,
.wve-magazine-hero article.wve-magazine-story,
.wve-magazine-hero .wve-magazine-story.generate-columns,
.wve-magazine-hero .wve-magazine-story[class*="grid-"] {
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;
	float: none !important;
	clear: none !important;
	margin: 0 !important;
	padding: 0 !important;
	justify-self: stretch;
	align-self: stretch;
}

.wve-magazine-hero__grid > .wve-magazine-story:only-child {
	grid-column: 1 / -1;
}

.wve-magazine-story--lead,
.wve-magazine-story--support {
	display: grid;
	grid-template-rows: auto 1fr;
}

.wve-magazine-story__media {
	position: relative;
	min-width: 0;
	overflow: hidden;
	background: #F1F3F4;
	aspect-ratio: 16 / 9;
}

.wve-magazine-story__image-link,
.wve-magazine-story__image-link:link,
.wve-magazine-story__image-link:visited,
.wve-magazine-story__image-link img,
.wve-magazine-story__placeholder {
	display: block;
	width: 100%;
	height: 100%;
}

.wve-magazine-story__image-link {
	overflow: hidden;
}

.wve-magazine-story__image-link img {
	object-fit: cover;
	transform: scale(1.001);
	transition: filter 240ms ease, transform 420ms ease;
}

.wve-magazine-story__image-link:hover img,
.wve-magazine-story__image-link:focus-visible img {
	filter: saturate(1.04) contrast(1.01);
	transform: scale(1.025);
}

.wve-magazine-story__placeholder {
	background:
		radial-gradient(circle at 78% 22%, rgba(218, 220, 224, 0.55), transparent 27%),
		linear-gradient(145deg, #F1F3F4, #111827 72%);
}

.wve-magazine-story__category,
.wve-magazine-story__category:link,
.wve-magazine-story__category:visited {
	position: absolute;
	z-index: 3;
	top: 11px;
	left: 11px;
	display: inline-flex;
	align-items: center;
	min-height: 22px;
	padding: 4px 8px 3px;
	background: #202124;
	color: #FFFFFF !important;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.06em;
	line-height: 1;
	text-transform: uppercase;
}

.wve-magazine-story__category:hover,
.wve-magazine-story__category:focus-visible {
	background: #111827;
}

.wve-magazine-story h2 {
	font-family: var(--wve-font);
	font-weight: 600 !important;
	letter-spacing: -0.035em;
	text-wrap: balance;
}

.wve-magazine-story--lead h2 {
	position: absolute;
	z-index: 2;
	right: 26px;
	bottom: 24px;
	left: 26px;
	max-width: 610px;
	margin: 0;
	font-size: clamp(38px, 3.5vw, 52px);
	line-height: 1.15;
}

.wve-magazine-story--lead h2 a,
.wve-magazine-story--lead h2 a:link,
.wve-magazine-story--lead h2 a:visited {
	padding: 0.02em 0.19em 0.08em;
	background: #202124;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	color: #FFFFFF !important;
}

.wve-magazine-story__content {
	min-width: 0;
	background: #FFFFFF;
}

.wve-magazine-story--lead .wve-magazine-story__content {
	display: flex;
	min-height: 240px;
	padding: 20px 26px 22px;
	flex-direction: column;
}

.wve-magazine-story__excerpt {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: #202124;
	font-size: clamp(18px, 1.55vw, 22px);
	font-weight: 600;
	letter-spacing: -0.015em;
	line-height: 1.42;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.wve-magazine-story__excerpt > span {
	margin-right: 9px;
	color: #111827;
}

.wve-magazine-story__meta {
	display: flex;
	margin-top: auto;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px;
	color: #626A74;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.4;
}

.wve-magazine-story__meta a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.wve-magazine-story--support .wve-magazine-story__content {
	display: flex;
	min-height: 132px;
	padding: 10px 16px 14px;
	flex-direction: column;
}

.wve-magazine-story--support h2 {
	margin: 0 0 13px;
	font-size: clamp(19px, 1.55vw, 23px);
	line-height: 1.08;
}

.wve-magazine-story--support h2 a,
.wve-magazine-story--support h2 a:link,
.wve-magazine-story--support h2 a:visited {
	color: #202124 !important;
}

.wve-magazine-story h2 a:hover,
.wve-magazine-story h2 a:focus-visible {
	color: #111827 !important;
}

.wve-magazine-story__image-link:focus-visible,
.wve-magazine-story__category:focus-visible,
.wve-magazine-story h2 a:focus-visible,
.wve-magazine-story__meta a:focus-visible {
	outline: 3px solid #111827;
	outline-offset: 2px;
}

html[data-wve-theme="dark"] .wve-magazine-hero,
html[data-wve-theme="dark"] .wve-magazine-story,
html[data-wve-theme="dark"] .wve-magazine-story__content {
	background: #111315;
}

html[data-wve-theme="dark"] .wve-magazine-hero__grid,
html[data-wve-theme="dark"] .wve-magazine-hero__supporting {
	border-color: #202124;
	background: #202124;
}

html[data-wve-theme="dark"] .wve-magazine-story__excerpt,
html[data-wve-theme="dark"] .wve-magazine-story--support h2 a {
	color: #F1F3F4 !important;
}

html[data-wve-theme="dark"] .wve-magazine-story__meta {
	color: #B8C0CB;
}

@media (max-width: 1050px) {
	.wve-magazine-hero__grid {
		grid-template-columns: minmax(0, 1.05fr) minmax(430px, 1fr);
	}

	.wve-magazine-story--lead h2 {
		font-size: clamp(34px, 4vw, 44px);
	}

	.wve-magazine-story--support h2 {
		font-size: clamp(18px, 1.85vw, 21px);
	}
}

@media (max-width: 900px) {
	.wve-magazine-hero__grid {
		grid-template-columns: 1fr;
	}

	.wve-magazine-story--lead .wve-magazine-story__content {
		min-height: 205px;
	}

	.wve-magazine-story--lead h2 {
		font-size: clamp(38px, 6.4vw, 54px);
	}

	.wve-magazine-story--support h2 {
		font-size: clamp(20px, 2.8vw, 25px);
	}
}

@media (max-width: 620px) {
	.wve-magazine-hero {
		padding: 12px 0 20px;
	}

	.wve-magazine-hero .wve-shell {
		width: min(calc(100% - 24px), var(--wve-frame-shell));
	}

	.wve-magazine-hero__supporting {
		grid-template-columns: 1fr;
		grid-template-rows: none;
	}

	.wve-magazine-story--lead h2 {
		right: 16px;
		bottom: 16px;
		left: 16px;
		font-size: clamp(30px, 9vw, 42px);
	}

	.wve-magazine-story--lead .wve-magazine-story__content {
		min-height: 190px;
		padding: 17px 16px 18px;
	}

	.wve-magazine-story__excerpt {
		font-size: 17px;
		-webkit-line-clamp: 4;
	}

	.wve-magazine-story--support .wve-magazine-story__content {
		min-height: 118px;
		padding: 12px 14px 14px;
	}

	.wve-magazine-story--support h2 {
		font-size: 22px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wve-magazine-story__image-link img {
		transition: none;
	}
}

/* End The Blog Edit Editorial v0.3.40 */

/* =========================================================
   The Blog Edit Editorial v0.3.41
   Lead-story balance and tighter editorial hierarchy
   ========================================================= */

/*
 * The lead excerpt can be deliberately concise. On desktop, let the image
 * absorb the spare height instead of stretching the white content panel.
 */
@media (min-width: 901px) {
	.wve-magazine-story--lead {
		grid-template-rows: minmax(0, 1fr) auto;
	}

	.wve-magazine-story--lead .wve-magazine-story__media {
		aspect-ratio: auto;
	}

	.wve-magazine-story--lead .wve-magazine-story__content {
		min-height: 154px;
	}

	.wve-magazine-story--lead h2 {
		max-width: 570px;
		font-size: clamp(34px, 2.9vw, 44px);
		line-height: 1.12;
	}
}

/* End The Blog Edit Editorial v0.3.41 */

/* =========================================================
   The Blog Edit Editorial v0.3.42
   Final five-story homepage hierarchy
   ========================================================= */

/*
 * Keep enough white space for the lead story to read like an editorial card,
 * without returning to the oversized empty panel from v0.3.40.
 */
@media (min-width: 901px) {
	.wve-magazine-story--lead {
		grid-template-rows: minmax(0, 2fr) minmax(190px, 1fr);
	}

	.wve-magazine-story--lead .wve-magazine-story__content {
		min-height: 190px;
	}

	.wve-magazine-story--lead h2 {
		max-width: 540px;
		font-size: clamp(34px, 2.7vw, 42px);
		line-height: 1.13;
	}
}

/* The four supporting headlines use one calm, consistent desktop scale. */
.wve-magazine-story--support h2 {
	font-size: 20px;
	line-height: 1.1;
}

/* End The Blog Edit Editorial v0.3.42 */

/* =========================================================
   The Blog Edit Editorial v0.3.45
   Compact lead-story summary and metadata spacing
   ========================================================= */

/* Keep the byline with the standfirst instead of pinning it to the card floor. */
.wve-magazine-story--lead .wve-magazine-story__meta {
	margin-top: 16px;
}

@media (min-width: 901px) {
	.wve-magazine-story--lead {
		grid-template-rows: minmax(0, 1fr) auto;
	}

	.wve-magazine-story--lead .wve-magazine-story__content {
		min-height: 150px;
	}
}

/* Once the stories stack, the lead panel only needs its natural content height. */
@media (max-width: 900px) {
	.wve-magazine-story--lead .wve-magazine-story__content {
		min-height: 0;
	}
}

/* End The Blog Edit Editorial v0.3.45 */

/* =========================================================
   The Blog Edit Editorial v0.3.46
   Joined homepage article grid and solid Load More control
   ========================================================= */

/* The homepage journal now sits on the same clean white field as the hero. */
.wve-lux-journal {
	background: #FFFFFF;
}

/* Four joined columns replace the separated rounded card treatment. */
.wve-lux-post-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	padding: 1px;
	background: #D6DAE0;
}

.wve-lux-post-grid .wve-home-card,
.wve-lux-post-grid .wve-home-card:hover {
	display: flex;
	min-width: 0;
	margin: 0;
	overflow: hidden;
	border: 0;
	border-radius: 0;
	background: #FFFFFF;
	box-shadow: none;
	transform: none;
}

.wve-lux-post-grid .wve-home-card__media {
	position: relative;
	height: auto;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border: 0;
	border-radius: 0;
	background: #F1F3F4;
}

.wve-lux-post-grid .wve-home-card__image-link,
.wve-lux-post-grid .wve-home-card__image-link:link,
.wve-lux-post-grid .wve-home-card__image-link:visited,
.wve-lux-post-grid .wve-home-card__image-link img,
.wve-lux-post-grid .wve-home-card__media .wve-editorial-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 0;
}

.wve-lux-post-grid .wve-home-card__image-link {
	overflow: hidden;
}

.wve-lux-post-grid .wve-home-card__image-link img {
	object-fit: cover;
	filter: none;
	transform: scale(1.001);
	transition: transform 320ms ease;
}

.wve-lux-post-grid .wve-home-card:hover .wve-home-card__image-link img {
	transform: scale(1.025);
}

.wve-lux-post-grid .wve-home-card__category,
.wve-lux-post-grid .wve-home-card__category:link,
.wve-lux-post-grid .wve-home-card__category:visited {
	position: absolute;
	z-index: 2;
	top: 10px;
	left: 10px;
	display: inline-flex;
	width: auto;
	min-height: 0;
	margin: 0;
	padding: 5px 8px 4px;
	border: 0;
	border-radius: 0;
	background: #202124;
	color: #FFFFFF !important;
	font-size: 9px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.055em;
	text-transform: uppercase;
}

.wve-lux-post-grid .wve-home-card__category:hover,
.wve-lux-post-grid .wve-home-card__category:focus-visible {
	background: #111827;
	color: #FFFFFF !important;
}

.wve-lux-post-grid .wve-home-card .wve-editorial-card__content {
	display: flex;
	min-height: 142px;
	padding: 13px 16px 15px;
	flex: 1;
	flex-direction: column;
}

.wve-lux-post-grid .wve-home-card h2 {
	min-height: 0;
	margin: 0;
	font-family: var(--wve-font);
	font-size: 20px;
	font-weight: 600 !important;
	line-height: 1.14;
	letter-spacing: -0.025em;
}

.wve-lux-post-grid .wve-home-card h2 a,
.wve-lux-post-grid .wve-home-card h2 a:link,
.wve-lux-post-grid .wve-home-card h2 a:visited {
	color: #202124 !important;
}

.wve-lux-post-grid .wve-home-card h2 a:hover,
.wve-lux-post-grid .wve-home-card h2 a:focus-visible {
	color: #111827 !important;
}

.wve-home-card__byline {
	display: flex;
	margin-top: auto;
	padding-top: 15px;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	color: #68717C;
	font-size: 12px;
	font-weight: 450;
	line-height: 1.35;
}

.wve-home-card__byline a,
.wve-home-card__byline a:link,
.wve-home-card__byline a:visited {
	color: inherit !important;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.wve-home-card__byline a:hover,
.wve-home-card__byline a:focus-visible {
	color: #111827 !important;
}

.wve-lux-journal__action.wve-load-more-wrap {
	margin-top: 34px;
}

#wve-load-more.wve-home-load-more,
#wve-load-more.wve-home-load-more:link,
#wve-load-more.wve-home-load-more:visited {
	display: inline-flex;
	width: 240px;
	max-width: 100%;
	min-height: 48px;
	padding: 12px 24px;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 4px;
	background: #202124;
	box-shadow: none;
	color: #FFFFFF !important;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.01em;
	text-transform: none;
}

#wve-load-more.wve-home-load-more:hover,
#wve-load-more.wve-home-load-more:focus-visible {
	background: #111827;
	color: #FFFFFF !important;
	transform: none;
}

html[data-wve-theme="dark"] .wve-lux-journal {
	background: #111315;
}

html[data-wve-theme="dark"] .wve-lux-post-grid {
	background: #202124;
}

html[data-wve-theme="dark"] .wve-lux-post-grid .wve-home-card,
html[data-wve-theme="dark"] .wve-lux-post-grid .wve-home-card:hover,
html[data-wve-theme="dark"] .wve-lux-post-grid .wve-home-card .wve-editorial-card__content {
	background: #111315;
}

html[data-wve-theme="dark"] .wve-lux-post-grid .wve-home-card h2 a,
html[data-wve-theme="dark"] .wve-lux-post-grid .wve-home-card h2 a:link,
html[data-wve-theme="dark"] .wve-lux-post-grid .wve-home-card h2 a:visited {
	color: #F1F3F4 !important;
}

html[data-wve-theme="dark"] .wve-home-card__byline {
	color: #B8C0CB;
}

html[data-wve-theme="dark"] #wve-load-more.wve-home-load-more,
html[data-wve-theme="dark"] #wve-load-more.wve-home-load-more:visited {
	background: #111827;
	color: #202124 !important;
}

html[data-wve-theme="dark"] #wve-load-more.wve-home-load-more:hover,
html[data-wve-theme="dark"] #wve-load-more.wve-home-load-more:focus-visible {
	background: #FFFFFF;
	color: #202124 !important;
}

@media (max-width: 900px) {
	.wve-lux-post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	.wve-lux-post-grid {
		grid-template-columns: 1fr;
	}

	.wve-lux-post-grid .wve-home-card .wve-editorial-card__content {
		min-height: 126px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wve-lux-post-grid .wve-home-card__image-link img {
		transition: none;
	}
}

/* End The Blog Edit Editorial v0.3.46 */

/* =========================================================
   The Blog Edit Editorial v0.3.48
   Selectable editorial list and sticky homepage banner area
   ========================================================= */

.wve-home-more-layout,
.wve-home-more-layout__feed,
.wve-home-more-sidebar {
	min-width: 0;
}

.wve-home-more-layout--list-sidebar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(250px, 310px);
	gap: clamp(34px, 4vw, 58px);
	align-items: start;
}

.wve-home-more-layout--list-sidebar .wve-lux-post-list {
	display: flex;
	padding: 1px;
	flex-direction: column;
	gap: 1px;
}

.wve-home-more-layout--list-sidebar .wve-home-card--list,
.wve-home-more-layout--list-sidebar .wve-home-card--list:hover {
	display: grid;
	grid-template-columns: minmax(250px, 43%) minmax(0, 1fr);
	min-height: 226px;
}

.wve-home-more-layout--list-sidebar .wve-home-card--list .wve-home-card__media {
	height: 100%;
	min-height: 226px;
	aspect-ratio: auto;
}

.wve-home-more-layout--list-sidebar .wve-home-card--list .wve-editorial-card__content {
	min-height: 0;
	padding: 23px 26px 21px;
}

.wve-home-more-layout--list-sidebar .wve-home-card--list h2 {
	font-size: clamp(21px, 1.7vw, 25px);
	line-height: 1.1;
}

.wve-home-card__summary {
	display: -webkit-box;
	margin: 13px 0 0;
	overflow: hidden;
	color: #3F4853;
	font-size: 15px;
	line-height: 1.52;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.wve-home-card__summary > span {
	margin-right: 7px;
	color: #111827;
}

.wve-home-more-sidebar__sticky {
	position: sticky;
	top: 96px;
	display: grid;
	gap: 28px;
}

.wve-home-more-sidebar__widget {
	width: 100%;
	margin: 0;
}

.wve-home-more-sidebar__title {
	margin: 0 0 12px;
	color: #68717C;
	font-family: var(--wve-font);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.wve-home-more-sidebar__widget .wp-block-image,
.wve-home-more-sidebar__widget .wp-block-image > a,
.wve-home-more-sidebar__widget.widget_media_image > a {
	display: block;
	margin: 0;
}

.wve-home-more-sidebar__widget .wp-block-image img,
.wve-home-more-sidebar__widget.widget_media_image img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.wve-home-more-layout--list-sidebar .wve-lux-journal__action.wve-load-more-wrap {
	margin-top: 34px;
}

html[data-wve-theme="dark"] .wve-home-card__summary {
	color: #D2D8E0;
}

html[data-wve-theme="dark"] .wve-home-more-sidebar__title {
	color: #B8C0CB;
}

@media (max-width: 900px) {
	.wve-home-more-layout--list-sidebar {
		grid-template-columns: 1fr;
	}

	.wve-home-more-sidebar.is-empty {
		display: none;
	}

	.wve-home-more-sidebar__sticky {
		position: static;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.wve-home-more-layout--list-sidebar .wve-home-card--list,
	.wve-home-more-layout--list-sidebar .wve-home-card--list:hover {
		grid-template-columns: 1fr;
	}

	.wve-home-more-layout--list-sidebar .wve-home-card--list .wve-home-card__media {
		min-height: 0;
		aspect-ratio: 16 / 9;
	}

	.wve-home-more-layout--list-sidebar .wve-home-card--list .wve-editorial-card__content {
		min-height: 174px;
		padding: 18px 18px 19px;
	}

	.wve-home-more-sidebar__sticky {
		grid-template-columns: 1fr;
	}
}

/* End The Blog Edit Editorial v0.3.48 */

/* =========================================================
   The Blog Edit Editorial v0.3.49
   Working desktop sticky sidebar
   ========================================================= */

/*
 * The sidebar grid item must span the full article-feed row. If it is only as
 * tall as its widgets, the sticky child has no containing-block height through
 * which it can travel and therefore behaves like a static element.
 */
@media (min-width: 901px) {
	.wve-home-more-layout--list-sidebar > .wve-home-more-sidebar {
		align-self: stretch;
	}
}

/* End The Blog Edit Editorial v0.3.49 */

/* =========================================================
   The Blog Edit Editorial v0.3.51
   Four selectable homepage hero layouts
   ========================================================= */

/* Original Perspective: one lead story and two stacked stories. */
.wve-home-hero-option--perspective {
	padding-top: clamp(38px, 4vw, 58px);
	padding-bottom: clamp(38px, 4.5vw, 66px);
}

.wve-home-hero-option--perspective > .wve-lux-section-heading {
	max-width: 920px;
	margin-bottom: 30px;
}

.wve-home-hero-option--perspective .wve-lux-section-heading h2 {
	font-size: clamp(38px, 4.3vw, 58px);
	line-height: 1.02;
}

.wve-home-hero-option--perspective .wve-lux-feature-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.48fr) minmax(390px, 0.9fr);
	grid-template-rows: auto;
	column-gap: clamp(16px, 1.8vw, 24px);
	row-gap: 0;
	align-items: start;
}

.wve-home-hero-option--perspective .wve-lux-feature,
.wve-home-hero-option--perspective .wve-lux-feature[class*="grid-"] {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	float: none !important;
}

.wve-home-hero-option--perspective .wve-lux-feature--lead {
	display: block;
	grid-column: 1;
	grid-row: 1;
}

.wve-home-hero-option--perspective .wve-lux-feature--lead .wve-lux-feature__media {
	aspect-ratio: 16 / 10;
}

.wve-home-hero-option--perspective .wve-lux-feature--lead .wve-lux-feature__media img,
.wve-home-hero-option--perspective .wve-lux-feature--lead .wve-lux-feature__placeholder {
	height: 100%;
	object-fit: cover;
}

.wve-home-hero-option--perspective .wve-lux-feature--lead h2 {
	font-size: clamp(34px, 3vw, 46px);
	line-height: 1.04;
}

.wve-home-hero-option--perspective .wve-lux-feature-stack {
	display: grid;
	grid-column: 2;
	grid-row: 1;
	grid-template-columns: 1fr;
	gap: clamp(16px, 1.8vw, 24px);
}

.wve-home-hero-option--perspective .wve-lux-feature--support {
	display: block;
	padding: 0;
	border: 0;
}

.wve-home-hero-option--perspective .wve-lux-feature--support .wve-lux-feature__media {
	aspect-ratio: 2 / 1;
}

.wve-home-hero-option--perspective .wve-lux-feature--support .wve-lux-feature__media img,
.wve-home-hero-option--perspective .wve-lux-feature--support .wve-lux-feature__placeholder {
	height: 100%;
	object-fit: cover;
}

.wve-home-hero-option--perspective .wve-lux-feature--support h2 {
	font-size: 20px;
	line-height: 1.1;
}

/* Full-width three-story slider. */
.wve-story-slider-hero,
.wve-lead-two-hero {
	padding: clamp(20px, 2.8vw, 38px) 0;
	background: var(--wve-frame-surface);
}

.wve-story-slider {
	position: relative;
	min-height: clamp(430px, 42vw, 560px);
	overflow: hidden;
	border: 1px solid #D6DAE0;
	background: #202124;
	color: #FFFFFF;
}

.wve-story-slider__track,
.wve-story-slider__slide,
.wve-story-slider__media {
	position: absolute;
	inset: 0;
}

.wve-story-slider__slide,
.wve-story-slider__slide[class*="grid-"] {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
}

.wve-story-slider__slide[hidden] {
	display: none;
}

.wve-story-slider__media,
.wve-story-slider__media img,
.wve-story-slider__placeholder {
	display: block;
	width: 100%;
	height: 100%;
}

.wve-story-slider__media img {
	object-fit: cover;
}

.wve-story-slider__placeholder {
	background:
		radial-gradient(circle at 74% 24%, rgba(218, 220, 224, 0.58), transparent 28%),
		linear-gradient(145deg, #111827, #202124 72%);
}

.wve-story-slider__slide::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(17, 19, 21, 0.04) 20%, rgba(17, 19, 21, 0.76) 100%);
	content: "";
	pointer-events: none;
}

.wve-story-slider__category,
.wve-story-slider__category:link,
.wve-story-slider__category:visited,
.wve-lead-two-story__category,
.wve-lead-two-story__category:link,
.wve-lead-two-story__category:visited {
	position: absolute;
	z-index: 4;
	top: 14px;
	left: 14px;
	display: inline-flex;
	padding: 5px 8px 4px;
	background: #202124;
	color: #FFFFFF !important;
	font-size: 9px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.wve-story-slider__category:hover,
.wve-story-slider__category:focus-visible,
.wve-lead-two-story__category:hover,
.wve-lead-two-story__category:focus-visible {
	background: #111827;
}

.wve-story-slider__content {
	position: absolute;
	right: clamp(56px, 8vw, 126px);
	bottom: 54px;
	left: clamp(56px, 8vw, 126px);
	z-index: 3;
	max-width: 820px;
	margin: auto;
	text-align: center;
}

.wve-story-slider__content h2 {
	margin: 0 auto 14px;
	font-family: var(--wve-font);
	font-size: clamp(36px, 4vw, 56px);
	font-weight: 600 !important;
	line-height: 1.08;
	letter-spacing: -0.035em;
	text-wrap: balance;
}

.wve-story-slider__content h2 a,
.wve-story-slider__content h2 a:link,
.wve-story-slider__content h2 a:visited {
	padding: 0.01em 0.16em 0.035em;
	background: #202124;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	color: #FFFFFF !important;
}

.wve-story-slider__content > p {
	max-width: 760px;
	margin: 0 auto 13px;
	color: #FFFFFF;
	font-size: clamp(16px, 1.45vw, 20px);
	font-weight: 500;
	line-height: 1.4;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.38);
}

.wve-story-slider__content > p span {
	margin-right: 8px;
	color: #DADCE0;
}

.wve-story-slider__meta,
.wve-lead-two-story__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.4;
}

.wve-story-slider__meta,
.wve-story-slider__meta a,
.wve-story-slider__meta a:link,
.wve-story-slider__meta a:visited {
	color: #FFFFFF !important;
}

.wve-story-slider__meta a,
.wve-lead-two-story__meta a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.wve-story-slider__arrow {
	position: absolute;
	top: 50%;
	z-index: 6;
	display: grid;
	width: 42px;
	height: 42px;
	padding: 0;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: rgba(17, 19, 21, 0.78);
	color: #FFFFFF;
	font-size: 30px;
	line-height: 1;
	transform: translateY(-50%);
}

.wve-story-slider__arrow:hover,
.wve-story-slider__arrow:focus-visible {
	background: #111827;
}

.wve-story-slider__arrow--previous {
	left: 18px;
}

.wve-story-slider__arrow--next {
	right: 18px;
}

.wve-story-slider__dots {
	position: absolute;
	bottom: 18px;
	left: 50%;
	z-index: 6;
	display: flex;
	gap: 6px;
	transform: translateX(-50%);
}

.wve-story-slider__dots button {
	width: 8px;
	height: 8px;
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.5);
}

.wve-story-slider__dots button[aria-pressed="true"] {
	width: 32px;
	background: #FFFFFF;
}

/* One lead plus two right-hand stories. */
.wve-lead-two-hero__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	overflow: hidden;
	padding: 1px;
	background: #D6DAE0;
}

.wve-lead-two-story,
.wve-lead-two-story[class*="grid-"] {
	width: 100% !important;
	max-width: none !important;
	min-width: 0;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	background: #FFFFFF;
	color: #202124;
}

.wve-lead-two-story--lead {
	grid-column: span 2;
}

.wve-lead-two-story--support {
	display: grid;
	grid-template-rows: auto 1fr;
	grid-column: span 1;
}

.wve-lead-two-story__media {
	position: relative;
	min-width: 0;
	overflow: hidden;
	background: #F1F3F4;
}

.wve-lead-two-story--lead .wve-lead-two-story__media {
	height: 100%;
	min-height: 460px;
}

.wve-lead-two-story--support .wve-lead-two-story__media {
	aspect-ratio: 16 / 9;
}

.wve-lead-two-story__media > a:first-child,
.wve-lead-two-story__media img,
.wve-lead-two-story__placeholder {
	display: block;
	width: 100%;
	height: 100%;
}

.wve-lead-two-story__media img {
	object-fit: cover;
	transform: scale(1.001);
	transition: transform 340ms ease;
}

.wve-lead-two-story:hover .wve-lead-two-story__media img {
	transform: scale(1.025);
}

.wve-lead-two-story__placeholder {
	background:
		radial-gradient(circle at 76% 22%, rgba(218, 220, 224, 0.56), transparent 28%),
		linear-gradient(145deg, #F1F3F4, #111827 72%);
}

.wve-lead-two-story--lead .wve-lead-two-story__media::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(17, 19, 21, 0.04) 30%, rgba(17, 19, 21, 0.76) 100%);
	content: "";
	pointer-events: none;
}

.wve-lead-two-story__lead-content {
	position: absolute;
	right: 28px;
	bottom: 24px;
	left: 28px;
	z-index: 3;
}

.wve-lead-two-story__lead-content h2 {
	max-width: 620px;
	margin: 0 0 16px;
	font-family: var(--wve-font);
	font-size: clamp(34px, 3vw, 46px);
	font-weight: 600 !important;
	line-height: 1.08;
	letter-spacing: -0.035em;
}

.wve-lead-two-story__lead-content h2 a,
.wve-lead-two-story__lead-content h2 a:link,
.wve-lead-two-story__lead-content h2 a:visited {
	padding: 0.01em 0.16em 0.035em;
	background: #202124;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	color: #FFFFFF !important;
}

.wve-lead-two-story__lead-content .wve-lead-two-story__meta {
	justify-content: flex-start;
	color: #FFFFFF;
}

.wve-lead-two-story__lead-content .wve-lead-two-story__meta a {
	color: #FFFFFF !important;
}

.wve-lead-two-story__content {
	display: flex;
	min-height: 226px;
	padding: 14px 16px 16px;
	flex-direction: column;
}

.wve-lead-two-story__content h2 {
	margin: 0;
	font-family: var(--wve-font);
	font-size: 20px;
	font-weight: 600 !important;
	line-height: 1.12;
	letter-spacing: -0.025em;
}

.wve-lead-two-story__content h2 a,
.wve-lead-two-story__content h2 a:link,
.wve-lead-two-story__content h2 a:visited {
	color: #202124 !important;
}

.wve-lead-two-story__content > p {
	display: -webkit-box;
	margin: 12px 0 0;
	overflow: hidden;
	color: #3F4853;
	font-size: 14px;
	line-height: 1.46;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.wve-lead-two-story__content > p span {
	margin-right: 6px;
	color: #111827;
}

.wve-lead-two-story__content .wve-lead-two-story__meta {
	margin-top: auto;
	padding-top: 14px;
	justify-content: flex-start;
	color: #68717C;
}

html[data-wve-theme="dark"] .wve-lead-two-hero__grid {
	background: #202124;
}

html[data-wve-theme="dark"] .wve-lead-two-story,
html[data-wve-theme="dark"] .wve-lead-two-story__content {
	background: #111315;
	color: #F1F3F4;
}

html[data-wve-theme="dark"] .wve-lead-two-story__content h2 a {
	color: #F1F3F4 !important;
}

html[data-wve-theme="dark"] .wve-lead-two-story__content > p {
	color: #D2D8E0;
}

html[data-wve-theme="dark"] .wve-lead-two-story__content .wve-lead-two-story__meta {
	color: #B8C0CB;
}

@media (max-width: 1050px) {
	.wve-home-hero-option--perspective .wve-lux-feature-grid {
		grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.85fr);
	}

	.wve-lead-two-story__content {
		min-height: 250px;
	}
}

@media (max-width: 900px) {
	.wve-home-hero-option--perspective .wve-lux-feature-grid {
		grid-template-columns: 1fr;
		row-gap: 28px;
	}

	.wve-home-hero-option--perspective .wve-lux-feature--lead,
	.wve-home-hero-option--perspective .wve-lux-feature-stack {
		grid-column: 1;
		grid-row: auto;
	}

	.wve-home-hero-option--perspective .wve-lux-feature-stack {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wve-lead-two-hero__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wve-lead-two-story--lead {
		grid-column: 1 / -1;
	}

	.wve-lead-two-story--support {
		grid-column: span 1;
	}

	.wve-lead-two-story--lead .wve-lead-two-story__media {
		min-height: 480px;
	}
}

@media (max-width: 620px) {
	.wve-home-hero-option--perspective {
		padding-top: 28px;
		padding-bottom: 36px;
	}

	.wve-home-hero-option--perspective .wve-lux-feature-stack {
		grid-template-columns: 1fr;
	}

	.wve-story-slider-hero,
	.wve-lead-two-hero {
		padding: 12px 0 20px;
	}

	.wve-story-slider-hero .wve-shell,
	.wve-lead-two-hero .wve-shell {
		width: min(calc(100% - 24px), var(--wve-frame-shell));
	}

	.wve-story-slider {
		min-height: 510px;
	}

	.wve-story-slider__content {
		right: 22px;
		bottom: 52px;
		left: 22px;
	}

	.wve-story-slider__content h2 {
		font-size: clamp(30px, 9vw, 42px);
	}

	.wve-story-slider__content > p {
		font-size: 15px;
		-webkit-line-clamp: 3;
	}

	.wve-story-slider__arrow {
		top: 44%;
		width: 36px;
		height: 36px;
		font-size: 25px;
	}

	.wve-story-slider__arrow--previous {
		left: 10px;
	}

	.wve-story-slider__arrow--next {
		right: 10px;
	}

	.wve-lead-two-hero__grid {
		grid-template-columns: 1fr;
	}

	.wve-lead-two-story--lead,
	.wve-lead-two-story--support {
		grid-column: 1;
	}

	.wve-lead-two-story--lead .wve-lead-two-story__media {
		min-height: 430px;
	}

	.wve-lead-two-story__lead-content {
		right: 18px;
		bottom: 18px;
		left: 18px;
	}

	.wve-lead-two-story__lead-content h2 {
		font-size: clamp(30px, 9vw, 40px);
	}

	.wve-lead-two-story__content {
		min-height: 180px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wve-lead-two-story__media img {
		transition: none;
	}
}

/* End The Blog Edit Editorial v0.3.51 */

/* =========================================================
   The Blog Edit Editorial v0.3.52
   White single-post surface and unified editorial cards
   ========================================================= */

/* Remove the platinum field around light-mode single articles. */
body.single-post,
.wve-single,
.wve-single > .wve-article,
.wve-single .wve-related {
	background: #FFFFFF;
}

/* Keep dark mode on its established layered dark surfaces. */
html[data-wve-theme="dark"] body.single-post,
html[data-wve-theme="dark"] .wve-single {
	background: var(--wve-frame-bg);
}

html[data-wve-theme="dark"] .wve-single > .wve-article {
	background: var(--wve-frame-surface);
}

html[data-wve-theme="dark"] .wve-single .wve-related {
	background: var(--wve-frame-soft);
}

/* Archives and related reading now use the homepage's joined-card rhythm. */
.wve-frame-archive .wve-post-grid,
.wve-related .wve-post-grid {
	gap: 1px;
	padding: 1px;
	background: #D6DAE0;
}

.wve-post-grid .wve-standard-card,
.wve-post-grid .wve-standard-card:hover {
	display: flex;
	min-width: 0;
	margin: 0;
	overflow: hidden;
	border: 0;
	border-radius: 0;
	background: #FFFFFF;
	box-shadow: none;
	transform: none;
}

.wve-post-grid .wve-standard-card__media {
	position: relative;
	height: auto;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border: 0;
	border-radius: 0;
	background: #F1F3F4;
}

.wve-post-grid .wve-standard-card__image-link,
.wve-post-grid .wve-standard-card__image-link:link,
.wve-post-grid .wve-standard-card__image-link:visited,
.wve-post-grid .wve-standard-card__image-link img,
.wve-post-grid .wve-standard-card__media .wve-editorial-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 0;
}

.wve-post-grid .wve-standard-card__image-link {
	overflow: hidden;
}

.wve-post-grid .wve-standard-card__image-link img {
	object-fit: cover;
	filter: none;
	transform: scale(1.001);
	transition: transform 320ms ease;
}

.wve-post-grid .wve-standard-card:hover .wve-standard-card__image-link img {
	transform: scale(1.025);
}

.wve-post-grid .wve-standard-card__category,
.wve-post-grid .wve-standard-card__category:link,
.wve-post-grid .wve-standard-card__category:visited {
	position: absolute;
	z-index: 2;
	top: 10px;
	left: 10px;
	display: inline-flex;
	width: auto;
	min-height: 0;
	margin: 0;
	padding: 5px 8px 4px;
	border: 0;
	border-radius: 0;
	background: #202124;
	color: #FFFFFF !important;
	font-size: 9px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.055em;
	text-transform: uppercase;
}

.wve-post-grid .wve-standard-card__category:hover,
.wve-post-grid .wve-standard-card__category:focus-visible {
	background: #111827;
	color: #FFFFFF !important;
}

.wve-post-grid .wve-standard-card .wve-editorial-card__content {
	display: flex;
	min-height: 142px;
	padding: 13px 16px 15px;
	flex: 1;
	flex-direction: column;
}

.wve-post-grid .wve-standard-card h2,
.wve-frame-archive .wve-post-grid .wve-standard-card h2,
.wve-related .wve-post-grid .wve-standard-card h2 {
	min-height: 0;
	margin: 0;
	font-family: var(--wve-font);
	font-size: 20px;
	font-weight: 600 !important;
	line-height: 1.14;
	letter-spacing: -0.025em;
}

.wve-frame-archive .wve-post-grid .wve-standard-card h2 a,
.wve-frame-archive .wve-post-grid .wve-standard-card h2 a:link,
.wve-frame-archive .wve-post-grid .wve-standard-card h2 a:visited,
.wve-related .wve-post-grid .wve-standard-card h2 a,
.wve-related .wve-post-grid .wve-standard-card h2 a:link,
.wve-related .wve-post-grid .wve-standard-card h2 a:visited {
	color: #202124 !important;
}

.wve-frame-archive .wve-post-grid .wve-standard-card h2 a:hover,
.wve-frame-archive .wve-post-grid .wve-standard-card h2 a:focus-visible,
.wve-related .wve-post-grid .wve-standard-card h2 a:hover,
.wve-related .wve-post-grid .wve-standard-card h2 a:focus-visible {
	color: #111827 !important;
}

.wve-standard-card__byline {
	margin-top: auto;
	padding-top: 15px;
}

html[data-wve-theme="dark"] .wve-frame-archive .wve-post-grid,
html[data-wve-theme="dark"] .wve-related .wve-post-grid {
	background: #202124;
}

html[data-wve-theme="dark"] .wve-post-grid .wve-standard-card,
html[data-wve-theme="dark"] .wve-post-grid .wve-standard-card:hover,
html[data-wve-theme="dark"] .wve-post-grid .wve-standard-card .wve-editorial-card__content {
	background: #111315;
}

html[data-wve-theme="dark"] .wve-frame-archive .wve-post-grid .wve-standard-card h2 a,
html[data-wve-theme="dark"] .wve-frame-archive .wve-post-grid .wve-standard-card h2 a:link,
html[data-wve-theme="dark"] .wve-frame-archive .wve-post-grid .wve-standard-card h2 a:visited,
html[data-wve-theme="dark"] .wve-related .wve-post-grid .wve-standard-card h2 a,
html[data-wve-theme="dark"] .wve-related .wve-post-grid .wve-standard-card h2 a:link,
html[data-wve-theme="dark"] .wve-related .wve-post-grid .wve-standard-card h2 a:visited {
	color: #F1F3F4 !important;
}

html[data-wve-theme="dark"] .wve-standard-card__byline {
	color: #B8C0CB;
}

@media (max-width: 620px) {
	.wve-post-grid .wve-standard-card .wve-editorial-card__content {
		min-height: 126px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wve-post-grid .wve-standard-card__image-link img {
		transition: none;
	}
}

/* End The Blog Edit Editorial v0.3.52 */

/* =========================================================
   The Blog Edit Editorial v0.3.53
   Clean incomplete archive-card rows
   ========================================================= */

/*
 * Put the divider on cards that exist instead of painting it across the
 * entire grid. This prevents an incomplete archive row from leaving a large
 * grey field beside its final card.
 */
.wve-frame-archive .wve-post-grid,
.wve-related .wve-post-grid,
html[data-wve-theme="dark"] .wve-frame-archive .wve-post-grid,
html[data-wve-theme="dark"] .wve-related .wve-post-grid {
	gap: 0;
	padding: 0;
	background: transparent;
}

.wve-frame-archive .wve-post-grid .wve-standard-card,
.wve-frame-archive .wve-post-grid .wve-standard-card:hover,
.wve-related .wve-post-grid .wve-standard-card,
.wve-related .wve-post-grid .wve-standard-card:hover {
	border: 1px solid #D6DAE0;
}

html[data-wve-theme="dark"] .wve-frame-archive .wve-post-grid .wve-standard-card,
html[data-wve-theme="dark"] .wve-frame-archive .wve-post-grid .wve-standard-card:hover,
html[data-wve-theme="dark"] .wve-related .wve-post-grid .wve-standard-card,
html[data-wve-theme="dark"] .wve-related .wve-post-grid .wve-standard-card:hover {
	border-color: #202124;
}

@media (min-width: 1101px) {
	.wve-frame-archive .wve-post-grid .wve-standard-card:not(:nth-child(3n + 1)),
	.wve-related .wve-post-grid .wve-standard-card:not(:nth-child(3n + 1)) {
		border-left: 0;
	}

	.wve-frame-archive .wve-post-grid .wve-standard-card:nth-child(n + 4),
	.wve-related .wve-post-grid .wve-standard-card:nth-child(n + 4) {
		border-top: 0;
	}
}

@media (min-width: 621px) and (max-width: 1100px) {
	.wve-frame-archive .wve-post-grid .wve-standard-card:nth-child(2n),
	.wve-related .wve-post-grid .wve-standard-card:nth-child(2n) {
		border-left: 0;
	}

	.wve-frame-archive .wve-post-grid .wve-standard-card:nth-child(n + 3),
	.wve-related .wve-post-grid .wve-standard-card:nth-child(n + 3) {
		border-top: 0;
	}
}

@media (max-width: 620px) {
	.wve-frame-archive .wve-post-grid .wve-standard-card:nth-child(n + 2),
	.wve-related .wve-post-grid .wve-standard-card:nth-child(n + 2) {
		border-top: 0;
	}
}

/* End The Blog Edit Editorial v0.3.53 */

/* =========================================================
   The Blog Edit Editorial v0.3.54
   White archive surfaces
   ========================================================= */

/*
 * Remove the remaining light-grey canvas from every archive-style view.
 * Dark mode keeps its established layered surfaces.
 */
html:not([data-wve-theme="dark"]) body.archive,
html:not([data-wve-theme="dark"]) body.search,
html:not([data-wve-theme="dark"]) body.blog,
html:not([data-wve-theme="dark"]) body.archive #page,
html:not([data-wve-theme="dark"]) body.search #page,
html:not([data-wve-theme="dark"]) body.blog #page,
html:not([data-wve-theme="dark"]) .wve-frame-archive,
html:not([data-wve-theme="dark"]) .wve-frame-archive__header,
html:not([data-wve-theme="dark"]) .wve-frame-archive__feed {
	background: #FFFFFF;
}

/* End The Blog Edit Editorial v0.3.54 */

/* =========================================================
   The Blog Edit Editorial v0.3.55
   Footer disclaimer overflow correction
   ========================================================= */

/*
 * The bottom-footer copyright row intentionally stays on one line, but that
 * earlier rule also reached the longer disclaimer paragraph. Let the
 * disclaimer wrap within its 1100px measure so it cannot widen the page.
 */
.wve-frame-footer__bottom .wve-frame-footer__disclaimer p {
	overflow-wrap: anywhere;
	white-space: normal;
}

/* End The Blog Edit Editorial v0.3.55 */

/* =========================================================
   The Blog Edit Editorial v0.3.56
   Tighter desktop single-post opening space
   ========================================================= */

/*
 * Reduce the outer gap beneath the site header without disturbing the
 * breadcrumb-to-title rhythm or the compact tablet and mobile layouts.
 */
@media (min-width: 901px) {
	body.single-post .wve-single {
		padding-top: clamp(18px, 2vw, 28px);
	}
}

/* End The Blog Edit Editorial v0.3.56 */

/* =========================================================
   The Blog Edit Editorial v0.3.57
   Open editorial homepage list with retained sticky sidebar
   ========================================================= */

/*
 * Replace the joined, bordered article rows with a more spacious magazine
 * list while leaving the existing sticky sidebar column and widget area intact.
 */
.wve-home-more-layout--list-sidebar .wve-lux-post-list {
	gap: clamp(30px, 3.5vw, 46px);
	padding: 0;
	background: transparent;
}

.wve-home-more-layout--list-sidebar .wve-home-card--list,
.wve-home-more-layout--list-sidebar .wve-home-card--list:hover {
	grid-template-columns: minmax(270px, 40%) minmax(0, 1fr);
	min-height: 0;
	overflow: visible;
	background: transparent;
}

.wve-home-more-layout--list-sidebar .wve-home-card--list .wve-home-card__media {
	height: auto;
	min-height: 0;
	aspect-ratio: 3 / 2;
	background: #F1F3F4;
}

.wve-home-more-layout--list-sidebar .wve-home-card--list .wve-editorial-card__content {
	display: block;
	min-height: 0;
	padding: 3px 0 3px clamp(24px, 3vw, 38px);
	align-self: center;
}

.wve-home-more-layout--list-sidebar .wve-home-card--list h2 {
	margin: 0;
	font-size: clamp(24px, 2.05vw, 31px);
	font-weight: 650 !important;
	line-height: 1.08;
	letter-spacing: -0.035em;
}

.wve-home-card__byline--list {
	margin-top: 13px;
	padding-top: 0;
	gap: 7px;
	color: #7A838E;
	font-size: 11px;
	font-weight: 650;
	letter-spacing: 0.045em;
	line-height: 1.35;
	text-transform: uppercase;
}

.wve-home-card__byline--list a,
.wve-home-card__byline--list a:link,
.wve-home-card__byline--list a:visited {
	text-decoration: none;
}

.wve-home-card__byline--list a:hover,
.wve-home-card__byline--list a:focus-visible {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.wve-home-more-layout--list-sidebar .wve-home-card__summary {
	margin-top: 17px;
	color: #49525D;
	font-size: 15px;
	line-height: 1.58;
	-webkit-line-clamp: 3;
}

.wve-home-more-layout--list-sidebar .wve-home-card__summary > span {
	margin-right: 8px;
}

/* Keep the category label refined and less dominant on the larger image. */
.wve-home-more-layout--list-sidebar .wve-home-card__category,
.wve-home-more-layout--list-sidebar .wve-home-card__category:link,
.wve-home-more-layout--list-sidebar .wve-home-card__category:visited {
	top: 12px;
	left: 12px;
	padding: 6px 9px 5px;
	font-size: 9px;
	letter-spacing: 0.065em;
}

html[data-wve-theme="dark"] .wve-home-more-layout--list-sidebar .wve-home-card--list,
html[data-wve-theme="dark"] .wve-home-more-layout--list-sidebar .wve-home-card--list:hover,
html[data-wve-theme="dark"] .wve-home-more-layout--list-sidebar .wve-home-card--list .wve-editorial-card__content {
	background: transparent;
}

html[data-wve-theme="dark"] .wve-home-card__byline--list {
	color: #AEB7C2;
}

html[data-wve-theme="dark"] .wve-home-more-layout--list-sidebar .wve-home-card__summary {
	color: #D2D8E0;
}

@media (max-width: 1050px) and (min-width: 901px) {
	.wve-home-more-layout--list-sidebar {
		grid-template-columns: minmax(0, 1fr) minmax(230px, 270px);
		gap: 34px;
	}

	.wve-home-more-layout--list-sidebar .wve-home-card--list {
		grid-template-columns: minmax(230px, 39%) minmax(0, 1fr);
	}

	.wve-home-more-layout--list-sidebar .wve-home-card--list h2 {
		font-size: clamp(22px, 2.35vw, 27px);
	}
}

@media (max-width: 900px) {
	.wve-home-more-layout--list-sidebar .wve-home-card--list,
	.wve-home-more-layout--list-sidebar .wve-home-card--list:hover {
		grid-template-columns: minmax(250px, 38%) minmax(0, 1fr);
	}

	.wve-home-more-layout--list-sidebar .wve-home-card--list .wve-editorial-card__content {
		padding-left: 26px;
	}
}

@media (max-width: 680px) {
	.wve-home-more-layout--list-sidebar .wve-lux-post-list {
		gap: 32px;
	}

	.wve-home-more-layout--list-sidebar .wve-home-card--list,
	.wve-home-more-layout--list-sidebar .wve-home-card--list:hover {
		grid-template-columns: 1fr;
	}

	.wve-home-more-layout--list-sidebar .wve-home-card--list .wve-home-card__media {
		aspect-ratio: 16 / 10;
	}

	.wve-home-more-layout--list-sidebar .wve-home-card--list .wve-editorial-card__content {
		padding: 18px 0 0;
	}

	.wve-home-more-layout--list-sidebar .wve-home-card--list h2 {
		font-size: clamp(23px, 7vw, 28px);
	}

	.wve-home-more-layout--list-sidebar .wve-home-card__summary {
		margin-top: 14px;
	}
}

/* End The Blog Edit Editorial v0.3.57 */


/* =========================================================
   The Blog Edit Editorial v0.3.58
   Homepage editorial-list H2 correction
   ========================================================= */

/* Keep every More from The Blog Edit list title at the requested 22px. */
.wve-home-more-layout--list-sidebar .wve-home-card--list h2,
.wve-home-more-layout--list-sidebar .wve-home-card--list:hover h2 {
	font-size: 22px;
}

@media (max-width: 1050px) and (min-width: 901px) {
	.wve-home-more-layout--list-sidebar .wve-home-card--list h2 {
		font-size: 22px;
	}
}

@media (max-width: 680px) {
	.wve-home-more-layout--list-sidebar .wve-home-card--list h2 {
		font-size: 22px;
	}
}

/* End The Blog Edit Editorial v0.3.58 */

/* =========================================================
   The Blog Edit Editorial v0.3.62
   Reliable block-widget output and portrait sidebar banners
   ========================================================= */

/* Preserve the uploaded banner's natural portrait proportions. */
.wve-home-more-sidebar__widget .wp-block-image img,
.wve-home-more-sidebar__widget.widget_media_image img,
.wve-home-more-sidebar__widget .wp-block-image > a img,
.wve-home-more-sidebar__widget.widget_media_image > a img {
	width: 100%;
	height: auto;
	aspect-ratio: auto;
	object-fit: contain;
}

/* Remove default block spacing that can make an image look misaligned. */
.wve-home-more-sidebar__widget.widget_block,
.wve-home-more-sidebar__widget .wp-block-image,
.wve-home-more-sidebar__widget .wp-block-image figure {
	margin: 0;
	padding: 0;
}

/* End The Blog Edit Editorial v0.3.62 */

/* =========================================================
   The Blog Edit Editorial v0.3.63
   Spaced one-lead and two-stacked-story homepage hero
   ========================================================= */

.wve-feature-stack-hero {
	padding: clamp(20px, 2.8vw, 38px) 0;
	background: var(--wve-frame-surface);
}

.wve-feature-stack-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(330px, 0.85fr);
	gap: clamp(14px, 1.5vw, 20px);
	height: clamp(560px, 47vw, 650px);
	align-items: stretch;
}

.wve-feature-stack-story,
.wve-feature-stack-story[class*="grid-"] {
	position: relative;
	width: 100% !important;
	max-width: none !important;
	min-width: 0;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden;
	float: none !important;
	border: 1px solid #D6DAE0;
	background: #FFFFFF;
	color: #202124;
}

.wve-feature-stack-story--lead {
	height: 100%;
	min-height: 0;
}

.wve-feature-stack-story__media,
.wve-feature-stack-story__media img,
.wve-feature-stack-story__placeholder {
	display: block;
	width: 100%;
	height: 100%;
}

.wve-feature-stack-story__media img {
	object-fit: cover;
	transform: scale(1.001);
	transition: transform 340ms ease;
}

.wve-feature-stack-story:hover .wve-feature-stack-story__media img {
	transform: scale(1.025);
}

.wve-feature-stack-story__placeholder {
	background:
		radial-gradient(circle at 74% 24%, rgba(218, 220, 224, 0.56), transparent 28%),
		linear-gradient(145deg, #F1F3F4, #111827 72%);
}

.wve-feature-stack-story--lead > .wve-feature-stack-story__media {
	position: absolute;
	inset: 0;
}

.wve-feature-stack-story--lead::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(17, 19, 21, 0.03) 28%, rgba(17, 19, 21, 0.82) 100%);
	content: "";
	pointer-events: none;
}

.wve-feature-stack-story__category,
.wve-feature-stack-story__category:link,
.wve-feature-stack-story__category:visited {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 4;
	display: inline-flex;
	padding: 5px 8px 4px;
	background: #202124;
	color: #FFFFFF !important;
	font-size: 9px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.wve-feature-stack-story__category:hover,
.wve-feature-stack-story__category:focus-visible {
	background: #111827;
}

.wve-feature-stack-story__lead-content {
	position: absolute;
	right: clamp(22px, 3vw, 38px);
	bottom: clamp(22px, 3vw, 34px);
	left: clamp(22px, 3vw, 38px);
	z-index: 3;
}

.wve-feature-stack-story__lead-content h2 {
	max-width: 720px;
	margin: 0 0 14px;
	font-family: var(--wve-font);
	font-size: clamp(32px, 3.05vw, 46px);
	font-weight: 600 !important;
	line-height: 1.16;
	letter-spacing: -0.035em;
	text-wrap: balance;
}

.wve-feature-stack-story__lead-content h2 a,
.wve-feature-stack-story__lead-content h2 a:link,
.wve-feature-stack-story__lead-content h2 a:visited {
	padding: 0.01em 0.16em 0.035em;
	background: #202124;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	color: #FFFFFF !important;
}

.wve-feature-stack-story__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.4;
}

.wve-feature-stack-story__lead-content .wve-feature-stack-story__meta,
.wve-feature-stack-story__lead-content .wve-feature-stack-story__meta a {
	color: #FFFFFF !important;
}

.wve-feature-stack-story__meta a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.wve-feature-stack-hero__supporting {
	display: grid;
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: clamp(14px, 1.5vw, 20px);
	min-width: 0;
}

.wve-feature-stack-story--support {
	display: grid;
	grid-template-rows: minmax(0, 1.2fr) auto;
}

.wve-feature-stack-story__support-media {
	position: relative;
	min-height: 0;
	overflow: hidden;
	background: #F1F3F4;
}

.wve-feature-stack-story__content {
	display: flex;
	min-height: 116px;
	padding: 14px 16px 15px;
	flex-direction: column;
}

.wve-feature-stack-story__content h2 {
	margin: 0;
	font-family: var(--wve-font);
	font-size: 20px;
	font-weight: 600 !important;
	line-height: 1.12;
	letter-spacing: -0.025em;
}

.wve-feature-stack-story__content h2 a,
.wve-feature-stack-story__content h2 a:link,
.wve-feature-stack-story__content h2 a:visited {
	color: #202124 !important;
}

.wve-feature-stack-story__content .wve-feature-stack-story__meta {
	margin-top: auto;
	padding-top: 12px;
	color: #68717C;
}

html[data-wve-theme="dark"] .wve-feature-stack-story {
	border-color: #202124;
	background: #111315;
	color: #F1F3F4;
}

html[data-wve-theme="dark"] .wve-feature-stack-story__content h2 a {
	color: #F1F3F4 !important;
}

html[data-wve-theme="dark"] .wve-feature-stack-story__content .wve-feature-stack-story__meta {
	color: #B8C0CB;
}

@media (max-width: 900px) {
	.wve-feature-stack-hero__grid {
		grid-template-columns: 1fr;
		height: auto;
	}

	.wve-feature-stack-story--lead {
		min-height: 500px;
	}

	.wve-feature-stack-hero__supporting {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: none;
	}

	.wve-feature-stack-story--support {
		min-height: 330px;
	}
}

@media (max-width: 620px) {
	.wve-feature-stack-hero {
		padding: 12px 0 20px;
	}

	.wve-feature-stack-hero .wve-shell {
		width: min(calc(100% - 24px), var(--wve-frame-shell));
	}

	.wve-feature-stack-story--lead {
		min-height: 430px;
	}

	.wve-feature-stack-story__lead-content h2 {
		font-size: clamp(30px, 9vw, 40px);
	}

	.wve-feature-stack-hero__supporting {
		grid-template-columns: 1fr;
	}

	.wve-feature-stack-story--support {
		min-height: 0;
	}

	.wve-feature-stack-story__support-media {
		aspect-ratio: 16 / 9;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wve-feature-stack-story__media img {
		transition: none;
	}
}

/* End The Blog Edit Editorial v0.3.63 */

/* The Blog Edit Editorial v0.3.64 refines the spaced feature hero height and title treatment. */

/* =========================================================
   The Blog Edit Editorial v0.3.65
   Spaced feature lead card with standfirst panel
   ========================================================= */

/* Give the hero a definite finish before the article feed begins. */
.wve-feature-stack-hero {
	padding-bottom: clamp(42px, 4.5vw, 64px);
}

/* A shorter, self-contained hero prevents the following post grid from crowding it. */
.wve-feature-stack-hero__grid {
	height: clamp(520px, 43vw, 590px);
}

/* The lead story is now an image above a dedicated editorial text panel. */
.wve-feature-stack-story--lead {
	display: grid;
	grid-template-rows: minmax(0, 1fr) auto;
	background: #111827;
}

.wve-feature-stack-story--lead > .wve-feature-stack-story__media {
	position: relative;
	inset: auto;
	min-height: 0;
	overflow: hidden;
}

.wve-feature-stack-story--lead::after {
	display: none;
}

.wve-feature-stack-story__lead-content {
	position: relative;
	right: auto;
	bottom: auto;
	left: auto;
	z-index: 2;
	display: flex;
	min-height: 188px;
	padding: clamp(20px, 2.2vw, 28px) clamp(22px, 2.5vw, 32px) clamp(21px, 2.4vw, 30px);
	flex-direction: column;
	background: #111827;
	color: #202124;
}

.wve-feature-stack-story__lead-content h2 {
	max-width: 760px;
	margin: 0 0 10px;
	font-size: clamp(30px, 2.65vw, 40px);
	line-height: 1.08;
	letter-spacing: -0.035em;
}

.wve-feature-stack-story__lead-content h2 a,
.wve-feature-stack-story__lead-content h2 a:link,
.wve-feature-stack-story__lead-content h2 a:visited {
	padding: 0;
	background: transparent;
	color: #202124 !important;
}

.wve-feature-stack-story__summary {
	display: -webkit-box;
	max-width: 720px;
	margin: 0 0 14px;
	overflow: hidden;
	color: #202124;
	font-size: clamp(14px, 1.15vw, 16px);
	font-weight: 500;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.wve-feature-stack-story__lead-content .wve-feature-stack-story__meta,
.wve-feature-stack-story__lead-content .wve-feature-stack-story__meta a {
	color: #202124 !important;
}

.wve-feature-stack-story__lead-content .wve-feature-stack-story__meta {
	margin-top: auto;
	padding-top: 2px;
}

/* Keep the light-blue lead panel consistent in dark mode as a brand feature. */
html[data-wve-theme="dark"] .wve-feature-stack-story--lead,
html[data-wve-theme="dark"] .wve-feature-stack-story__lead-content {
	background: #111827;
	color: #202124;
}

html[data-wve-theme="dark"] .wve-feature-stack-story__lead-content h2 a,
html[data-wve-theme="dark"] .wve-feature-stack-story__lead-content .wve-feature-stack-story__meta,
html[data-wve-theme="dark"] .wve-feature-stack-story__lead-content .wve-feature-stack-story__meta a {
	color: #202124 !important;
}

html[data-wve-theme="dark"] .wve-feature-stack-story__summary {
	color: #202124;
}

@media (max-width: 900px) {
	.wve-feature-stack-hero {
		padding-bottom: 44px;
	}

	.wve-feature-stack-story--lead {
		min-height: 0;
		grid-template-rows: auto auto;
	}

	.wve-feature-stack-story--lead > .wve-feature-stack-story__media {
		aspect-ratio: 16 / 9;
	}

	.wve-feature-stack-story__lead-content {
		min-height: 0;
	}
}

@media (max-width: 620px) {
	.wve-feature-stack-hero {
		padding-bottom: 34px;
	}

	.wve-feature-stack-story__lead-content {
		padding: 20px;
	}

	.wve-feature-stack-story__lead-content h2 {
		font-size: clamp(28px, 8.4vw, 36px);
	}

	.wve-feature-stack-story__summary {
		-webkit-line-clamp: 3;
	}
}

/* End The Blog Edit Editorial v0.3.65 */

/* =========================================================
   The Blog Edit Editorial v0.3.66
   Clean editorial card hero: one lead + two stacked
   ========================================================= */

.wve-feature-stack-hero {
	padding: clamp(24px, 3vw, 42px) 0 clamp(38px, 4vw, 56px);
	background: #202124;
}

.wve-feature-stack-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.58fr) minmax(320px, 0.82fr);
	gap: clamp(16px, 1.65vw, 22px);
	height: clamp(560px, 43vw, 620px);
	align-items: stretch;
}

.wve-feature-stack-story,
.wve-feature-stack-story[class*="grid-"] {
	position: relative;
	display: grid;
	width: 100% !important;
	max-width: none !important;
	min-width: 0;
	min-height: 0;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden;
	float: none !important;
	border: 0;
	background: #FFFFFF;
	box-shadow: none;
	color: #202124;
}

.wve-feature-stack-story--lead {
	grid-template-rows: minmax(0, 1fr) auto;
	background: #FFFFFF;
}

.wve-feature-stack-story--lead > .wve-feature-stack-story__media,
.wve-feature-stack-story--support > .wve-feature-stack-story__media {
	position: relative;
	inset: auto;
	min-height: 0;
	overflow: hidden;
	background: #F1F3F4;
}

.wve-feature-stack-story--lead::after {
	display: none;
}

.wve-feature-stack-story__media,
.wve-feature-stack-story__media img,
.wve-feature-stack-story__placeholder {
	display: block;
	width: 100%;
	height: 100%;
}

.wve-feature-stack-story__media img {
	object-fit: cover;
	transform: scale(1.001);
	transition: transform 340ms ease;
}

.wve-feature-stack-story:hover .wve-feature-stack-story__media img {
	transform: scale(1.018);
}

.wve-feature-stack-story__category,
.wve-feature-stack-story__category:link,
.wve-feature-stack-story__category:visited {
	position: static;
	display: inline-flex;
	align-self: flex-start;
	width: auto;
	margin: 0 0 9px;
	padding: 0;
	background: transparent;
	color: #111827 !important;
	font-size: 10px;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.wve-feature-stack-story__category:hover,
.wve-feature-stack-story__category:focus-visible {
	background: transparent;
	color: #202124 !important;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.wve-feature-stack-story__lead-content {
	position: relative;
	right: auto;
	bottom: auto;
	left: auto;
	z-index: 2;
	display: flex;
	min-height: 190px;
	padding: clamp(22px, 2.25vw, 30px) clamp(24px, 2.6vw, 34px) clamp(23px, 2.45vw, 31px);
	flex-direction: column;
	background: #FFFFFF;
	color: #202124;
}

.wve-feature-stack-story__lead-content h2 {
	max-width: 760px;
	margin: 0 0 10px;
	font-family: var(--wve-font);
	font-size: clamp(30px, 2.55vw, 39px);
	font-weight: 600 !important;
	line-height: 1.07;
	letter-spacing: -0.035em;
	text-wrap: balance;
}

.wve-feature-stack-story__lead-content h2 a,
.wve-feature-stack-story__lead-content h2 a:link,
.wve-feature-stack-story__lead-content h2 a:visited {
	padding: 0;
	background: transparent;
	color: #202124 !important;
}

.wve-feature-stack-story__summary {
	display: -webkit-box;
	max-width: 740px;
	margin: 0 0 14px;
	overflow: hidden;
	color: #4B5563;
	font-size: clamp(14px, 1.08vw, 15.5px);
	font-weight: 400;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.wve-feature-stack-story__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px;
	color: #68717C;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.4;
}

.wve-feature-stack-story__lead-content .wve-feature-stack-story__meta,
.wve-feature-stack-story__lead-content .wve-feature-stack-story__meta a {
	color: #68717C !important;
}

.wve-feature-stack-story__lead-content .wve-feature-stack-story__meta {
	margin-top: auto;
	padding-top: 1px;
}

.wve-feature-stack-story__meta a {
	color: inherit;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.wve-feature-stack-hero__supporting {
	display: grid;
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: clamp(16px, 1.65vw, 22px);
	min-width: 0;
	min-height: 0;
}

.wve-feature-stack-story--support {
	grid-template-rows: minmax(0, 1fr) auto;
	min-height: 0;
}

.wve-feature-stack-story__support-media {
	display: contents;
}

.wve-feature-stack-story__content {
	display: flex;
	min-height: 116px;
	padding: 15px 18px 16px;
	flex-direction: column;
	background: #FFFFFF;
}

.wve-feature-stack-story__content .wve-feature-stack-story__category {
	margin-bottom: 7px;
}

.wve-feature-stack-story__content h2 {
	margin: 0;
	font-family: var(--wve-font);
	font-size: clamp(18px, 1.45vw, 21px);
	font-weight: 600 !important;
	line-height: 1.13;
	letter-spacing: -0.025em;
}

.wve-feature-stack-story__content h2 a,
.wve-feature-stack-story__content h2 a:link,
.wve-feature-stack-story__content h2 a:visited {
	color: #202124 !important;
}

.wve-feature-stack-story__content .wve-feature-stack-story__meta {
	margin-top: auto;
	padding-top: 10px;
	color: #68717C;
}

html[data-wve-theme="dark"] .wve-feature-stack-hero {
	background: #111315;
}

html[data-wve-theme="dark"] .wve-feature-stack-story,
html[data-wve-theme="dark"] .wve-feature-stack-story--lead,
html[data-wve-theme="dark"] .wve-feature-stack-story__lead-content,
html[data-wve-theme="dark"] .wve-feature-stack-story__content {
	background: #F1F3F4;
	color: #202124;
}

html[data-wve-theme="dark"] .wve-feature-stack-story__lead-content h2 a,
html[data-wve-theme="dark"] .wve-feature-stack-story__content h2 a {
	color: #202124 !important;
}

html[data-wve-theme="dark"] .wve-feature-stack-story__summary,
html[data-wve-theme="dark"] .wve-feature-stack-story__meta,
html[data-wve-theme="dark"] .wve-feature-stack-story__lead-content .wve-feature-stack-story__meta,
html[data-wve-theme="dark"] .wve-feature-stack-story__lead-content .wve-feature-stack-story__meta a,
html[data-wve-theme="dark"] .wve-feature-stack-story__content .wve-feature-stack-story__meta {
	color: #68717C !important;
}

@media (max-width: 900px) {
	.wve-feature-stack-hero__grid {
		grid-template-columns: 1fr;
		height: auto;
	}

	.wve-feature-stack-story--lead {
		grid-template-rows: auto auto;
	}

	.wve-feature-stack-story--lead > .wve-feature-stack-story__media {
		aspect-ratio: 16 / 9;
	}

	.wve-feature-stack-story__lead-content {
		min-height: 0;
	}

	.wve-feature-stack-hero__supporting {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: none;
	}

	.wve-feature-stack-story--support {
		grid-template-rows: auto auto;
	}

	.wve-feature-stack-story--support > .wve-feature-stack-story__media {
		aspect-ratio: 16 / 9;
	}
}

@media (max-width: 620px) {
	.wve-feature-stack-hero {
		padding: 14px 0 32px;
	}

	.wve-feature-stack-hero .wve-shell {
		width: min(calc(100% - 24px), var(--wve-frame-shell));
	}

	.wve-feature-stack-story__lead-content {
		padding: 20px;
	}

	.wve-feature-stack-story__lead-content h2 {
		font-size: clamp(28px, 8.2vw, 35px);
	}

	.wve-feature-stack-story__summary {
		-webkit-line-clamp: 3;
	}

	.wve-feature-stack-hero__supporting {
		grid-template-columns: 1fr;
	}

	.wve-feature-stack-story__content {
		min-height: 0;
		padding: 16px 18px 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wve-feature-stack-story__media img {
		transition: none;
	}
}

/* End The Blog Edit Editorial v0.3.66 */


/* =========================================================
   The Blog Edit Editorial v0.3.67
   Image-overlay mosaic hero: one lead + three stories
   ========================================================= */

.wve-overlay-mosaic-hero {
	padding: clamp(18px, 2.2vw, 30px) 0 clamp(34px, 4vw, 54px);
	background: transparent;
}

.wve-overlay-mosaic-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 5px;
	height: clamp(470px, 40vw, 590px);
	min-height: 0;
}

.wve-overlay-mosaic-hero__right {
	display: grid;
	grid-template-rows: minmax(0, 1.33fr) minmax(0, 1fr);
	gap: 5px;
	min-width: 0;
	min-height: 0;
}

.wve-overlay-mosaic-hero__small-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 5px;
	min-width: 0;
	min-height: 0;
}

.wve-overlay-mosaic-story,
.wve-overlay-mosaic-story[class*="grid-"] {
	position: relative;
	width: 100% !important;
	max-width: none !important;
	min-width: 0;
	min-height: 0;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden;
	float: none !important;
	background: #202124;
	isolation: isolate;
}

.wve-overlay-mosaic-story__media,
.wve-overlay-mosaic-story__media img,
.wve-overlay-mosaic-story__placeholder {
	display: block;
	width: 100%;
	height: 100%;
}

.wve-overlay-mosaic-story__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.wve-overlay-mosaic-story__media img {
	object-fit: cover;
	transform: scale(1.001);
	transition: transform 420ms ease;
}

.wve-overlay-mosaic-story:hover .wve-overlay-mosaic-story__media img {
	transform: scale(1.025);
}

.wve-overlay-mosaic-story__placeholder {
	background: linear-gradient(145deg, #202124, #202124);
}

.wve-overlay-mosaic-story__shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(17, 19, 21, 0.02) 28%, rgba(17, 19, 21, 0.23) 55%, rgba(17, 19, 21, 0.94) 100%);
	pointer-events: none;
}

.wve-overlay-mosaic-story--small .wve-overlay-mosaic-story__shade {
	background: linear-gradient(180deg, rgba(17, 19, 21, 0.03) 24%, rgba(17, 19, 21, 0.38) 56%, rgba(17, 19, 21, 0.96) 100%);
}

.wve-overlay-mosaic-story__content {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	padding: clamp(18px, 2.1vw, 30px);
	color: #FFFFFF;
}

.wve-overlay-mosaic-story--wide .wve-overlay-mosaic-story__content {
	padding: clamp(17px, 1.8vw, 25px);
}

.wve-overlay-mosaic-story--small .wve-overlay-mosaic-story__content {
	padding: clamp(13px, 1.35vw, 18px);
}

.wve-overlay-mosaic-story__category,
.wve-overlay-mosaic-story__category:link,
.wve-overlay-mosaic-story__category:visited {
	display: inline-flex;
	margin: 0 0 9px;
	padding: 5px 8px 4px;
	background: rgba(17, 19, 21, 0.86);
	color: #FFFFFF !important;
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.wve-overlay-mosaic-story__category:hover,
.wve-overlay-mosaic-story__category:focus-visible {
	background: #111827;
	color: #202124 !important;
}

.wve-overlay-mosaic-story h2 {
	max-width: 95%;
	margin: 0;
	font-family: var(--wve-font);
	font-size: clamp(29px, 3.1vw, 47px);
	font-weight: 500 !important;
	line-height: 1.08;
	letter-spacing: -0.035em;
	text-wrap: balance;
}

.wve-overlay-mosaic-story--wide h2 {
	max-width: 88%;
	font-size: clamp(22px, 2vw, 31px);
	line-height: 1.12;
}

.wve-overlay-mosaic-story--small h2 {
	max-width: 100%;
	font-size: clamp(16px, 1.25vw, 20px);
	font-weight: 600 !important;
	line-height: 1.17;
	letter-spacing: -0.02em;
}

.wve-overlay-mosaic-story h2 a,
.wve-overlay-mosaic-story h2 a:link,
.wve-overlay-mosaic-story h2 a:visited {
	color: #FFFFFF !important;
	text-decoration: none;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.wve-overlay-mosaic-story h2 a:hover,
.wve-overlay-mosaic-story h2 a:focus-visible {
	color: #F1F3F4 !important;
}

.wve-overlay-mosaic-story__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px;
	margin-top: 13px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 11px;
	font-weight: 600;
	line-height: 1.35;
}

.wve-overlay-mosaic-story__meta a,
.wve-overlay-mosaic-story__meta a:link,
.wve-overlay-mosaic-story__meta a:visited {
	color: #FFFFFF !important;
	text-decoration: underline;
	text-underline-offset: 2px;
}

html[data-wve-theme="dark"] .wve-overlay-mosaic-hero {
	background: transparent;
}

@media (max-width: 900px) {
	.wve-overlay-mosaic-hero__grid {
		grid-template-columns: 1fr;
		height: auto;
	}

	.wve-overlay-mosaic-story--lead {
		aspect-ratio: 16 / 10;
	}

	.wve-overlay-mosaic-hero__right {
		grid-template-rows: none;
	}

	.wve-overlay-mosaic-story--wide {
		aspect-ratio: 16 / 8;
	}

	.wve-overlay-mosaic-hero__small-grid {
		min-height: 240px;
	}

	.wve-overlay-mosaic-story--small {
		aspect-ratio: 4 / 3;
	}
}

@media (max-width: 620px) {
	.wve-overlay-mosaic-hero {
		padding: 12px 0 32px;
	}

	.wve-overlay-mosaic-hero .wve-shell {
		width: min(calc(100% - 24px), var(--wve-frame-shell));
	}

	.wve-overlay-mosaic-story--lead,
	.wve-overlay-mosaic-story--wide,
	.wve-overlay-mosaic-story--small {
		aspect-ratio: 4 / 3;
	}

	.wve-overlay-mosaic-hero__small-grid {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.wve-overlay-mosaic-story__content,
	.wve-overlay-mosaic-story--wide .wve-overlay-mosaic-story__content,
	.wve-overlay-mosaic-story--small .wve-overlay-mosaic-story__content {
		padding: 18px;
	}

	.wve-overlay-mosaic-story h2,
	.wve-overlay-mosaic-story--wide h2,
	.wve-overlay-mosaic-story--small h2 {
		max-width: 100%;
		font-size: clamp(22px, 7.3vw, 31px);
		line-height: 1.11;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wve-overlay-mosaic-story__media img {
		transition: none;
	}
}

/* End The Blog Edit Editorial v0.3.67 */


/* =========================================================
   The Blog Edit Editorial v0.3.68
   Overlay mosaic background refinement
   ========================================================= */

/* The mosaic now sits directly on the page background with no coloured hero field. */
.wve-overlay-mosaic-hero,
html[data-wve-theme="dark"] .wve-overlay-mosaic-hero {
	background: transparent;
}

/* End The Blog Edit Editorial v0.3.68 */


/* =========================================================
   The Blog Edit Editorial v0.3.69
   Overlay mosaic mobile headline sizing
   ========================================================= */

@media (max-width: 620px) {
	/* Keep the lead headline unchanged; size the other three stories consistently. */
	.wve-overlay-mosaic-story--wide h2,
	.wve-overlay-mosaic-story--small h2 {
		font-size: 22px;
	}
}

/* End The Blog Edit Editorial v0.3.69 */

/* =========================================================
   The Blog Edit Editorial v0.3.72
   Category-led homepage below the mosaic hero
   ========================================================= */

.wve-home-categories {
	padding: clamp(16px, 2vw, 28px) 0 clamp(58px, 7vw, 96px);
	background: #FFFFFF;
}

html[data-wve-theme="dark"] .wve-home-categories {
	background: var(--wve-frame-bg);
}

.wve-home-category-section {
	padding: clamp(44px, 5.3vw, 72px) 0;
	border-top: 1px solid #D9DEE5;
}

.wve-home-category-section:first-child {
	border-top: 0;
	padding-top: clamp(24px, 3vw, 38px);
}

.wve-home-category-section__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 34px;
	margin-bottom: 28px;
}

.wve-home-category-section__header > div {
	min-width: 0;
}

.wve-home-category-section__eyebrow {
	margin: 0 0 8px;
	color: #71879B;
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.wve-home-category-section__header h2 {
	margin: 0;
	color: #202124;
	font-family: var(--wve-font);
	font-size: clamp(31px, 3vw, 42px);
	font-weight: 650;
	line-height: 1.02;
	letter-spacing: -0.045em;
}

.wve-home-category-section__description {
	max-width: 680px;
	margin: 10px 0 0;
	color: #65707D;
	font-size: 15px;
	line-height: 1.55;
}

.wve-home-category-section__top-link,
.wve-home-category-section__top-link:link,
.wve-home-category-section__top-link:visited {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 8px;
	padding-bottom: 4px;
	border-bottom: 1px solid #AEB9C4;
	color: #202124 !important;
	font-size: 12px;
	font-weight: 750;
	line-height: 1.2;
	letter-spacing: 0.025em;
	text-decoration: none;
}

.wve-home-category-section__top-link:hover,
.wve-home-category-section__top-link:focus-visible {
	border-color: #202124;
	color: #111827 !important;
}

.wve-home-category-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(22px, 2.5vw, 34px);
}

/*
 * GeneratePress can add legacy generate-columns/grid-* width classes to
 * post articles. Reset them here so each homepage category card fills its
 * CSS Grid column rather than shrinking to one-third of it.
 */
.wve-home-category-grid > .wve-home-category-card,
.wve-home-category-grid > article.wve-home-category-card,
.wve-home-category-card.generate-columns,
.wve-home-category-card[class*="grid-"] {
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;
	float: none !important;
	clear: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.wve-home-category-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	height: 100%;
	margin: 0;
	background: transparent;
}

.wve-home-category-card__media {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #F1F3F4;
}

.wve-home-category-card__media img,
.wve-home-category-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
}

.wve-home-category-card__media img {
	object-fit: cover;
	transform: scale(1.001);
	transition: transform 340ms ease;
}

.wve-home-category-card:hover .wve-home-category-card__media img {
	transform: scale(1.025);
}

.wve-home-category-card__placeholder {
	background: linear-gradient(145deg, #F1F3F4, #F1F3F4);
}

.wve-home-category-card__label {
	position: absolute;
	left: 12px;
	bottom: 12px;
	display: inline-flex;
	padding: 5px 8px 4px;
	background: rgba(17, 19, 21, 0.9);
	color: #FFFFFF;
	font-size: 9px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.wve-home-category-card__content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding-top: 17px;
}

.wve-home-category-card h3 {
	margin: 0;
	font-family: var(--wve-font);
	font-size: clamp(20px, 1.65vw, 24px);
	font-weight: 650 !important;
	line-height: 1.16;
	letter-spacing: -0.03em;
}

.wve-home-category-card h3 a,
.wve-home-category-card h3 a:link,
.wve-home-category-card h3 a:visited {
	color: #202124 !important;
	text-decoration: none;
}

.wve-home-category-card h3 a:hover,
.wve-home-category-card h3 a:focus-visible {
	color: #111827 !important;
}

.wve-home-category-card__summary {
	margin: 11px 0 0;
	color: #66717D;
	font-size: 14px;
	line-height: 1.55;
}

.wve-home-category-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	padding-top: 14px;
	color: #7A838D;
	font-size: 10px;
	font-weight: 650;
	line-height: 1.4;
	letter-spacing: 0.025em;
	text-transform: uppercase;
}

.wve-home-category-card__meta a,
.wve-home-category-card__meta a:link,
.wve-home-category-card__meta a:visited {
	color: #4D5965 !important;
	text-decoration: none;
}

.wve-home-category-card__meta a:hover,
.wve-home-category-card__meta a:focus-visible {
	color: #111827 !important;
}

.wve-home-category-section__action {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

.wve-home-category-button,
.wve-home-category-button:link,
.wve-home-category-button:visited {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 42px;
	padding: 11px 20px;
	border: 1px solid #202124;
	background: #FFFFFF;
	color: #202124 !important;
	font-size: 11px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.035em;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.wve-home-category-button:hover,
.wve-home-category-button:focus-visible {
	border-color: #202124;
	background: #202124;
	color: #FFFFFF !important;
}

html[data-wve-theme="dark"] .wve-home-category-section {
	border-top-color: rgba(255, 255, 255, 0.12);
}

html[data-wve-theme="dark"] .wve-home-category-section__header h2,
html[data-wve-theme="dark"] .wve-home-category-card h3 a,
html[data-wve-theme="dark"] .wve-home-category-card h3 a:link,
html[data-wve-theme="dark"] .wve-home-category-card h3 a:visited,
html[data-wve-theme="dark"] .wve-home-category-section__top-link,
html[data-wve-theme="dark"] .wve-home-category-section__top-link:link,
html[data-wve-theme="dark"] .wve-home-category-section__top-link:visited {
	color: var(--wve-frame-text) !important;
}

html[data-wve-theme="dark"] .wve-home-category-section__description,
html[data-wve-theme="dark"] .wve-home-category-card__summary {
	color: var(--wve-frame-muted);
}

html[data-wve-theme="dark"] .wve-home-category-button,
html[data-wve-theme="dark"] .wve-home-category-button:link,
html[data-wve-theme="dark"] .wve-home-category-button:visited {
	border-color: var(--wve-frame-text);
	background: transparent;
	color: var(--wve-frame-text) !important;
}

html[data-wve-theme="dark"] .wve-home-category-button:hover,
html[data-wve-theme="dark"] .wve-home-category-button:focus-visible {
	background: var(--wve-frame-text);
	color: var(--wve-frame-bg) !important;
}

@media (max-width: 900px) {
	.wve-home-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wve-home-category-card:last-child:nth-child(odd) {
		grid-column: 1 / -1;
		max-width: calc(50% - 11px);
	}
}

@media (max-width: 620px) {
	.wve-home-categories .wve-shell {
		width: min(calc(100% - 24px), var(--wve-frame-shell));
	}

	.wve-home-category-section {
		padding: 40px 0;
	}

	.wve-home-category-section:first-child {
		padding-top: 18px;
	}

	.wve-home-category-section__header {
		align-items: flex-start;
		margin-bottom: 22px;
	}

	.wve-home-category-section__header h2 {
		font-size: 32px;
	}

	.wve-home-category-section__description {
		font-size: 14px;
	}

	.wve-home-category-section__top-link {
		display: none;
	}

	.wve-home-category-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.wve-home-category-card:last-child:nth-child(odd) {
		grid-column: auto;
		max-width: none;
	}

	.wve-home-category-card h3 {
		font-size: 22px;
	}

	.wve-home-category-section__action {
		justify-content: stretch;
		margin-top: 26px;
	}

	.wve-home-category-button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wve-home-category-card__media img,
	.wve-home-category-button {
		transition: none;
	}
}

/* End The Blog Edit Editorial v0.3.72 */

@media (min-width: 621px) and (max-width: 900px) {
	.wve-home-category-card:last-child:nth-child(odd) {
		justify-self: center;
	}
}

/* =========================================================
   The Blog Edit Editorial v0.3.73
   Unified homepage-style cards across archives and search
   ========================================================= */

/* Give archive, search, journal and related grids the same open editorial rhythm as the homepage. */
.wve-frame-archive .wve-post-grid,
.wve-related .wve-post-grid,
html[data-wve-theme="dark"] .wve-frame-archive .wve-post-grid,
html[data-wve-theme="dark"] .wve-related .wve-post-grid {
	gap: clamp(28px, 3vw, 42px) clamp(22px, 2.5vw, 34px);
	padding: 0;
	background: transparent;
}

/* Reset the older boxed/joined archive treatment. */
.wve-frame-archive .wve-post-grid .wve-standard-card,
.wve-frame-archive .wve-post-grid .wve-standard-card:hover,
.wve-related .wve-post-grid .wve-standard-card,
.wve-related .wve-post-grid .wve-standard-card:hover,
html[data-wve-theme="dark"] .wve-frame-archive .wve-post-grid .wve-standard-card,
html[data-wve-theme="dark"] .wve-frame-archive .wve-post-grid .wve-standard-card:hover,
html[data-wve-theme="dark"] .wve-related .wve-post-grid .wve-standard-card,
html[data-wve-theme="dark"] .wve-related .wve-post-grid .wve-standard-card:hover {
	display: flex;
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;
	height: 100%;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	clear: none !important;
	flex-direction: column;
	overflow: visible;
	border: 0 !important;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	transform: none;
}

.wve-post-grid .wve-standard-card__media {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border: 0;
	border-radius: 0;
	background: #F1F3F4;
}

.wve-post-grid .wve-standard-card__image-link,
.wve-post-grid .wve-standard-card__image-link:link,
.wve-post-grid .wve-standard-card__image-link:visited,
.wve-post-grid .wve-standard-card__image-link img,
.wve-post-grid .wve-standard-card__media .wve-editorial-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 0;
}

.wve-post-grid .wve-standard-card__image-link {
	overflow: hidden;
}

.wve-post-grid .wve-standard-card__image-link img {
	object-fit: cover;
	filter: none;
	transform: scale(1.001);
	transition: transform 340ms ease;
}

.wve-post-grid .wve-standard-card:hover .wve-standard-card__image-link img {
	transform: scale(1.025);
}

/* Match the homepage category label position and treatment. */
.wve-post-grid .wve-standard-card__category,
.wve-post-grid .wve-standard-card__category:link,
.wve-post-grid .wve-standard-card__category:visited {
	position: absolute;
	z-index: 2;
	top: auto;
	left: 12px;
	bottom: 12px;
	display: inline-flex;
	width: auto;
	min-height: 0;
	margin: 0;
	padding: 5px 8px 4px;
	border: 0;
	border-radius: 0;
	background: rgba(17, 19, 21, 0.9);
	color: #FFFFFF !important;
	font-size: 9px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.wve-post-grid .wve-standard-card__category:hover,
.wve-post-grid .wve-standard-card__category:focus-visible {
	background: #202124;
	color: #FFFFFF !important;
}

.wve-post-grid .wve-standard-card .wve-editorial-card__content,
html[data-wve-theme="dark"] .wve-post-grid .wve-standard-card .wve-editorial-card__content {
	display: flex;
	flex: 1 1 auto;
	min-height: 0;
	flex-direction: column;
	padding: 17px 0 0;
	background: transparent;
}

.wve-post-grid .wve-standard-card h2,
.wve-frame-archive .wve-post-grid .wve-standard-card h2,
.wve-related .wve-post-grid .wve-standard-card h2 {
	min-height: 0;
	margin: 0;
	font-family: var(--wve-font);
	font-size: clamp(20px, 1.65vw, 24px);
	font-weight: 650 !important;
	line-height: 1.16;
	letter-spacing: -0.03em;
}

.wve-standard-card__summary {
	margin: 11px 0 0;
	color: #66717D;
	font-size: 14px;
	line-height: 1.55;
}

.wve-standard-card__byline,
.wve-post-grid .wve-standard-card__byline {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	padding-top: 14px;
	color: #7A838D;
	font-size: 10px;
	font-weight: 650;
	line-height: 1.4;
	letter-spacing: 0.025em;
	text-transform: uppercase;
}

.wve-standard-card__byline a,
.wve-standard-card__byline a:link,
.wve-standard-card__byline a:visited {
	color: #4D5965 !important;
	text-decoration: none;
}

.wve-standard-card__byline a:hover,
.wve-standard-card__byline a:focus-visible {
	color: #111827 !important;
}

html[data-wve-theme="dark"] .wve-standard-card__summary {
	color: var(--wve-frame-muted);
}

html[data-wve-theme="dark"] .wve-standard-card__byline {
	color: #B8C0CB;
}

html[data-wve-theme="dark"] .wve-standard-card__byline a,
html[data-wve-theme="dark"] .wve-standard-card__byline a:link,
html[data-wve-theme="dark"] .wve-standard-card__byline a:visited {
	color: #F1F3F4 !important;
}

@media (max-width: 620px) {
	.wve-frame-archive .wve-post-grid,
	.wve-related .wve-post-grid {
		gap: 34px;
	}

	.wve-post-grid .wve-standard-card h2,
	.wve-frame-archive .wve-post-grid .wve-standard-card h2,
	.wve-related .wve-post-grid .wve-standard-card h2 {
		font-size: 22px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wve-post-grid .wve-standard-card__image-link img {
		transition: none;
	}
}

/* End The Blog Edit Editorial v0.3.73 */
/* =========================================================
   The Blog Edit Editorial v0.3.74
   Stronger homepage category mastheads
   ========================================================= */

/*
 * Give each homepage category a clearer editorial identity without
 * turning the section into a boxed component. The category name is
 * larger and bolder, with a restrained The Blog Edit-blue accent rule,
 * while the description remains directly beneath it.
 */
.wve-home-category-section__eyebrow {
	display: none;
}

.wve-home-category-section__header {
	align-items: flex-start;
	margin-bottom: clamp(28px, 3vw, 38px);
}

.wve-home-category-section__header h2 {
	position: relative;
	display: inline-block;
	padding-bottom: 13px;
	font-size: clamp(40px, 4.15vw, 56px);
	font-weight: 720;
	line-height: 0.98;
	letter-spacing: -0.05em;
}

.wve-home-category-section__header h2::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 54px;
	height: 3px;
	background: #111827;
}

.wve-home-category-section__description {
	max-width: 760px;
	margin-top: 12px;
	font-size: 16px;
	line-height: 1.5;
}

@media (max-width: 620px) {
	.wve-home-category-section__header h2 {
		font-size: 38px;
		padding-bottom: 11px;
	}

	.wve-home-category-section__header h2::after {
		width: 46px;
		height: 2px;
	}

	.wve-home-category-section__description {
		margin-top: 10px;
		font-size: 15px;
	}
}

/* End The Blog Edit Editorial v0.3.74 */



/* =========================================================
   The Blog Edit Editorial v0.3.75
   Desktop category navigation in the main header
   ========================================================= */

/*
 * On desktop, use the previously empty centre of the masthead for the
 * publication's six core sections. The hamburger remains the compact
 * navigation pattern for tablet/mobile rather than duplicating both.
 */
@media (min-width: 1081px) {
	.wve-frame-header__inner {
		grid-template-columns: auto minmax(0, 1fr) auto;
		gap: clamp(24px, 2.7vw, 42px);
	}

	.wve-frame-menu-toggle {
		display: none;
	}

	.wve-frame-desktop-nav {
		display: block;
		min-width: 0;
		width: 100%;
		justify-self: stretch;
	}

	.wve-frame-desktop-nav__list {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: clamp(20px, 2.2vw, 34px);
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.wve-frame-desktop-nav__list li {
		margin: 0;
		padding: 0;
	}

	.wve-frame-desktop-nav__list a,
	.wve-frame-desktop-nav__list a:link,
	.wve-frame-desktop-nav__list a:visited {
		position: relative;
		display: inline-flex;
		align-items: center;
		min-height: 42px;
		padding: 2px 0 0;
		color: var(--wve-frame-header-text) !important;
		font-size: 17px;
		font-weight: 650;
		line-height: 1;
		letter-spacing: -0.01em;
		text-decoration: none;
		white-space: nowrap;
	}

	.wve-frame-desktop-nav__list a::after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		bottom: 5px;
		height: 2px;
		background: #111827;
		transform: scaleX(0);
		transform-origin: center;
		transition: transform 160ms ease;
	}

	.wve-frame-desktop-nav__list a:hover,
	.wve-frame-desktop-nav__list a:focus-visible,
	.wve-frame-desktop-nav__list a[aria-current="page"] {
		color: #111827 !important;
	}

	.wve-frame-desktop-nav__list a:hover::after,
	.wve-frame-desktop-nav__list a:focus-visible::after,
	.wve-frame-desktop-nav__list a[aria-current="page"]::after {
		transform: scaleX(1);
	}

	html[data-wve-theme="dark"] .wve-frame-desktop-nav__list a:hover,
	html[data-wve-theme="dark"] .wve-frame-desktop-nav__list a:focus-visible,
	html[data-wve-theme="dark"] .wve-frame-desktop-nav__list a[aria-current="page"] {
		color: #111827 !important;
	}
}

@media (max-width: 1080px) {
	.wve-frame-desktop-nav {
		display: none;
	}

	.wve-frame-menu-toggle {
		display: inline-grid;
	}
}

@media (max-width: 640px) {
	.wve-frame-header__inner {
		gap: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wve-frame-desktop-nav__list a::after {
		transition: none;
	}
}

/* End The Blog Edit Editorial v0.3.75 */

/* =========================================================
   The Blog Edit Editorial v0.3.76
   Tighter transition from mosaic hero to first category
   ========================================================= */

/*
 * Reduce the combined bottom/top spacing between the homepage mosaic
 * and the first category masthead, while preserving breathing room.
 */
.wve-overlay-mosaic-hero {
	padding-bottom: clamp(24px, 2.4vw, 34px);
}

.wve-home-categories {
	padding-top: 0;
}

.wve-home-category-section:first-child {
	padding-top: clamp(18px, 2vw, 26px);
}

@media (max-width: 620px) {
	.wve-overlay-mosaic-hero {
		padding-bottom: 20px;
	}

	.wve-home-category-section:first-child {
		padding-top: 16px;
	}
}

/* End The Blog Edit Editorial v0.3.76 */

/* =========================================================
   The Blog Edit Editorial v0.3.77
   Full-width financial-city homepage masthead atmosphere
   ========================================================= */

/*
 * Desktop only: the existing Overlay mosaic remains the hero itself. This
 * layer simply gives the white space around it a richer publication masthead
 * and continues behind the header. Tablet/mobile keep the established clean
 * treatment because the mosaic becomes a much taller stacked composition.
 */
@media (min-width: 901px) {
	body.wve-home-financial-masthead {
		position: relative;
		background: #FFFFFF;
	}

	body.wve-home-financial-masthead::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
		width: 100%;
		height: calc(76px + clamp(18px, 2.2vw, 30px) + clamp(470px, 40vw, 590px) + clamp(24px, 2.4vw, 34px) + 118px);
		background-image:
			linear-gradient(
				180deg,
				rgba(17, 19, 21, 0.52) 0%,
				rgba(17, 19, 21, 0.66) 48%,
				rgba(17, 19, 21, 0.70) 70%,
				rgba(255, 255, 255, 0.90) 94%,
				#FFFFFF 100%
			),
			var(--wve-home-masthead-image);
		background-position: center 47%;
		background-repeat: no-repeat;
		background-size: cover;
		pointer-events: none;
	}

	body.wve-home-financial-masthead .wve-frame-header,
	body.wve-home-financial-masthead .wve-lux-home {
		position: relative;
		z-index: 1;
	}

	/* Let the city image continue into the masthead without weakening legibility. */
	body.wve-home-financial-masthead .wve-frame-header {
		border-bottom-color: rgba(255, 255, 255, 0.16);
		background: rgba(17, 19, 21, 0.28);
		color: #FFFFFF;
		-webkit-backdrop-filter: blur(12px);
		backdrop-filter: blur(12px);
	}

	body.wve-home-financial-masthead .wve-frame-header .wve-wordmark,
	body.wve-home-financial-masthead .wve-frame-header .wve-wordmark:link,
	body.wve-home-financial-masthead .wve-frame-header .wve-wordmark:visited,
	body.wve-home-financial-masthead .wve-frame-header .wve-wordmark:hover,
	body.wve-home-financial-masthead .wve-frame-header .wve-wordmark:focus-visible {
		color: #FFFFFF !important;
		text-shadow: 0 1px 14px rgba(0, 0, 0, 0.20);
	}

	body.wve-home-financial-masthead .wve-frame-header .wve-wordmark strong {
		color: #111827 !important;
	}

	body.wve-home-financial-masthead .wve-frame-desktop-nav__list a,
	body.wve-home-financial-masthead .wve-frame-desktop-nav__list a:link,
	body.wve-home-financial-masthead .wve-frame-desktop-nav__list a:visited {
		color: rgba(255, 255, 255, 0.92) !important;
		text-shadow: 0 1px 10px rgba(0, 0, 0, 0.18);
	}

	body.wve-home-financial-masthead .wve-frame-desktop-nav__list a:hover,
	body.wve-home-financial-masthead .wve-frame-desktop-nav__list a:focus-visible,
	body.wve-home-financial-masthead .wve-frame-desktop-nav__list a[aria-current="page"] {
		color: #F1F3F4 !important;
	}

	body.wve-home-financial-masthead .wve-frame-icon {
		color: #FFFFFF;
	}

	body.wve-home-financial-masthead .wve-frame-icon:hover,
	body.wve-home-financial-masthead .wve-frame-icon:focus-visible {
		background: rgba(255, 255, 255, 0.11);
		color: #FFFFFF;
	}

	body.wve-home-financial-masthead .wve-overlay-mosaic-hero,
	html[data-wve-theme="dark"] body.wve-home-financial-masthead .wve-overlay-mosaic-hero {
		background: transparent;
	}

	/* The category field stays clean white; the background has already faded out. */
	body.wve-home-financial-masthead .wve-home-categories {
		position: relative;
		z-index: 2;
	}
}

@media (min-width: 901px) {
	html[data-wve-theme="dark"] body.wve-home-financial-masthead::before {
		background-image:
			linear-gradient(
				180deg,
				rgba(17, 19, 21, 0.50) 0%,
				rgba(17, 19, 21, 0.66) 52%,
				rgba(17, 19, 21, 0.76) 72%,
				rgba(17, 19, 21, 0.93) 94%,
				#111315 100%
			),
			var(--wve-home-masthead-image);
	}
}

/* End The Blog Edit Editorial v0.3.77 */

/* =========================================================
   The Blog Edit Editorial v0.3.78
   Clean masthead edge + dimensional mosaic story cards
   ========================================================= */

@media (min-width: 901px) {
	/*
	 * End the financial-city field decisively at the bottom of the hero.
	 * The Wealth section then begins on a clean white publication canvas,
	 * rather than emerging through the previous misty white fade.
	 */
	body.wve-home-financial-masthead::before {
		height: calc(76px + clamp(18px, 2.2vw, 30px) + clamp(470px, 40vw, 590px) + clamp(24px, 2.4vw, 34px));
		background-image:
			linear-gradient(
				180deg,
				rgba(17, 19, 21, 0.52) 0%,
				rgba(17, 19, 21, 0.64) 50%,
				rgba(17, 19, 21, 0.72) 100%
			),
			var(--wve-home-masthead-image);
	}

	html[data-wve-theme="dark"] body.wve-home-financial-masthead::before {
		background-image:
			linear-gradient(
				180deg,
				rgba(17, 19, 21, 0.50) 0%,
				rgba(17, 19, 21, 0.66) 52%,
				rgba(17, 19, 21, 0.78) 100%
			),
			var(--wve-home-masthead-image);
	}

	/*
	 * Give the four mosaic stories physical depth against the city field.
	 * The geometry remains the approved mosaic; only spacing and elevation
	 * change, keeping the effect closer to premium editorial panels than UI cards.
	 */
	.wve-overlay-mosaic-hero__grid,
	.wve-overlay-mosaic-hero__right,
	.wve-overlay-mosaic-hero__small-grid {
		gap: 11px;
	}

	.wve-overlay-mosaic-hero__grid {
		perspective: 1400px;
		overflow: visible;
	}

	.wve-overlay-mosaic-story,
	.wve-overlay-mosaic-story[class*="grid-"] {
		z-index: 1;
		border: 1px solid rgba(255, 255, 255, 0.16);
		border-radius: 2px;
		box-shadow:
			0 18px 42px rgba(0, 0, 0, 0.32),
			0 5px 14px rgba(0, 0, 0, 0.22),
			inset 0 1px 0 rgba(255, 255, 255, 0.12);
		transform: translateY(0) translateZ(0);
		transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
		will-change: transform;
	}

	.wve-overlay-mosaic-story:hover,
	.wve-overlay-mosaic-story:focus-within {
		z-index: 3;
		border-color: rgba(255, 255, 255, 0.26);
		box-shadow:
			0 24px 52px rgba(0, 0, 0, 0.38),
			0 8px 20px rgba(0, 0, 0, 0.24),
			inset 0 1px 0 rgba(255, 255, 255, 0.16);
		transform: translateY(-4px) translateZ(12px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.wve-overlay-mosaic-story,
	.wve-overlay-mosaic-story[class*="grid-"] {
		transition: none;
	}

	.wve-overlay-mosaic-story:hover,
	.wve-overlay-mosaic-story:focus-within {
		transform: none;
	}
}

/* End The Blog Edit Editorial v0.3.78 */


/* =========================================================
   The Blog Edit Editorial v0.3.79
   Clearer floating hero panels + balanced masthead spacing
   ========================================================= */

@media (min-width: 901px) {
	/*
	 * Give the mosaic a little more breathing room inside the financial-city
	 * masthead. The category canvas still starts immediately after the dark
	 * masthead, but the stories no longer feel pressed against either edge.
	 */
	body.wve-home-financial-masthead .wve-overlay-mosaic-hero {
		padding-top: 38px;
		padding-bottom: 42px;
	}

	/* Keep the atmospheric background exactly as tall as the padded hero. */
	body.wve-home-financial-masthead::before {
		height: calc(76px + 38px + clamp(470px, 40vw, 590px) + 42px);
	}

	/*
	 * Make the mosaic read as four raised editorial panels rather than one
	 * flat collage. The lower "lip" is deliberately visible at rest, so the
	 * dimensional effect does not depend on hover.
	 */
	body.wve-home-financial-masthead .wve-overlay-mosaic-hero__grid,
	body.wve-home-financial-masthead .wve-overlay-mosaic-hero__right,
	body.wve-home-financial-masthead .wve-overlay-mosaic-hero__small-grid {
		gap: 14px;
	}

	body.wve-home-financial-masthead .wve-overlay-mosaic-hero__grid {
		perspective: 1600px;
	}

	body.wve-home-financial-masthead .wve-overlay-mosaic-story,
	body.wve-home-financial-masthead .wve-overlay-mosaic-story[class*="grid-"] {
		position: relative;
		z-index: 1;
		border: 1px solid rgba(218, 220, 224, 0.50);
		border-radius: 4px;
		box-shadow:
			0 6px 0 rgba(119, 7, 21, 0.86),
			0 20px 36px rgba(0, 0, 0, 0.38),
			0 8px 16px rgba(0, 0, 0, 0.30),
			inset 0 1px 0 rgba(255, 255, 255, 0.22),
			inset 1px 0 0 rgba(255, 255, 255, 0.08);
		transform: translateY(-2px);
		transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
	}

	/* A fine highlight across the upper edge reinforces the panel depth. */
	body.wve-home-financial-masthead .wve-overlay-mosaic-story::after {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		z-index: 4;
		height: 1px;
		background: linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0.46), rgba(255,255,255,0.08));
		pointer-events: none;
	}

	body.wve-home-financial-masthead .wve-overlay-mosaic-story:hover,
	body.wve-home-financial-masthead .wve-overlay-mosaic-story:focus-within {
		z-index: 5;
		border-color: rgba(241, 243, 244, 0.72);
		box-shadow:
			0 9px 0 rgba(119, 7, 21, 0.88),
			0 28px 48px rgba(0, 0, 0, 0.46),
			0 10px 20px rgba(0, 0, 0, 0.32),
			inset 0 1px 0 rgba(255, 255, 255, 0.28);
		transform: translateY(-5px);
	}
}

@media (prefers-reduced-motion: reduce) {
	body.wve-home-financial-masthead .wve-overlay-mosaic-story,
	body.wve-home-financial-masthead .wve-overlay-mosaic-story[class*="grid-"] {
		transition: none;
	}

	body.wve-home-financial-masthead .wve-overlay-mosaic-story:hover,
	body.wve-home-financial-masthead .wve-overlay-mosaic-story:focus-within {
		transform: translateY(-2px);
	}
}

/* End The Blog Edit Editorial v0.3.79 */

/* =========================================================
   The Blog Edit Editorial v0.3.82
   Clean mosaic edges — remove visible light outlines
   ========================================================= */

@media (min-width: 901px) {
	body.wve-home-financial-masthead .wve-overlay-mosaic-story,
	body.wve-home-financial-masthead .wve-overlay-mosaic-story[class*="grid-"] {
		border: 0;
		box-shadow:
			0 6px 0 rgba(119, 7, 21, 0.86),
			0 20px 36px rgba(0, 0, 0, 0.38),
			0 8px 16px rgba(0, 0, 0, 0.30);
	}

	/* Remove the fine top-edge highlight that could read as a white frame. */
	body.wve-home-financial-masthead .wve-overlay-mosaic-story::after {
		display: none;
	}

	body.wve-home-financial-masthead .wve-overlay-mosaic-story:hover,
	body.wve-home-financial-masthead .wve-overlay-mosaic-story:focus-within {
		border: 0;
		box-shadow:
			0 9px 0 rgba(119, 7, 21, 0.88),
			0 28px 48px rgba(0, 0, 0, 0.46),
			0 10px 20px rgba(0, 0, 0, 0.32);
	}
}

/* End The Blog Edit Editorial v0.3.82 */


/* =========================================================
   The Blog Edit Editorial v0.3.83
   Carry the financial-city atmosphere into tablet/mobile
   ========================================================= */

/*
 * Keep the same masthead identity on smaller screens. The stacked hero fills
 * most of the viewport, so the city remains deliberately understated: it is
 * most visible through the header and the breathing room around the mosaic.
 */
@media (max-width: 900px) {
	body.wve-home-financial-masthead {
		position: relative;
		background: #FFFFFF;
	}

	body.wve-home-financial-masthead::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
		width: 100%;
		height: 100%;
		background-color: #111315;
		background-image:
			linear-gradient(
				180deg,
				rgba(17, 19, 21, 0.48) 0%,
				rgba(17, 19, 21, 0.68) 340px,
				rgba(17, 19, 21, 0.82) 820px,
				rgba(17, 19, 21, 0.92) 100%
			),
			var(--wve-home-masthead-image);
		background-position: center top;
		background-repeat: no-repeat;
		background-size: auto 900px;
		pointer-events: none;
	}

	body.wve-home-financial-masthead .wve-frame-header,
	body.wve-home-financial-masthead .wve-lux-home,
	body.wve-home-financial-masthead .wve-frame-footer {
		position: relative;
		z-index: 1;
	}

	/* Dark glass header on mobile/tablet, matching the desktop masthead. */
	body.wve-home-financial-masthead .wve-frame-header {
		border-bottom-color: rgba(255, 255, 255, 0.14);
		background: rgba(17, 19, 21, 0.46);
		color: #FFFFFF;
		-webkit-backdrop-filter: blur(11px);
		backdrop-filter: blur(11px);
	}

	body.wve-home-financial-masthead .wve-frame-header .wve-wordmark,
	body.wve-home-financial-masthead .wve-frame-header .wve-wordmark:link,
	body.wve-home-financial-masthead .wve-frame-header .wve-wordmark:visited,
	body.wve-home-financial-masthead .wve-frame-header .wve-wordmark:hover,
	body.wve-home-financial-masthead .wve-frame-header .wve-wordmark:focus-visible {
		color: #FFFFFF !important;
		text-shadow: 0 1px 12px rgba(0, 0, 0, 0.24);
	}

	body.wve-home-financial-masthead .wve-frame-header .wve-wordmark strong {
		color: #111827 !important;
	}

	body.wve-home-financial-masthead .wve-frame-header .wve-frame-icon {
		color: #FFFFFF;
	}

	body.wve-home-financial-masthead .wve-frame-header .wve-frame-icon:hover,
	body.wve-home-financial-masthead .wve-frame-header .wve-frame-icon:focus-visible {
		background: rgba(255, 255, 255, 0.10);
		color: #FFFFFF;
	}

	body.wve-home-financial-masthead .wve-overlay-mosaic-hero,
	html[data-wve-theme="dark"] body.wve-home-financial-masthead .wve-overlay-mosaic-hero {
		background: transparent;
	}

	/* Keep the editorial category area as a clean canvas below the hero. */
	body.wve-home-financial-masthead .wve-home-categories {
		position: relative;
		z-index: 2;
		background: #FFFFFF;
	}

	html[data-wve-theme="dark"] body.wve-home-financial-masthead .wve-home-categories {
		background: var(--wve-frame-bg);
	}
}

/* End The Blog Edit Editorial v0.3.83 */


/* The Blog Edit Editorial v0.3.4 — desktop header navigation */
@media (min-width: 1024px) {
	.wve-primary-menu a,
	.wve-frame-desktop-nav__list a,
	.wve-frame-desktop-nav__list a:link,
	.wve-frame-desktop-nav__list a:visited {
		font-size: 17px;
	}
}


/* =========================================================
   The Blog Edit Editorial v0.3.10
   Single-post sticky advertising sidebar
   ========================================================= */

/*
 * When the single-post widget area contains content, widen the editorial
 * surface just enough to add a dedicated 300px advertising column while
 * retaining the existing article reading measure and share rail.
 */
@media (min-width: 1180px) {
	.wve-single.tbe-single-has-sidebar > .wve-article {
		width: min(calc(100% - 48px), 1420px);
		overflow: visible; /* Sticky descendants cannot work inside an overflow-clipped ancestor. */
	}

	.wve-single .tbe-article-layout--with-sidebar {
		grid-template-columns: 58px minmax(0, var(--wve-reading)) 300px;
		justify-content: center;
		gap: 30px;
	}

	.wve-single .tbe-article-layout--with-sidebar .wve-article-main {
		grid-column: 2;
	}

	.tbe-single-sidebar {
		grid-column: 3;
		align-self: start;
		position: sticky;
		top: 28px;
		height: max-content;
		min-width: 0;
	}

	.tbe-single-sidebar__sticky {
		position: static;
		width: 300px;
		max-width: 100%;
	}
}

.tbe-single-sidebar__widget {
	width: 100%;
	margin: 0 0 26px;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.tbe-single-sidebar__widget:last-child {
	margin-bottom: 0;
}

.tbe-single-sidebar__title {
	margin: 0 0 12px;
	color: var(--wve-ink);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tbe-single-sidebar__widget img,
.tbe-single-sidebar__widget iframe,
.tbe-single-sidebar__widget ins,
.tbe-single-sidebar__widget .wp-block-image,
.tbe-single-sidebar__widget .wp-block-image img {
	max-width: 100%;
}

.tbe-single-sidebar__widget .wp-block-image,
.tbe-single-sidebar__widget .wp-block-image figure {
	margin: 0;
}

.tbe-single-sidebar__widget .wp-block-image img {
	display: block;
	width: auto;
	height: auto;
	margin-inline: auto;
}

/* On tablets and phones, move the same ad slot beneath the article content. */
@media (max-width: 1179px) {
	.tbe-single-sidebar {
		display: block;
		grid-column: 1 / -1;
		position: static;
		width: 100%;
		margin: 42px 0 0;
	}

	.tbe-single-sidebar__sticky {
		position: static;
		width: 300px;
		max-width: 100%;
		margin-inline: auto;
	}
}


/* v0.3.10 — visible setup state for logged-in site administrators. */
.tbe-single-sidebar__empty {
	box-sizing: border-box;
	width: 300px;
	max-width: 100%;
	padding: 22px;
	border: 1px dashed #111827;
	border-radius: 10px;
	background: #f7f7f7;
	color: #202124;
	font-size: 14px;
	line-height: 1.5;
}
.tbe-single-sidebar__empty strong { display:block; margin-bottom:8px; font-size:16px; }
.tbe-single-sidebar__empty p { margin:0 0 12px; }
.tbe-single-sidebar__empty a { color:#111827; font-weight:700; text-decoration:none; }
.tbe-single-sidebar__empty a:hover { text-decoration:underline; }


/* =========================================================
   The Blog Edit Editorial v0.3.11
   Sticky ad reliability + mobile bottom-of-post placement
   ========================================================= */
@media (min-width: 1180px) {
	.wve-single.tbe-single-has-sidebar > .wve-article { overflow: visible; }
	.tbe-single-sidebar { position: sticky; top: 28px; align-self: start; }
}
@media (max-width: 1179px) {
	.tbe-single-sidebar { display: block; }
}
/* End The Blog Edit Editorial v0.3.11 */

/* =========================================================
   TBE LOGO ARTWORK — v0.3.21
   Exact artwork; critical dimensions are output inline in header.php.
   ========================================================= */

.tbe-logo-wordmark { vertical-align: middle; }

/* End TBE LOGO ARTWORK — v0.3.21 */

