/* =========================================================
   WealthyVue Editorial v0.1.2
   ========================================================= */

:root {
	--wve-ink: #111827;
	--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: 18px;
	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;
	}
}


/* =========================================================
   WealthyVue 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: #111827;
	--wve-frame-muted: #6B7280;
	--wve-frame-line: #D1D5DB;
	--wve-frame-accent: #374151;
	--wve-frame-accent-hover: #111827;
	--wve-frame-dark: #111827;
	--wve-frame-shell: 1300px;
	--wve-frame-shadow: 0 18px 50px rgba(17, 24, 39, 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 #2a3342;
	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: none;
}

.wve-wordmark--case-original {
	text-transform: none;
}

.wve-wordmark--case-uppercase {
	text-transform: uppercase;
}

.wve-wordmark--case-lowercase {
	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: #253044;
	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 #2a3342;
	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: #1f2937;
}

.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: #1F2937;
	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, 24, 39, 0.88) 0%,
		rgba(17, 24, 39, 0.62) 48%,
		rgba(17, 24, 39, 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: #273244;
	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 #2A3342;
	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 h3 {
	margin: 0;
	color: var(--wve-frame-text);
	font-size: 22px;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.035em;
}

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

.wve-editorial-card h3 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;
}

/* Footer */

.wve-frame-footer {
	border-top: 1px solid #273244;
	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(auto-fit, minmax(130px, 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-network-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	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: #080D16;
	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, 24, 39, 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, 24, 39, 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-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: #E0F7F1;
	--wve-frame-soft-2: #B2E0D4;
	--wve-frame-text: #004D00;
	--wve-frame-muted: #4C6E61;
	--wve-frame-line: #B2E0D4;
	--wve-frame-accent: #007A33;
	--wve-frame-accent-hover: #004D00;
	--wve-frame-dark: #004D00;
	--wve-frame-mid: #007A33;
	--wve-frame-sea: #66B3A1;
	--wve-frame-mint: #B2E0D4;
	--wve-frame-pale: #E0F7F1;
	--wve-frame-header-bg: #FFFFFF;
	--wve-frame-header-text: #004D00;
	--wve-frame-panel-bg: #FFFFFF;
	--wve-frame-panel-text: #004D00;
	--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: #E0F7F1;
	--wve-frame-muted: #A6CBBF;
	--wve-frame-line: #1D4B2D;
	--wve-frame-accent: #66B3A1;
	--wve-frame-accent-hover: #B2E0D4;
	--wve-frame-dark: #004D00;
	--wve-frame-mid: #007A33;
	--wve-frame-sea: #66B3A1;
	--wve-frame-mint: #B2E0D4;
	--wve-frame-pale: #E0F7F1;
	--wve-frame-header-bg: #07110B;
	--wve-frame-header-text: #E0F7F1;
	--wve-frame-panel-bg: #0D1D13;
	--wve-frame-panel-text: #E0F7F1;
	--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,
			#004D00 0%,
			#007A33 42%,
			#66B3A1 72%,
			#B2E0D4 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: #E0F7F1;
}

.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 h3,
.wve-editorial-card__action {
	color: var(--wve-frame-text);
}

.wve-editorial-card h3 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: #004D00;
	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: #B2E0D4;
}

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

.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: #B2E0D4;
}

.wve-frame-footer__bottom {
	background: #003A00;
}

.wve-frame-back-to-top {
	background: #007A33;
	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: #004D00;
	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: #004D00;
	--wve-frame-accent-hover: #003A00;
	--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: #66A866;
	--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 h3,
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: #004D00 !important;
}

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

.wve-frame-footer__brand .wve-wordmark strong {
	color: #66A866 !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: #004D00;
	background: #004D00;
	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: #003A00;
	background: #003A00;
	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 h3 a:hover,
.wve-editorial-card__action,
.wve-article-content a,
.wve-page-content a,
.wve-category,
.wve-kicker,
.wve-tldr__head > span {
	color: #004D00;
}

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: #66A866;
}

