:root {
	--asg-navy: #10233f;
	--asg-dark-navy: #071528;
	--asg-navy-soft: #17375f;
	--asg-red: #e21b2d;
	--asg-red-dark: #b91524;
	--asg-gold: #facc15;
	--asg-green: #167a5b;
	--asg-ink: #0f172a;
	--asg-muted: #64748b;
	--asg-border: #e5e7eb;
	--asg-bg: #ffffff;
	--asg-bg-soft: #f8fafc;
	--asg-bg-tint: #eef3f8;
	--asg-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
	--asg-radius: 8px;
	--asg-container: 1160px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--asg-bg);
	color: var(--asg-ink);
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}

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

a {
	color: var(--asg-red);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

a:hover,
a:focus {
	color: var(--asg-red-dark);
}

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

input[type="search"],
input[type="text"],
input[type="email"],
input[type="url"],
textarea {
	width: 100%;
	border: 1px solid var(--asg-border);
	border-radius: var(--asg-radius);
	padding: 0.75rem 0.9rem;
	color: var(--asg-ink);
	background: #fff;
}

input[type="submit"],
button,
.button,
.asg-button,
.asg-button-secondary {
	border: 0;
	border-radius: var(--asg-radius);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	min-height: 44px;
	padding: 0.72rem 1rem;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
}

.button-primary,
.asg-button,
input[type="submit"] {
	background: var(--asg-red);
	color: #fff;
}

.button-primary:hover,
.button-primary:focus,
.asg-button:hover,
.asg-button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
	background: var(--asg-red-dark);
	color: #fff;
}

.asg-button-secondary {
	border: 1px solid var(--asg-border);
	background: #fff;
	color: var(--asg-navy);
}

.asg-button-secondary:hover,
.asg-button-secondary:focus {
	border-color: var(--asg-navy);
	background: var(--asg-navy);
	color: #fff;
}

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

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

.screen-reader-text:focus,
.skip-link:focus {
	top: 0.5rem;
	left: 0.5rem;
	z-index: 9999;
	width: auto;
	height: auto;
	clip: auto;
	padding: 0.65rem 0.85rem;
	background: var(--asg-navy);
	color: #fff;
	border-radius: var(--asg-radius);
}

.site-header {
	position: relative;
	top: 0;
	z-index: 50;
	background: #fff;
	border-bottom: 1px solid var(--asg-border);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 72px;
	gap: 1rem;
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-width: 0;
}

.custom-logo-link {
	flex: 0 0 auto;
}

.custom-logo {
	max-width: 150px;
	max-height: 56px;
	object-fit: contain;
}

.site-identity {
	min-width: 0;
}

.site-title {
	margin: 0;
	color: var(--asg-navy);
	font-size: 1.15rem;
	font-weight: 900;
	line-height: 1.1;
}

.site-title a {
	color: inherit;
	text-decoration: none;
}

.site-description {
	display: none;
	margin: 0.15rem 0 0;
	color: var(--asg-muted);
	font-size: 0.82rem;
	line-height: 1.2;
}

.menu-toggle {
	position: relative;
	width: 44px;
	height: 44px;
	padding: 0;
	background: var(--asg-bg-soft);
	border: 1px solid var(--asg-border);
}

