/*
Theme Name: SafeGold Blog
Theme URI: https://safegold.com/
Author: SafeGold
Description: A responsive, performance-focused editorial theme for the SafeGold blog.
Version: 1.5.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 8.0
Text Domain: safegold-blog
*/

:root {
	--sg-ink: #102927;
	--sg-heading: #14413e;
	--sg-teal-1500: #0c6c69;
	--sg-teal-1200: #0e7c73;
	--sg-teal: #00bbb4;
	--sg-teal-100: #e5f8f7;
	--sg-deep: #00221b;
	--sg-gold: #d3af37;
	--sg-paper: #fff;
	--sg-canvas: #f7f8f7;
	--sg-line: #e7e7ed;
	--sg-muted: #63706e;
	--sg-radius: 16px;
	--sg-shadow: 0 3px 0 #e7e7ed;
	--sg-serif: Merriweather, Georgia, "Times New Roman", serif;
	--sg-sans: Inter, Sarabun, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--sg-content: 1180px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--sg-canvas);
	color: var(--sg-ink);
	font-family: var(--sg-sans);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--sg-teal-1500);
	text-decoration-thickness: .08em;
	text-underline-offset: .18em;
}

a:hover {
	color: var(--sg-teal-1200);
}

button,
input {
	font: inherit;
}

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

.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 {
	z-index: 10000;
	top: 10px;
	left: 10px;
	width: auto;
	height: auto;
	padding: 10px 16px;
	clip: auto;
	background: #fff;
}

.sg-container {
	width: min(calc(100% - 32px), var(--sg-content));
	margin-inline: auto;
}

.site-header {
	position: relative;
	z-index: 20;
	background: var(--sg-paper);
	border-bottom: 1px solid var(--sg-line);
	border-radius: 0 0 var(--sg-radius) var(--sg-radius);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 94px;
}

.site-brand {
	display: flex;
	align-items: center;
	gap: 18px;
	color: var(--sg-heading);
	text-decoration: none;
}

.site-brand__mark {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.site-brand__title {
	font-family: var(--sg-serif);
	font-size: clamp(1.35rem, 3vw, 2.4rem);
	text-transform: uppercase;
}

.site-brand__byline {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-top: 9px;
	color: var(--sg-gold);
	font-family: var(--sg-serif);
	font-size: .75rem;
	font-weight: 700;
}

.site-brand__logo {
	width: 113px;
	height: 12px;
	object-fit: contain;
}

.menu-toggle {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--sg-heading);
	cursor: pointer;
}

