:root {
	--color-ink: #172033;
	--color-ink-soft: #25324a;
	--color-muted: #667085;
	--color-subtle: #8a94a6;
	--color-surface: #ffffff;
	--color-surface-raised: #ffffff;
	--color-soft: #f6f8fb;
	--color-soft-blue: #eef6ff;
	--color-line: #e2e7f0;
	--color-line-strong: #cbd5e1;
	--color-primary: #2457d6;
	--color-primary-dark: #183d9b;
	--color-primary-soft: #e8efff;
	--color-accent: #ff6f91;
	--color-accent-soft: #fff0f4;
	--color-mint: #16a394;
	--color-mint-soft: #e7f8f5;
	--color-sun: #f5b84b;
	--shadow-soft: 0 20px 50px rgba(23, 32, 51, 0.09);
	--shadow-card: 0 12px 32px rgba(23, 32, 51, 0.075);
	--shadow-hover: 0 22px 52px rgba(23, 32, 51, 0.13);
	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 22px;
	--radius-xl: 28px;
	--container: 1180px;
	--article: 760px;
	--space-2xs: 0.35rem;
	--space-xs: 0.5rem;
	--space-sm: 0.75rem;
	--space-md: 1rem;
	--space-lg: 1.5rem;
	--space-xl: 2rem;
	--space-2xl: 3rem;
	--space-3xl: 4.5rem;
	--font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		linear-gradient(90deg, rgba(36, 87, 214, 0.035) 1px, transparent 1px),
		linear-gradient(180deg, rgba(255, 111, 145, 0.035) 1px, transparent 1px),
		var(--color-surface);
	background-size: 34px 34px;
	color: var(--color-ink);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}

body::before {
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.98) 42%, #ffffff);
	content: "";
}

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

a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.2em;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 var(--space-md);
	color: var(--color-ink);
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.06;
}

h1 {
	font-size: clamp(2.55rem, 8vw, 5.2rem);
}

h2 {
	font-size: clamp(1.9rem, 5vw, 3.15rem);
}

h3 {
	font-size: 1.28rem;
}

p {
	margin: 0 0 var(--space-md);
}

.container {
	width: min(100% - 2rem, var(--container));
	margin-inline: auto;
}

.narrow-container {
	--container: 860px;
}

.section {
	padding: clamp(3.75rem, 8vw, 6.5rem) 0;
}

.section-soft {
	background:
		linear-gradient(135deg, rgba(232, 239, 255, 0.78), rgba(255, 240, 244, 0.78)),
		var(--color-soft);
	border-block: 1px solid rgba(226, 231, 240, 0.78);
}

.section-header,
.archive-header {
	max-width: 760px;
	margin-bottom: var(--space-2xl);
}

.section-header p,
.archive-header p {
	color: var(--color-muted);
	font-size: 1.05rem;
}

.split-header {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.6fr);
	gap: var(--space-xl);
	align-items: end;
	max-width: none;
}

.compact-header {
	margin-bottom: var(--space-lg);
}

.compact-header h2 {
	font-size: clamp(1.55rem, 4vw, 2.2rem);
}

.section-label {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: var(--space-sm);
	color: var(--color-accent);
	font-size: 0.76rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.section-label::before {
	width: 0.78rem;
	height: 0.78rem;
	border: 2px solid currentColor;
	border-radius: 45% 55% 52% 48%;
	background: var(--color-accent-soft);
	box-shadow: 2px 2px 0 rgba(23, 32, 51, 0.18);
	content: "";
}

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

.skip-link:focus {
	top: var(--space-md);
	left: var(--space-md);
	z-index: 1000;
	width: auto;
	height: auto;
	padding: var(--space-sm) var(--space-md);
	clip: auto;
	background: var(--color-ink);
	color: var(--color-surface);
	border-radius: var(--radius-sm);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.93);
	border-bottom: 1px solid rgba(226, 231, 240, 0.9);
	backdrop-filter: blur(18px);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-lg);
	min-height: 80px;
}

.site-brand,
.footer-brand {
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
	text-decoration: none;
}