.menu-toggle[aria-expanded="true"] {
	background: var(--asg-navy);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bars,
.menu-toggle[aria-expanded="true"] .menu-toggle-bars::before,
.menu-toggle[aria-expanded="true"] .menu-toggle-bars::after {
	background: #fff;
}

.menu-toggle-bars,
.menu-toggle-bars::before,
.menu-toggle-bars::after {
	position: absolute;
	left: 50%;
	width: 20px;
	height: 2px;
	background: var(--asg-navy);
	border-radius: 2px;
	transform: translateX(-50%);
	content: "";
}

.menu-toggle-bars {
	top: 50%;
	transform: translate(-50%, -50%);
}

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

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

.main-navigation {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	display: none;
	max-height: calc(100vh - 72px);
	overflow-y: auto;
	background: #fff;
	border-bottom: 1px solid var(--asg-border);
	box-shadow: var(--asg-shadow);
}

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

.primary-menu,
.primary-menu ul,
.footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-menu a {
	display: block;
	padding: 0.9rem 1rem;
	border-top: 1px solid var(--asg-border);
	color: var(--asg-navy);
	font-weight: 800;
	text-decoration: none;
}

.primary-menu a:hover,
.primary-menu a:focus {
	color: var(--asg-red);
}

.site-main {
	min-height: 55vh;
}

.asg-section {
	padding: 3rem 0;
}

.asg-section-muted {
	background: var(--asg-bg-soft);
	border-block: 1px solid var(--asg-border);
}

.asg-section-heading {
	margin-bottom: 1.2rem;
}

.asg-section-heading h2 {
	margin: 0;
	color: var(--asg-navy);
	font-size: 1.65rem;
	line-height: 1.15;
}

.asg-section-heading-row {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}

.asg-section-heading-row a {
	font-weight: 900;
}

.asg-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.asg-card {
	border: 1px solid var(--asg-border);
	border-radius: var(--asg-radius);
	background: #fff;
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.asg-hero {
	background:
		linear-gradient(135deg, rgba(7, 21, 40, 0.96), rgba(16, 35, 63, 0.9)),
		linear-gradient(90deg, rgba(250, 204, 21, 0.12), rgba(226, 27, 45, 0.1));
	color: #fff;
}

.asg-hero-inner {
	display: grid;
	gap: 1.5rem;
	padding: 3.5rem 0;
}

.asg-hero-copy {
	max-width: 780px;
}

.asg-hero-copy h1 {
	margin: 0;
	font-size: 2.35rem;
	line-height: 1.04;
	letter-spacing: 0;
}

.asg-hero-copy p:not(.eyebrow) {
	max-width: 680px;
	margin: 1rem 0 1.35rem;
	color: rgba(255, 255, 255, 0.86);
	font-size: 1.08rem;
}

.asg-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.asg-hero-card {
	padding: 1rem;
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.22);
	box-shadow: none;
}

.asg-hero-card ul {
	margin: 0;
	padding-left: 1.2rem;
}

.asg-hero-card li + li {
	margin-top: 0.65rem;
}

.asg-schedule-card {
	padding: 1rem;
	border-top: 4px solid var(--asg-red);
}

.asg-schedule-card h3 {
	margin: 0;
	color: var(--asg-navy);
	font-size: 1rem;
	line-height: 1.25;
}

.asg-schedule-card p {
	margin: 0.45rem 0 0;
	color: var(--asg-muted);
	font-weight: 800;
}

.asg-category-card {
	display: flex;
	align-items: center;
	min-height: 84px;
	padding: 1rem;
	color: var(--asg-navy);
	font-weight: 900;
	text-decoration: none;
}

.asg-category-card span {
	position: relative;
	padding-left: 0.9rem;
}

.asg-category-card span::before {
	position: absolute;
	top: 0.22rem;
	left: 0;
	width: 4px;
	height: 1.2rem;
	background: var(--asg-red);
	border-radius: 999px;
	content: "";
}

.asg-category-card:hover,
.asg-category-card:focus {
	border-color: var(--asg-red);
	color: var(--asg-red);
}

.asg-disclosure {
	border: 1px solid #f3c5ca;
	border-left: 5px solid var(--asg-red);
	border-radius: var(--asg-radius);
	background: #fff7f8;
	padding: 1rem;
	color: var(--asg-ink);
	font-size: 0.96rem;
	line-height: 1.55;
}

.asg-bottom-disclosure {
	padding-top: 1rem;
}

.hero-section {
	background:
		linear-gradient(135deg, rgba(7, 21, 40, 0.94), rgba(16, 35, 63, 0.9)),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 90px);
	color: #fff;
}

.hero-inner {
	display: grid;
	gap: 1.5rem;
	padding: 3.4rem 0;
}

.hero-copy {
	max-width: 760px;
}

.eyebrow {
	margin: 0 0 0.65rem;
	color: var(--asg-red);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.hero-section .eyebrow {
	color: var(--asg-gold);
}

.hero-copy h1 {
	margin: 0;
	font-size: 2.15rem;
	line-height: 1.02;
	letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
	max-width: 650px;
	margin: 1rem 0 1.35rem;
	color: rgba(255, 255, 255, 0.86);
	font-size: 1.08rem;
}

.hero-panel {
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--asg-radius);
	background: rgba(255, 255, 255, 0.08);
}

.hero-panel ul {
	margin: 0;
	padding: 1rem 1rem 1rem 2rem;
}

.hero-panel li + li {
	margin-top: 0.55rem;
}

.content-layout {
	display: grid;
	gap: 2rem;
	padding: 2.25rem 0 3rem;
}

.content-area {
	min-width: 0;
}

.home-section + .home-section,
.related-posts {
	margin-top: 3rem;
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.1rem;
	border-bottom: 3px solid var(--asg-navy);
}

