/*
Theme Name: Brian Winum Redesign
Theme URI: https://brianwinum.com/
Author: Brian Winum
Author URI: https://brianwinum.com/
Description: A crisp, editorial WordPress theme for Brian Winum's blog, courses, products, and consulting practice.
Version: 1.4.36
Requires at least: 6.2
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bwinum
*/

:root {
	--ink: #111111;
	--ink-soft: #444444;
	--muted: #777777;
	--line: #e2e2e2;
	--paper: #ffffff;
	--wash: #f7f6f4;
	--accent: #b3251e;
	--accent-dark: #8d1d18;
	--shell: 1360px;
	--gutter: clamp(22px, 3.55vw, 48px);
	--font: "Libre Franklin", Arial, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font);
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}

body.menu-is-open {
	overflow: hidden;
}

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

a:hover {
	color: var(--accent);
}

button,
input,
select,
textarea {
	font: inherit;
}

button,
input[type="submit"] {
	cursor: pointer;
}

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

::selection {
	background: var(--accent);
	color: #ffffff;
}

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

.site-shell {
	width: min(100%, var(--shell));
	min-height: 100vh;
	margin: 0 auto;
	background: var(--paper);
	box-shadow: none;
}

.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;
}

.screen-reader-text:focus {
	top: 8px;
	left: 8px;
	z-index: 100000;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	background: #ffffff;
	color: var(--ink);
	font-weight: 700;
}

.site-header {
	position: relative;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 76px;
	padding: 0 var(--gutter);
	border-bottom: 2px solid var(--ink);
	background: var(--paper);
}

.wordmark {
	font-size: 24px;
	font-weight: 900;
	letter-spacing: -0.035em;
}

.wordmark span {
	color: var(--accent);
}

.custom-logo-link,
.custom-logo-link:hover {
	color: inherit;
}

.custom-logo {
	width: auto;
	max-height: 48px;
}

.site-navigation .primary-menu {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.5vw, 34px);
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 14px;
	font-weight: 600;
}

.primary-menu > li {
	position: relative;
}

.primary-menu > .menu-item-has-children > a {
	display: flex;
	align-items: center;
	gap: 7px;
}

.primary-menu > .menu-item-has-children > a::after {
	width: 6px;
	height: 6px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	content: "";
	transform: translateY(-2px) rotate(45deg);
}

.primary-menu a {
	display: block;
	padding: 12px 0;
}

.primary-menu > li:last-child > a {
	padding: 9px 18px;
	background: var(--ink);
	color: #ffffff;
}

.primary-menu > li:last-child > a:hover,
.contact-layout .primary-menu > li:last-child > a {
	background: var(--accent);
}

.primary-menu .current-menu-item:not(:last-child) > a,
.primary-menu .current_page_item:not(:last-child) > a,
.primary-menu .current-menu-parent > a,
.primary-menu .current-menu-ancestor > a,
.primary-menu .sub-menu .current-menu-item > a,
.primary-menu .sub-menu .current_page_item > a {
	color: var(--accent);
}

.primary-menu .sub-menu {
	position: absolute;
	top: calc(100% - 2px);
	left: -18px;
	min-width: 190px;
	margin: 0;
	padding: 10px 18px;
	list-style: none;
	border: 1px solid var(--ink);
	background: #ffffff;
	opacity: 0;
	visibility: hidden;
	transform: translateY(5px);
	transition: 160ms ease;
}

.primary-menu .sub-menu a {
	padding: 8px 0;
	white-space: nowrap;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.menu-toggle {
	display: none;
	align-items: center;
	gap: 10px;
	padding: 9px 0;
	border: 0;
	background: transparent;
	color: var(--ink);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.menu-toggle__icon {
	display: grid;
	gap: 5px;
	width: 22px;
}

.menu-toggle__icon i {
	display: block;
	height: 2px;
	background: currentColor;
	transition: 160ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
	transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
	transform: translateY(-3.5px) rotate(-45deg);
}

.eyebrow {
	color: var(--accent);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 25px;
	border: 2px solid transparent;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	transition: color 150ms ease, background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.button:hover {
	transform: translateY(-1px);
}

.button--accent {
	background: var(--accent);
	color: #ffffff;
}

.button--accent:hover {
	background: var(--accent-dark);
	color: #ffffff;
}

.button--dark {
	background: var(--ink);
	color: #ffffff;
}

.button--dark:hover {
	background: var(--accent);
	color: #ffffff;
}

.button--outline {
	border-color: var(--ink);
	background: #ffffff;
	color: var(--ink);
}

.button--outline:hover {
	border-color: var(--accent);
	color: var(--accent);
}

.text-link {
	display: inline-block;
	padding-bottom: 3px;
	border-bottom: 2px solid var(--accent);
	font-size: 14px;
	font-weight: 700;
}

.featured-story {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	min-height: 500px;
	border-bottom: 2px solid var(--ink);
}

.featured-story__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 56px var(--gutter);
}

.story-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 9px 14px;
	color: #999999;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.featured-story h1 {
	max-width: 700px;
	margin: 18px 0;
	font-size: clamp(36px, 3.4vw, 50px);
	font-weight: 800;
	line-height: 1.07;
	letter-spacing: -0.035em;
	text-wrap: pretty;
}

.featured-story h1 a:hover,
.feed-story h2 a:hover,
.related-posts h3 a:hover {
	color: var(--accent);
}

.featured-story__content > p {
	max-width: 660px;
	margin: 0 0 27px;
	color: var(--ink-soft);
	font-size: 17px;
	line-height: 1.62;
	text-wrap: pretty;
}

.featured-story__image {
	min-width: 0;
	border-left: 2px solid var(--ink);
	overflow: hidden;
}

.featured-story__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
}

.featured-story__image:hover img {
	transform: scale(1.02);
}

.story-feed {
	padding: 0 var(--gutter);
}

.feed-story {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	gap: 32px;
	padding: 34px 0;
	border-bottom: 1px solid var(--line);
}

.story-feed .feed-story:last-child {
	border-bottom: 0;
}

.feed-story time,
.related-posts time {
	padding-top: 6px;
	color: #999999;
	font-size: 13px;
	font-weight: 600;
}

.feed-story h2 {
	margin: 0 0 8px;
	font-size: clamp(22px, 2vw, 26px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	text-wrap: pretty;
}

.feed-story p {
	max-width: 850px;
	margin: 0;
	color: #555555;
	font-size: 15px;
	line-height: 1.58;
	text-wrap: pretty;
}

.llms-promo,
.contentledger-promo {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 40px;
	padding: 39px var(--gutter);
	background: var(--ink);
	color: #ffffff;
}

.llms-promo h3,
.contentledger-promo h3 {
	margin: 9px 0 8px;
	color: #ffffff;
	font-size: clamp(25px, 2.5vw, 32px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.025em;
}

.llms-promo p,
.contentledger-promo p {
	margin: 0;
	color: #bbbbbb;
	font-size: 15px;
	line-height: 1.55;
}

.llms-promo--inline,
.contentledger-promo--inline {
	margin: 44px 0;
	padding: 32px 36px;
	gap: 30px;
}

.llms-promo--inline h3,
.contentledger-promo--inline h3 {
	font-size: 24px;
}

.llms-promo--inline p,
.contentledger-promo--inline p {
	font-size: 14px;
}

.contentledger-promo + .split-promo {
	margin-top: 40px;
}

.split-promo {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 2px solid var(--ink);
	border-bottom: 2px solid var(--ink);
}

.split-promo > div {
	padding: 38px var(--gutter);
}

.split-promo > div:first-child {
	border-right: 2px solid var(--ink);
}

.split-promo h2 {
	margin: 10px 0 8px;
	font-size: 26px;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.025em;
}

.split-promo p {
	margin: 0 0 18px;
	color: #555555;
	font-size: 14px;
	line-height: 1.55;
}

.newsletter {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 27px var(--gutter);
	border-bottom: 1px solid var(--line);
}

.newsletter h2 {
	margin: 0 0 3px;
	font-size: 16px;
	font-weight: 700;
}

.newsletter p {
	margin: 0;
	color: var(--muted);
	font-size: 12px;
}

.newsletter-form,
.search-form {
	display: flex;
	min-width: min(100%, 380px);
}

.newsletter-form {
	width: 380px;
	margin-left: auto;
	flex: 0 0 380px;
	justify-content: flex-end;
}

@media (min-width: 1021px) {
	.newsletter-form {
		margin-right: -40px;
	}
}

.newsletter > .form-notice {
	margin-left: auto;
	text-align: right;
}

.newsletter-form input,
.search-form input {
	min-width: 0;
	width: 260px;
	padding: 11px 14px;
	border: 1px solid var(--ink);
	border-right: 0;
	border-radius: 0;
	background: #ffffff;
	font-size: 14px;
}

.newsletter-form button,
.search-form button {
	padding: 0 20px;
	border: 1px solid var(--ink);
	background: var(--ink);
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
}

.site-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding: 21px var(--gutter);
	color: var(--muted);
	font-size: 12px;
}

.site-footer p {
	margin: 0;
}

.back-to-top {
	position: fixed;
	right: max(20px, calc((100vw - var(--shell)) / 2 - 68px));
	bottom: 24px;
	z-index: 90;
	display: grid;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 2px solid var(--ink);
	background: var(--ink);
	color: #ffffff;
	place-items: center;
	font-size: 23px;
	font-weight: 700;
	line-height: 1;
	opacity: 0;
	pointer-events: none;
	transform: translateY(12px);
	transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

@media (max-width: 1536px) {
	.site-footer {
		padding-right: calc(var(--gutter) + 68px);
	}
}

.back-to-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.back-to-top:hover {
	border-color: var(--accent);
	background: var(--accent);
	color: #ffffff;
}

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

	.back-to-top {
		transition: none;
	}
}

.footer-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 12px 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.archive-header,
.page-hero {
	padding: clamp(55px, 7vw, 92px) var(--gutter);
	border-bottom: 2px solid var(--ink);
}

.archive-header h1,
.page-hero h1 {
	max-width: 920px;
	margin: 15px 0 0;
	font-size: clamp(42px, 5vw, 64px);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.04em;
	text-wrap: balance;
}

.archive-description,
.page-hero p {
	max-width: 700px;
	margin-top: 20px;
	color: var(--ink-soft);
	font-size: 18px;
	line-height: 1.6;
}

.story-feed--archive {
	max-width: 1060px;
	margin: 0 auto;
}

.pagination {
	padding: 26px var(--gutter) 38px;
	text-align: center;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	min-height: 38px;
	margin: 3px;
	padding: 7px 10px;
	border: 1px solid var(--ink);
	font-size: 13px;
	font-weight: 700;
}

.pagination .current,
.pagination a:hover {
	background: var(--ink);
	color: #ffffff;
}

.empty-state {
	padding: clamp(80px, 12vw, 160px) var(--gutter);
	text-align: center;
}

.empty-state h1,
.empty-state h2 {
	max-width: 780px;
	margin: 16px auto;
	font-size: clamp(38px, 5vw, 64px);
	line-height: 1.08;
	letter-spacing: -0.04em;
}

.empty-state p {
	max-width: 620px;
	margin: 0 auto 28px;
	color: var(--muted);
	font-size: 17px;
	line-height: 1.6;
}

.empty-state .search-form {
	max-width: 520px;
	margin: 25px auto;
}

.empty-state--small {
	padding-block: 80px;
}

.empty-state--small h2 {
	font-size: 38px;
}

/* Branded 404 */
.not-found-page {
	border-bottom: 2px solid var(--ink);
}

.not-found-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(350px, 0.65fr);
	min-height: 680px;
	border-bottom: 2px solid var(--ink);
}