.menu-toggle__lines,
.menu-toggle__lines::before,
.menu-toggle__lines::after {
	display: block;
	width: 22px;
	height: 2px;
	background: currentColor;
	transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle__lines {
	position: relative;
}

.menu-toggle__lines::before,
.menu-toggle__lines::after {
	position: absolute;
	left: 0;
	content: "";
}

.menu-toggle__lines::before { top: -7px; }
.menu-toggle__lines::after { top: 7px; }

.menu-toggle[aria-expanded="true"] .menu-toggle__lines { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle__lines::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__lines::after { top: 0; transform: rotate(-45deg); }

.primary-navigation {
	position: absolute;
	top: calc(100% + 1px);
	right: 16px;
	left: 16px;
	display: none;
	padding: 22px;
	background: #fff;
	border: 1px solid var(--sg-line);
	border-radius: 0 0 var(--sg-radius) var(--sg-radius);
	box-shadow: var(--sg-shadow);
}

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

.primary-navigation ul {
	display: grid;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-navigation a {
	display: block;
	padding: 10px 8px;
	color: var(--sg-heading);
	font-weight: 650;
	text-decoration: none;
}

.header-actions {
	display: none;
	align-items: center;
	gap: 12px;
}

.sg-button,
.wp-block-button__link,
input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 12px 24px;
	border: 0;
	border-radius: 999px;
	background: var(--sg-teal);
	color: var(--sg-deep);
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition: transform .18s ease, background-color .18s ease;
}

.sg-button:hover,
.wp-block-button__link:hover,
input[type="submit"]:hover {
	background: #1acbc4;
	color: var(--sg-deep);
	transform: translateY(-1px);
}

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

.blog-hero {
	padding: clamp(20px, 5vw, 58px) 0;
}

.hero-layout {
	display: grid;
	gap: 16px;
}

.hero-feature,
.hero-support-card {
	overflow: hidden;
	background: var(--sg-paper);
	border: 1px solid var(--sg-line);
	border-bottom: 3px solid var(--sg-teal-1200);
	border-radius: var(--sg-radius);
}

.hero-feature__image,
.hero-support-card__image {
	display: block;
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: var(--sg-deep);
}

.hero-feature__image img,
.hero-support-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-kicker {
	margin: 0 0 10px;
	color: var(--sg-teal-1200);
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.hero-feature h1,
.hero-support-card h2,
.archive-header h1,
.entry-title,
.section-title {
	margin: 0;
	color: #000;
	font-family: var(--sg-serif);
	font-weight: 600;
	line-height: 1.18;
	text-wrap: balance;
}

.hero-feature__body {
	padding: clamp(18px, 2.5vw, 30px);
}

.hero-feature__badge {
	position: absolute;
	z-index: 1;
	top: 16px;
	left: 16px;
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 3px 11px;
	background: var(--sg-teal-100);
	border: 1px solid var(--sg-deep);
	border-radius: 999px;
	color: var(--sg-deep);
	font-size: .75rem;
	font-weight: 700;
	line-height: 1;
}

.hero-feature h1 {
	margin-top: 10px;
	font-size: clamp(1.9rem, 3vw, 3.2rem);
}

.hero-feature h1 a,
.hero-support-card h2 a {
	color: inherit;
	text-decoration: none;
}

.hero-support {
	display: grid;
	gap: 16px;
}

.hero-support-card {
	display: grid;
	grid-template-rows: auto 1fr;
}

.hero-support-card__body {
	display: flex;
	flex-direction: column;
	padding: 16px;
}

.hero-support-card h2 {
	margin-top: 10px;
	font-size: clamp(1.15rem, 1.6vw, 1.45rem);
	line-height: 1.2;
}

.story-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.story-chip {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 2px 9px;
	border: 1px solid var(--sg-teal-1200);
	border-radius: 999px;
	color: var(--sg-ink);
	font-size: .72rem;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
}

.story-chip--featured {
	background: var(--sg-teal-100);
}

.story-byline {
	margin-top: 10px;
	color: #000;
	font-family: var(--sg-serif);
	font-size: .78rem;
	font-weight: 600;
}

.story-byline a {
	color: inherit;
}

.story-actions {
	display: flex;
	gap: 14px;
	align-items: center;
	justify-content: space-between;
	margin-top: 16px;
	color: var(--sg-teal-1200);
	font-size: .82rem;
	font-weight: 700;
}

.hero-support-card .story-actions {
	margin-top: auto;
	padding-top: 12px;
}

.hero-support-card .read-more {
	margin-top: 0;
	font-size: .78rem;
}

.read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 24px;
	color: var(--sg-teal-1500);
	font-weight: 700;
}

.read-more::before {
	content: "↗";
	font-size: 1.35em;
	text-decoration: none;
}

.subscription-band {
	padding: 28px 0;
	background: var(--sg-teal-100);
}

.subscription-band__inner {
	display: grid;
	gap: 20px;
	align-items: center;
}

.subscription-band h2 {
	max-width: 18ch;
	margin: 0;
	font-family: var(--sg-serif);
	font-size: clamp(1.65rem, 4vw, 2.8rem);
	line-height: 1.2;
}

.subscribe-form {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.subscription-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.subscription-notice {
	flex: 1 0 100%;
	margin: 4px 0 0;
	font-size: .9rem;
	font-weight: 700;
}

.subscription-notice.is-success {
	color: var(--sg-teal-1500);
}

.subscription-notice.is-error {
	color: #a52a2a;
}

[data-subscription-form] button[disabled] {
	opacity: .65;
	cursor: wait;
	transform: none;
}

.subscribe-form input[type="email"],
.search-form .search-field {
	flex: 1 1 230px;
	min-height: 56px;
	padding: 12px 16px;
	border: 1px solid #c8dedc;
	border-radius: 12px;
	background: #fff;
	color: var(--sg-ink);
}

.explore-section {
	padding: clamp(48px, 8vw, 100px) 0 30px;
}

.explore-toolbar {
	display: grid;
	gap: 18px;
	margin-top: 28px;
}

.category-tabs {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.category-tabs a {
	min-width: 92px;
	padding: 13px 20px;
	border: 1px solid #c8dedc;
	border-radius: 999px;
	color: var(--sg-heading);
	font-weight: 700;
	text-align: center;
	text-decoration: none;
}

.category-tabs a:hover,
.category-tabs .is-active {
	background: var(--sg-teal-100);
	border-color: var(--sg-teal);
}

.search-form {
	display: flex;
	gap: 10px;
}

.conversations {
	margin: 36px 0 68px;
	padding: clamp(28px, 5vw, 64px);
	overflow: hidden;
	background: var(--sg-teal-1500);
	border-radius: var(--sg-radius);
	color: #fff;
}

.conversations__grid {
	display: grid;
	gap: 28px;
}

.conversations h2 {
	margin: 0;
	font-family: var(--sg-serif);
	font-size: clamp(2rem, 5vw, 3.7rem);
	line-height: 1.12;
}

.conversations .section-kicker,
.conversations a {
	color: #8ff4ef;
}

.posts-heading {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 28px;
}

.posts-heading h2 {
	margin: 0;
	font-family: var(--sg-serif);
	font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.post-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 36px 20px;
}

.post-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: transparent;
}

.post-card__media {
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: var(--sg-deep);
	border-radius: 8px;
}

.post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

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

.post-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 14px 0 0;
}

.post-card__meta {
	margin-top: 9px;
	color: var(--sg-muted);
	font-size: .76rem;
}

.entry-meta {
	margin-bottom: 10px;
	color: var(--sg-muted);
	font-size: .82rem;
}

.post-card__meta a {
	color: var(--sg-heading);
	font-weight: 650;
}

.post-card h3 {
	margin: 0;
	font-family: var(--sg-serif);
	font-size: clamp(1.2rem, 1.5vw, 1.5rem);
	line-height: 1.25;
}

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

.post-card .read-more {
	margin-top: auto;
	padding-top: 22px;
}

.pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 40px 0 20px;
}

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

.page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	min-height: 44px;
	padding: 8px 12px;
	border: 1px solid var(--sg-line);
	border-radius: 999px;
	background: #fff;
	text-decoration: none;
}