.section-heading h2 {
	margin: 0;
	padding-bottom: 0.55rem;
	color: var(--asg-navy);
	font-size: 1.45rem;
	line-height: 1.2;
}

.section-heading a {
	margin-bottom: 0.58rem;
	font-weight: 800;
	white-space: nowrap;
}

.post-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.2rem;
}

.post-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--asg-border);
	border-radius: var(--asg-radius);
	background: #fff;
	box-shadow: 0 3px 12px rgba(11, 31, 58, 0.04);
}

.post-card-media {
	display: grid;
	place-items: center;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--asg-bg-tint);
	color: var(--asg-navy);
	font-weight: 900;
	text-align: center;
	text-decoration: none;
}

.post-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 180ms ease;
}

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

.post-card-placeholder {
	padding: 1rem;
}

.post-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1rem;
}

.post-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-bottom: 0.65rem;
}

.category-pill {
	display: inline-flex;
	align-items: center;
	border-radius: 999px;
	background: var(--asg-bg-soft);
	color: var(--asg-red);
	padding: 0.22rem 0.55rem;
	font-size: 0.74rem;
	font-weight: 900;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
}

.post-card-title {
	margin: 0;
	font-size: 1.2rem;
	line-height: 1.25;
}

.post-card-title a {
	color: var(--asg-navy);
	text-decoration: none;
}

.post-card-title a:hover,
.post-card-title a:focus {
	color: var(--asg-red);
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.75rem;
	margin-top: 0.55rem;
	color: var(--asg-muted);
	font-size: 0.88rem;
}

.post-card-excerpt {
	margin-top: 0.7rem;
	color: var(--asg-muted);
}

.post-card-excerpt p {
	margin: 0;
}

.post-card-link {
	margin-top: auto;
	padding-top: 0.9rem;
	color: var(--asg-red);
	font-weight: 900;
	text-decoration: none;
}

.post-card-link:hover,
.post-card-link:focus {
	color: var(--asg-red-dark);
	text-decoration: underline;
}

.archive-header,
.entry-header {
	margin-bottom: 1.5rem;
}

.post-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.4rem;
	margin-bottom: 0.75rem;
	color: var(--asg-muted);
	font-size: 0.84rem;
	font-weight: 800;
	line-height: 1.3;
}

.post-breadcrumb a {
	color: var(--asg-red);
	text-decoration: none;
}

.post-breadcrumb a:hover,
.post-breadcrumb a:focus {
	color: var(--asg-red-dark);
	text-decoration: underline;
}

.archive-title,
.entry-title,
.empty-state h1 {
	margin: 0;
	color: var(--asg-navy);
	font-size: 2rem;
	line-height: 1.05;
	letter-spacing: 0;
}

.archive-description {
	max-width: 760px;
	color: var(--asg-muted);
}

.single-post-content,
.page-content {
	max-width: 760px;
}

.featured-image {
	margin: 0 0 1.4rem;
}

.featured-image img {
	width: 100%;
	border-radius: var(--asg-radius);
}

.affiliate-disclosure-box,
.asg-disclosure,
.quick-picks-box,
.asg-quick-picks,
.callout-box,
.pros-cons-box,
.asg-pros-cons,
.comparison-table-wrap,
.product-comparison-table-wrap {
	margin: 1.4rem 0;
	border-radius: var(--asg-radius);
}

.affiliate-disclosure-box {
	border: 1px solid #f0ccd0;
	background: #fff6f7;
	padding: 1rem;
	color: var(--asg-ink);
	font-size: 0.95rem;
	line-height: 1.55;
}

.entry-content {
	font-size: 1.06rem;
	line-height: 1.78;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	color: var(--asg-navy);
	line-height: 1.2;
}

.entry-content h2 {
	margin-top: 2.35rem;
	margin-bottom: 0.75rem;
	padding-top: 0.25rem;
	border-top: 1px solid var(--asg-border);
	font-size: 1.8rem;
}

.entry-content h3 {
	margin-top: 1.85rem;
	margin-bottom: 0.65rem;
	font-size: 1.35rem;
}

.entry-content h4 {
	margin-top: 1.35rem;
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content table,
.entry-content blockquote {
	margin-top: 0;
	margin-bottom: 1.25rem;
}

.entry-content li + li {
	margin-top: 0.35rem;
}

.entry-content blockquote {
	border-left: 5px solid var(--asg-red);
	background: var(--asg-bg-soft);
	padding: 1rem;
	color: var(--asg-navy);
}

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

.entry-content a {
	font-weight: 700;
}

.entry-content table,
.comparison-table,
.product-comparison-table,
.asg-comparison-table table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95rem;
	line-height: 1.45;
}

