@import url("https://fonts.googleapis.com/css2?family=Bitter:wght@500;600;700;800&family=Nunito+Sans:ital,opsz,wght@0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;1,6..12,400&display=swap");

/* Flutterlane mockup — editorial palette (mirrors theme.json) */
:root {
	--base: #ffffff;
	--contrast: #111827;
	--primary: #2563eb;
	--primary-strong: #1d4ed8;
	--muted: #6b7280;
	--surface: #ffffff;
	--line: #e5e7eb;
	--panel: #f9fafb;
	--pillar-business: #1e40af;
	--pillar-software: #475569;
	--pillar-health-soft: #f9fafb;
	--pillar-business-soft: #f9fafb;
	--pillar-software-soft: #f9fafb;
	--cta: #f97316;
	--cta-hover: #ea580c;
	--brand-purple: #7c3aed;
	--purple-soft: #f5f3ff;
	--content: 40rem;
	--wide: 72rem;
	--sans: "Nunito Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--serif: "Bitter", Georgia, Cambria, "Times New Roman", Times, serif;
	--radius: 12px;
	--radius-sm: 8px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--sans);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--contrast);
	background: var(--base);
}

/* Headings default to Bitter like the home page (overrides only where no rule exists) */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--serif);
}

.visually-hidden {
	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 {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.skip-link:focus {
	position: fixed;
	left: 1rem;
	top: 1rem;
	width: auto;
	height: auto;
	padding: 0.5rem 1rem;
	background: var(--contrast);
	color: var(--surface);
	border-radius: var(--radius-sm);
	z-index: 1000;
	overflow: visible;
}

a {
	color: var(--primary);
	text-decoration: none;
	text-underline-offset: 0.15em;
}

a:hover {
	color: var(--contrast);
	text-decoration: underline;
	text-decoration-thickness: 2px;
}

.fl-container {
	width: 100%;
	max-width: var(--wide);
	margin: 0 auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.fl-narrow {
	max-width: var(--content);
	margin-left: auto;
	margin-right: auto;
}

/* Header */
.site-header {
	background: var(--surface);
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--line);
	box-shadow: 0 1px 0 rgba(17, 24, 39, 0.03);
}

.site-header .inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: inherit;
}

.brand:hover {
	text-decoration: none;
}

.logo-mark {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	display: block;
	object-fit: contain;
}

.site-title {
	font-family: var(--serif);
	font-weight: 800;
	font-size: 1.25rem;
	letter-spacing: -0.02em;
}

.brand-lines {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.brand-lines .site-title {
	line-height: 1.15;
}

.brand-tag {
	font-size: 0.6875rem;
	font-weight: 400;
	color: var(--muted);
	letter-spacing: 0.01em;
	line-height: 1.35;
	max-width: min(24rem, 100%);
}

.nav-main ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1.35rem;
	font-size: 0.9375rem;
	font-weight: 400;
}

.nav-main a {
	text-decoration: none;
}

.nav-main a[aria-current="page"] {
	color: var(--contrast);
	font-weight: 600;
}

/* Hero — Penny Hoarder–style band + two-column spotlight */
.ph-hero {
	padding: 2.25rem 0 2.5rem;
	background: linear-gradient(165deg, var(--purple-soft) 0%, var(--base) 42%, #fafafa 100%);
	border-bottom: 1px solid var(--line);
}

.ph-hero__inner {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.ph-hero__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: stretch;
}

@media (min-width: 900px) {
	.ph-hero__grid {
		grid-template-columns: 1.05fr 0.95fr;
		gap: 2.5rem;
		align-items: center;
	}
}

.ph-spotlight {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.35rem 1.5rem;
	box-shadow: 0 8px 30px rgba(124, 58, 237, 0.08);
	border-top: 4px solid var(--brand-purple);
}

.ph-spotlight__eyebrow {
	display: block;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--brand-purple);
	margin-bottom: 0.65rem;
}

.ph-spotlight__title {
	font-family: var(--serif);
	font-size: clamp(1.2rem, 1rem + 0.8vw, 1.45rem);
	line-height: 1.28;
	font-weight: 700;
	margin: 0 0 0.65rem;
}

.ph-spotlight__title a {
	color: inherit;
	text-decoration: none;
}

.ph-spotlight__title a:hover {
	color: var(--primary);
	text-decoration: none;
}

.ph-spotlight__deck {
	margin: 0 0 1.1rem;
	font-size: 0.9375rem;
	color: #4b5563;
	line-height: 1.6;
}

/* Legacy single-column hero (other mock pages) */
.hero {
	padding: 2rem 0 2.5rem;
	background: var(--surface);
	border-bottom: 1px solid var(--line);
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: center;
}

@media (min-width: 900px) {
	.hero-grid {
		grid-template-columns: 1.1fr 0.9fr;
	}
}

.hero-kicker {
	font-size: 0.8125rem;
	text-transform: none;
	letter-spacing: 0;
	color: var(--muted);
	font-weight: 500;
	margin: 0 0 0.5rem;
}

.ph-hero h1,
.hero h1 {
	font-family: var(--serif);
	font-size: clamp(2rem, 1.4rem + 2.2vw, 2.85rem);
	line-height: 1.12;
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0 0 1rem;
}

.hero-lede {
	font-size: 1.125rem;
	color: #4b5563;
	margin: 0 0 1rem;
	max-width: 40rem;
	line-height: 1.65;
}

.hero-note {
	font-size: 0.8125rem;
	color: var(--muted);
	margin: 1rem 0 0;
	max-width: 40rem;
	line-height: 1.5;
}

.read-more {
	font-weight: 600;
	font-size: 0.9375rem;
}

.hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.65rem 1.5rem;
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	font-family: inherit;
	text-decoration: none;
	transition: box-shadow 0.2s ease, transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-sm {
	padding: 0.5rem 1.15rem;
	font-size: 0.875rem;
}

.btn-primary {
	background: var(--cta);
	color: var(--surface);
	box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
	background: var(--cta-hover);
	color: var(--surface);
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(234, 88, 12, 0.42);
	transform: translateY(-1px);
}

.btn-ghost {
	background: var(--surface);
	color: var(--contrast);
	border: 2px solid var(--line);
	box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
}

.btn-ghost:hover {
	border-color: var(--primary);
	color: var(--primary);
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
	transform: translateY(-1px);
}

.hero-visual {
	aspect-ratio: 4/3;
	border-radius: var(--radius);
	background: var(--panel);
	border: 1px solid var(--line);
	box-shadow: none;
}

/* Sections */
.section {
	padding: 2.75rem 0;
}

.section-head {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: baseline;
	gap: 1rem;
	margin-bottom: 1.75rem;
}

.section-head h2 {
	font-family: var(--serif);
	font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
	font-weight: 800;
	letter-spacing: -0.015em;
	margin: 0;
}

.ph-section-head h2 {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

.ph-section-head h2::before {
	content: "";
	width: 4px;
	height: 1.1em;
	background: var(--brand-purple);
	border-radius: 2px;
	flex-shrink: 0;
}

.section-link {
	font-size: 0.875rem;
	font-weight: 600;
}

/* Topic strip (quick jumps) */
.topic-strip {
	background: var(--surface);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	padding: 0.85rem 0;
}

.topic-strip__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem 1.25rem;
}

.topic-strip__label {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--muted);
}