/* 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: #66A866;
}

/* 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: #004D00;
}

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

/* 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: #66A866;
}

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

.wve-frame-back-to-top {
	background: #004D00;
	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: #003A00;
	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: #004D00;
}

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: #66A866;
}

.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: #66A866;
}

/* 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 h3,
.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 h3,
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 h3 a,
html[data-wve-theme="dark"] .wve-editorial-card h3 a:link,
html[data-wve-theme="dark"] .wve-editorial-card h3 a:visited,
html[data-wve-theme="dark"] .wve-editorial-card h3 a:hover,
html[data-wve-theme="dark"] .wve-editorial-card h3 a:focus,
html[data-wve-theme="dark"] .wve-editorial-card h3 a:focus-visible,
html[data-wve-theme="dark"] .wve-editorial-card h3 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 WealthyVue 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: #004D00;
	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: #003A00;
}

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: #66A866;
}

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


/* =========================================================
   v0.3.0 WealthyVue 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 h3 {
	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: transparent;
}

.wve-lux-hero__media::after {
	display: none;
}

.wve-lux-hero__media img {
	width: 100%;
	height: 100%;
	min-height: 560px;
	object-fit: cover;
	object-position: 62% center;
	filter: none;
}

/* 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 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 h3 {
	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) h3 {
	font-size: clamp(21px, 2vw, 30px);
}

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

.wve-lux-feature h3 a:hover,
.wve-lux-feature h3 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;
	border-top: 1px solid var(--wve-frame-line);
	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 h3 {
	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 h3 a,
.wve-lux-post-grid .wve-editorial-card h3 a:visited {
	color: var(--wve-frame-text) !important;
}

.wve-lux-post-grid .wve-editorial-card h3 a:hover,
.wve-lux-post-grid .wve-editorial-card h3 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-home-spotlight {
	max-width: 920px;
	margin: clamp(52px, 7vw, 82px) auto 0;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	background: #F4F5F6;
	color: #101A2B;
	text-align: left;
}

.wve-home-spotlight--has-image {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
}

.wve-home-spotlight__content {
	padding: clamp(30px, 5vw, 54px);
}

.wve-home-spotlight__disclosure,
.wve-home-spotlight__type {
	display: block;
	margin: 0 0 12px;
	color: #607F99;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.wve-home-spotlight__disclosure {
	display: inline-block;
	margin-bottom: 22px;
	padding: 5px 7px;
	background: #101A2B;
	color: #FFFFFF;
}

.wve-home-spotlight__content h3 {
	margin: 0 0 18px;
	color: #101A2B !important;
	font-size: clamp(30px, 3.5vw, 46px);
	line-height: 1.02;
}

.wve-home-spotlight__description {
	margin: 0 0 24px;
	color: #4B5563;
	font-size: 17px;
	line-height: 1.65;
}

.wve-home-spotlight__button,
.wve-home-spotlight__button:visited {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 13px 17px;
	background: #101A2B;
	color: #FFFFFF !important;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-decoration: none;
	text-transform: uppercase;
}

.wve-home-spotlight__button:hover,
.wve-home-spotlight__button:focus-visible {
	background: #3E607E;
	color: #FFFFFF !important;
}

.wve-home-spotlight__supporting {
	margin: 14px 0 0;
	color: #6B7280;
	font-size: 12px;
	line-height: 1.5;
}

.wve-home-spotlight__media {
	min-height: 100%;
	overflow: hidden;
}

.wve-home-spotlight__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
}

@media (max-width: 760px) {
	.wve-home-spotlight--has-image {
		grid-template-columns: 1fr;
	}

	.wve-home-spotlight__media {
		order: -1;
	}

	.wve-home-spotlight__media img {
		min-height: 0;
		aspect-ratio: 4 / 3;
	}
}

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

/* 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 WealthyVue Editorial v0.3.0 */