.entry-content th,
.entry-content td,
.comparison-table th,
.comparison-table td,
.product-comparison-table th,
.product-comparison-table td,
.asg-comparison-table th,
.asg-comparison-table td {
	border: 1px solid var(--asg-border);
	padding: 0.75rem;
	text-align: left;
	vertical-align: top;
}

.entry-content th,
.comparison-table th,
.product-comparison-table th,
.asg-comparison-table th {
	background: var(--asg-navy);
	color: #fff;
	font-weight: 900;
}

.comparison-table tr:nth-child(even) td,
.product-comparison-table tr:nth-child(even) td,
.asg-comparison-table tr:nth-child(even) td {
	background: var(--asg-bg-soft);
}

.comparison-table td:first-child,
.product-comparison-table td:first-child,
.asg-comparison-table td:first-child {
	font-weight: 800;
	color: var(--asg-navy);
}

.comparison-table-wrap,
.product-comparison-table-wrap,
.asg-comparison-table {
	overflow-x: auto;
	border: 1px solid var(--asg-border);
	background: #fff;
}

.comparison-table-wrap table,
.product-comparison-table-wrap table,
.asg-comparison-table table {
	margin: 0;
	min-width: 640px;
}

.affiliate-button,
.check-price-button,
.wp-block-button__link.affiliate-button,
.wp-block-button__link.check-price-button,
.entry-content .affiliate-button,
.entry-content .check-price-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	border-radius: var(--asg-radius);
	background: var(--asg-red);
	color: #fff;
	padding: 0.8rem 1.05rem;
	font-weight: 900;
	line-height: 1.2;
	text-decoration: none;
}

.affiliate-button:hover,
.affiliate-button:focus,
.check-price-button:hover,
.check-price-button:focus {
	background: var(--asg-red-dark);
	color: #fff;
}

.affiliate-button-secondary {
	background: var(--asg-navy);
}

.affiliate-button-secondary:hover,
.affiliate-button-secondary:focus {
	background: var(--asg-navy-soft);
}

.check-price-button {
	box-shadow: 0 4px 0 var(--asg-red-dark);
	text-transform: uppercase;
}

.check-price-button:active {
	transform: translateY(1px);
	box-shadow: 0 3px 0 var(--asg-red-dark);
}

.quick-picks-box,
.asg-quick-picks {
	border: 1px solid var(--asg-border);
	border-top: 4px solid var(--asg-red);
	background: #fff;
	box-shadow: 0 6px 18px rgba(11, 31, 58, 0.06);
	padding: 1rem;
}

.quick-picks-box h2,
.quick-picks-box h3,
.quick-picks-title {
	margin: 0 0 0.75rem;
	color: var(--asg-navy);
	font-size: 1.2rem;
	line-height: 1.2;
}

.quick-picks-list,
.quick-picks-box ul {
	display: grid;
	gap: 0.65rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.quick-picks-list li,
.quick-picks-box li,
.quick-pick {
	display: grid;
	gap: 0.35rem;
	border: 1px solid var(--asg-border);
	border-radius: var(--asg-radius);
	background: var(--asg-bg-soft);
	padding: 0.75rem;
}

.quick-pick-label,
.quick-picks-box strong {
	color: var(--asg-navy);
	font-weight: 900;
}

.quick-pick-note {
	color: var(--asg-muted);
	font-size: 0.95rem;
	line-height: 1.45;
}

.pros-cons-box,
.asg-pros-cons {
	display: grid;
	gap: 1rem;
	border: 1px solid var(--asg-border);
	background: #fff;
	padding: 1rem;
}

.pros-cons-box h2,
.pros-cons-box h3,
.pros-cons-title {
	margin: 0 0 0.75rem;
	color: var(--asg-navy);
	font-size: 1.1rem;
	line-height: 1.2;
}

.pros-cons-box > h2,
.pros-cons-box > h3,
.pros-cons-box > .pros-cons-title {
	grid-column: 1 / -1;
}

.pros-column,
.cons-column {
	border-radius: var(--asg-radius);
	padding: 0.9rem;
}

.pros-column {
	background: #f0faf5;
	border: 1px solid #c8ead8;
}

.cons-column {
	background: #fff6f7;
	border: 1px solid #f0ccd0;
}

.pros-list,
.cons-list {
	margin: 0;
	padding-left: 1.25rem;
}

.pros-list li::marker {
	color: var(--asg-green);
}

.cons-list li::marker {
	color: var(--asg-red);
}

.callout-box {
	border-left: 5px solid var(--asg-red);
	background: var(--asg-bg-soft);
	padding: 1rem;
}

.callout-box strong {
	color: var(--asg-navy);
}

.related-posts {
	padding-top: 2rem;
	border-top: 1px solid var(--asg-border);
}

.related-posts > h2 {
	margin: 0 0 1rem;
	color: var(--asg-navy);
	font-size: 1.5rem;
	line-height: 1.2;
}

.tag-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-top: 1.5rem;
}