.topic-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.topic-pills a {
	display: inline-flex;
	align-items: center;
	padding: 0.4rem 0.95rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--contrast);
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: 999px;
	text-decoration: none;
	transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.topic-pills a:hover {
	border-color: var(--brand-purple);
	color: var(--brand-purple);
	background: var(--purple-soft);
	text-decoration: none;
}

/* Featured row — larger story cards */
.featured-row {
	padding: 2.5rem 0 2rem;
	background: var(--base);
}

.featured-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.35rem;
	margin-top: 0.25rem;
}

@media (min-width: 720px) {
	.featured-cards {
		grid-template-columns: repeat(3, 1fr);
	}

	/* Curated "Start here" row features two hub guides; balance them 2-up. */
	.start-here .featured-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

.feat-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.feat-card:hover {
	box-shadow: 0 10px 36px rgba(17, 24, 39, 0.08);
	border-color: #d1d5db;
	transform: translateY(-2px);
}

.feat-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.feat-card__media {
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, #e0e7ff 0%, var(--panel) 55%, #ede9fe 100%);
	border-bottom: 1px solid var(--line);
}

.feat-card__media--business {
	background: linear-gradient(135deg, #dbeafe 0%, var(--panel) 50%, #e0e7ff 100%);
}

.feat-card__media--software {
	background: linear-gradient(135deg, #f1f5f9 0%, var(--panel) 45%, #e2e8f0 100%);
}

.feat-card__media--finance {
	background: linear-gradient(135deg, #d1fae5 0%, var(--panel) 50%, #ecfdf5 100%);
}

.feat-card__body {
	padding: 1rem 1.15rem 1.2rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.feat-card__cat {
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--primary);
}

.feat-card h3 {
	font-family: var(--serif);
	font-size: 1.2rem;
	line-height: 1.25;
	font-weight: 700;
	margin: 0;
}

.feat-card__link:hover h3 {
	color: var(--primary);
}

.feat-card p {
	margin: 0;
	font-size: 0.9rem;
	color: #4b5563;
	line-height: 1.55;
	flex: 1;
}

/* Post cards */
.card-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.75rem;
}

@media (min-width: 640px) {
	.card-grid.cols-2 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 960px) {
	.card-grid.cols-3 {
		grid-template-columns: repeat(3, 1fr);
	}
}

.post-card {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 4px;
	overflow: hidden;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.post-card:hover {
	box-shadow: 0 4px 14px rgba(17, 24, 39, 0.06);
	border-color: #d1d5db;
}

.post-card a.card-link {
	color: inherit;
	text-decoration: none;
}

.post-card a.card-link:hover h3 {
	color: var(--primary);
}

.post-card .thumb {
	aspect-ratio: 16/9;
	background: var(--panel);
}

.post-card .body {
	padding: 0 1.1rem 1.15rem;
}

.post-card .meta {
	font-size: 0.8125rem;
	color: var(--muted);
}

.post-card h3 {
	font-family: var(--serif);
	font-size: 1.2rem;
	line-height: 1.3;
	margin: 0.25rem 0 0;
}

.post-card .excerpt {
	font-size: 0.9375rem;
	color: #4b5563;
	margin: 0;
	flex: 1;
}

.more-link {
	font-weight: 600;
	font-size: 0.9rem;
	margin-top: 0.25rem;
}

/* Newsletter strip */
.newsletter {
	background: var(--contrast);
	color: var(--surface);
	padding: 2.25rem 0;
	margin-top: 1rem;
}

.newsletter h2 {
	font-family: var(--serif);
	font-size: 1.5rem;
	margin: 0 0 0.5rem;
}

.newsletter p {
	margin: 0 0 1rem;
	opacity: 0.9;
	font-size: 0.95rem;
}

.newsletter-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
}

.newsletter input[type="email"] {
	flex: 1 1 220px;
	min-width: 0;
	padding: 0.65rem 1rem;
	border-radius: 999px;
	border: 1px solid #57534e;
	background: #292524;
	color: var(--surface);
	font-family: inherit;
}

.newsletter input::placeholder {
	color: #a8a29e;
}

.newsletter .btn-primary {
	box-shadow: 0 4px 18px rgba(249, 115, 22, 0.45);
}

.newsletter .btn-primary:hover {
	color: var(--surface);
}

/* Footer */
.site-footer {
	background: var(--contrast);
	color: var(--surface);
	padding: 3rem 0 2rem;
	margin-top: 0;
}

.footer-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 2rem;
}

.footer-col h4 {
	font-family: var(--sans);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 0 0 0.75rem;
	opacity: 0.85;
}

.footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.875rem;
}

.footer-col li {
	margin-bottom: 0.35rem;
}

.footer-col a {
	color: var(--surface);
	opacity: 0.92;
}

.footer-col a:hover {
	opacity: 1;
	text-decoration: underline;
}

.footer-tagline {
	font-size: 0.875rem;
	opacity: 0.85;
	margin: 0.5rem 0 0;
	max-width: 22rem;
}

.footer-copy {
	text-align: center;
	font-size: 0.8125rem;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	opacity: 0.88;
}

/* Article */
.article-hero {
	padding: 2rem 0 0;
}

.article-hero h1 {
	font-family: var(--serif);
	font-size: clamp(1.85rem, 1.2rem + 2vw, 2.75rem);
	line-height: 1.2;
	margin: 0 0 0.75rem;
}

.breadcrumb {
	font-size: 0.8125rem;
	color: var(--muted);
	margin-bottom: 1rem;
}

.breadcrumb a {
	font-weight: 500;
}

.article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	font-size: 0.875rem;
	color: var(--muted);
	margin-bottom: 1.25rem;
}