.page-numbers.current {
	background: var(--sg-teal);
	color: var(--sg-deep);
	border-color: var(--sg-teal);
}

.archive-header {
	padding: 52px 0 20px;
}

.archive-header h1 {
	font-size: clamp(2.1rem, 5vw, 4.5rem);
}

.archive-description {
	max-width: 65ch;
	color: var(--sg-muted);
}

.single-article {
	padding: clamp(40px, 7vw, 88px) 0;
}

.article-shell {
	width: min(calc(100% - 32px), 820px);
	margin-inline: auto;
}

.article-header {
	margin-bottom: 34px;
}

.article-header .entry-title {
	font-size: clamp(2.2rem, 6vw, 4.8rem);
}

.article-taxonomy {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.article-taxonomy a {
	padding: 8px 12px;
	border-radius: 999px;
	background: var(--sg-teal-100);
	font-size: .85rem;
	font-weight: 700;
	text-decoration: none;
}

.article-featured {
	margin: 0 0 36px;
	overflow: hidden;
	border-radius: var(--sg-radius);
}

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

.entry-content {
	font-family: var(--sg-serif);
	font-size: clamp(1.08rem, 2vw, 1.22rem);
	line-height: 1.85;
}

.entry-content > * {
	max-width: 100%;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin: 2em 0 .65em;
	color: #000;
	line-height: 1.24;
}

.entry-content h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
.entry-content h3 { font-size: clamp(1.45rem, 3vw, 2.05rem); }

.entry-content a {
	overflow-wrap: anywhere;
}

.entry-content blockquote {
	margin: 2em 0;
	padding: 12px 0 12px 24px;
	border-left: 4px solid var(--sg-gold);
	color: var(--sg-heading);
	font-size: 1.2em;
}

.entry-content table {
	display: block;
	width: 100%;
	overflow-x: auto;
	border-collapse: collapse;
	font-family: var(--sg-sans);
	font-size: .95rem;
}

.entry-content th,
.entry-content td {
	padding: 12px;
	border: 1px solid var(--sg-line);
	text-align: left;
}

.entry-content th {
	background: var(--sg-teal-100);
}

.article-share {
	margin-top: 56px;
	padding: 32px;
	background: var(--sg-teal-100);
	border-radius: var(--sg-radius);
	text-align: center;
}

.article-share h2 {
	margin-top: 0;
	font-family: var(--sg-serif);
}

.share-links {
	display: flex;
	justify-content: center;
	gap: 16px;
}

.share-links a {
	display: inline-grid;
	place-items: center;
	width: 60px;
	height: 60px;
	overflow: hidden;
	border-bottom: 2px solid #097c78;
	border-radius: 12px;
	background: #fffdf9;
	text-decoration: none;
}

.share-links img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.share-links .share-link--complete {
	border: 0;
	background: transparent;
}

.share-links .share-link--complete img {
	width: 60px;
	height: 60px;
}

.post-navigation {
	display: grid;
	gap: 16px;
	margin-top: 34px;
}

.post-navigation a {
	display: block;
	padding: 20px;
	background: #fff;
	border: 1px solid var(--sg-line);
	border-radius: var(--sg-radius);
	text-decoration: none;
}

.comments-area {
	margin-top: 52px;
}

.comments-area h2,
.comment-reply-title {
	font-family: var(--sg-serif);
}

.comment-list {
	display: grid;
	gap: 18px;
	padding: 0;
	list-style: none;
}

.comment-body {
	padding: 20px;
	background: #fff;
	border: 1px solid var(--sg-line);
	border-radius: var(--sg-radius);
}

.comment-form input:not([type="submit"]),
.comment-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #c8dedc;
	border-radius: 10px;
	background: #fff;
}