.tag-links a {
	border: 1px solid var(--asg-border);
	border-radius: 999px;
	padding: 0.28rem 0.65rem;
	color: var(--asg-muted);
	font-size: 0.82rem;
	font-weight: 800;
	text-decoration: none;
}

.navigation.pagination {
	margin-top: 2rem;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	border: 1px solid var(--asg-border);
	border-radius: var(--asg-radius);
	padding: 0.35rem 0.65rem;
	color: var(--asg-navy);
	font-weight: 800;
	text-decoration: none;
}

.page-numbers.current {
	background: var(--asg-navy);
	color: #fff;
}

.search-form {
	display: flex;
	gap: 0.5rem;
	max-width: 560px;
}

.search-form label {
	flex: 1;
}

.search-submit {
	flex: 0 0 auto;
}

.sidebar {
	display: grid;
	gap: 1rem;
	align-content: start;
}

.widget {
	border: 1px solid var(--asg-border);
	border-radius: var(--asg-radius);
	background: #fff;
	padding: 1rem;
}

.widget-title {
	margin: 0 0 0.8rem;
	color: var(--asg-navy);
	font-size: 1rem;
	line-height: 1.2;
}

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

.empty-state {
	max-width: 720px;
	padding: 3rem 0;
}

.page-container {
	padding: 2.25rem 0 3rem;
}

.site-footer {
	background: var(--asg-navy);
	color: rgba(255, 255, 255, 0.82);
}

.site-footer a {
	color: #fff;
}

.footer-grid {
	display: grid;
	gap: 1.5rem;
	padding: 2.5rem 0;
}

.footer-widget-title {
	margin: 0 0 0.75rem;
	color: #fff;
	font-size: 1rem;
	line-height: 1.2;
}

.footer-widget p {
	margin: 0;
}

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

.footer-bottom {
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
	padding: 1.1rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	font-size: 0.92rem;
}

.footer-bottom p {
	margin: 0;
}

.footer-navigation,
.footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	align-items: center;
}

.footer-menu a {
	text-decoration: none;
}

.wp-block-table,
.tablepress {
	overflow-x: auto;
}

.tablepress {
	width: 100%;
	border-collapse: collapse;
}

.tablepress th {
	background: var(--asg-navy);
	color: #fff;
}

.tablepress th,
.tablepress td {
	border-color: var(--asg-border);
	padding: 0.75rem;
}

@media (min-width: 640px) {
	.site-description {
		display: block;
	}

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

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

	.asg-section-heading-row {
		flex-direction: row;
		align-items: end;
		justify-content: space-between;
	}

	.hero-copy h1 {
		font-size: 3rem;
	}

	.archive-title,
	.entry-title,
	.empty-state h1 {
		font-size: 2.6rem;
	}

	.pros-cons-box,
	.asg-pros-cons {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.footer-bottom {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

@media (min-width: 900px) {
	.site-header {
		position: sticky;
		backdrop-filter: blur(10px);
	}

	.menu-toggle {
		display: none;
	}

	.main-navigation {
		position: static;
		display: block;
		border: 0;
		box-shadow: none;
		background: transparent;
	}

	.primary-menu {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 0.2rem;
	}

	.primary-menu a {
		border-top: 0;
		padding: 0.6rem 0.75rem;
	}

	.hero-inner {
		grid-template-columns: minmax(0, 1fr) 340px;
		align-items: center;
		padding: 4.6rem 0;
	}

	.hero-copy h1 {
		font-size: 4rem;
	}

	.asg-hero-inner {
		grid-template-columns: minmax(0, 1fr) 350px;
		align-items: center;
		padding: 4.75rem 0;
	}

	.asg-hero-copy h1 {
		font-size: 3.9rem;
	}

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

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

	.archive-title,
	.entry-title,
	.empty-state h1 {
		font-size: 3.2rem;
	}

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

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

	.content-layout.has-sidebar {
		grid-template-columns: minmax(0, 1fr) 300px;
		align-items: start;
	}
}