.not-found-hero__message {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding: clamp(64px, 8vw, 112px) var(--gutter);
}

.not-found-code {
	margin: 0 0 26px;
	font-size: clamp(108px, 15vw, 210px);
	font-weight: 800;
	line-height: 0.72;
	letter-spacing: -0.085em;
}

.not-found-code span {
	color: var(--accent);
}

.not-found-hero h1 {
	max-width: 800px;
	margin: 15px 0 21px;
	font-size: clamp(42px, 5.1vw, 72px);
	line-height: 1.02;
	letter-spacing: -0.05em;
	text-wrap: balance;
}

.not-found-intro {
	max-width: 690px;
	margin: 0;
	color: var(--ink-soft);
	font-size: 17px;
	line-height: 1.7;
}

.not-found-hero .search-form {
	width: min(100%, 650px);
	margin: 31px 0 22px;
}

.not-found-actions {
	display: flex;
	align-items: center;
	gap: 25px;
	flex-wrap: wrap;
}

.not-found-text-link,
.not-found-latest__header > a,
.not-found-article-link {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.035em;
	text-transform: uppercase;
}

.not-found-text-link span,
.not-found-latest__header > a span,
.not-found-article-link span {
	color: var(--accent);
}

.not-found-directory {
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding: clamp(50px, 5vw, 78px) clamp(30px, 4vw, 54px);
	background: var(--ink);
	color: #ffffff;
}

.not-found-directory__kicker {
	margin: 0 0 16px;
	color: #c7c7c7;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.not-found-directory h2 {
	max-width: 390px;
	margin: 0 0 32px;
	font-size: clamp(34px, 3.5vw, 50px);
	line-height: 1.05;
	letter-spacing: -0.04em;
}

.not-found-directory nav {
	border-top: 1px solid #484848;
}

.not-found-directory nav a {
	position: relative;
	display: block;
	padding: 20px 38px 20px 0;
	border-bottom: 1px solid #484848;
}

.not-found-directory nav a::after {
	position: absolute;
	top: 21px;
	right: 4px;
	color: var(--accent);
	content: "\2192";
	font-size: 22px;
	transition: transform 180ms ease;
}

.not-found-directory nav a:hover {
	color: #ffffff;
}

.not-found-directory nav a:hover::after {
	transform: translateX(5px);
}

.not-found-directory nav span,
.not-found-directory nav small {
	display: block;
}

.not-found-directory nav span {
	font-size: 18px;
	font-weight: 800;
}

.not-found-directory nav small {
	margin-top: 7px;
	color: #b7b7b7;
	font-size: 12px;
	line-height: 1.5;
}

.not-found-latest {
	padding: clamp(60px, 7vw, 94px) var(--gutter);
}

.not-found-latest__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	padding-bottom: 28px;
	border-bottom: 2px solid var(--ink);
}

.not-found-latest__header h2 {
	margin: 13px 0 0;
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1.08;
	letter-spacing: -0.04em;
}

.not-found-latest__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.not-found-latest article {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	min-height: 320px;
	padding: 31px 34px 9px 0;
	border-bottom: 1px solid var(--line);
}

.not-found-latest article + article {
	padding-left: 34px;
	border-left: 1px solid var(--line);
}