.empty-state {
	padding: 70px 0;
	text-align: center;
}

.empty-state h1 {
	font-family: var(--sg-serif);
	font-size: clamp(2.2rem, 7vw, 5rem);
}

.app-showcase {
	padding: 30px 0 54px;
}

.app-showcase__grid {
	display: grid;
	gap: 20px;
}

.app-download-card,
.purchase-card {
	min-width: 0;
	min-height: 300px;
	overflow: hidden;
	border-radius: var(--sg-radius);
}

.app-download-card {
	display: grid;
	grid-template-columns: minmax(120px, .8fr) 1.2fr;
	gap: clamp(18px, 3vw, 42px);
	align-items: center;
	padding: clamp(24px, 3vw, 42px);
	background: #f0f1f4;
}

.app-download-card__qr {
	width: 100%;
	max-width: 200px;
	aspect-ratio: 1;
	object-fit: contain;
	background: #fff;
}

.app-download-card h2,
.purchase-card h2 {
	margin: 0;
	font-family: var(--sg-serif);
	font-size: clamp(1.55rem, 2.3vw, 2rem);
	font-weight: 400;
	line-height: 1.22;
}

.app-download-card h2 strong {
	font-weight: 700;
}

.store-badges {
	position: relative;
	width: min(100%, 352px);
	margin-top: 20px;
}

.store-badges img {
	width: 100%;
	height: auto;
}

.store-badges a {
	position: absolute;
	top: 0;
	bottom: 0;
	width: calc(50% - 8px);
	border-radius: 8px;
}

.store-badges__apple {
	left: 0;
}

.store-badges__google {
	right: 0;
}