.article-meta .domain {
	color: var(--primary);
	font-weight: 600;
}

.rule {
	border: 0;
	height: 1px;
	background: var(--line);
	margin: 0 0 1.75rem;
}

.article-disclosure-wrap {
	margin-bottom: 0.5rem;
}

.featured-wide {
	max-width: var(--wide);
	margin: 0 auto 1.5rem;
	padding: 0 1.5rem;
}

.featured-wide .img {
	position: relative;
	width: 100%;
	height: clamp(160px, 28vw, 280px);
	border-radius: 4px;
	background: var(--panel);
	border: 1px solid var(--line);
	overflow: hidden;
}

.featured-wide .img .featured-wide__photo,
.featured-wide .img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 4px;
}

.article-body {
	padding-bottom: 3rem;
}

.article-body h2 {
	font-family: var(--serif);
	font-size: clamp(1.35rem, 1rem + 1vw, 1.85rem);
	margin: 2rem 0 0.75rem;
}

.article-body p {
	margin: 0 0 1rem;
}

/* Full-width article copy within .fl-container; compact disclosure type */
.disclosure {
	display: block;
	width: 100%;
	max-width: 100%;
	margin: 1.75rem 0;
	box-sizing: border-box;
	padding: 0.65rem 0;
	font-size: 0.6875rem;
	line-height: 1.45;
	text-align: center;
	color: var(--muted);
	background: var(--panel);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	border-radius: 0;
}