.not-found-latest time {
	color: var(--muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.not-found-latest h3 {
	margin: 18px 0 13px;
	font-size: clamp(21px, 2vw, 27px);
	line-height: 1.18;
	letter-spacing: -0.025em;
}

.not-found-latest article p {
	margin: 0 0 25px;
	color: var(--ink-soft);
	font-size: 14px;
	line-height: 1.65;
}

.not-found-article-link {
	margin-top: auto;
}

/* Single article */
.article-header {
	max-width: 956px;
	margin: 0 auto;
	padding: 63px var(--gutter) 0;
}

.article-header h1 {
	margin: 19px 0 18px;
	font-size: clamp(40px, 4.2vw, 56px);
	font-weight: 800;
	line-height: 1.075;
	letter-spacing: -0.038em;
	text-wrap: pretty;
}

.article-deck {
	margin: 0 0 28px;
	color: #555555;
	font-size: 20px;
	line-height: 1.5;
	text-wrap: pretty;
}

.byline-share {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.byline {
	display: flex;
	align-items: center;
	gap: 12px;
}

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

.byline strong,
.byline span {
	display: block;
}

.byline strong {
	font-size: 14px;
}

.byline span {
	margin-top: 3px;
	color: #999999;
	font-size: 12px;
}

.share-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.share-links a,
.share-links button {
	padding: 7px 13px;
	border: 1px solid var(--ink);
	border-radius: 0;
	background: #ffffff;
	color: var(--ink);
	font-size: 12px;
	font-weight: 600;
}

.share-links a:hover,
.share-links button:hover {
	border-color: var(--accent);
	color: var(--accent);
}

.article-featured-image {
	max-width: 1156px;
	margin: 40px auto 0;
	padding: 0 var(--gutter);
}

.article-featured-image img {
	width: 100%;
}

.article-featured-image figcaption,
.article-content figcaption {
	margin-top: 9px;
	color: #999999;
	font-size: 13px;
	line-height: 1.5;
}

.article-content .article-body-image,
.prose-section .article-body-image {
	width: 100%;
	max-width: 100%;
	margin: 36px 0;
}

.article-content .article-body-image img,
.prose-section .article-body-image img {
	display: block;
	width: 100%;
	height: auto;
}

.article-content,
.prose-section {
	max-width: 816px;
	margin: 0 auto;
	padding: 47px var(--gutter) 0;
	color: #222222;
	font-size: 18px;
	line-height: 1.72;
}

.article-content p.has-drop-cap:not(:focus)::first-letter,
.article-content p.is-style-drop-cap::first-letter,
.prose-section p.has-drop-cap:not(:focus)::first-letter,
.prose-section p.is-style-drop-cap::first-letter,
.editor-styles-wrapper p.has-drop-cap:not(:focus)::first-letter,
.editor-styles-wrapper p.is-style-drop-cap::first-letter {
	float: left;
	padding: 8px 12px 0 0;
	color: var(--accent);
	font-size: 64px;
	font-weight: 800;
	line-height: 0.8;
}

.article-content p,
.prose-section p {
	margin: 0 0 26px;
	text-wrap: pretty;
}

.article-content h2,
.prose-section h2 {
	margin: 44px 0 16px;
	font-size: 30px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.025em;
}

.article-content h3,
.prose-section h3 {
	margin: 36px 0 12px;
	font-size: 23px;
	line-height: 1.25;
}

.article-content a:not(.button):not(.text-link):not(.article-tags a),
.prose-section a:not(.button) {
	border-bottom: 2px solid var(--accent);
}

.article-content blockquote,
.prose-section blockquote {
	margin: 36px 0;
	padding: 4px 0 4px 28px;
	border-left: 4px solid var(--accent);
	color: var(--ink);
	font-size: 24px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: -0.015em;
}

.article-content blockquote p {
	margin: 0;
}

/* Keep Reddit embeds flush with the article text column. */
.article-content figure.wp-block-embed-reddit,
.article-content figure.wp-block-embed-reddit.alignleft,
.entry-content figure.wp-block-embed-reddit,
.entry-content figure.wp-block-embed-reddit.alignleft,
.editor-styles-wrapper figure.wp-block-embed-reddit,
.editor-styles-wrapper figure.wp-block-embed-reddit.alignleft {
	float: none !important;
	margin: 36px 0 !important;
	padding: 0 !important;
}

.article-content figure.wp-block-embed-reddit .wp-block-embed__wrapper,
.entry-content figure.wp-block-embed-reddit .wp-block-embed__wrapper,
.editor-styles-wrapper figure.wp-block-embed-reddit .wp-block-embed__wrapper {
	margin-inline-start: 0 !important;
	margin-left: 0 !important;
	padding-inline-start: 0 !important;
	padding-left: 0 !important;
}

.article-content figure.wp-block-embed-reddit blockquote.reddit-embed-bq,
.entry-content figure.wp-block-embed-reddit blockquote.reddit-embed-bq,
.editor-styles-wrapper figure.wp-block-embed-reddit blockquote.reddit-embed-bq {
	margin: 0 !important;
	padding: 0 !important;
	border-left: 0;
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: normal;
}

.article-content figure.wp-block-embed-reddit iframe,
.entry-content figure.wp-block-embed-reddit iframe,
.editor-styles-wrapper figure.wp-block-embed-reddit iframe {
	display: block;
	margin-inline-start: 0 !important;
	margin-left: 0 !important;
	max-width: 100%;
}

/* Reddit replaces its original block with a direct child iframe after loading. */
.article-content > iframe[src*="embed.reddit.com"],
.article-content > iframe[src*="redditmedia.com"] {
	display: block;
	margin: 36px 0 !important;
	max-width: 100%;
}

.article-content ul,
.article-content ol,
.prose-section ul,
.prose-section ol,
.editor-styles-wrapper ul,
.editor-styles-wrapper ol {
	padding-left: 1.4em;
}

.article-content ul,
.prose-section ul,
.editor-styles-wrapper ul {
	list-style-type: square;
}

.article-content ul > li::marker,
.prose-section ul > li::marker,
.editor-styles-wrapper ul > li::marker {
	color: var(--accent);
	font-size: 0.72em;
}

.article-content ol > li::marker,
.prose-section ol > li::marker,
.editor-styles-wrapper ol > li::marker {
	color: var(--accent);
	font-style: italic;
	font-weight: 800;
}

.article-content li + li,
.prose-section li + li,
.editor-styles-wrapper li + li {
	margin-top: 8px;
}

.article-content pre,
.prose-section pre {
	overflow-x: auto;
	padding: 20px;
	background: var(--ink);
	color: #ffffff;
	font-size: 14px;
	line-height: 1.6;
}

.article-content table,
.prose-section table {
	width: 100%;
	border-collapse: collapse;
}

.article-content th,
.article-content td,
.prose-section th,
.prose-section td {
	padding: 10px;
	border: 1px solid var(--line);
	text-align: left;
}

/* Dynamic visitor sitemap */
.dynamic-sitemap {
	margin-top: 48px;
	border-top: 2px solid var(--ink);
}

.dynamic-sitemap__directory {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
	border-bottom: 2px solid var(--ink);
}

.dynamic-sitemap__section {
	padding: 31px 0 36px;
}

.dynamic-sitemap__directory .dynamic-sitemap__section + .dynamic-sitemap__section {
	padding-left: 34px;
	border-left: 1px solid var(--line);
}

.dynamic-sitemap h2 {
	margin: 0 0 21px;
	font-size: 27px;
}

.dynamic-sitemap h3 {
	margin: 0;
	color: var(--accent);
	font-size: 16px;
	letter-spacing: 0.05em;
}

.dynamic-sitemap ul,
.dynamic-sitemap ol {
	padding: 0;
	margin: 0;
	list-style: none;
}

.dynamic-sitemap li {
	margin: 0;
}

.dynamic-sitemap a:not(.button) {
	border-bottom: 0;
	font-weight: 700;
}

.dynamic-sitemap__pages > li,
.dynamic-sitemap__categories li,
.dynamic-sitemap__year li {
	padding: 11px 0;
	border-bottom: 1px solid var(--line);
}

.dynamic-sitemap__pages .children {
	padding: 6px 0 0 20px;
}

.dynamic-sitemap__pages .children li {
	padding: 7px 0;
}

.dynamic-sitemap__categories li,
.dynamic-sitemap__year li {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 24px;
}

.dynamic-sitemap__categories span,
.dynamic-sitemap__year time {
	color: var(--muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	white-space: nowrap;
}

.dynamic-sitemap__articles {
	padding-bottom: 0;
}

.dynamic-sitemap__year {
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr);
	gap: 24px;
	padding: 21px 0;
	border-top: 1px solid var(--line);
}

.dynamic-sitemap__year:first-of-type {
	border-top: 0;
}

@media (max-width: 620px) {
	.dynamic-sitemap__directory {
		grid-template-columns: 1fr;
	}

	.dynamic-sitemap__directory .dynamic-sitemap__section + .dynamic-sitemap__section {
		padding-left: 0;
		border-top: 1px solid var(--line);
		border-left: 0;
	}

	.dynamic-sitemap__year {
		grid-template-columns: 1fr;
		gap: 3px;
	}
}

/* Article summary pattern */
.article-key-takeaways {
	margin: 0 0 48px;
	padding: 26px 30px 7px;
	border-top: 5px solid var(--accent);
	border-bottom: 2px solid var(--ink);
	background: var(--wash);
}

.article-key-takeaways__header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 18px;
}

.article-key-takeaways__eyebrow {
	order: 2;
	margin: 0 !important;
	color: var(--accent);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	white-space: nowrap;
}

.article-key-takeaways__header h2 {
	margin: 0;
	font-size: 27px;
	line-height: 1.15;
	letter-spacing: -0.03em;
}

.article-key-takeaways__list {
	padding: 0 !important;
	margin: 0 !important;
	counter-reset: takeaway;
	list-style: none !important;
}

.article-key-takeaways__list li {
	position: relative;
	margin-top: 0;
	padding: 15px 0 16px 45px;
	border-top: 1px solid #d8d6d2;
	color: var(--ink-soft);
	font-size: 15px;
	line-height: 1.6;
	counter-increment: takeaway;
}

.article-key-takeaways__list li::before {
	display: grid;
	position: absolute;
	top: 16px;
	left: 0;
	width: 27px;
	height: 27px;
	border: 1px solid var(--accent);
	border-radius: 50%;
	color: var(--accent);
	content: counter(takeaway, decimal-leading-zero);
	font-family: "IBM Plex Mono", monospace;
	font-size: 10px;
	font-weight: 600;
	line-height: 1;
	place-items: center;
}

.article-key-takeaways__list strong {
	color: var(--ink);
	font-weight: 800;
}

/* Reader notice pattern */
.article-reader-notice {
	display: grid;
	grid-template-columns: 116px minmax(0, 1fr);
	margin: 42px 0;
	border: 2px solid var(--ink);
	background: #fbfaf9;
}

.article-reader-notice__label {
	display: flex;
	padding: 22px 15px;
	background: var(--accent);
	color: #ffffff;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
	text-align: center;
}

.article-reader-notice__label p {
	margin: 0 !important;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.11em;
	line-height: 1.25;
	text-transform: uppercase;
}

.article-reader-notice__symbol {
	display: grid;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	font-family: "IBM Plex Mono", monospace;
	font-size: 16px !important;
	letter-spacing: 0 !important;
	place-items: center;
}

.article-reader-notice__content {
	padding: 23px 27px 21px;
}

.article-reader-notice__content h3 {
	margin: 0 0 8px;
	font-size: 22px;
	line-height: 1.25;
	letter-spacing: -0.025em;
}

.article-reader-notice__content p {
	margin: 0 !important;
	color: var(--ink-soft);
	font-size: 15px;
	line-height: 1.65;
}

/* Review post patterns */
.review-scorecard {
	margin: 48px 0;
	border: 2px solid var(--ink);
	background: #ffffff;
	box-shadow: 8px 8px 0 var(--wash);
}

.review-scorecard__header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 124px;
	align-items: stretch;
	border-bottom: 2px solid var(--ink);
}

.review-scorecard__header > .wp-block-group:first-child {
	padding: 27px 30px;
}

.review-scorecard__eyebrow,
.review-info-box__eyebrow {
	margin: 0 0 9px !important;
	color: var(--accent);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.review-scorecard__header h2,
.review-info-box h2 {
	margin: 0 0 8px;
	font-size: 27px;
	line-height: 1.15;
	letter-spacing: -0.03em;
}

.review-scorecard__byline {
	margin: 0 !important;
	color: var(--muted);
	font-size: 13px;
}

.review-scorecard__overall {
	display: grid;
	padding: 18px;
	background: var(--ink);
	color: #ffffff;
	place-items: center;
	text-align: center;
}

.review-scorecard__overall p {
	margin: 0 !important;
}

.review-scorecard__overall strong,
.review-scorecard__overall span {
	display: block;
}

.review-scorecard__overall strong {
	font-size: 38px;
	line-height: 1;
	letter-spacing: -0.05em;
}

.review-scorecard__overall span {
	margin-top: 7px;
	color: #bdbdbd;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.review-scorecard__criteria {
	padding: 0 30px;
}

.review-scorecard__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 20px;
	padding: 15px 0;
	border-bottom: 1px solid var(--line);
}

.review-scorecard__row p {
	margin: 0 !important;
	font-size: 15px;
	font-weight: 700;
}

.review-scorecard__stars {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 11px;
	white-space: nowrap;
}

.review-scorecard__stars > span {
	font-size: 18px;
	letter-spacing: 0.06em;
}

.review-scorecard__star-rating {
	display: inline-block;
	position: relative;
	line-height: 1;
}

.review-scorecard__stars-base {
	display: block;
	color: #d2d0cc;
}

.review-scorecard__stars-fill {
	display: block;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	color: var(--accent);
	white-space: nowrap;
}

.review-scorecard__stars small {
	min-width: 25px;
	color: var(--muted);
	font-size: 11px;
	font-weight: 700;
}

.review-scorecard__summary {
	margin-top: -1px;
	padding: 27px 30px 24px;
	border-top: 2px solid var(--ink);
	background: var(--wash);
}

.review-scorecard__summary h3 {
	margin: 0 0 10px;
	font-size: 19px;
}

.review-scorecard__summary p {
	margin: 0 !important;
	font-size: 15px;
	line-height: 1.65;
}

.review-scorecard__actions {
	padding: 24px 30px 30px;
}

.review-scorecard .wp-block-button__link,
.review-info-box .wp-block-button__link {
	display: inline-flex;
	min-height: 48px;
	padding: 12px 22px;
	border: 2px solid var(--accent) !important;
	background: var(--accent);
	color: #ffffff;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.review-scorecard .wp-block-button__link:hover,
.review-info-box .wp-block-button__link:hover {
	border-color: var(--ink) !important;
	background: var(--ink);
	color: #ffffff;
}

.review-scorecard--editor {
	padding: 0;
}

.review-scorecard--editor .components-base-control {
	margin-bottom: 18px;
}

.review-scorecard--editor .components-base-control:last-child {
	margin-bottom: 0;
}

.review-scorecard__editor-section {
	padding: 24px 28px;
	border-bottom: 2px solid var(--ink);
}

.review-scorecard__editor-section:last-child {
	border-bottom: 0;
}

.review-scorecard__editor-section-heading,
.review-scorecard__editor-row-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.review-scorecard__editor-section-heading {
	margin-bottom: 18px;
}

.review-scorecard__editor-section-heading h3 {
	margin: 0;
	font-size: 19px;
}

.review-scorecard__editor-section-heading span {
	color: var(--muted);
	font-size: 12px;
	font-weight: 700;
}

.review-scorecard__editor-row {
	margin-bottom: 16px;
	padding: 18px;
	border: 1px solid var(--line);
	background: var(--wash);
}

.review-scorecard__editor-row-heading {
	margin-bottom: 15px;
}

.review-scorecard__editor-stars {
	margin-top: -8px;
	color: var(--accent);
	font-size: 19px;
	letter-spacing: 0.06em;
}

.review-scorecard__editor-add {
	min-height: 40px;
}

.review-info-box {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 34px;
	margin: 48px 0;
	padding: 31px 33px;
	border: 2px solid var(--ink);
	border-left: 8px solid var(--accent);
	background: var(--wash);
}

.review-info-box__copy > p:last-child {
	max-width: 590px;
	margin: 0;
	font-size: 15px;
	line-height: 1.65;
}

.review-info-box__action {
	justify-content: flex-end;
}

.article-faq {
	margin: 48px 0;
	border-top: 2px solid var(--ink);
	border-bottom: 2px solid var(--ink);
}

.article-faq__header {
	padding: 29px 0 26px;
	border-bottom: 2px solid var(--ink);
}

.article-faq__eyebrow {
	margin: 0 0 9px !important;
	color: var(--accent);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.article-faq__header h2 {
	margin: 0 0 9px;
	font-size: 28px;
	letter-spacing: -0.03em;
}

.article-faq__header > p:last-child {
	max-width: 650px;
	margin: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.6;
}

.article-faq__item {
	margin: 0;
	border-bottom: 1px solid var(--line);
}

.article-faq__item:last-child {
	border-bottom: 0;
}

.article-faq__item summary {
	position: relative;
	padding: 20px 50px 20px 0;
	cursor: pointer;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.4;
	list-style: none;
}

.article-faq__item summary::-webkit-details-marker {
	display: none;
}

.article-faq__item summary::after {
	position: absolute;
	top: 50%;
	right: 2px;
	color: var(--accent);
	content: "+";
	font-size: 27px;
	font-weight: 500;
	line-height: 1;
	transform: translateY(-50%);
}

.article-faq__item[open] summary::after {
	content: "−";
}

.article-faq__item > p,
.article-faq__item > ul,
.article-faq__item > ol {
	max-width: 680px;
	margin: -3px 48px 20px 0 !important;
	color: var(--ink-soft);
	font-size: 15px;
	line-height: 1.65;
}

.article-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 40px;
}

.article-tags a {
	padding: 7px 13px;
	border: 1px solid #dddddd;
	color: #555555;
	font-size: 12px;
	font-weight: 600;
}

.article-tags a:hover {
	border-color: var(--accent);
	color: var(--accent);
}

.author-box {
	display: flex;
	gap: 24px;
	margin-top: 44px;
	padding: 29px 31px;
	border: 2px solid var(--ink);
}

.author-box img {
	width: 72px;
	height: 72px;
	flex: 0 0 auto;
}

.author-box h2 {
	margin: 0 0 7px;
	font-size: 18px;
}

.author-box p {
	margin: 0 0 12px;
	color: #555555;
	font-size: 14px;
	line-height: 1.55;
}

.author-box__links {
	display: flex;
	gap: 18px;
}

.related-posts {
	max-width: 1264px;
	margin: 72px auto 0;
	padding: 0 var(--gutter);
}

.related-posts > header,
.section-rule {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--ink);
}

.related-posts > header h2,
.section-rule h2 {
	margin: 0;
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.025em;
}

.related-posts > header a {
	font-size: 14px;
	font-weight: 700;
}

.related-posts__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 40px;
	padding-top: 29px;
}