.brand-mark {
	display: inline-grid;
	width: 44px;
	height: 44px;
	place-items: center;
	flex: 0 0 auto;
	border: 2px solid var(--color-ink);
	border-radius: 44% 56% 50% 50%;
	background:
		linear-gradient(135deg, var(--color-accent-soft), #e8f8ff 55%, #fff8e8);
	box-shadow: 4px 4px 0 var(--color-ink);
	color: var(--color-ink);
	font-size: 0.78rem;
	font-weight: 950;
}

.brand-copy {
	display: grid;
}

.brand-name {
	color: var(--color-ink);
	font-size: 1.16rem;
	font-weight: 950;
	line-height: 1.1;
}

.brand-tagline {
	max-width: 280px;
	color: var(--color-muted);
	font-size: 0.8rem;
	line-height: 1.3;
}

.primary-nav .menu,
.footer-nav .menu {
	display: flex;
	align-items: center;
	gap: var(--space-md);
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-nav a,
.footer-nav a {
	display: inline-flex;
	padding: 0.45rem 0;
	color: var(--color-ink);
	font-size: 0.94rem;
	font-weight: 760;
	text-decoration: none;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.footer-nav a:hover {
	color: var(--color-primary);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color-line);
	border-radius: 999px;
	background: var(--color-surface);
	color: var(--color-ink);
	cursor: pointer;
}

.menu-toggle-bars,
.menu-toggle-bars::before,
.menu-toggle-bars::after {
	display: block;
	width: 18px;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
	content: "";
	transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle-bars {
	position: relative;
}

.menu-toggle-bars::before,
.menu-toggle-bars::after {
	position: absolute;
	left: 0;
}

.menu-toggle-bars::before {
	top: -6px;
}

.menu-toggle-bars::after {
	top: 6px;
}

.menu-open .menu-toggle-bars {
	transform: rotate(45deg);
}

.menu-open .menu-toggle-bars::before {
	transform: translateY(6px) rotate(90deg);
}

.menu-open .menu-toggle-bars::after {
	opacity: 0;
}

.hero {
	position: relative;
	overflow: hidden;
	padding: clamp(4.25rem, 9vw, 7.5rem) 0 clamp(3.25rem, 7vw, 5.25rem);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(238, 246, 255, 0.96) 50%, rgba(255, 240, 244, 0.86) 100%);
}

.hero::after {
	position: absolute;
	right: 0;
	bottom: 0;
	width: min(44vw, 520px);
	height: 100%;
	opacity: 0.28;
	background:
		linear-gradient(135deg, transparent 47%, rgba(36, 87, 214, 0.2) 48%, transparent 50%),
		linear-gradient(45deg, transparent 47%, rgba(255, 111, 145, 0.18) 48%, transparent 50%);
	background-size: 36px 36px;
	content: "";
	pointer-events: none;
}

.hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
	align-items: center;
	gap: clamp(2rem, 6vw, 4rem);
}

.hero-copy p {
	max-width: 700px;
	color: var(--color-muted);
	font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
	margin-top: var(--space-xl);
}

.button,
.entry-content .wp-block-button__link,
.entry-content .button,
.product-cta,
.buy-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.78rem 1.18rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 850;
	line-height: 1.2;
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.entry-content .wp-block-button__link:hover,
.entry-content .button:hover,
.product-cta:hover,
.buy-button:hover {
	transform: translateY(-2px);
	text-decoration: none;
}

.button-primary,
.entry-content .wp-block-button__link,
.product-cta,
.buy-button {
	background: var(--color-primary);
	box-shadow: 0 12px 28px rgba(36, 87, 214, 0.24);
	color: var(--color-surface);
}

.button-primary:hover,
.entry-content .wp-block-button__link:hover,
.product-cta:hover,
.buy-button:hover {
	background: var(--color-primary-dark);
	color: var(--color-surface);
}

.button-secondary {
	background: var(--color-surface);
	border-color: var(--color-line-strong);
	color: var(--color-ink);
}

.hero-showcase {
	display: grid;
	gap: var(--space-md);
	padding: clamp(1rem, 4vw, 1.5rem);
	border: 1px solid rgba(226, 231, 240, 0.95);
	border-radius: var(--radius-xl);
	background: rgba(255, 255, 255, 0.82);
	box-shadow: var(--shadow-soft);
	backdrop-filter: blur(16px);
}

.showcase-card {
	padding: var(--space-lg);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	background: var(--color-surface);
	box-shadow: var(--shadow-card);
}

.showcase-card-main {
	background:
		linear-gradient(135deg, rgba(36, 87, 214, 0.09), rgba(255, 111, 145, 0.08)),
		var(--color-surface);
}

.showcase-card span,
.orbit-card span,
.post-card-category,
.article-category-list a {
	display: inline-flex;
	margin-bottom: var(--space-xs);
	color: var(--color-primary);
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
}

.showcase-card strong {
	display: block;
	margin-bottom: var(--space-xs);
	font-size: 1.3rem;
	line-height: 1.2;
}

.showcase-card p {
	color: var(--color-muted);
}

.showcase-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--space-sm);
}

