/* =========================================================
   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,
		"Inter",
		"Segoe UI",
		"Helvetica Neue",
		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: Georgia, "Times New Roman", serif;
	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: Georgia, "Times New Roman", serif;
	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;
	}
}