.related-posts h3 {
	margin: 7px 0;
	font-size: 20px;
	line-height: 1.27;
	letter-spacing: -0.02em;
}

.related-posts p {
	margin: 0;
	color: #555555;
	font-size: 14px;
	line-height: 1.55;
}

/* About page */
.about-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
	border-bottom: 2px solid var(--ink);
}

.about-hero > div {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 70px var(--gutter);
}

.about-hero h1 {
	max-width: 780px;
	margin: 17px 0;
	font-size: clamp(42px, 4vw, 56px);
	font-weight: 800;
	line-height: 1.055;
	letter-spacing: -0.04em;
	text-wrap: pretty;
}

.about-hero p {
	max-width: 620px;
	margin: 0 0 29px;
	color: var(--ink-soft);
	font-size: 18px;
	line-height: 1.62;
}

.about-hero > img {
	width: 100%;
	height: 100%;
	min-height: 560px;
	border-left: 2px solid var(--ink);
	object-fit: cover;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
}

.about-story {
	padding-top: 62px;
}

.about-story h2 {
	margin-top: 0;
}

.about-section {
	max-width: 1264px;
	margin: 63px auto 0;
	padding: 0 var(--gutter);
}

.timeline-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 30px;
	padding: 29px 0 31px;
	border-bottom: 2px solid var(--ink);
}

.timeline-grid strong {
	color: var(--accent);
	font-size: 22px;
	font-weight: 800;
}

.timeline-grid p {
	margin: 8px 0 0;
	color: #555555;
	font-size: 14px;
	line-height: 1.52;
}

.work-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border: 2px solid var(--ink);
	border-top: 0;
}

.work-card {
	padding: 35px;
	border-right: 2px solid var(--ink);
}

.work-card:last-child {
	border-right: 0;
}

.work-card--dark {
	background: var(--ink);
	color: #ffffff;
}

.work-card h3 {
	margin: 9px 0 8px;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.025em;
}

.work-card p {
	min-height: 66px;
	margin: 0 0 20px;
	color: #555555;
	font-size: 14px;
	line-height: 1.55;
}

.work-card--dark p {
	color: #bbbbbb;
}

.personal-note {
	max-width: 816px;
	margin: 62px auto 0;
	padding: 0 var(--gutter);
	text-align: center;
}

.personal-note > p {
	margin: 0;
	color: var(--ink-soft);
	font-size: 18px;
	line-height: 1.7;
}

.social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 11px;
}

.personal-note .social-links {
	justify-content: center;
	margin-top: 27px;
}

.social-links a {
	padding: 9px 18px;
	border: 1px solid var(--ink);
	font-size: 13px;
	font-weight: 700;
}