.disclosure strong {
	color: var(--contrast);
	font-weight: 600;
}

/* Business lane — full content width (matches .fl-container / --wide), compact */
.lane-notice-row {
	margin-top: 0.25rem;
	margin-bottom: 0.5rem;
}

.lane-notice {
	width: 100%;
	box-sizing: border-box;
	margin: 0;
	padding: 0.65rem 0;
	background: var(--panel);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	border-radius: 0;
	font-size: 0.6875rem;
	line-height: 1.45;
	text-align: left;
	color: var(--muted);
}

.lane-notice strong {
	color: var(--contrast);
	font-weight: 600;
}

aside.disclaimer {
	margin: 2rem 0;
	padding: 1rem 1.15rem;
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	font-size: 0.875rem;
	color: #475569;
}

aside.disclaimer p {
	margin: 0;
}

aside.disclaimer p + p {
	margin-top: 0.6rem;
}

/* FDA/DSHEA structure-function statement (supplement pages). Fine-print, full width. */
.supplement-fda {
	display: block;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 1.75rem 0;
	padding: 0.65rem 0.9rem;
	font-size: 0.6875rem;
	line-height: 1.45;
	color: var(--muted);
	background: var(--panel);
	border-left: 3px solid var(--line);
	border-radius: var(--radius-sm);
}

.supplement-fda strong {
	color: var(--contrast);
	font-weight: 600;
}

.pros-cons {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin: 2rem 0;
}

@media (min-width: 560px) {
	.pros-cons {
		grid-template-columns: 1fr 1fr;
	}
}

.pc {
	background: var(--surface);
	border: 1px solid #e7e5e4;
	border-radius: var(--radius-sm);
	padding: 1.25rem 1.35rem;
}