.purchase-card {
	display: grid;
	grid-template-columns: minmax(150px, .9fr) 1.1fr;
	align-items: center;
	padding: clamp(22px, 3vw, 40px);
	background: linear-gradient(180deg, #14413e 0%, #006f68 100%);
	border-bottom: 4px solid var(--sg-teal-1500);
	color: #fff;
}

.purchase-card__art {
	width: 100%;
	max-width: 290px;
	aspect-ratio: 1;
	object-fit: contain;
}

.purchase-card h2 {
	color: #fff;
	font-weight: 600;
}

.purchase-card p {
	margin: 14px 0 24px;
}

.purchase-card .sg-button {
	width: min(100%, 304px);
	color: #fffdf9;
}

.site-footer {
	padding: clamp(48px, 7vw, 96px) 0 32px;
	background: var(--sg-heading);
	color: #ccf1f0;
}

.site-footer a {
	color: #72d7d2;
	text-decoration: none;
}

.footer-top {
	display: grid;
	gap: 48px;
	align-items: start;
}

.footer-brand__logo {
	width: min(100%, 280px);
	height: auto;
}

.footer-brand p {
	max-width: 62ch;
	margin: 34px 0;
	font-size: 1rem;
	line-height: 1.55;
}

.footer-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.footer-socials a {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	overflow: hidden;
	background: #fffdf9;
	border-bottom: 2px solid var(--sg-teal-1200);
	border-radius: 10px;
}

.footer-socials img {
	width: 26px;
	height: 26px;
}

.footer-socials a:nth-child(2) img {
	width: 14px;
	height: 26px;
}

.footer-socials a:nth-child(3) {
	background: transparent;
	border: 0;
}

.footer-socials a:nth-child(3) img {
	width: 48px;
	height: 48px;
}

.footer-newsletter__brand {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	align-items: flex-end;
	color: #fff;
	font-family: var(--sg-serif);
	text-transform: uppercase;
}

.footer-newsletter__brand > span {
	font-size: clamp(2rem, 4vw, 3.5rem);
	line-height: 1;
}

.footer-newsletter__brand small {
	display: inline-flex;
	gap: 5px;
	align-items: center;
	color: var(--sg-gold);
	font-size: .7rem;
	font-weight: 700;
	text-transform: none;
}

.footer-newsletter__brand small img {
	width: 112px;
	height: auto;
}

.footer-subscribe {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px;
	margin-top: 40px;
}

.footer-subscribe input {
	min-width: 0;
	height: 52px;
	padding: 0 16px;
	background: #fff;
	border: 1px solid var(--sg-line);
	border-top-width: 3px;
	border-radius: 14px;
}

.footer-subscribe .sg-button {
	min-width: 130px;
}

.footer-subscribe .subscription-notice {
	grid-column: 1 / -1;
	color: #ccf1f0;
}

.footer-subscribe .subscription-notice.is-error {
	color: #ffd2cf;
}

.footer-menus {
	display: grid;
	gap: 32px;
	margin-top: 52px;
}

.footer-menus h2 {
	margin: 0 0 14px;
	color: #fff;
	font-family: var(--sg-sans);
	font-size: 1rem;
}

.footer-menus ul {
	display: grid;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: .9rem;
}

.footer-bottom {
	margin-top: 38px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, .18);
	font-size: .84rem;
}

@media (min-width: 640px) {
	.hero-support {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

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

@media (min-width: 820px) {
	.subscription-band__inner,
	.conversations__grid {
		grid-template-columns: 1fr 1fr;
	}

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

	.explore-toolbar {
		grid-template-columns: 1fr minmax(320px, .8fr);
		align-items: center;
	}

	.footer-top {
		grid-template-columns: 1fr 1fr;
	}

	.footer-menus {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.footer-menus > :first-child {
		grid-column: 1;
	}
}

@media (max-width: 639px) {
	.app-download-card,
	.purchase-card {
		grid-template-columns: 1fr;
	}

	.app-download-card__qr,
	.purchase-card__art {
		max-width: 210px;
		margin-inline: auto;
	}
}

@media (min-width: 1024px) {
	.site-header__inner {
		min-height: 116px;
	}

	.menu-toggle {
		display: none;
	}

	.primary-navigation {
		position: static;
		display: block;
		padding: 0;
		border: 0;
		box-shadow: none;
	}

	.primary-navigation ul {
		display: flex;
		gap: 20px;
		align-items: center;
	}

	.header-actions {
		display: flex;
	}

	.hero-layout {
		grid-template-columns: minmax(0, 3.15fr) minmax(260px, 1fr);
	}

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

	.hero-support-card__image {
		aspect-ratio: 2.15 / 1;
	}

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

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