.mini-signal {
	display: grid;
	gap: var(--space-xs);
	min-height: 96px;
	align-content: center;
	padding: var(--space-md);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	background: var(--color-soft);
	color: var(--color-muted);
	font-size: 0.84rem;
	font-weight: 760;
}

.mini-signal span {
	display: inline-grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border-radius: 50%;
	background: var(--color-primary-soft);
	color: var(--color-primary);
	font-size: 0.72rem;
	font-weight: 950;
}

.topic-grid,
.post-grid {
	display: grid;
	gap: var(--space-lg);
}

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

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

.topic-card,
.post-card {
	display: flex;
	position: relative;
	flex-direction: column;
	min-height: 100%;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	background: var(--color-surface-raised);
	box-shadow: var(--shadow-card);
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.topic-card {
	overflow: hidden;
	padding: var(--space-lg);
}

.topic-card::after {
	position: absolute;
	right: -1rem;
	bottom: -1rem;
	width: 5rem;
	height: 5rem;
	border: 1px solid rgba(36, 87, 214, 0.14);
	border-radius: 42% 58% 52% 48%;
	background: rgba(232, 239, 255, 0.55);
	content: "";
}

.topic-card:hover,
.post-card:hover {
	transform: translateY(-4px);
	border-color: rgba(36, 87, 214, 0.35);
	box-shadow: var(--shadow-hover);
	color: var(--color-ink);
}

.topic-icon {
	display: inline-grid;
	width: 44px;
	height: 44px;
	margin-bottom: var(--space-lg);
	place-items: center;
	border: 1px solid rgba(255, 111, 145, 0.28);
	border-radius: 44% 56% 50% 50%;
	background: var(--color-accent-soft);
	color: var(--color-accent);
	font-size: 0.75rem;
	font-weight: 950;
}

.topic-card p,
.post-card p,
.article-meta,
.widget,
.site-footer p {
	color: var(--color-muted);
}

.post-card {
	overflow: hidden;
}

.post-card-image {
	aspect-ratio: 16 / 10;
	background:
		linear-gradient(135deg, rgba(36, 87, 214, 0.12), rgba(255, 111, 145, 0.14)),
		var(--color-soft);
}

.post-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-card-placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	color: var(--color-primary);
	font-weight: 950;
}

.post-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: var(--space-lg);
}

.post-card h3 {
	margin-bottom: var(--space-sm);
	font-size: 1.25rem;
}

.post-card h3 a {
	text-decoration: none;
}

.post-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 0.8rem;
	margin-top: auto;
	padding-top: var(--space-md);
	color: var(--color-muted);
	font-size: 0.85rem;
}

.guide-teaser,
.trust-band {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
	gap: var(--space-xl);
	align-items: center;
	padding: clamp(1.5rem, 4vw, 2.6rem);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-xl);
	background:
		linear-gradient(135deg, rgba(22, 163, 148, 0.11), rgba(232, 239, 255, 0.72)),
		var(--color-surface);
	box-shadow: var(--shadow-card);
}

.guide-teaser-copy {
	display: grid;
	gap: var(--space-md);
}