.pc h3 {
	font-family: var(--sans);
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	margin: 0 0 0.75rem;
}

.pc.pros h3 {
	color: var(--primary);
}

.pc.cons h3 {
	color: var(--muted);
}

.pc ul {
	margin: 0;
	padding-left: 1.1rem;
}

.tags {
	font-size: 0.875rem;
	margin-top: 2rem;
	color: var(--muted);
}

.tags a {
	font-weight: 600;
}

/* Static pages (legal, about, etc.) — title and body share one aligned column */
.page-static__inner {
	padding-top: 2rem;
	padding-bottom: 3rem;
}

.page-static .page-intro {
	padding: 0 0 1.25rem;
}

.page-static .page-intro h1 {
	margin: 0 0 0.75rem;
}

.page-static .page-intro .lead {
	max-width: none;
}

.page-static .article-body {
	padding-bottom: 0;
}

.page-static .article-body p {
	margin: 0 0 1rem;
	text-align: left;
}

.page-static .article-body a {
	font-weight: 600;
}

/* Archive */
.page-intro {
	padding: 2rem 0 1rem;
}

.page-intro h1 {
	font-family: var(--serif);
	font-size: clamp(1.85rem, 1.2rem + 2vw, 2.65rem);
	margin: 0 0 0.75rem;
}

.page-intro .lead {
	font-size: 1.1rem;
	color: #475569;
	margin: 0;
	max-width: 40rem;
}

.archive-list {
	padding-bottom: 3rem;
	display: grid;
	gap: 2rem;
}

/* About */
.about-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin: 2rem 0 3rem;
}

@media (min-width: 720px) {
	.about-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.value-card {
	background: var(--surface);
	border: 1px solid #e7e5e4;
	border-radius: var(--radius-sm);
	padding: 1.35rem;
}

.value-card h3 {
	font-family: var(--serif);
	margin: 0 0 0.5rem;
	font-size: 1.1rem;
}

.value-card p {
	margin: 0;
	font-size: 0.95rem;
	color: #4b5563;
}

/* Editorial section panels (Wirecutter-style bands) */
.journal-panel {
	margin: 0;
	padding: 2.25rem 0;
	background: var(--panel);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.journal-panel__inner {
	max-width: var(--wide);
	margin: 0 auto;
	padding: 0 1.25rem;
}

.journal-panel h2 {
	font-family: var(--serif);
	font-size: clamp(1.35rem, 1.1rem + 1vw, 1.75rem);
	font-weight: 800;
	letter-spacing: -0.015em;
	margin: 0 0 0.5rem;
	color: var(--contrast);
}

.journal-panel .section-lead {
	margin: 0 0 1.25rem;
	color: var(--muted);
	max-width: 42rem;
	font-size: 0.9375rem;
	line-height: 1.6;
}

.fl-offer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	margin: 2rem 0;
}

@media (min-width: 720px) {
	.fl-offer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.fl-offer-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.fl-offer-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 4px;
	padding: 1.15rem 1.2rem;
	box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
}

.fl-offer-card--health,
.fl-offer-card--business,
.fl-offer-card--software,
.fl-offer-card--finance {
	border-color: var(--line);
}

.fl-offer-card h3 {
	font-family: var(--serif);
	font-size: 1.1rem;
	margin: 0 0 0.5rem;
	color: var(--contrast);
}

.fl-offer-card p {
	margin: 0;
	font-size: 0.92rem;
	color: var(--muted);
	line-height: 1.55;
}

.fl-offer-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.65rem;
	margin-top: 0.75rem;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--contrast);
}

.fl-offer-meta span {
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 0.2rem 0.55rem;
	font-weight: 500;
}

.fl-offer-more {
	margin: 0.85rem 0 0;
	font-size: 0.9rem;
	font-weight: 600;
}

.fl-offer-more a {
	text-decoration: none;
}

.fl-offer-more a:hover {
	text-decoration: underline;
}

/* Product review archive (lane hubs) */
.lane-article-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	margin: 2rem 0 2.5rem;
}

@media (min-width: 720px) {
	.lane-article-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