/* =========================================================
   v0.3.1 WealthyVue 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: #101A2B;
	--wve-frame-muted: #66707C;
	--wve-frame-line: #D6DADF;
	--wve-frame-accent: #607F99;
	--wve-frame-accent-hover: #3E607E;
	--wve-frame-dark: #101A2B;
	--wve-frame-header-bg: #FFFFFF;
	--wve-frame-header-text: #101A2B;
	--wve-frame-panel-bg: #FFFFFF;
	--wve-frame-panel-text: #101A2B;
	--wve-frame-shadow: 0 24px 70px rgba(16, 26, 43, 0.12);
}

html[data-wve-theme="dark"] {
	--wve-frame-bg: #11161D;
	--wve-frame-surface: #171D25;
	--wve-frame-soft: #202833;
	--wve-frame-soft-2: #2B3541;
	--wve-frame-text: #F2F4F6;
	--wve-frame-muted: #AEB6BF;
	--wve-frame-line: #303A47;
	--wve-frame-accent: #9BB5CB;
	--wve-frame-accent-hover: #B8CAD9;
	--wve-frame-dark: #090D13;
	--wve-frame-header-bg: #11161D;
	--wve-frame-header-text: #F2F4F6;
	--wve-frame-panel-bg: #171D25;
	--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 WealthyVue 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(127, 158, 184, 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-hero__inner--without-image {
	grid-template-columns: minmax(0, 760px);
}

.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: #101A2B;
	background: #101A2B;
	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: #101A2B !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(16, 26, 43, 0.025) 0, rgba(16, 26, 43, 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(18, 24, 32, 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(220, 228, 235, 0.46);
	border-radius: 18px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 38%),
		linear-gradient(120deg, #111B2B 0%, #1B2737 46%, #0D1521 100%);
	box-shadow:
		0 34px 70px rgba(16, 26, 43, 0.24),
		inset 0 1px 0 rgba(255, 255, 255, 0.18),
		inset 0 -1px 0 rgba(0, 0, 0, 0.35);
	color: #F7F9FB;
	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(155, 181, 203, 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(190, 205, 217, 0.06) 18px, transparent 19px),
		repeating-linear-gradient(32deg, transparent 0, transparent 29px, rgba(190, 205, 217, 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: #AFC2D2;
	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(215, 225, 233, 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: #B9C8D5;
	font-size: clamp(8px, 0.78vw, 10px);
}

.wve-lux-identity-card__bottom span + span::before {
	margin-right: clamp(14px, 2vw, 30px);
	color: #607F99;
	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 h2,
.wve-lux-feature h3,
.wve-lux-post-grid .wve-editorial-card h3,
.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%),
		#101A2B;
}

.wve-lux-manifesto h2 {
	color: #F3F6F8 !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: #9BB5CB !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: #101A2B;
	background: #101A2B;
	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: #2B3541;
	background: #101A2B;
}

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

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

@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 WealthyVue 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;
}

/* =========================================================
   WealthyVue 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 h3 {
	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 h3 {
	margin-top: 9px;
	font-size: clamp(23px, 1.8vw, 30px);
	line-height: 1.1;
	overflow-wrap: normal;
	word-break: normal;
}

/* Keep the complete WealthyVue 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: #9BB5CB !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 WealthyVue Editorial v0.3.2 */

/* =========================================================
   WealthyVue 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 h3 {
	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 WealthyVue Editorial v0.3.3 */

/* =========================================================
   WealthyVue 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 h3 {
	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 WealthyVue Editorial v0.3.5 */

/* =========================================================
   WealthyVue 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 WealthyVue Editorial v0.3.6 */

/* =========================================================
   WealthyVue 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 h3 a,
.wve-frame-archive .wve-editorial-card h3 a:link,
.wve-frame-archive .wve-editorial-card h3 a:visited,
.wve-related .wve-editorial-card h3 a,
.wve-related .wve-editorial-card h3 a:link,
.wve-related .wve-editorial-card h3 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 h3 a:hover,
.wve-frame-archive .wve-editorial-card h3 a:focus,
.wve-frame-archive .wve-editorial-card h3 a:focus-visible,
.wve-related .wve-editorial-card h3 a:hover,
.wve-related .wve-editorial-card h3 a:focus,
.wve-related .wve-editorial-card h3 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 h3 a,
html[data-wve-theme="dark"] .wve-frame-archive .wve-editorial-card h3 a:link,
html[data-wve-theme="dark"] .wve-frame-archive .wve-editorial-card h3 a:visited,
html[data-wve-theme="dark"] .wve-related .wve-editorial-card h3 a,
html[data-wve-theme="dark"] .wve-related .wve-editorial-card h3 a:link,
html[data-wve-theme="dark"] .wve-related .wve-editorial-card h3 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 h3 a:hover,
html[data-wve-theme="dark"] .wve-frame-archive .wve-editorial-card h3 a:focus-visible,
html[data-wve-theme="dark"] .wve-related .wve-editorial-card h3 a:hover,
html[data-wve-theme="dark"] .wve-related .wve-editorial-card h3 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 WealthyVue Editorial v0.3.7 */