.guide-teaser-copy p,
.trust-band p:last-child {
	margin-bottom: 0;
	color: var(--color-muted);
	font-size: 1.06rem;
}

.disclosure-strip {
	padding: var(--space-lg) 0;
	background: #111827;
	color: #f9fafb;
}

.disclosure-strip-inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: var(--space-md);
	align-items: center;
}

.disclosure-strip h2 {
	margin: 0;
	color: #f9fafb;
	font-size: 1rem;
}

.disclosure-strip p {
	margin: 0;
	color: #d1d5db;
}

.layout-with-sidebar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: var(--space-2xl);
	align-items: start;
}

.article-shell {
	max-width: var(--article);
	padding: clamp(1.25rem, 4vw, 2.5rem);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-lg);
	background: var(--color-surface);
	box-shadow: var(--shadow-card);
}

.layout-with-sidebar .article-shell {
	max-width: none;
}

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

.article-header {
	margin-bottom: var(--space-xl);
}

.article-header h1 {
	font-size: clamp(2.1rem, 7vw, 4.1rem);
}

.article-category-list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-xs);
	margin-bottom: var(--space-sm);
}

.article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
	font-size: 0.95rem;
}

.article-featured-image {
	margin: 0 0 var(--space-xl);
	overflow: hidden;
	border-radius: var(--radius-md);
}

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

.affiliate-note {
	margin-bottom: var(--space-xl);
	padding: var(--space-md);
	border: 1px solid rgba(255, 111, 145, 0.26);
	border-radius: var(--radius-md);
	background: var(--color-accent-soft);
	color: #633140;
}

.entry-content {
	color: var(--color-ink-soft);
	font-size: 1.06rem;
}

.entry-content > * {
	max-width: 72ch;
}

.entry-content > .alignwide,
.entry-content > .wp-block-table,
.entry-content > table,
.entry-content > .comparison-table,
.entry-content > .pros-cons {
	max-width: 100%;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-top: var(--space-2xl);
}

.entry-content h2 {
	padding-top: var(--space-md);
	border-top: 1px solid var(--color-line);
	font-size: clamp(1.65rem, 4vw, 2.25rem);
}

.entry-content h3 {
	font-size: clamp(1.3rem, 3vw, 1.65rem);
}

.entry-content a {
	color: var(--color-primary);
	font-weight: 760;
}

.entry-content blockquote,
.entry-content .wp-block-quote,
.callout,
.review-callout {
	margin: var(--space-xl) 0;
	padding: var(--space-lg);
	border: 1px solid rgba(36, 87, 214, 0.16);
	border-left: 5px solid var(--color-primary);
	border-radius: var(--radius-md);
	background: var(--color-primary-soft);
	color: var(--color-ink-soft);
	box-shadow: 0 10px 26px rgba(36, 87, 214, 0.08);
}

.entry-content blockquote p:last-child,
.callout p:last-child,
.review-callout p:last-child {
	margin-bottom: 0;
}

.pros-cons {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--space-md);
	margin: var(--space-xl) 0;
}

.pros,
.cons,
.pros-box,
.cons-box {
	padding: var(--space-lg);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	background: var(--color-surface);
}

.pros,
.pros-box {
	border-color: rgba(22, 163, 148, 0.26);
	background: var(--color-mint-soft);
}

.cons,
.cons-box {
	border-color: rgba(255, 111, 145, 0.26);
	background: var(--color-accent-soft);
}

.pros h2,
.pros h3,
.cons h2,
.cons h3,
.pros-box h2,
.pros-box h3,
.cons-box h2,
.cons-box h3 {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
	font-size: 1.15rem;
}

.pros ul,
.cons ul,
.pros-box ul,
.cons-box ul {
	margin-bottom: 0;
	padding-left: 1.2rem;
}

.entry-content table,
.entry-content .wp-block-table table,
.comparison-table table,
table.comparison-table {
	width: 100%;
	margin: var(--space-xl) 0;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	background: var(--color-surface);
	box-shadow: var(--shadow-card);
	font-size: 0.96rem;
}