.social-links a:hover {
	border-color: var(--accent);
}

.about-page + .newsletter,
.personal-note + .newsletter {
	margin-top: 63px;
	border-top: 2px solid var(--ink);
}

.sitemap-layout .newsletter {
	border-top: 2px solid var(--ink);
}

.single-post .newsletter {
	margin-top: 40px;
	border-top: 2px solid var(--ink);
}

/* Contact */
.contact-page {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	min-height: calc(100vh - 76px - 67px);
	border-bottom: 2px solid var(--ink);
}

.contact-intro {
	display: flex;
	min-width: 0;
	padding: 69px var(--gutter) 48px;
	border-right: 2px solid var(--ink);
	flex-direction: column;
	align-items: flex-start;
}

.contact-intro h1 {
	margin: 17px 0;
	font-size: clamp(44px, 4vw, 56px);
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: -0.04em;
}

.contact-intro__lead {
	max-width: 520px;
	margin: 0 0 42px;
	color: var(--ink-soft);
	font-size: 18px;
	line-height: 1.62;
}

.contact-channels {
	width: 100%;
	border-top: 1px solid var(--line);
}

.contact-channels > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 19px 0;
	border-bottom: 1px solid var(--line);
}

.contact-channels strong,
.contact-channels small {
	display: block;
}

.contact-channels strong {
	font-size: 15px;
}

.contact-channels small {
	margin-top: 4px;
	color: var(--muted);
	font-size: 13px;
}

.contact-channels .text-link {
	flex: 0 0 auto;
	font-size: 13px;
}

.contact-social {
	margin-top: auto;
	padding-top: 42px;
}

.contact-social > span {
	display: block;
	margin-bottom: 13px;
	color: #999999;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.contact-social p {
	margin: 19px 0 0;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.5;
}

.consulting-intro .contact-intro__lead {
	margin-bottom: 28px;
}

.consulting-content {
	width: 100%;
	max-width: 570px;
	color: var(--ink-soft);
	font-size: 16px;
	line-height: 1.68;
}

.consulting-content h2 {
	margin: 28px 0 11px;
	color: var(--ink);
	font-size: 23px;
	line-height: 1.2;
	letter-spacing: -0.025em;
}

.consulting-content h2:first-child {
	margin-top: 0;
}

.consulting-content p {
	margin: 0 0 18px;
}

.consulting-content ul {
	margin: 0 0 22px;
	padding-left: 19px;
}

.consulting-content a {
	color: var(--accent);
	font-weight: 700;
}

.consulting-details {
	width: 100%;
	margin-top: 30px;
	border-top: 1px solid var(--line);
}

.consulting-details > div {
	display: grid;
	grid-template-columns: 90px minmax(0, 1fr);
	gap: 18px;
	padding: 15px 0;
	border-bottom: 1px solid var(--line);
}

.consulting-details span {
	color: var(--muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.consulting-details strong {
	font-size: 13px;
	line-height: 1.45;
}

.contact-form-panel {
	min-width: 0;
	padding: 69px var(--gutter);
	background: var(--wash);
}

.contact-form-panel > h2 {
	margin: 0 0 5px;
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.025em;
}

.contact-form-panel > p {
	margin: 0 0 31px;
	color: var(--muted);
	font-size: 14px;
}

.booking-panel {
	display: flex;
	flex-direction: column;
}

.booking-calendar-frame {
	width: 100%;
	min-height: 650px;
	padding: clamp(24px, 3.5vw, 38px);
	border: 2px solid var(--ink);
	background: #ffffff;
}

.booking-calendar__topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--line);
}