/* =========================================================
   WealthyVue 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: #9BB5CB !important;
}

html[data-wve-theme="dark"] body.single-post .wve-author-box .wve-kicker {
	color: #9BB5CB !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: #9BB5CB !important;
	background: #202833 !important;
	color: #FFFFFF !important;
}

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

html[data-wve-theme="dark"] body.single-post .wve-tldr__head > span {
	color: #9BB5CB !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: #9BB5CB !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: #B8CAD9 !important;
}

/* End WealthyVue Editorial v0.3.8 */

/* =========================================================
   WealthyVue 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: #9BB5CB !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: #D5E2EC !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: #171D25 !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 WealthyVue Editorial v0.3.9 */

/* =========================================================
   WealthyVue 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 WealthyVue Editorial v0.3.10 */

/* =========================================================
   WealthyVue 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 h3,
.wve-lux-hero__intro,
.wve-lux-section-heading > p,
.wve-lux-post-grid .wve-editorial-card h3,
.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 WealthyVue Editorial v0.3.11 */

/* =========================================================
   WealthyVue Editorial v0.3.12
   Homepage More from WealthyVue 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 WealthyVue Editorial v0.3.12 */

/* =========================================================
   WealthyVue 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 h3 {
		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 WealthyVue Editorial v0.3.13 */

/* =========================================================
   WealthyVue 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: #10151C;
}

.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 h3 {
	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 h3 {
		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 WealthyVue Editorial v0.3.14 */


/* =========================================================
   WealthyVue 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 h3,
.wve-lux-post-grid .wve-editorial-card h3,
.wve-frame-archive .wve-editorial-card h3,
.wve-related .wve-editorial-card h3 {
	font-weight: 700 !important;
}

/* End WealthyVue Editorial v0.3.15 */

/* =========================================================
   WealthyVue Editorial v0.3.16
   More from WealthyVue heading size
   ========================================================= */

/* Use the requested fixed size for the homepage article-grid heading. */
.wve-lux-section-heading--journal h2 {
	font-size: 39px;
}

/* End WealthyVue Editorial v0.3.16 */

/* =========================================================
   WealthyVue 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 WealthyVue Editorial v0.3.18 */
/* =========================================================
   WealthyVue 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: #111827;
}

.wve-article-cta__content {
	min-width: 0;
}

.wve-article-cta h2 {
	margin: 0 0 12px;
	color: #111827;
	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: #111827;
	border-radius: 999px;
	background: #111827;
	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: #111827 !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: #111827 !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 WealthyVue Editorial v0.3.20 */


/* =========================================
   Optional article standfirst
   ========================================= */
.wve-article-header .wve-standfirst {
	max-width: 760px;
	margin: 18px 0 22px;
	color: #3E607E;
	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: #AFC2D3;
}

@media (max-width: 767px) {
	.wve-article-header .wve-standfirst {
		margin: 14px 0 18px;
		font-size: 18px;
		line-height: 1.48;
	}
}

/* =========================================================
   WealthyVue 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 h3,
.wve-lux-feature h3,
.wve-lux-post-grid .wve-editorial-card h3,
.wve-frame-archive .wve-editorial-card h3,
.wve-related .wve-editorial-card h3 {
	font-weight: 500 !important;
}

/* End WealthyVue Editorial v0.3.26 */

/* =========================================================
   WealthyVue 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 #3E607E;
	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: #3E607E;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

/* End WealthyVue Editorial v0.3.27 */

/* =========================================================
   WealthyVue 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 WealthyVue Editorial v0.3.28 */

/* =========================================================
   WealthyVue 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 WealthyVue Editorial v0.3.29 */
/* =========================================================
   WealthyVue 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 WealthyVue Editorial v0.3.30 */
