/* WirePulse — mobile-first gaming news theme */

:root {
	--ink: #0f1219;
	--ink-soft: #3a4150;
	--surface: #ffffff;
	--surface-alt: #f4f6fb;
	--surface-dark: #151922;
	--line: rgba(15, 18, 25, 0.1);
	--violet: #6c5ce7;
	--violet-deep: #5541d7;
	--cyan: #00cec9;
	--cyan-deep: #00a8a4;
	--accent: var(--violet);
	--accent-hover: var(--violet-deep);
	--white: #ffffff;
	--font-display: "Space Grotesk", "Segoe UI", sans-serif;
	--font-body: "Inter", "Segoe UI", sans-serif;
	--space: clamp(1rem, 3vw, 2rem);
	--container: 1160px;
	--radius: 6px;
	--radius-lg: 12px;
	--header-h: 60px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--shadow: 0 8px 32px rgba(15, 18, 25, 0.08);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--ink);
	background: var(--surface-alt);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--accent);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.15em;
}

a:hover {
	color: var(--accent-hover);
}

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1.25;
	color: var(--ink);
	margin: 0 0 0.45em;
}

h1 { font-size: clamp(1.5rem, 4.5vw, 2.25rem); }
h2 { font-size: clamp(1.25rem, 3.5vw, 1.75rem); }
h3 { font-size: clamp(1.05rem, 2.8vw, 1.35rem); }

p {
	margin: 0 0 1em;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.container {
	width: min(100% - 1.25rem, var(--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);
	border: 0;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	padding: 0.7rem 1.15rem;
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 600;
	border: 1px solid transparent;
	border-radius: var(--radius);
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.2s var(--ease), background 0.2s ease, color 0.2s ease;
}

.btn:hover {
	transform: translateY(-1px);
	text-decoration: none;
}

.btn-accent {
	background: var(--accent);
	color: var(--white);
}

.btn-accent:hover {
	background: var(--accent-hover);
	color: var(--white);
}

.btn-light {
	background: var(--white);
	color: var(--ink);
}

.btn-light:hover {
	background: var(--surface-alt);
	color: var(--ink);
}

.btn-lg {
	padding: 0.85rem 1.4rem;
	font-size: 0.95rem;
}

.btn-block {
	width: 100%;
}

.text-link {
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
}

.text-link:hover {
	text-decoration: underline;
}

/* Badges */
.cat-badge {
	display: inline-block;
	padding: 0.2rem 0.55rem;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	border-radius: 3px;
	background: rgba(108, 92, 231, 0.12);
	color: var(--violet-deep);
}

.cat-badge--lead {
	background: var(--accent);
	color: var(--white);
}

.cat-badge--sm {
	font-size: 0.68rem;
	padding: 0.15rem 0.45rem;
}

.deal-badge {
	display: inline-block;
	padding: 0.2rem 0.55rem;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	background: rgba(0, 206, 201, 0.15);
	color: var(--cyan-deep);
	border-radius: 3px;
}

.eyebrow {
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--cyan-deep);
	margin-bottom: 0.35rem;
}

.time-ago {
	font-size: 0.8rem;
	color: var(--ink-soft);
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--surface-dark);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.header-inner {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-height: var(--header-h);
	padding: 0.5rem 0.75rem;
	max-width: var(--container);
	margin-inline: auto;
}

.site-branding {
	flex: 1;
	min-width: 0;
}

.site-title {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 700;
}

.site-title a {
	color: var(--white);
	text-decoration: none;
}

.site-title a:hover {
	color: var(--cyan);
}

.custom-logo-link {
	display: block;
	line-height: 0;
}

.custom-logo {
	max-height: 40px;
	width: auto;
}

.nav-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	flex-shrink: 0;
}

.nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--white);
	border-radius: 1px;
	transition: transform 0.25s ease, opacity 0.25s ease;
	margin-inline: auto;
}

.nav-toggle.is-active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.main-navigation {
	display: none;
	position: absolute;
	top: var(--header-h);
	left: 0;
	right: 0;
	background: var(--surface-dark);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	padding: 0.75rem 1rem 1rem;
}

.main-navigation.is-open {
	display: block;
}