.booking-calendar__topline strong,
.booking-calendar__topline span {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.booking-calendar__topline span {
	color: var(--muted);
}

.booking-calendar__days {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	margin-top: 18px;
	border: 1px solid var(--ink);
}

.booking-calendar__days button {
	display: flex;
	min-width: 0;
	padding: 12px 5px 11px;
	border: 0;
	border-right: 1px solid var(--ink);
	background: #ffffff;
	color: var(--muted);
	flex-direction: column;
	align-items: center;
	gap: 4px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
}

.booking-calendar__days button:last-child {
	border-right: 0;
}

.booking-calendar__days button:hover,
.booking-calendar__days button.is-selected {
	background: var(--ink);
	color: #ffffff;
}

.booking-calendar__days strong {
	color: var(--ink);
	font-size: 19px;
}

.booking-calendar__days button:hover strong,
.booking-calendar__days button.is-selected strong {
	color: #ffffff;
}

.booking-calendar__days small {
	font-size: 9px;
}

.booking-calendar__slots-label {
	margin: 24px 0 11px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.booking-calendar__slots {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.booking-calendar__slots button {
	padding: 11px 8px;
	border: 1px solid var(--ink);
	background: #ffffff;
	color: var(--ink);
	font-size: 12px;
	font-weight: 700;
	text-align: center;
}

.booking-calendar__slots button:hover,
.booking-calendar__slots button.is-selected {
	background: var(--accent);
	border-color: var(--accent);
	color: #ffffff;
}

.booking-calendar__slots button:disabled {
	cursor: not-allowed;
	opacity: 0.58;
}

.booking-calendar__form {
	display: grid;
	gap: 15px;
	margin-top: 27px;
	padding-top: 25px;
	border-top: 1px solid var(--line);
}

.booking-calendar__field-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.booking-calendar__form label {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 7px;
}

.booking-calendar__form label > span {
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.booking-calendar__form input,
.booking-calendar__form textarea {
	width: 100%;
	min-width: 0;
	padding: 11px 12px;
	border: 1px solid var(--ink);
	border-radius: 0;
	background: #ffffff;
	font-size: 14px;
}

.booking-calendar__form textarea {
	resize: vertical;
}

.booking-calendar__form .button--block {
	margin-top: 2px;
}

.booking-calendar__form .button--block:disabled {
	cursor: not-allowed;
	opacity: 0.55;
}

.booking-calendar__status {
	margin: 15px 0 0;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.5;
}

.booking-calendar__status.is-error {
	color: var(--accent);
}

.booking-calendar__status.is-success {
	color: #217a3c;
	font-weight: 700;
}

.contact-form {
	display: grid;
	gap: 21px;
}

.field-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 21px;
}

.contact-form label:not(.checkbox):not(.honeypot) {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 8px;
}

.contact-form label > span:not(.checkbox span) {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
	width: 100%;
	min-width: 0;
	padding: 13px 14px;
	border: 1px solid var(--ink);
	border-radius: 0;
	background: #ffffff;
	color: var(--ink);
	font-size: 15px;
}

.contact-form textarea {
	min-height: 170px;
	line-height: 1.5;
	resize: vertical;
}

.contact-form select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
	background-position: calc(100% - 19px) 52%, calc(100% - 14px) 52%;
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
}

.contact-form__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.checkbox {
	display: flex;
	align-items: center;
	gap: 9px;
	color: #555555;
	font-size: 13px;
	cursor: pointer;
}

.checkbox input {
	width: 16px;
	height: 16px;
	accent-color: var(--accent);
}

.honeypot {
	position: absolute !important;
	left: -9999px !important;
}

.form-notice {
	padding: 14px 16px;
	margin: 0 0 24px;
	border: 1px solid currentColor;
	font-size: 14px;
	line-height: 1.5;
}

.form-notice strong {
	display: block;
}

.form-notice--success {
	color: #1e6a43;
	background: #eef9f3;
}

.form-notice--error {
	color: #91221c;
	background: #fff2f1;
}

/* Generic pages and WordPress content */
.page-hero--with-image {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 42%);
	gap: 50px;
	padding-block: 0;
}

.page-hero--with-image > div {
	align-self: center;
	padding-block: 70px;
}

.page-hero--with-image img {
	width: 100%;
	height: 100%;
	max-height: 520px;
	border-left: 2px solid var(--ink);
	object-fit: cover;
}

.page-content {
	padding-bottom: 72px;
}

.alignwide {
	width: min(1060px, calc(100vw - (2 * var(--gutter))));
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.alignfull {
	width: min(var(--shell), 100vw);
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.wp-caption,
.wp-caption-text,
.gallery-caption {
	max-width: 100%;
}

.sticky,
.bypostauthor {
	display: block;
}

/* Product, course, and changelog templates */
.sales-section {
	width: 100%;
	max-width: 1264px;
	margin: 63px auto 0;
	padding: 0 var(--gutter);
}

.sales-section--narrow {
	max-width: 956px;
}

.sales-page + .newsletter {
	margin-top: 63px;
	border-top: 2px solid var(--ink);
}

.button--large {
	min-height: 54px;
	padding: 15px 32px;
	font-size: 16px;
}

.button--block {
	display: flex;
	width: 100%;
	min-height: 58px;
	margin-top: 28px;
	font-size: 17px;
}

.product-hero {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	border-bottom: 2px solid var(--ink);
}

.product-hero__copy {
	display: flex;
	min-width: 0;
	padding: 70px var(--gutter);
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.product-hero__copy h1 {
	margin: 17px 0;
	font-size: clamp(46px, 4.2vw, 58px);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.04em;
}

.product-hero__copy > p {
	max-width: 590px;
	margin: 0 0 31px;
	color: var(--ink-soft);
	font-size: 20px;
	line-height: 1.55;
	text-wrap: pretty;
}

.purchase-row {
	display: flex;
	align-items: center;
	gap: 21px;
}

.purchase-row > span {
	color: var(--muted);
	font-size: 13px;
	line-height: 1.45;
}

.purchase-row--center {
	justify-content: center;
}

.purchase-row--center > span {
	text-align: left;
}

.product-hero__media {
	display: flex;
	min-width: 0;
	padding: 40px;
	border-left: 2px solid var(--ink);
	background: var(--wash);
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.product-media {
	width: 100%;
	max-width: 640px;
	border: 2px solid var(--ink);
	background: #000000;
}

.product-media > img {
	display: block;
	width: 100%;
	height: auto;
}

.responsive-embed {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
}

.responsive-embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.product-hero__media > p {
	margin: 11px 0 0;
	color: var(--muted);
	font-size: 13px;
	text-align: center;
}

.product-video-placeholder {
	background:
		linear-gradient(135deg, rgba(220, 36, 44, 0.16), transparent 48%),
		#111111;
	color: #ffffff;
}

.product-video-placeholder__content {
	position: absolute;
	inset: 0;
	display: flex;
	padding: 30px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.product-video-placeholder__play {
	position: relative;
	display: block;
	width: 68px;
	height: 68px;
	margin-bottom: 22px;
	border-radius: 50%;
	background: var(--accent);
}

.product-video-placeholder__play::after {
	position: absolute;
	top: 22px;
	left: 28px;
	width: 0;
	height: 0;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-left: 18px solid #ffffff;
	content: "";
}

.product-video-placeholder__content strong {
	font-size: clamp(22px, 2.2vw, 32px);
	line-height: 1.1;
}

.product-video-placeholder__content small {
	margin-top: 9px;
	color: #bfbfbf;
	font-family: var(--mono);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.sales-prose {
	width: 100%;
	max-width: 956px;
	margin: 62px auto 0;
	padding: 0 var(--gutter);
	color: #222222;
	font-size: 18px;
	line-height: 1.7;
}

.sales-prose h2 {
	margin: 0 0 19px;
	font-size: 30px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.025em;
}

.sales-prose p {
	margin: 0 0 22px;
	text-wrap: pretty;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border: 2px solid var(--ink);
	border-top: 0;
}

.feature-card {
	padding: 34px;
	border-right: 2px solid var(--ink);
	border-bottom: 2px solid var(--ink);
}

.feature-card:nth-child(even) {
	border-right: 0;
}

.feature-card:nth-last-child(-n + 2) {
	border-bottom: 0;
}

.feature-card h3 {
	display: flex;
	gap: 10px;
	margin: 0 0 10px;
	font-size: 18px;
	line-height: 1.3;
}

.feature-card h3 span {
	color: var(--accent);
}

.feature-card p {
	margin: 0 0 13px;
	color: #555555;
	font-size: 15px;
	line-height: 1.55;
}

.feature-card ul {
	margin: 0;
	padding-left: 18px;
	color: #555555;
	font-size: 14px;
	line-height: 1.72;
}

.credibility-strip {
	margin-top: 63px;
	padding: 50px var(--gutter);
	background: var(--ink);
	color: #ffffff;
	text-align: center;
}

.credibility-strip blockquote {
	max-width: 900px;
	margin: 0 auto 17px;
	font-size: clamp(22px, 2.2vw, 26px);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: -0.015em;
	text-wrap: pretty;
}

.credibility-strip p {
	margin: 0;
	color: #999999;
	font-size: 14px;
}

.pricing-box {
	border: 2px solid var(--ink);
}

.pricing-box > header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 24px;
	padding: 27px 34px;
	border-bottom: 2px solid var(--ink);
}

.pricing-box h2 {
	margin: 0;
	font-size: 26px;
	font-weight: 800;
	letter-spacing: -0.025em;
}

.pricing-box header p {
	display: flex;
	align-items: baseline;
	gap: 9px;
	margin: 0;
}

.pricing-box header strong {
	font-size: 40px;
	font-weight: 800;
	letter-spacing: -0.035em;
}

.pricing-box header span {
	color: var(--muted);
	font-size: 14px;
}

.pricing-box__body {
	padding: 29px 34px;
}

.pricing-box__body > .button--block {
	margin-block-start: 28px !important;
	padding: 14px 28px;
}

.check-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 30px;
	color: #333333;
	font-size: 15px;
	line-height: 1.5;
}

.check-grid > div {
	display: flex;
	gap: 10px;
}

.check-grid > div > span {
	color: var(--accent);
	font-weight: 800;
}

.checkout-note {
	margin: 11px 0 0;
	margin-block-start: 11px !important;
	color: #999999;
	font-size: 12px;
	text-align: center;
}

.faq-section details {
	border-bottom: 1px solid var(--line);
}

.faq-section details:last-of-type {
	border-bottom: 0;
}

.faq-section summary {
	position: relative;
	padding: 21px 38px 21px 0;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	list-style: none;
}

.faq-section summary::-webkit-details-marker {
	display: none;
}

.faq-section summary::after {
	position: absolute;
	top: 18px;
	right: 4px;
	content: "+";
	color: var(--accent);
	font-size: 24px;
	font-weight: 500;
}

.faq-section details[open] summary::after {
	content: "−";
}

.faq-section details p {
	margin: -8px 0 20px;
	padding-right: 35px;
	color: #555555;
	font-size: 15px;
	line-height: 1.58;
}

.product-trust-note,
.contentledger-trust-note {
	margin: 28px 0 0 !important;
	padding-top: 22px;
	border-top: 1px solid var(--line);
	color: var(--muted);
	font-size: 13px;
	line-height: 1.6;
}

.course-hero {
	padding: 78px var(--gutter);
	border-bottom: 2px solid var(--ink);
	text-align: center;
}

.course-hero > div {
	display: flex;
	max-width: 880px;
	margin: 0 auto;
	flex-direction: column;
	align-items: center;
}

.course-hero h1 {
	margin: 19px 0;
	font-size: clamp(48px, 5vw, 62px);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -0.045em;
	text-wrap: balance;
}

.course-hero > div > p {
	max-width: 680px;
	margin: 0 0 33px;
	color: var(--ink-soft);
	font-size: 20px;
	line-height: 1.56;
	text-wrap: pretty;
}

.audience-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-bottom: 2px solid var(--ink);
}

.audience-grid article {
	padding: 34px 39px;
	border-right: 2px solid var(--ink);
}

.audience-grid article:last-child {
	border-right: 0;
}

.audience-grid h2 {
	margin: 0 0 7px;
	font-size: 17px;
	font-weight: 800;
}

.audience-grid p {
	margin: 0;
	color: #555555;
	font-size: 15px;
	line-height: 1.55;
}

.inside-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 38px 46px;
	padding-top: 33px;
}

.inside-grid h3 {
	display: flex;
	gap: 11px;
	margin: 0 0 6px;
	font-size: 16px;
}

.inside-grid h3 span {
	color: var(--accent);
	font-size: 13px;
}

.inside-grid p {
	margin: 0;
	color: #555555;
	font-size: 14px;
	line-height: 1.55;
}

.section-rule--split > span {
	color: var(--muted);
	font-size: 14px;
}

.module-grid {
	display: grid;
	grid-auto-flow: column;
	grid-template-rows: repeat(7, minmax(0, auto));
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0 46px;
	margin: 10px 0 0;
	padding: 0;
	list-style: none;
}

.module-grid li {
	display: flex;
	gap: 13px;
	padding: 13px 0;
	border-bottom: 1px solid var(--line);
	font-size: 15px;
	line-height: 1.4;
}

.module-grid li:nth-child(7n) {
	border-bottom: 0;
}

.module-grid li > span {
	min-width: 25px;
	color: var(--accent);
	font-weight: 800;
}

.testimonial-section {
	margin-top: 63px;
	padding: 58px 0;
	background: var(--ink);
	color: #ffffff;
}

.testimonial-section .sales-section {
	margin-top: 0;
}

.section-rule--dark {
	border-bottom-color: #333333;
}

.section-rule--dark h2 {
	color: #ffffff;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px 54px;
	padding-top: 34px;
}

.testimonial-grid blockquote {
	margin: 0;
}

.testimonial-grid blockquote > p {
	margin: 0 0 13px;
	color: #eeeeee;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.56;
	text-wrap: pretty;
}

.testimonial-grid cite {
	display: block;
	font-style: normal;
}

.testimonial-grid cite strong,
.testimonial-grid cite span {
	display: block;
}

.testimonial-grid cite strong {
	font-size: 14px;
}

.testimonial-grid cite span {
	margin-top: 3px;
	color: #888888;
	font-size: 13px;
}

.instructor-section {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	align-items: center;
	gap: 47px;
}

.instructor-section > img {
	width: 100%;
	border: 2px solid var(--ink);
}

.instructor-section h2 {
	margin: 11px 0 13px;
	font-size: 30px;
	line-height: 1.15;
	letter-spacing: -0.025em;
}

.instructor-section p {
	max-width: 760px;
	margin: 0 0 17px;
	color: var(--ink-soft);
	font-size: 16px;
	line-height: 1.65;
}

.changelog-hero {
	padding: 54px var(--gutter);
	border-bottom: 2px solid var(--ink);
}

.changelog-hero > div,
.release-list {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

.changelog-hero p {
	display: flex;
	align-items: center;
	gap: 13px;
	margin: 0;
}

.current-version,
.release > header > strong,
.release-list code {
	font-family: "IBM Plex Mono", monospace;
}

.current-version {
	padding: 3px 9px;
	border: 1px solid var(--ink);
	font-size: 12px;
	font-weight: 500;
}

.changelog-hero h1 {
	margin: 15px 0 11px;
	font-size: clamp(42px, 4vw, 50px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.04em;
}

.changelog-hero > div > div {
	max-width: 680px;
	color: var(--ink-soft);
	font-size: 17px;
	line-height: 1.6;
}

.release-list {
	padding: 24px var(--gutter) 0;
}

.release {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 40px;
	padding: 39px 0;
	border-bottom: 1px solid var(--line);
}

.release:last-child {
	border-bottom: 0;
}

.release > header > strong,
.release > header > time,
.release-badge {
	display: block;
}

.release > header > strong {
	font-size: 20px;
	font-weight: 600;
}

.release > header > time {
	margin: 6px 0 10px;
	color: #999999;
	font-size: 13px;
}

.release-badge {
	width: fit-content;
	padding: 4px 9px;
	border: 1px solid var(--ink);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.release-badge--major {
	padding: 5px 10px;
	border: 0;
	background: var(--accent);
	color: #ffffff;
}

.release-badge--security {
	padding: 5px 10px;
	background: var(--ink);
	color: #ffffff;
}

.release h2 {
	margin: 0 0 9px;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: -0.02em;
}

.release p {
	margin: 0 0 13px;
	color: #555555;
	font-size: 15px;
	line-height: 1.6;
	text-wrap: pretty;
}

.release ul {
	margin: 0;
	padding-left: 18px;
	color: #555555;
	font-size: 14px;
	line-height: 1.8;
}

.changelog-cta {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 40px;
	margin-top: 23px;
	padding: 38px var(--gutter);
	background: var(--ink);
	color: #ffffff;
}

.changelog-cta h2 {
	margin: 0 0 6px;
	font-size: 28px;
	line-height: 1.15;
	letter-spacing: -0.025em;
}

.changelog-cta p {
	margin: 0;
	color: #bbbbbb;
	font-size: 15px;
}

.policy-hero {
	padding: 54px var(--gutter);
	border-bottom: 2px solid var(--ink);
}

.policy-hero > div,
.policy-grid {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.policy-hero h1 {
	margin: 15px 0 11px;
	font-size: clamp(40px, 4vw, 50px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.04em;
	text-wrap: balance;
}

.policy-hero p {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.5;
}

.policy-grid {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	align-items: start;
	gap: 64px;
	padding: 55px var(--gutter) 0;
}

.policy-grid--single {
	display: block;
}

.policy-toc {
	position: sticky;
	top: 24px;
	padding: 23px 25px;
	border: 1px solid var(--line);
}

.policy-toc > strong {
	display: block;
	margin-bottom: 13px;
	color: #999999;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.policy-toc ol {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
	flex-direction: column;
	gap: 10px;
}

.policy-toc a {
	display: block;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
}

.policy-toc a:hover {
	color: var(--accent);
}

.policy-content {
	width: 100%;
	max-width: 680px;
	color: #333333;
	font-size: 16px;
	line-height: 1.7;
}

.policy-content > :first-child:not(.policy-summary) {
	margin-top: 0;
}

.policy-content h2 {
	scroll-margin-top: 24px;
	margin: 35px 0 11px;
	color: var(--ink);
	font-size: 24px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.policy-content p {
	margin: 0 0 27px;
	text-wrap: pretty;
}

.policy-content ul,
.policy-content ol {
	display: flex;
	margin: 0 0 27px;
	padding-left: 20px;
	flex-direction: column;
	gap: 8px;
}

.policy-content a {
	border-bottom: 2px solid var(--accent);
}

.policy-content a:hover {
	color: var(--accent);
}

.policy-summary {
	margin-bottom: 35px;
	padding: 23px 27px;
	border: 2px solid var(--ink);
}

.policy-summary > strong {
	display: block;
	margin-bottom: 7px;
	color: var(--accent);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.policy-summary p {
	margin: 0;
	color: var(--ink);
	font-size: 17px;
	font-weight: 500;
	line-height: 1.6;
}

.policy-contact {
	margin-bottom: 12px;
	padding: 19px 23px;
	border: 1px solid var(--ink);
	font-size: 15px;
	line-height: 1.7;
}

.policy-page + .site-footer {
	margin-top: 63px;
	border-top: 2px solid var(--ink);
}

.policy-layout .footer-menu .current-menu-item > a,
.policy-layout .footer-menu .current_page_item > a {
	color: var(--accent);
}

@media (max-width: 1020px) {
	.featured-story {
		grid-template-columns: 1.15fr 0.85fr;
		min-height: 460px;
	}

	.about-hero {
		grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
	}

	.timeline-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.contact-page {
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	}

	.contact-social .social-links a {
		padding-inline: 12px;
	}

	.product-hero__media {
		padding: 30px;
	}

	.module-grid {
		gap: 0 30px;
	}

	.audience-grid article {
		padding-inline: 28px;
	}

	.policy-grid {
		grid-template-columns: 220px minmax(0, 1fr);
		gap: 42px;
	}
}

@media (max-width: 800px) {
	body {
		background: #ffffff;
	}

	.site-shell {
		box-shadow: none;
	}

	.site-header {
		height: 70px;
	}

	.menu-toggle {
		display: flex;
	}

	.site-navigation {
		position: fixed;
		inset: 70px 0 0;
		z-index: 100;
		display: none;
		padding: 20px var(--gutter) 40px;
		background: var(--paper);
		overflow-y: auto;
	}

	.site-navigation.is-open {
		display: block;
	}

	.site-navigation .primary-menu {
		align-items: stretch;
		gap: 0;
		flex-direction: column;
		font-size: 24px;
		font-weight: 800;
		letter-spacing: -0.02em;
	}

	.primary-menu > li {
		border-bottom: 1px solid var(--line);
	}

	.primary-menu a,
	.primary-menu > li:last-child > a {
		padding: 17px 0;
		background: transparent;
		color: var(--ink);
	}

	.contact-layout .primary-menu > li:last-child > a {
		background: transparent;
		color: var(--accent);
	}

	.primary-menu .sub-menu {
		position: static;
		display: block;
		min-width: 0;
		padding: 0 0 10px 20px;
		border: 0;
		opacity: 1;
		visibility: visible;
		transform: none;
		font-size: 16px;
	}

	.featured-story,
	.about-hero,
	.contact-page,
	.page-hero--with-image,
	.product-hero {
		grid-template-columns: 1fr;
	}

	.featured-story {
		min-height: 0;
	}

	.featured-story__content {
		min-height: 460px;
		padding-block: 50px;
	}

	.featured-story__image {
		order: -1;
		height: min(56vw, 440px);
		border-bottom: 2px solid var(--ink);
		border-left: 0;
	}

	.featured-story h1 {
		font-size: clamp(36px, 8vw, 52px);
	}

	.llms-promo {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.llms-promo .button {
		justify-self: start;
	}

	.related-posts__grid,
	.work-grid {
		grid-template-columns: 1fr;
	}

	.related-posts__grid {
		gap: 28px;
	}

	.about-hero > img {
		order: -1;
		height: min(92vw, 620px);
		min-height: 0;
		border-bottom: 2px solid var(--ink);
		border-left: 0;
		object-position: center 24%;
	}

	.about-hero > div {
		padding-block: 56px;
	}

	.work-card {
		border-right: 0;
		border-bottom: 2px solid var(--ink);
	}

	.work-card:last-child {
		border-bottom: 0;
	}

	.work-card p {
		min-height: 0;
	}

	.contact-intro {
		min-height: auto;
		border-right: 0;
		border-bottom: 2px solid var(--ink);
	}

	.contact-social {
		margin-top: 42px;
	}

	.page-hero--with-image {
		gap: 0;
		padding-inline: 0;
	}

	.page-hero--with-image > div {
		padding: 55px var(--gutter);
	}

	.page-hero--with-image img {
		order: -1;
		height: min(70vw, 480px);
		border-bottom: 2px solid var(--ink);
		border-left: 0;
	}

	.product-hero__copy {
		padding-block: 55px;
	}

	.product-hero__media {
		border-top: 2px solid var(--ink);
		border-left: 0;
	}

	.feature-grid,
	.audience-grid,
	.inside-grid,
	.module-grid,
	.testimonial-grid {
		grid-template-columns: 1fr;
	}

	.feature-card,
	.feature-card:nth-child(even),
	.feature-card:nth-last-child(-n + 2) {
		border-right: 0;
		border-bottom: 2px solid var(--ink);
	}

	.feature-card:last-child {
		border-bottom: 0;
	}

	.audience-grid article {
		border-right: 0;
		border-bottom: 2px solid var(--ink);
	}

	.audience-grid article:last-child {
		border-bottom: 0;
	}

	.inside-grid {
		gap: 28px 34px;
	}

	.module-grid {
		grid-auto-flow: row;
		grid-template-rows: none;
		gap: 0;
	}

	.module-grid li:nth-child(7n) {
		border-bottom: 1px solid var(--line);
	}

	.module-grid li:last-child {
		border-bottom: 0;
	}

	.testimonial-grid {
		gap: 32px;
	}

	.instructor-section {
		grid-template-columns: 1fr;
	}

	.instructor-section > img {
		max-width: 320px;
	}

	.release {
		grid-template-columns: 160px minmax(0, 1fr);
		gap: 28px;
	}

	.changelog-cta {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.changelog-cta .button {
		justify-self: start;
	}

	.policy-grid {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.policy-toc {
		position: static;
	}

	.policy-toc ol {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 9px 24px;
	}

	.not-found-hero {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.not-found-hero__message {
		min-height: 610px;
	}

	.not-found-directory {
		min-height: 520px;
	}

	.not-found-latest__grid {
		grid-template-columns: 1fr;
	}

	.not-found-latest article {
		min-height: 0;
		padding: 30px 0;
	}

	.not-found-latest article + article {
		padding-left: 0;
		border-left: 0;
	}

	.not-found-article-link {
		margin-top: 4px;
	}
}

@media (max-width: 620px) {
	:root {
		--gutter: 21px;
	}

	.wordmark {
		font-size: 20px;
	}

	.menu-toggle__label {
		display: none;
	}

	.not-found-hero__message {
		min-height: 0;
		padding-block: 58px 64px;
	}

	.not-found-code {
		margin-bottom: 22px;
		font-size: clamp(100px, 35vw, 148px);
	}

	.not-found-hero h1 {
		font-size: clamp(38px, 12vw, 51px);
	}

	.not-found-hero .search-form {
		margin-top: 26px;
	}

	.not-found-directory {
		min-height: 0;
		padding: 49px var(--gutter) 56px;
	}

	.not-found-latest {
		padding-block: 54px 65px;
	}

	.not-found-latest__header {
		align-items: flex-start;
		flex-direction: column;
		gap: 19px;
	}

	.featured-story__content {
		min-height: 0;
		padding-block: 42px;
	}

	.featured-story__image {
		height: 62vw;
	}

	.featured-story h1 {
		font-size: 36px;
	}

	.feed-story {
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 27px 0;
	}

	.feed-story time {
		padding-top: 0;
	}

	.feed-story h2 {
		font-size: 22px;
	}

	.llms-promo,
	.contentledger-promo {
		padding-block: 33px;
	}

	.llms-promo--inline,
	.contentledger-promo--inline {
		margin-inline: calc(-1 * var(--gutter));
		padding: 28px var(--gutter);
	}

	.split-promo {
		grid-template-columns: 1fr;
	}

	.split-promo > div:first-child {
		border-right: 0;
		border-bottom: 2px solid var(--ink);
	}

	.newsletter {
		align-items: stretch;
		gap: 17px;
		flex-direction: column;
	}

	.newsletter-form,
	.search-form {
		min-width: 0;
		width: 100%;
	}

	.newsletter-form {
		margin-left: 0;
		flex: 0 1 auto;
	}

	.newsletter > .form-notice {
		margin-left: 0;
		text-align: left;
	}

	.newsletter-form input,
	.search-form input {
		width: 100%;
	}

	.site-footer {
		align-items: flex-start;
		gap: 16px;
		flex-direction: column;
	}

	.back-to-top {
		right: 16px;
		bottom: 16px;
		width: 44px;
		height: 44px;
	}

	.footer-menu {
		justify-content: flex-start;
	}

	.article-header {
		padding-top: 45px;
	}

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

	.article-deck {
		font-size: 18px;
	}

	.byline-share {
		align-items: flex-start;
		flex-direction: column;
	}

	.share-links {
		width: 100%;
	}

	.share-links a,
	.share-links button {
		flex: 1 0 auto;
		text-align: center;
	}

	.article-featured-image {
		padding: 0;
	}

	.article-content,
	.prose-section {
		font-size: 17px;
	}

	.article-content blockquote,
	.prose-section blockquote {
		padding-left: 20px;
		font-size: 21px;
	}

	.author-box {
		gap: 16px;
		padding: 22px;
		flex-direction: column;
	}

	.related-posts > header {
		align-items: flex-start;
		flex-direction: column;
	}

	.about-hero h1 {
		font-size: 40px;
	}

	.timeline-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.timeline-grid > div {
		padding: 20px 0;
		border-bottom: 1px solid var(--line);
	}

	.field-row {
		grid-template-columns: 1fr;
	}

	.contact-intro,
	.contact-form-panel {
		padding-block: 50px;
	}

	.booking-calendar-frame {
		min-height: 560px;
	}

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

	.booking-calendar__field-row {
		grid-template-columns: 1fr;
	}

	.contact-channels > div {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.contact-form__footer {
		align-items: stretch;
		flex-direction: column;
	}

	.contact-form__footer .button {
		width: 100%;
	}

	.product-hero__copy h1 {
		font-size: 44px;
	}

	.product-hero__copy > p,
	.course-hero > div > p {
		font-size: 18px;
	}

	.product-hero__media {
		padding: 24px var(--gutter);
	}

	.purchase-row,
	.purchase-row--center {
		width: 100%;
		align-items: stretch;
		flex-direction: column;
		gap: 12px;
	}

	.purchase-row .button {
		width: 100%;
	}

	.purchase-row > span,
	.purchase-row--center > span {
		text-align: center;
	}

	.course-hero {
		padding-block: 58px;
	}

	.course-hero h1 {
		font-size: 42px;
	}

	.inside-grid {
		grid-template-columns: 1fr;
	}

	.section-rule--split {
		align-items: flex-start;
		flex-direction: column;
	}

	.pricing-box > header {
		align-items: flex-start;
		padding: 23px;
		flex-direction: column;
		gap: 10px;
	}

	.pricing-box__body {
		padding: 23px;
	}

	.pricing-box__body > .button--block {
		margin-block-start: 24px !important;
	}

	.check-grid {
		grid-template-columns: 1fr;
	}

	.release {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.release > header {
		display: grid;
		grid-template-columns: auto 1fr auto;
		align-items: center;
		gap: 12px;
	}

	.release > header > time {
		margin: 0;
	}

	.changelog-hero p {
		align-items: flex-start;
		flex-direction: column;
	}

	.changelog-cta h2 {
		font-size: 24px;
	}

	.policy-hero {
		padding-block: 45px;
	}

	.policy-hero h1 {
		font-size: 38px;
	}

	.policy-hero p span {
		display: none;
	}

	.policy-hero p {
		display: flex;
		flex-direction: column;
	}

	.policy-grid {
		padding-top: 40px;
	}

	.policy-toc ol {
		grid-template-columns: 1fr;
	}

	.policy-summary {
		padding: 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

@media (max-width: 600px) {
	.article-key-takeaways {
		margin-bottom: 40px;
		padding: 22px 21px 5px;
	}

	.article-key-takeaways__header {
		display: block;
		margin-bottom: 15px;
	}

	.article-key-takeaways__eyebrow {
		margin-bottom: 7px !important;
	}

	.article-key-takeaways__header h2 {
		font-size: 24px;
	}

	.article-key-takeaways__list li {
		padding-left: 39px;
		font-size: 14px;
	}

	.article-reader-notice {
		grid-template-columns: 1fr;
		margin: 36px 0;
	}

	.article-reader-notice__label {
		padding: 13px 18px;
		justify-content: flex-start;
		flex-direction: row;
		gap: 9px;
		text-align: left;
	}

	.article-reader-notice__symbol {
		width: 25px;
		height: 25px;
		font-size: 13px !important;
	}

	.article-reader-notice__content {
		padding: 21px 20px 22px;
	}

	.article-reader-notice__content h3 {
		font-size: 20px;
	}

	.review-scorecard {
		box-shadow: 5px 5px 0 var(--wash);
	}

	.review-scorecard__header {
		grid-template-columns: 1fr;
	}

	.review-scorecard__overall {
		padding: 18px 24px;
		border-top: 2px solid var(--ink);
	}

	.review-scorecard__overall p {
		display: flex;
		align-items: baseline;
		gap: 9px;
	}

	.review-scorecard__overall span {
		margin-top: 0;
	}

	.review-scorecard__header > .wp-block-group:first-child,
	.review-scorecard__criteria,
	.review-scorecard__summary,
	.review-scorecard__actions {
		padding-inline: 21px;
	}

	.review-scorecard__row {
		align-items: flex-start;
		grid-template-columns: 1fr;
		gap: 5px;
	}

	.review-scorecard__stars {
		justify-content: flex-start;
	}

	.review-info-box {
		grid-template-columns: 1fr;
		gap: 22px;
		padding: 26px 22px;
	}

	.review-info-box__action {
		justify-content: flex-start;
	}

	.article-faq__header {
		padding-block: 24px 21px;
	}

	.article-faq__item summary {
		padding-right: 40px;
		font-size: 15px;
	}

	.article-faq__item > p,
	.article-faq__item > ul,
	.article-faq__item > ol {
		margin-right: 32px !important;
	}
}