.entry-content th,
.entry-content td,
.comparison-table th,
.comparison-table td {
	padding: 0.9rem 1rem;
	border-bottom: 1px solid var(--color-line);
	text-align: left;
	vertical-align: top;
}

.entry-content th,
.comparison-table th {
	background: var(--color-soft-blue);
	color: var(--color-ink);
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.entry-content tr:last-child td,
.comparison-table tr:last-child td {
	border-bottom: 0;
}

.related-posts {
	margin-top: var(--space-2xl);
}

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

.post-navigation,
.pagination {
	margin-top: var(--space-xl);
}

.post-navigation {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--space-md);
}

.post-navigation a,
.page-numbers {
	display: inline-flex;
	padding: var(--space-sm) var(--space-md);
	border: 1px solid var(--color-line);
	border-radius: 999px;
	background: var(--color-surface);
	font-weight: 850;
	text-decoration: none;
}

.nav-next {
	text-align: right;
}

.widget,
.footer-widget,
.empty-state {
	margin-bottom: var(--space-lg);
	padding: var(--space-lg);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	background: var(--color-surface);
}

.widget-title,
.footer-widget-title {
	font-size: 1.05rem;
}

.widget ul {
	margin: 0;
	padding-left: 1.1rem;
}

.site-footer {
	padding: var(--space-2xl) 0;
	background: #111827;
	color: #f9fafb;
}

.site-footer h2,
.site-footer h3,
.site-footer a,
.site-footer .footer-brand {
	color: #f9fafb;
}

.site-footer .brand-mark {
	border-color: #f9fafb;
	box-shadow: 4px 4px 0 #f9fafb;
}

.footer-inner {
	display: grid;
	gap: var(--space-xl);
}

.affiliate-disclosure {
	padding: var(--space-lg);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.06);
}

.affiliate-disclosure h2 {
	margin-bottom: var(--space-sm);
	color: #f9fafb;
	font-size: 1.2rem;
}

.affiliate-disclosure p {
	margin-bottom: 0;
	color: #d1d5db;
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: var(--space-xl);
	align-items: start;
}

.footer-nav .menu {
	justify-content: flex-end;
	flex-wrap: wrap;
}

.footer-nav a {
	color: #d1d5db;
}

.copyright {
	margin: 0;
	color: #9ca3af;
	font-size: 0.9rem;
}

@media (max-width: 1060px) {
	.topic-grid,
	.post-grid,
	.related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 960px) {
	.header-inner {
		min-height: 72px;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.primary-nav {
		position: absolute;
		top: 100%;
		right: 1rem;
		left: 1rem;
		display: none;
		padding: var(--space-md);
		border: 1px solid var(--color-line);
		border-radius: var(--radius-md);
		background: var(--color-surface);
		box-shadow: var(--shadow-soft);
	}

	.menu-open .primary-nav {
		display: block;
	}

	.primary-nav .menu {
		align-items: stretch;
		flex-direction: column;
		gap: 0.25rem;
	}

	.primary-nav a {
		padding: var(--space-sm);
		border-radius: var(--radius-sm);
	}

	.primary-nav a:hover {
		background: var(--color-soft);
	}

	.hero-inner,
	.layout-with-sidebar,
	.guide-teaser,
	.trust-band,
	.split-header,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.disclosure-strip-inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.container {
		width: min(100% - 1.25rem, var(--container));
	}

	.brand-tagline {
		display: none;
	}

	.hero {
		padding-top: 3rem;
	}

	.hero-inner {
		grid-template-columns: 1fr;
	}

	.hero-showcase {
		border-radius: var(--radius-lg);
	}

	.showcase-row,
	.topic-grid,
	.post-grid,
	.related-grid,
	.post-navigation,
	.pros-cons {
		grid-template-columns: 1fr;
	}

	.article-shell {
		padding: var(--space-lg);
	}

	.entry-content {
		font-size: 1rem;
	}

	.entry-content table,
	.entry-content .wp-block-table table,
	.comparison-table table,
	table.comparison-table {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}

	.nav-next {
		text-align: left;
	}

	.footer-nav .menu {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.25rem;
	}
}

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