.primary-menu {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.primary-menu a {
	display: block;
	padding: 0.55rem 0.25rem;
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
}

.primary-menu a:hover {
	color: var(--cyan);
}

.header-actions {
	display: none;
	align-items: center;
	gap: 0.5rem;
}

.header-search {
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
	overflow: hidden;
}

.header-search .search-field {
	border: none;
	background: transparent;
	color: var(--white);
	padding: 0.45rem 0.65rem;
	font-size: 0.85rem;
	width: 140px;
	outline: none;
}

.header-search .search-field::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

.header-search .search-submit {
	border: none;
	background: transparent;
	color: rgba(255, 255, 255, 0.7);
	padding: 0.45rem 0.55rem;
	cursor: pointer;
	display: flex;
	align-items: center;
}

.header-cta {
	font-size: 0.82rem;
	padding: 0.45rem 0.85rem;
	white-space: nowrap;
}

/* Featured section */
.featured-section {
	padding: 1rem 0 0.5rem;
}

.featured-grid {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.featured-lead {
	background: var(--surface);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.featured-media {
	display: block;
	overflow: hidden;
}

.featured-media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 0.4s var(--ease);
}

.featured-lead:hover .featured-media img {
	transform: scale(1.03);
}

.featured-body {
	padding: 1rem 1.1rem 1.25rem;
}

.featured-body h1 a {
	color: var(--ink);
	text-decoration: none;
}

.featured-body h1 a:hover {
	color: var(--accent);
}

.featured-side {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.featured-card {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 0.85rem;
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: 0.75rem;
	box-shadow: var(--shadow);
	align-items: start;
}

.featured-card-media {
	display: block;
	border-radius: var(--radius);
	overflow: hidden;
}

.featured-card-media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.featured-card-body h2 {
	font-size: 0.95rem;
	margin-bottom: 0.3rem;
}

.featured-card-body h2 a {
	color: var(--ink);
	text-decoration: none;
}

.featured-card-body h2 a:hover {
	color: var(--accent);
}

.featured-card-body p {
	font-size: 0.82rem;
	color: var(--ink-soft);
	margin: 0;
	line-height: 1.5;
}

/* Sections */
.section {
	padding: 2rem 0;
}

.section-head {
	margin-bottom: 1.25rem;
}

.section-head p {
	color: var(--ink-soft);
	font-size: 0.92rem;
	margin: 0;
}

.row-head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.5rem;
}

.view-all {
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

/* Headlines */
.headlines-layout {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.headline-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.headline-item {
	padding: 1rem 0;
	border-bottom: 1px solid var(--line);
}

.headline-item:first-child {
	padding-top: 0;
}

.headline-meta {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin-bottom: 0.35rem;
}

.headline-item h3 {
	font-size: 1rem;
	margin-bottom: 0.25rem;
}

.headline-item h3 a {
	color: var(--ink);
	text-decoration: none;
}

.headline-item h3 a:hover {
	color: var(--accent);
}

.headline-item p {
	font-size: 0.88rem;
	color: var(--ink-soft);
	margin: 0;
}

/* Spotlight aside */
.spotlight-aside {
	background: var(--surface);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.spotlight-media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.spotlight-copy {
	padding: 1rem 1.1rem;
}

.spotlight-copy h3 {
	font-size: 1.05rem;
}

.topic-cloud {
	padding: 0 1.1rem 1.1rem;
	border-top: 1px solid var(--line);
	padding-top: 1rem;
}

.topic-cloud h4 {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--ink-soft);
	margin-bottom: 0.65rem;
}

.chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.chip-list a {
	display: inline-block;
	padding: 0.35rem 0.7rem;
	font-size: 0.8rem;
	font-weight: 500;
	background: var(--surface-alt);
	border-radius: 999px;
	color: var(--ink-soft);
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.chip-list a:hover {
	background: rgba(108, 92, 231, 0.12);
	color: var(--accent);
}

/* Guides grid */
.guides-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.guide-card {
	background: var(--surface);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.guide-media {
	display: block;
	overflow: hidden;
}

.guide-media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 0.35s var(--ease);
}

.guide-card:hover .guide-media img {
	transform: scale(1.04);
}

.guide-body {
	padding: 0.9rem 1rem 1.1rem;
}

.guide-body h3 {
	font-size: 0.98rem;
}

/* Deals */
.deals-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.deal-card {
	background: var(--surface);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.deal-media {
	display: block;
}

.deal-media img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.deal-body {
	padding: 0.9rem 1rem 1.1rem;
}

.deal-body h3 {
	font-size: 0.98rem;
}

.deal-meta {
	font-size: 0.82rem;
	color: var(--ink-soft);
	margin: 0;
}

/* Reviews */
.reviews-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.review-card {
	background: var(--surface);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.review-media {
	display: block;
	position: relative;
	overflow: hidden;
}

.review-media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.review-score {
	position: absolute;
	top: 0.65rem;
	right: 0.65rem;
	background: var(--accent);
	color: var(--white);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.95rem;
	padding: 0.3rem 0.55rem;
	border-radius: var(--radius);
	line-height: 1;
}

.review-body {
	padding: 0.9rem 1rem 1.1rem;
}

.review-body h3 {
	font-size: 0.98rem;
}

.review-body p {
	font-size: 0.88rem;
	color: var(--ink-soft);
	margin: 0;
}

/* Articles grid */
.articles-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.article-card {
	background: var(--surface);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.article-card-image {
	display: block;
	overflow: hidden;
}

.article-card-image img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 0.35s var(--ease);
}

.article-card:hover .article-card-image img {
	transform: scale(1.04);
}

.article-card-body {
	padding: 0.9rem 1rem 1.1rem;
}

.article-meta {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	margin-bottom: 0.4rem;
	font-size: 0.8rem;
	color: var(--ink-soft);
}

.article-card-body h2,
.article-card-body h3 {
	font-size: 0.98rem;
}

.article-card-body h2 a,
.article-card-body h3 a {
	color: var(--ink);
	text-decoration: none;
}

.article-card-body h2 a:hover,
.article-card-body h3 a:hover {
	color: var(--accent);
}

.article-excerpt {
	font-size: 0.88rem;
	color: var(--ink-soft);
}

.read-more {
	font-size: 0.82rem;
	font-weight: 600;
	text-decoration: none;
}

.demo-note {
	font-size: 0.85rem;
	color: var(--ink-soft);
	text-align: center;
	margin-top: 1rem;
}

/* Newsletter */
.newsletter-section {
	background: var(--surface-dark);
	color: var(--white);
}

.newsletter-inner {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 0.5rem 0;
}

.newsletter-copy h2 {
	color: var(--white);
}

.newsletter-copy p {
	color: rgba(255, 255, 255, 0.72);
	margin: 0;
	font-size: 0.92rem;
}

.newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.newsletter-form input[type="email"] {
	padding: 0.75rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.06);
	color: var(--white);
	font-size: 0.95rem;
	outline: none;
}

.newsletter-form input[type="email"]::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input[type="email"]:focus {
	border-color: var(--cyan);
}

/* CTA banner */
.cta-banner {
	position: relative;
	background-size: cover;
	background-position: center;
	color: var(--white);
	text-align: center;
	padding: 3rem 0;
}

.cta-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(21, 25, 34, 0.88), rgba(108, 92, 231, 0.65));
}

.cta-inner {
	position: relative;
	z-index: 1;
}

.cta-inner h2 {
	color: var(--white);
}

.cta-inner p {
	color: rgba(255, 255, 255, 0.82);
	max-width: 520px;
	margin-inline: auto;
	margin-bottom: 1.25rem;
}

/* Contact */
.contact-grid {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-details {
	font-size: 0.92rem;
	color: var(--ink-soft);
}

.contact-details li {
	margin-bottom: 0.35rem;
}

.contact-form-wrap {
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: 1.25rem;
	box-shadow: var(--shadow);
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.contact-form input,
.contact-form textarea {
	padding: 0.75rem 0.9rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	font-family: var(--font-body);
	font-size: 0.95rem;
	outline: none;
	transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--accent);
}

.contact-form textarea {
	resize: vertical;
	min-height: 120px;
}

.form-feedback {
	font-size: 0.88rem;
	margin: 0;
}

.form-feedback.is-success {
	color: var(--cyan-deep);
}

.form-feedback.is-error {
	color: #e74c3c;
}

/* Footer */
.site-footer {
	background: var(--surface-dark);
	color: rgba(255, 255, 255, 0.75);
}

.footer-main {
	padding: 2rem 0 1.5rem;
}

.footer-grid {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.footer-brand p {
	font-size: 0.88rem;
	margin: 0.5rem 0 0;
	color: rgba(255, 255, 255, 0.55);
}

.site-branding--footer .site-title a {
	color: var(--white);
}

.footer-menu {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.footer-menu a {
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
	font-size: 0.88rem;
}

.footer-menu a:hover {
	color: var(--cyan);
}

.footer-contact-col p {
	margin: 0 0 0.35rem;
	font-size: 0.88rem;
}

.footer-contact-col a {
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
}

.social-links {
	display: flex;
	gap: 0.75rem;
	margin-top: 0.65rem;
}

.social-links a {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--cyan);
	text-decoration: none;
}

/* Footer links row — horizontal, unlimited, no label */
.footer-links-bar {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 0.85rem 0;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}

.footer-links-row {
	display: flex;
	flex-wrap: nowrap;
	gap: 0.35rem 1.25rem;
	align-items: center;
	min-width: min-content;
	padding: 0.15rem 0;
}

.footer-links-row li {
	flex-shrink: 0;
}

.footer-links-row a {
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
	font-size: 0.78rem;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.footer-links-row a:hover {
	color: var(--cyan);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding: 0.85rem 0;
}

.footer-bottom p {
	margin: 0;
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.4);
	text-align: center;
}

/* Inner pages */
.page-wrap {
	padding: 1.5rem 0 2.5rem;
}

.page-wrap.narrow {
	max-width: 720px;
}

.archive-header {
	margin-bottom: 1.5rem;
}

.archive-header p,
.archive-description {
	color: var(--ink-soft);
	font-size: 0.92rem;
}

.single-article {
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: 1.25rem;
	box-shadow: var(--shadow);
}

.entry-thumbnail {
	margin-bottom: 1rem;
	border-radius: var(--radius);
	overflow: hidden;
}

.entry-content {
	font-size: 0.98rem;
}

.entry-content p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-size: 0.85rem;
	color: var(--ink-soft);
	margin-top: 1rem;
}

.comments-area {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--line);
}

.comments-title {
	font-size: 1.1rem;
}

.comment-list {
	padding-left: 0;
}

.comment-list .comment {
	margin-bottom: 1rem;
	padding: 0.75rem;
	background: var(--surface-alt);
	border-radius: var(--radius);
	list-style: none;
}

.no-results {
	text-align: center;
	padding: 2rem 0;
}

.no-results p {
	color: var(--ink-soft);
}

/* Pagination */
.navigation.pagination {
	margin-top: 2rem;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	justify-content: center;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 0.5rem;
	border-radius: var(--radius);
	background: var(--surface);
	color: var(--ink);
	text-decoration: none;
	font-size: 0.88rem;
	font-weight: 500;
	box-shadow: 0 1px 4px rgba(15, 18, 25, 0.06);
}

.page-numbers.current {
	background: var(--accent);
	color: var(--white);
}

.page-numbers:hover {
	background: rgba(108, 92, 231, 0.12);
	color: var(--accent);
}

/* Reveal animation */
.reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
	transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
	html {
		scroll-behavior: auto;
	}
}

/* Tablet */
@media (min-width: 600px) {
	.guides-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.deals-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.articles-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.newsletter-form {
		flex-direction: row;
	}

	.newsletter-form input[type="email"] {
		flex: 1;
	}
}

/* Desktop */
@media (min-width: 768px) {
	.featured-card {
		grid-template-columns: 160px 1fr;
	}

	.reviews-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.contact-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		align-items: start;
	}
}

@media (min-width: 992px) {
	:root {
		--header-h: 68px;
	}

	.nav-toggle {
		display: none;
	}

	.header-inner {
		padding: 0.65rem 1rem;
	}

	.main-navigation {
		display: block !important;
		position: static;
		background: transparent;
		border: none;
		padding: 0;
		flex: 1;
	}

	.primary-menu {
		flex-direction: row;
		justify-content: center;
		gap: 0.15rem;
	}

	.primary-menu a {
		padding: 0.4rem 0.65rem;
		font-size: 0.88rem;
	}

	.header-actions {
		display: flex;
	}

	.featured-grid {
		display: grid;
		grid-template-columns: 1.4fr 1fr;
		gap: 1.25rem;
		align-items: start;
	}

	.featured-side {
		height: 100%;
		justify-content: space-between;
	}

	.featured-card {
		grid-template-columns: 1fr;
		padding: 0;
	}

	.featured-card-media img {
		aspect-ratio: 16 / 9;
	}

	.headlines-layout {
		display: grid;
		grid-template-columns: 1.5fr 1fr;
		gap: 1.5rem;
		align-items: start;
	}

	.guides-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.articles-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.footer-grid {
		display: grid;
		grid-template-columns: 1.4fr 1fr 1fr;
		gap: 2rem;
	}

	.footer-links-row {
		flex-wrap: wrap;
		justify-content: center;
	}
}

@media (min-width: 1200px) {
	.featured-body {
		padding: 1.25rem 1.5rem 1.5rem;
	}
}
