/**
 * Nova - main stylesheet
 *
 * A calm, modern content design system built on a "trust green" emerald
 * palette with Plus Jakarta Sans for display headings and Inter for body text.
 * Organised top to bottom: tokens, base, layout, header, components, content,
 * sidebar, footer, then responsive rules.
 */

/* ----------------------------------------------------------------------------
   1. Design tokens
---------------------------------------------------------------------------- */
:root {
	--nova-ink: #0f172a;
	--nova-primary: #4f46e5;
	--nova-primary-deep: #3730a3;
	--nova-accent: #6366f1;
	--nova-accent-soft: #818cf8;
	--nova-mist: #eef2ff;
	--nova-mist-2: #f5f7ff;
	--nova-paper: #ffffff;
	--nova-white: #ffffff;
	--nova-gold: #d97706;
	--nova-text: #1e293b;
	--nova-body: #475569;
	--nova-muted: #64748b;
	--nova-border: #e2e8f0;
	--nova-border-soft: rgba(226, 232, 240, 0.75);
	--nova-footer-bg: #0f172a;
	--nova-shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
	--nova-shadow-sm: 0 12px 28px rgba(79, 70, 229, 0.16);
	--nova-radius: 24px;
	--nova-radius-md: 18px;
	--nova-radius-sm: 14px;
	--nova-display: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
	--nova-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* ----------------------------------------------------------------------------
   2. Base
---------------------------------------------------------------------------- */
* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--nova-paper);
	color: var(--nova-text);
	font-family: var(--nova-font);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--nova-display);
	font-weight: 800;
	color: var(--nova-ink);
}

a {
	color: inherit;
}

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

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

button {
	cursor: pointer;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
	outline: 3px solid rgba(79, 70, 229, 0.28);
	outline-offset: 3px;
}

.nova-skip {
	position: absolute;
	left: 16px;
	top: -100px;
	background: var(--nova-ink);
	color: #fff;
	padding: 10px 16px;
	border-radius: 10px;
	font-weight: 800;
	z-index: 50;
	transition: top 0.18s ease;
}

.nova-skip:focus {
	top: 16px;
}

/* ----------------------------------------------------------------------------
   3. Layout
---------------------------------------------------------------------------- */
.nova-container {
	width: min(var(--nova-container-max, 1180px), calc(100% - 40px));
	margin-inline: auto;
}

.nova-site-main {
	display: block;
}

/* ----------------------------------------------------------------------------
   4. Header and navigation
---------------------------------------------------------------------------- */
.nova-site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-bottom: 1px solid var(--nova-border-soft);
}

.nova-header-inner {
	min-height: 78px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
}

.nova-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--nova-ink);
}

.nova-brand-mark {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 15px;
	background: linear-gradient(135deg, var(--nova-accent), var(--nova-primary-deep));
	color: #fff;
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 17px;
	letter-spacing: 0.02em;
	box-shadow: var(--nova-shadow-sm);
}

.nova-brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.nova-brand-text strong {
	font-family: var(--nova-display);
	font-size: 20px;
	letter-spacing: -0.03em;
	color: var(--nova-ink);
}

.nova-brand-text small {
	font-size: 12px;
	color: var(--nova-muted);
	font-weight: 700;
}

.nova-brand-logo img {
	max-width: var(--nova-logo-max, 180px);
	max-height: 96px;
	width: auto;
	height: auto;
}

.nova-primary-nav {
	display: flex;
	align-items: center;
	gap: 18px;
}

.nova-menu {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nova-menu a {
	display: block;
	text-decoration: none;
	color: var(--nova-ink);
	font-weight: 700;
	font-size: 14px;
	padding: 10px 13px;
	border-radius: 999px;
	transition: background 0.16s ease, color 0.16s ease;
}

.nova-menu a:hover,
.nova-menu .current-menu-item > a {
	background: var(--nova-mist);
	color: var(--nova-primary-deep);
}

.nova-nav-cta,
.nova-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-decoration: none;
	border-radius: 999px;
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 15px;
	border: 1px solid transparent;
	min-height: 46px;
	padding: 11px 20px;
	transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.nova-nav-cta,
.nova-btn-primary {
	background: var(--nova-primary);
	color: #fff;
	box-shadow: var(--nova-shadow-sm);
}

.nova-nav-cta:hover,
.nova-btn-primary:hover {
	background: var(--nova-primary-deep);
	transform: translateY(-1px);
}

.nova-btn-soft {
	background: #fff;
	color: var(--nova-primary-deep);
	border-color: var(--nova-border);
}

.nova-btn-soft:hover {
	border-color: var(--nova-accent);
	transform: translateY(-1px);
}

.nova-menu-toggle {
	display: none;
	align-items: center;
	gap: 9px;
	border: 1px solid var(--nova-border);
	background: #fff;
	border-radius: 999px;
	padding: 10px 16px;
	font-family: var(--nova-display);
	font-weight: 800;
	color: var(--nova-ink);
}

.nova-menu-toggle-bars,
.nova-menu-toggle-bars::before,
.nova-menu-toggle-bars::after {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--nova-primary-deep);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

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

.nova-menu-toggle[aria-expanded="true"] .nova-menu-toggle-bars {
	background: transparent;
}

.nova-menu-toggle[aria-expanded="true"] .nova-menu-toggle-bars::before {
	transform: translateY(6px) rotate(45deg);
}

.nova-menu-toggle[aria-expanded="true"] .nova-menu-toggle-bars::after {
	transform: translateY(-6px) rotate(-45deg);
}

/* ----------------------------------------------------------------------------
   5. Buttons shared
---------------------------------------------------------------------------- */
.nova-pill {
	display: inline-flex;
	align-items: center;
	width: max-content;
	border-radius: 999px;
	background: var(--nova-mist);
	color: var(--nova-primary-deep);
	padding: 6px 11px;
	font-family: var(--nova-display);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.01em;
}

/* ----------------------------------------------------------------------------
   6. Hero
---------------------------------------------------------------------------- */
.nova-hero {
	position: relative;
	overflow: hidden;
	padding: 78px 0 60px;
	background:
		radial-gradient(circle at 15% 10%, #e0e7ff 0, transparent 36%),
		radial-gradient(circle at 85% 18%, #ffedd5 0, transparent 30%),
		linear-gradient(180deg, #fbfbfe 0, var(--nova-paper) 100%);
}

.nova-hero::after {
	content: "";
	position: absolute;
	inset: auto -120px -240px auto;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: rgba(79, 70, 229, 0.08);
	pointer-events: none;
}

.nova-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.78fr);
	gap: 34px;
	align-items: center;
}

.nova-eyebrow {
	display: inline-flex;
	align-items: center;
	margin-bottom: 14px;
	padding: 7px 13px;
	border-radius: 999px;
	background: var(--nova-mist);
	color: var(--nova-primary-deep);
	font-family: var(--nova-display);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.nova-hero h1,
.nova-single-hero h1,
.nova-archive-hero h1,
.nova-page-hero h1 {
	margin: 0 0 18px;
	font-size: clamp(40px, 6vw, 72px);
	line-height: 0.98;
	letter-spacing: -0.05em;
	color: var(--nova-ink);
}

.nova-hero p,
.nova-single-hero p,
.nova-archive-hero p {
	max-width: 690px;
	margin: 0 0 24px;
	color: var(--nova-muted);
	font-size: clamp(18px, 2vw, 21px);
	line-height: 1.66;
}

.nova-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 28px 0;
}

.nova-trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.nova-trust-row span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: #fff;
	border: 1px solid var(--nova-border);
	color: var(--nova-primary-deep);
	border-radius: 999px;
	padding: 8px 13px;
	font-size: 13px;
	font-weight: 700;
}

.nova-trust-row span::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--nova-accent);
}

/* Cards that share the elevated panel look */
.nova-hero-calc,
.nova-summary-card,
.nova-widget,
.nova-article-card,
.nova-category-card,
.nova-feature-card,
.nova-guide-card,
.nova-empty-card,
.nova-calc-shell {
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius);
	box-shadow: var(--nova-shadow);
}

.nova-hero-calc {
	padding: 26px;
}

.nova-hero-calc h2 {
	margin: 10px 0 6px;
	font-size: 32px;
	line-height: 1;
	letter-spacing: -0.04em;
}

.nova-hero-calc p {
	font-size: 15px;
	margin: 0 0 18px;
	color: var(--nova-muted);
}

.nova-mini-bmi-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin: 16px 0;
}

.nova-mini-bmi-grid label {
	font-family: var(--nova-display);
	font-size: 13px;
	font-weight: 800;
	color: var(--nova-ink);
}

.nova-mini-bmi-grid input,
.nova-search-form input,
.nova-directory-search input {
	width: 100%;
	margin-top: 6px;
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-sm);
	padding: 12px 13px;
	background: #fff;
	color: var(--nova-text);
}

.nova-hero-calc .nova-btn {
	width: 100%;
}

.nova-mini-result {
	margin: 16px 0 12px;
	padding: 14px 16px;
	border-radius: var(--nova-radius-md);
	background: var(--nova-mist);
	color: var(--nova-primary-deep);
	font-weight: 700;
	line-height: 1.45;
}

.nova-mini-result strong {
	font-family: var(--nova-display);
}

.nova-mini-bar {
	height: 10px;
	border-radius: 999px;
	background: var(--nova-mist);
	overflow: hidden;
	margin-bottom: 16px;
}

.nova-mini-bar [data-bar-fill] {
	display: block;
	height: 100%;
	width: 0;
	border-radius: 999px;
	background: var(--nova-accent);
	transition: width 0.5s ease, background 0.3s ease;
}

/* ----------------------------------------------------------------------------
   7. Sections and grids
---------------------------------------------------------------------------- */
.nova-section {
	padding: 68px 0;
}

.nova-section-tint {
	background: linear-gradient(180deg, var(--nova-mist-2) 0, var(--nova-paper) 100%);
	border-block: 1px solid var(--nova-border-soft);
}

.nova-section-head {
	max-width: 720px;
	margin-bottom: 30px;
}

.nova-section-head h2 {
	margin: 0 0 8px;
	font-size: clamp(32px, 4vw, 50px);
	line-height: 1.02;
	letter-spacing: -0.05em;
	color: var(--nova-ink);
}

.nova-section-head p {
	margin: 0;
	color: var(--nova-muted);
	font-size: 18px;
}

.nova-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.nova-calc-card {
	display: flex;
}

.nova-calc-card-link {
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 22px;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius);
	box-shadow: var(--nova-shadow);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.nova-calc-card-link:hover {
	transform: translateY(-4px);
	border-color: var(--nova-accent);
	box-shadow: 0 24px 70px rgba(79, 70, 229, 0.16);
}

.nova-calc-card h3 {
	margin: 16px 0 8px;
	font-size: 23px;
	line-height: 1.1;
	letter-spacing: -0.035em;
	color: var(--nova-ink);
}

.nova-calc-card p {
	margin: 0 0 20px;
	color: var(--nova-muted);
	font-size: 15px;
}

.nova-card-action {
	margin-top: auto;
	color: var(--nova-primary);
	font-family: var(--nova-display);
	font-weight: 800;
	text-decoration: none;
}

.nova-category-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.nova-category-card {
	display: block;
	text-decoration: none;
	padding: 24px;
	transition: transform 0.18s ease, border-color 0.18s ease;
}

.nova-category-card:hover {
	transform: translateY(-4px);
	border-color: var(--nova-accent);
}

.nova-category-card > span {
	color: var(--nova-gold);
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 13px;
}

.nova-category-card h3 {
	margin: 8px 0;
	font-size: 25px;
	line-height: 1.05;
	letter-spacing: -0.04em;
	color: var(--nova-ink);
}

.nova-category-card p,
.nova-feature-card p,
.nova-guide-card p,
.nova-empty-card p {
	color: var(--nova-muted);
	margin: 0;
}

.nova-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.nova-feature-card {
	padding: 26px;
}

.nova-feature-card > span {
	font-family: var(--nova-display);
	font-size: 13px;
	color: var(--nova-gold);
	font-weight: 800;
}

.nova-feature-card h3 {
	margin: 10px 0 8px;
	font-size: 27px;
	letter-spacing: -0.04em;
	line-height: 1.05;
}

.nova-home-faq-wrap {
	max-width: 860px;
}

/* ----------------------------------------------------------------------------
   8. Interior heroes and breadcrumb
---------------------------------------------------------------------------- */
.nova-single-hero,
.nova-archive-hero,
.nova-page-hero {
	padding: 54px 0;
	background:
		radial-gradient(circle at 18% 20%, #e8ebff, transparent 38%),
		linear-gradient(180deg, #fff 0, var(--nova-paper) 100%);
	border-bottom: 1px solid var(--nova-border-soft);
}

.nova-single-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 30px;
	align-items: end;
}

.nova-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	color: var(--nova-muted);
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 18px;
}

.nova-breadcrumb a {
	color: var(--nova-primary-deep);
	text-decoration: none;
}

.nova-breadcrumb a:hover {
	text-decoration: underline;
}

.nova-breadcrumb-sep {
	color: var(--nova-border);
}

.nova-breadcrumb-current {
	color: var(--nova-muted);
}

.nova-summary-card {
	padding: 24px;
}

.nova-summary-card h2 {
	font-size: 26px;
	line-height: 1.08;
	letter-spacing: -0.04em;
	margin: 14px 0 8px;
}

.nova-summary-card p {
	font-size: 15px;
	margin: 0 0 18px;
	color: var(--nova-muted);
}

.nova-post-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	margin-top: 18px;
	color: var(--nova-muted);
	font-size: 14px;
}

.nova-post-meta strong {
	color: var(--nova-ink);
	font-weight: 700;
}

.nova-post-meta span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.nova-post-meta span::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--nova-accent);
}

.nova-post-meta .nova-meta-author::before {
	display: none;
}

/* ----------------------------------------------------------------------------
   9. Content layout and article typography
---------------------------------------------------------------------------- */
.nova-content-layout {
	display: grid;
	grid-template-columns: minmax(0, 780px) 340px;
	gap: 28px;
	align-items: start;
	padding: 44px 0 72px;
}

.nova-page-wrap {
	padding: 44px 0 72px;
}

.nova-page-wrap .nova-article-card {
	max-width: 820px;
	margin-inline: auto;
}

.nova-article-card {
	padding: 34px;
}

.nova-article-card > :first-child {
	margin-top: 0;
}

.nova-article-card h2 {
	margin: 42px 0 13px;
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.1;
	letter-spacing: -0.045em;
	color: var(--nova-ink);
	scroll-margin-top: 100px;
}

.nova-article-card h3 {
	margin: 30px 0 12px;
	font-size: 24px;
	line-height: 1.2;
	letter-spacing: -0.03em;
	color: var(--nova-primary-deep);
	scroll-margin-top: 100px;
}

.nova-article-card p,
.nova-article-card li {
	color: var(--nova-body);
}

.nova-article-card a {
	color: var(--nova-primary);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.nova-article-card ul,
.nova-article-card ol {
	padding-left: 22px;
}

.nova-article-card li {
	margin: 8px 0;
}

.nova-article-card table {
	width: 100%;
	border-collapse: collapse;
	margin: 22px 0;
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-md);
	overflow: hidden;
}

.nova-article-card th,
.nova-article-card td {
	padding: 14px;
	border-bottom: 1px solid var(--nova-border);
	text-align: left;
}

.nova-article-card th {
	background: var(--nova-mist);
	color: var(--nova-primary-deep);
	font-family: var(--nova-display);
}

.nova-article-card blockquote {
	margin: 24px 0;
	padding: 6px 0 6px 20px;
	border-left: 4px solid var(--nova-accent);
	color: var(--nova-ink);
	font-size: 19px;
}

.nova-link-pages {
	margin-top: 24px;
	font-weight: 700;
}

/* Table of contents */
.nova-toc {
	margin: 0 0 28px;
	padding: 20px 22px;
	background: var(--nova-mist-2);
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-md);
}

.nova-toc-title {
	margin: 0 0 12px;
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--nova-primary-deep);
}

.nova-toc-list {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: novatoc;
}

.nova-toc-list li {
	margin: 7px 0;
}

.nova-toc-list a {
	color: var(--nova-body);
	text-decoration: none;
	border-left: 2px solid transparent;
	padding-left: 12px;
	display: inline-block;
	transition: color 0.15s ease, border-color 0.15s ease;
}

.nova-toc-list a:hover {
	color: var(--nova-primary);
}

.nova-toc-l3 {
	padding-left: 16px;
	font-size: 15px;
}

.nova-toc-list a.is-active {
	color: var(--nova-primary-deep);
	font-weight: 700;
	border-left-color: var(--nova-accent);
}

/* Key takeaways */
.nova-takeaway {
	margin: 26px 0;
	padding: 22px 24px;
	background: linear-gradient(135deg, var(--nova-mist), #fff);
	border: 1px solid var(--nova-border);
	border-left: 5px solid var(--nova-accent);
	border-radius: var(--nova-radius-md);
}

.nova-takeaway-title {
	margin: 0 0 10px;
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 18px;
	color: var(--nova-ink);
}

.nova-takeaway-body p {
	margin: 0 0 8px;
}

.nova-takeaway-body :last-child {
	margin-bottom: 0;
}

/* Callouts */
.nova-callout {
	margin: 24px 0;
	padding: 18px 20px;
	border: 1px solid var(--nova-border);
	border-left: 5px solid var(--nova-accent);
	border-radius: var(--nova-radius-md);
	background: #fff;
}

.nova-callout-title {
	margin: 0 0 6px;
	font-family: var(--nova-display);
	font-weight: 800;
	color: var(--nova-ink);
}

.nova-callout-body :last-child {
	margin-bottom: 0;
}

.nova-callout-info {
	border-left-color: var(--nova-accent);
	background: var(--nova-mist-2);
}

.nova-callout-tip {
	border-left-color: var(--nova-gold);
	background: #fff7ed;
}

.nova-callout-warning {
	border-left-color: #dc2626;
	background: #fef2f2;
}

/* Affiliate disclosure */
.nova-disclosure {
	margin: 20px 0;
	padding: 12px 16px;
	font-size: 13px;
	color: var(--nova-muted);
	background: var(--nova-mist-2);
	border: 1px dashed var(--nova-border);
	border-radius: var(--nova-radius-sm);
}

/* References */
.nova-references {
	margin: 32px 0 0;
	padding: 24px;
	background: var(--nova-mist-2);
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-md);
}

.nova-references-title {
	margin: 0 0 12px;
	font-size: 20px;
	letter-spacing: -0.03em;
}

.nova-references-body ol,
.nova-references-body ul {
	margin: 0;
	padding-left: 20px;
}

.nova-references-body li {
	margin: 8px 0;
	font-size: 14px;
	color: var(--nova-muted);
}

/* Ad slots */
.nova-ad {
	margin: 26px 0;
	padding: 14px;
	border: 1px dashed var(--nova-border);
	border-radius: var(--nova-radius-md);
	background: var(--nova-mist-2);
	text-align: center;
}

.nova-ad-label {
	display: block;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--nova-muted);
	margin-bottom: 8px;
}

.nova-inline-disclaimer {
	margin: 18px 0;
	font-size: 13px;
	color: var(--nova-muted);
	font-style: italic;
}

/* Author and reviewer box */
.nova-author-box {
	margin: 36px 0 0;
	padding: 24px;
	background: linear-gradient(135deg, #fff, var(--nova-mist-2));
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-md);
}

.nova-author-main {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.nova-author-avatar {
	border-radius: 50%;
	flex-shrink: 0;
	border: 2px solid #fff;
	box-shadow: var(--nova-shadow-sm);
}

.nova-author-eyebrow {
	margin: 0 0 2px;
	font-family: var(--nova-display);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--nova-primary);
}

.nova-author-name {
	margin: 0 0 6px;
	font-family: var(--nova-display);
	font-size: 20px;
	font-weight: 800;
}

.nova-author-name a {
	color: var(--nova-ink);
	text-decoration: none;
}

.nova-author-bio {
	margin: 0;
	color: var(--nova-muted);
	font-size: 15px;
}

.nova-author-reviewer {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--nova-border);
	color: var(--nova-ink);
	font-size: 14px;
}

.nova-reviewer-badge {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	flex-shrink: 0;
	background: var(--nova-accent);
	position: relative;
}

.nova-reviewer-badge::after {
	content: "";
	position: absolute;
	left: 7px;
	top: 11px;
	width: 4px;
	height: 8px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.nova-reviewer-date {
	color: var(--nova-muted);
}

/* Related articles */
.nova-related {
	margin: 40px 0 0;
}

.nova-related-title {
	margin: 0 0 18px;
	font-size: 26px;
	letter-spacing: -0.04em;
}

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

/* ----------------------------------------------------------------------------
   10. FAQ
---------------------------------------------------------------------------- */
.nova-faq-heading {
	margin: 0 0 16px;
	font-size: 28px;
	letter-spacing: -0.04em;
}

.nova-faq-list {
	display: grid;
	gap: 12px;
	margin: 24px 0;
}

.nova-faq-item {
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-md);
	background: #fff;
	overflow: hidden;
}

.nova-faq-item summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 20px;
	font-family: var(--nova-display);
	font-weight: 800;
	color: var(--nova-ink);
}

.nova-faq-item summary::-webkit-details-marker {
	display: none;
}

.nova-faq-icon {
	position: relative;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.nova-faq-icon::before,
.nova-faq-icon::after {
	content: "";
	position: absolute;
	background: var(--nova-primary);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.nova-faq-icon::before {
	top: 7px;
	left: 0;
	width: 16px;
	height: 2px;
}

.nova-faq-icon::after {
	top: 0;
	left: 7px;
	width: 2px;
	height: 16px;
}

.nova-faq-item[open] .nova-faq-icon::after {
	transform: scaleY(0);
	opacity: 0;
}

.nova-faq-answer {
	padding: 0 20px 18px;
	color: var(--nova-muted);
}

.nova-faq-answer p {
	margin: 0 0 10px;
}

.nova-faq-answer :last-child {
	margin-bottom: 0;
}

/* ----------------------------------------------------------------------------
   11. Article shell
---------------------------------------------------------------------------- */
.nova-calc-shell {
	overflow: hidden;
	margin: 30px 0;
	scroll-margin-top: 100px;
}

.nova-calc-shell-head {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: flex-start;
	padding: 22px 24px;
	background: linear-gradient(135deg, var(--nova-mist-2), #fff);
	border-bottom: 1px solid var(--nova-border);
}

.nova-calc-shell-head h2 {
	margin: 10px 0 0;
	font-size: 30px;
	letter-spacing: -0.04em;
}

.nova-calc-shell-note {
	max-width: 360px;
	margin: 0;
	color: var(--nova-muted);
	font-size: 14px;
}

.nova-calc-shell-body {
	padding: 24px;
}

/* ----------------------------------------------------------------------------
   12. Sidebar widgets
---------------------------------------------------------------------------- */
.nova-sidebar {
	display: grid;
	gap: 18px;
	position: sticky;
	top: 100px;
}

.nova-widget {
	padding: 20px;
}

.nova-widget-title {
	margin: 0 0 14px;
	font-size: 19px;
	letter-spacing: -0.03em;
}

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

.nova-search-form input {
	margin: 0;
	min-width: 0;
	flex: 1;
}

.nova-search-form button {
	border: 0;
	background: var(--nova-primary);
	color: #fff;
	border-radius: var(--nova-radius-sm);
	font-family: var(--nova-display);
	font-weight: 800;
	padding: 0 16px;
}

.nova-search-form button:hover {
	background: var(--nova-primary-deep);
}

.nova-mini-list {
	display: grid;
	gap: 10px;
}

.nova-mini-list a {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	text-decoration: none;
	padding: 12px 14px;
	border-radius: var(--nova-radius-sm);
	background: var(--nova-mist);
	color: var(--nova-primary-deep);
	font-weight: 700;
	transition: background 0.15s ease;
}

.nova-mini-list a:hover {
	background: #e5e9ff;
}

.nova-mini-list small {
	color: var(--nova-primary);
	font-weight: 800;
}

.nova-chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.nova-chip-list a,
.nova-chip-list button {
	border: 1px solid var(--nova-border);
	background: #fff;
	color: var(--nova-primary-deep);
	border-radius: 999px;
	padding: 9px 13px;
	text-decoration: none;
	font-weight: 700;
	font-size: 13px;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.nova-chip-list a:hover,
.nova-chip-list button:hover {
	border-color: var(--nova-accent);
}

.nova-chip-list button.is-active {
	background: var(--nova-primary);
	color: #fff;
	border-color: var(--nova-primary);
}

.nova-trust-widget {
	background: linear-gradient(135deg, #fff 0, var(--nova-mist-2) 100%);
}

.nova-trust-widget h3 {
	font-size: 22px;
	line-height: 1.1;
	letter-spacing: -0.04em;
	margin: 0 0 8px;
}

.nova-trust-widget p {
	margin: 0;
	color: var(--nova-muted);
	font-size: 14px;
}

/* ----------------------------------------------------------------------------
   13. Directory and archive
---------------------------------------------------------------------------- */
.nova-archive-hero-inner {
	max-width: 820px;
}

.nova-all-hero .nova-archive-hero-inner {
	max-width: 900px;
}

.nova-directory-search {
	margin-top: 24px;
	background: #fff;
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius);
	padding: 16px;
	box-shadow: var(--nova-shadow);
}

.nova-directory-search label {
	display: block;
	font-family: var(--nova-display);
	font-size: 13px;
	font-weight: 800;
	color: var(--nova-ink);
	margin-bottom: 7px;
}

.nova-directory-search input {
	margin: 0;
	font-size: 18px;
	padding: 15px;
}

.nova-filter-chips {
	margin-bottom: 24px;
}

.nova-guide-card,
.nova-empty-card {
	padding: 28px;
}

.nova-guide-card {
	margin-top: 28px;
}

.nova-guide-card h2,
.nova-empty-card h2 {
	margin: 0 0 8px;
	font-size: 32px;
	line-height: 1.05;
	letter-spacing: -0.045em;
}

/* ----------------------------------------------------------------------------
   14. Comments
---------------------------------------------------------------------------- */
.nova-comments {
	margin: 40px 0 0;
	padding-top: 32px;
	border-top: 1px solid var(--nova-border);
}

.nova-comments-title {
	margin: 0 0 20px;
	font-size: 24px;
	letter-spacing: -0.04em;
}

.nova-comment-list {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
}

.nova-comment-list .children {
	list-style: none;
	margin: 0 0 0 28px;
	padding: 0;
}

.nova-comment-list li article {
	padding: 16px 0;
	border-bottom: 1px solid var(--nova-border);
}

.nova-comment-list .comment-author {
	font-family: var(--nova-display);
	font-weight: 700;
	color: var(--nova-ink);
}

.nova-comment-list .comment-meta {
	font-size: 13px;
	color: var(--nova-muted);
	margin-bottom: 8px;
}

.nova-comment-list .comment-meta a {
	color: var(--nova-muted);
	text-decoration: none;
}

.nova-comment-respond {
	background: var(--nova-mist-2);
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-md);
	padding: 24px;
}

.nova-comment-respond label {
	display: block;
	font-weight: 700;
	margin: 12px 0 6px;
	font-size: 14px;
}

.nova-comment-respond input[type="text"],
.nova-comment-respond input[type="email"],
.nova-comment-respond input[type="url"],
.nova-comment-respond textarea {
	width: 100%;
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-sm);
	padding: 12px 13px;
	background: #fff;
	color: var(--nova-text);
}

.nova-comment-respond .form-submit {
	margin-top: 16px;
}

.nova-comment-respond .submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--nova-primary);
	color: #fff;
	border: 0;
	border-radius: 999px;
	font-family: var(--nova-display);
	font-weight: 800;
	min-height: 46px;
	padding: 11px 22px;
}

.nova-comment-respond .submit:hover {
	background: var(--nova-primary-deep);
}

/* ----------------------------------------------------------------------------
   15. Pagination
---------------------------------------------------------------------------- */
.nova-pagination {
	margin-top: 32px;
}

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

.nova-pagination a,
.nova-pagination span {
	padding: 9px 14px;
	border-radius: 12px;
	background: #fff;
	border: 1px solid var(--nova-border);
	text-decoration: none;
	font-family: var(--nova-display);
	font-weight: 800;
	color: var(--nova-ink);
}

.nova-pagination .current {
	background: var(--nova-primary);
	color: #fff;
	border-color: var(--nova-primary);
}

/* ----------------------------------------------------------------------------
   16. Footer
---------------------------------------------------------------------------- */
.nova-site-footer {
	background: var(--nova-footer-bg);
	color: #cbd5e1;
	margin-top: 0;
	padding: 56px 0 24px;
}

.nova-footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	gap: 34px;
}

.nova-footer-about .nova-brand,
.nova-footer-about .nova-brand-text strong {
	color: #fff;
}

.nova-footer-about .nova-brand-text small {
	color: #94a3b8;
}

.nova-footer-about p {
	max-width: 520px;
	color: #94a3b8;
	margin: 16px 0 0;
}

.nova-footer-col h3 {
	margin: 0 0 12px;
	color: #fff;
	font-size: 18px;
}

.nova-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nova-footer-menu li {
	margin: 8px 0;
}

.nova-footer-menu a {
	color: #cbd5e1;
	text-decoration: none;
}

.nova-footer-menu a:hover {
	color: #fff;
	text-decoration: underline;
}

.nova-footer-bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	margin-top: 36px;
	padding-top: 18px;
	color: #94a3b8;
	font-size: 14px;
}

/* ----------------------------------------------------------------------------
   17. Footer logo, category nav, and core widgets
---------------------------------------------------------------------------- */
.nova-footer-brand-logo {
	display: inline-flex;
	align-items: center;
}

.nova-footer-logo-img,
.nova-footer-brand img {
	max-width: var(--nova-footer-logo-max, 170px);
	height: auto;
	width: auto;
}

/* Category cross-navigation */
.nova-cat-nav-bar {
	border-bottom: 1px solid var(--nova-border-soft);
	background: #fff;
	padding: 14px 0;
}

.nova-cat-nav {
	flex-wrap: wrap;
	gap: 10px;
}

.nova-cat-nav a {
	white-space: nowrap;
	padding: 11px 17px;
	font-size: 14px;
}

.nova-chip-list a.is-active {
	background: var(--nova-primary);
	color: #fff;
	border-color: var(--nova-primary);
}

.nova-cat-search {
	max-width: 520px;
}

.nova-cat-cta {
	margin-top: 28px;
	text-align: center;
}

/* Styling for core and block widgets, so any default widgets still look native */
.nova-widget .wp-block-search__inside-wrapper,
.nova-footer-widget .wp-block-search__inside-wrapper {
	display: flex;
	gap: 8px;
}

.nova-widget .wp-block-search__input,
.nova-footer-widget .wp-block-search__input {
	flex: 1;
	min-width: 0;
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-sm);
	padding: 12px 13px;
	background: #fff;
	color: var(--nova-text);
}

.nova-widget .wp-block-search__button,
.nova-footer-widget .wp-block-search__button {
	margin: 0;
	border: 0;
	background: var(--nova-primary);
	color: #fff;
	border-radius: var(--nova-radius-sm);
	font-family: var(--nova-display);
	font-weight: 800;
	padding: 0 16px;
	cursor: pointer;
}

.nova-widget ul,
.nova-footer-widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nova-widget li,
.nova-footer-widget li {
	margin: 8px 0;
}

.nova-widget a,
.nova-footer-widget a {
	text-decoration: none;
	color: inherit;
}

.nova-widget .wp-block-categories a,
.nova-widget .wp-block-latest-posts a,
.nova-widget .wp-block-archives a,
.nova-widget .wp-block-page-list a {
	color: var(--nova-primary-deep);
	font-weight: 700;
}

.nova-widget .wp-block-categories a:hover,
.nova-widget .wp-block-latest-posts a:hover,
.nova-widget .wp-block-archives a:hover {
	text-decoration: underline;
}

.nova-widget .wp-block-tag-cloud a,
.nova-footer-widget .wp-block-tag-cloud a {
	display: inline-block;
	margin: 0 6px 6px 0;
	padding: 6px 12px;
	border: 1px solid var(--nova-border);
	border-radius: 999px;
	font-size: 13px !important;
	background: #fff;
	color: var(--nova-primary-deep);
}

/* ----------------------------------------------------------------------------
   18. WordPress core helpers
---------------------------------------------------------------------------- */
.wp-block-image img {
	border-radius: var(--nova-radius-md);
}

.alignwide {
	max-width: 1040px;
}

.alignfull {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: 100vw;
	width: 100vw;
}

.aligncenter {
	display: block;
	margin-inline: auto;
}

.nova-404 {
	text-align: center;
	max-width: 640px;
	margin-inline: auto;
}

/* ----------------------------------------------------------------------------
   19. Responsive
---------------------------------------------------------------------------- */
@media (max-width: 960px) {
	.nova-header-inner {
		min-height: 70px;
	}

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

	.nova-primary-nav {
		display: none;
		position: absolute;
		left: 18px;
		right: 18px;
		top: 78px;
		flex-direction: column;
		align-items: stretch;
		background: #fff;
		border: 1px solid var(--nova-border);
		border-radius: var(--nova-radius);
		padding: 16px;
		box-shadow: var(--nova-shadow);
	}

	.nova-primary-nav.is-open {
		display: flex;
	}

	.nova-menu {
		display: grid;
		gap: 4px;
	}

	.nova-nav-cta {
		width: 100%;
	}

	.nova-hero-grid,
	.nova-single-hero-grid,
	.nova-content-layout {
		grid-template-columns: 1fr;
	}

	.nova-sidebar {
		position: static;
	}

	.nova-card-grid,
	.nova-category-grid,
	.nova-feature-grid,
	.nova-related .nova-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	body {
		font-size: 16px;
	}

	.nova-container {
		width: min(100% - 28px, 1180px);
	}

	.nova-hero,
	.nova-single-hero,
	.nova-archive-hero,
	.nova-page-hero {
		padding: 42px 0;
	}

	.nova-hero h1,
	.nova-single-hero h1,
	.nova-archive-hero h1,
	.nova-page-hero h1 {
		font-size: 40px;
	}

	.nova-card-grid,
	.nova-category-grid,
	.nova-feature-grid,
	.nova-mini-bmi-grid,
	.nova-related .nova-card-grid {
		grid-template-columns: 1fr;
	}

	.nova-article-card,
	.nova-calc-shell-body {
		padding: 22px;
	}

	.nova-calc-shell-head {
		flex-direction: column;
		padding: 20px;
	}

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

	.nova-search-form {
		flex-direction: column;
	}

	.nova-search-form button {
		min-height: 46px;
		padding: 11px;
	}

	.nova-article-card table {
		display: block;
		overflow-x: auto;
	}

	.nova-brand-text small {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

/* ============================================================================
   MILEAGE KATTA — Marathi automobile magazine layer
   Overrides Nova's tokens and colours, corrects Devanagari typography, and
   adds the image-first card, lead hero, category hubs, ratings, reading
   progress, and dark bands. Loaded last, so these rules win by cascade order.
============================================================================ */

/* ---- 1. Brand palette (overrides the token block above) -------------------- */
:root {
	--nova-ink: #14181f;
	--nova-primary: #cc2936;
	--nova-primary-deep: #a01f2b;
	--nova-accent: #cc2936;
	--nova-accent-soft: #e0616b;
	--nova-mist: #f4f1ee;
	--nova-mist-2: #faf7f4;
	--nova-paper: #ffffff;
	--nova-white: #ffffff;
	--nova-gold: #e39b2f;
	--nova-text: #222831;
	--nova-body: #3c444e;
	--nova-muted: #6a7280;
	--nova-border: #e8e3dd;
	--nova-border-soft: rgba(232, 227, 221, 0.85);
	--nova-footer-bg: #0f1319;
	--nova-shadow: 0 20px 50px rgba(20, 24, 31, 0.10);
	--nova-shadow-sm: 0 10px 24px rgba(20, 24, 31, 0.16);
	--nova-radius: 20px;
	--nova-radius-md: 16px;
	--nova-radius-sm: 12px;
	--nova-display: 'Anek Devanagari', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
	--nova-font: 'Mukta', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
	--nova-ink-grad: linear-gradient(135deg, #171c25 0%, #0f1319 100%);
}

/* ---- 2. Devanagari typography corrections ---------------------------------
   Negative letter-spacing and ultra-tight line-heights are for Latin display
   type; they clip Devanagari matras. Reset tracking to normal and give the
   scripts room to breathe. */
body {
	line-height: 1.72;
	font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
}

.nova-hero h1, .nova-single-hero h1, .nova-archive-hero h1, .nova-page-hero h1,
.nova-section-head h2, .nova-hero-calc h2, .nova-summary-card h2,
.nova-category-card h3, .nova-feature-card h3,
.nova-article-card h2, .nova-article-card h3,
.nova-brand-text strong, .nova-related-title, .nova-faq-heading,
.nova-references-title, .nova-guide-card h2, .nova-empty-card h2,
.nova-trust-widget h3, .nova-widget-title, .nova-comments-title,
.nova-calc-shell-head h2, .nova-calc-card h3, .nova-author-name,
.nova-author-eyebrow, .nova-toc-title, .nova-post-card-title,
.nova-lead-feature-title, .nova-cathub-name {
	letter-spacing: normal;
}

.nova-hero h1, .nova-single-hero h1, .nova-archive-hero h1, .nova-page-hero h1 {
	line-height: 1.14;
	font-weight: 800;
}

.nova-section-head h2 {
	line-height: 1.14;
	font-weight: 800;
}

.nova-hero-calc h2, .nova-summary-card h2 {
	line-height: 1.18;
}

.nova-author-eyebrow, .nova-toc-title {
	text-transform: none;
	letter-spacing: 0.02em;
}

.nova-article-card p, .nova-article-card li {
	line-height: 1.82;
}

/* ---- 3. Colour touch-ups on hardcoded (non-token) spots -------------------- */
button:focus-visible, a:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
	outline-color: rgba(204, 41, 54, 0.32);
}

.nova-hero, .nova-home-hero {
	background:
		radial-gradient(circle at 12% 0%, #fbe9df 0, transparent 40%),
		radial-gradient(circle at 92% 8%, #f6dfe1 0, transparent 34%),
		linear-gradient(180deg, #fdfbf9 0, var(--nova-paper) 100%);
}

.nova-hero::after {
	background: rgba(204, 41, 54, 0.06);
}

.nova-single-hero, .nova-archive-hero, .nova-page-hero {
	background:
		radial-gradient(circle at 16% 12%, #fbe9df 0, transparent 42%),
		linear-gradient(180deg, #fdfbf9 0, var(--nova-paper) 100%);
}

.nova-mini-list a:hover {
	background: #f6e7e3;
}

/* Brand mark: fuel-gauge / speedo motif */
.nova-brand-mark {
	background: var(--nova-ink-grad);
	border-radius: 13px;
	position: relative;
}

.nova-brand-mark svg { color: #fff; }

.nova-brand-mark::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 13px;
	box-shadow: inset 0 0 0 2px rgba(204, 41, 54, 0.55);
}

.nova-brand-text small {
	color: var(--nova-primary);
	font-weight: 700;
	letter-spacing: 0.01em;
}

/* Menu / nav-hover in the brand red family */
.nova-menu a:hover, .nova-menu .current-menu-item > a {
	background: var(--nova-mist);
	color: var(--nova-primary-deep);
}

/* ---- 4. Category top-bar (cross-navigation, under the header) -------------- */
.nova-topbar {
	background: #fff;
	border-bottom: 1px solid var(--nova-border-soft);
	box-shadow: 0 6px 18px rgba(20, 24, 31, 0.04);
}

.nova-topbar-inner {
	display: flex;
	align-items: center;
	gap: 14px;
	overflow-x: auto;
	scrollbar-width: none;
	padding: 11px 0;
}

.nova-topbar-inner::-webkit-scrollbar { display: none; }

.nova-topbar-label {
	flex-shrink: 0;
	font-family: var(--nova-display);
	font-weight: 700;
	font-size: 13px;
	color: var(--nova-muted);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.nova-topbar-label::before {
	content: "";
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--nova-primary);
}

.nova-topbar-nav {
	display: flex;
	gap: 7px;
	list-style: none;
	margin: 0; padding: 0;
	flex-wrap: nowrap;
}

.nova-topbar-nav a {
	white-space: nowrap;
	display: inline-block;
	text-decoration: none;
	font-family: var(--nova-display);
	font-weight: 600;
	font-size: 14px;
	color: var(--nova-text);
	padding: 8px 14px;
	border-radius: 999px;
	border: 1px solid var(--nova-border);
	background: #fff;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.nova-topbar-nav a:hover,
.nova-topbar-nav a.is-active {
	background: var(--nova-primary);
	color: #fff;
	border-color: var(--nova-primary);
}

/* ---- 5. Image-first article card ------------------------------------------ */
.nova-post-card {
	display: flex;
	background: #fff;
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-md);
	box-shadow: 0 10px 30px rgba(20, 24, 31, 0.06);
	overflow: hidden;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.nova-post-card:hover {
	transform: translateY(-5px);
	border-color: var(--nova-border);
	box-shadow: 0 26px 54px rgba(20, 24, 31, 0.13);
}

.nova-post-card-link {
	display: flex;
	flex-direction: column;
	width: 100%;
	text-decoration: none;
	color: inherit;
}

.nova-post-card-media {
	position: relative;
	overflow: hidden;
	background: var(--nova-mist);
}

.nova-card-media {
	display: block;
	margin: 0;
	width: 100%;
	overflow: hidden;
	background: var(--nova-mist);
}

.nova-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s cubic-bezier(.2,.7,.3,1);
}

.nova-post-card-link:hover .nova-card-img {
	transform: scale(1.06);
}

.nova-post-card-cat {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	background: var(--nova-primary);
	color: #fff;
	font-family: var(--nova-display);
	font-weight: 700;
	font-size: 12px;
	padding: 6px 12px;
	border-radius: 999px;
	box-shadow: 0 6px 16px rgba(160, 31, 43, 0.35);
}

.nova-post-card-rating {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	background: rgba(15, 19, 25, 0.82);
	backdrop-filter: blur(4px);
	border-radius: 999px;
	padding: 5px 10px;
}

.nova-post-card-rating .nova-rating-num { color: #fff; }
.nova-post-card-rating .nova-star { font-size: 12px; }

.nova-post-card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 18px 20px 20px;
}

.nova-post-card-title {
	margin: 0 0 9px;
	font-family: var(--nova-display);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--nova-ink);
}

.nova-post-card-link:hover .nova-post-card-title { color: var(--nova-primary-deep); }

.nova-post-card-excerpt {
	margin: 0 0 16px;
	color: var(--nova-muted);
	font-size: 14.5px;
	line-height: 1.6;
}

.nova-post-card-foot {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-top: 12px;
	border-top: 1px solid var(--nova-border);
}

.nova-post-card-meta {
	font-size: 12.5px;
	color: var(--nova-muted);
	font-weight: 500;
}

.nova-post-card-cta {
	font-family: var(--nova-display);
	font-weight: 700;
	font-size: 13.5px;
	color: var(--nova-primary);
	white-space: nowrap;
}

/* Fallback media tile (no featured image) */
.nova-card-media-fallback {
	display: grid;
	place-items: center;
	gap: 8px;
	background:
		radial-gradient(circle at 30% 20%, hsl(var(--nova-tile-hue, 12) 45% 30%), hsl(calc(var(--nova-tile-hue, 12) + 20) 55% 18%));
	color: rgba(255, 255, 255, 0.92);
	text-align: center;
	padding: 20px;
}

.nova-card-media-glyph { color: rgba(255, 255, 255, 0.9); }

.nova-card-media-label {
	font-family: var(--nova-display);
	font-weight: 700;
	font-size: 15px;
	color: #fff;
	letter-spacing: 0.01em;
}

/* ---- 6. Rating stars (inline + meta) -------------------------------------- */
.nova-rating {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	line-height: 1;
}

.nova-rating-stars { position: relative; display: inline-flex; }

.nova-star {
	color: #d9d3cc;
	font-size: 15px;
	line-height: 1;
}

.nova-star.is-full { color: var(--nova-gold); }

.nova-star.is-half {
	position: relative;
	color: #d9d3cc;
}

.nova-star.is-half::before {
	content: "★";
	position: absolute;
	left: 0; top: 0;
	width: 50%;
	overflow: hidden;
	color: var(--nova-gold);
}

.nova-rating-num {
	font-family: var(--nova-display);
	font-weight: 700;
	font-size: 13px;
	color: var(--nova-ink);
}

/* ---- 7. Home lead hero (featured post + latest list) ---------------------- */
.nova-lead {
	padding: 40px 0 8px;
	background: linear-gradient(180deg, #fdfbf9 0, var(--nova-paper) 70%);
}

.nova-lead-topline {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.nova-lead-topline h2 {
	margin: 0;
	font-family: var(--nova-display);
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 800;
	color: var(--nova-ink);
}

.nova-lead-topline .nova-lead-line {
	flex: 1;
	height: 1px;
	background: var(--nova-border);
}

.nova-lead-grid {
	display: grid;
	grid-template-columns: 1.55fr 1fr;
	gap: 22px;
	align-items: stretch;
}

.nova-lead-feature {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius);
	overflow: hidden;
	box-shadow: var(--nova-shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nova-lead-feature:hover {
	transform: translateY(-4px);
	box-shadow: 0 30px 64px rgba(20, 24, 31, 0.16);
}

.nova-lead-media {
	position: relative;
	overflow: hidden;
	background: var(--nova-mist);
}

.nova-lead-media .nova-card-media { aspect-ratio: 16 / 9; }

.nova-lead-feature:hover .nova-card-img { transform: scale(1.05); }

.nova-lead-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: var(--nova-primary);
	color: #fff;
	font-family: var(--nova-display);
	font-weight: 700;
	font-size: 12.5px;
	padding: 7px 14px;
	border-radius: 999px;
	box-shadow: 0 8px 20px rgba(160, 31, 43, 0.4);
}

.nova-lead-badge::before {
	content: "";
	width: 7px; height: 7px;
	border-radius: 50%;
	background: #fff;
	animation: nova-pulse 1.8s ease-in-out infinite;
}

@keyframes nova-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.45; transform: scale(0.7); }
}

.nova-lead-feature-body {
	padding: 24px 26px 26px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.nova-lead-feature-cat {
	font-family: var(--nova-display);
	font-weight: 700;
	font-size: 13px;
	color: var(--nova-primary);
}

.nova-lead-feature-title {
	margin: 0;
	font-family: var(--nova-display);
	font-size: clamp(24px, 2.6vw, 32px);
	font-weight: 800;
	line-height: 1.25;
	color: var(--nova-ink);
}

.nova-lead-feature:hover .nova-lead-feature-title { color: var(--nova-primary-deep); }

.nova-lead-feature-excerpt {
	margin: 0;
	color: var(--nova-body);
	font-size: 16px;
	line-height: 1.65;
}

.nova-lead-feature-meta {
	display: flex;
	align-items: center;
	gap: 10px 16px;
	flex-wrap: wrap;
	font-size: 13px;
	color: var(--nova-muted);
	margin-top: 2px;
}

/* Latest list (side column) */
.nova-lead-side {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius);
	box-shadow: 0 10px 30px rgba(20, 24, 31, 0.06);
	overflow: hidden;
}

.nova-lead-side-head {
	margin: 0;
	padding: 16px 20px;
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 16px;
	color: var(--nova-ink);
	border-bottom: 1px solid var(--nova-border);
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--nova-mist-2);
}

.nova-lead-side-head::before {
	content: "";
	width: 9px; height: 9px;
	border-radius: 2px;
	background: var(--nova-primary);
}

.nova-lead-row {
	display: flex;
	gap: 13px;
	padding: 13px 18px;
	text-decoration: none;
	color: inherit;
	border-bottom: 1px solid var(--nova-border);
	transition: background 0.14s ease;
}

.nova-lead-row:last-child { border-bottom: 0; }
.nova-lead-row:hover { background: var(--nova-mist-2); }

.nova-lead-row-media {
	flex-shrink: 0;
	width: 84px;
	border-radius: 10px;
	overflow: hidden;
	background: var(--nova-mist);
}

.nova-lead-row-media .nova-card-media { aspect-ratio: 4 / 3; }
.nova-lead-row-media .nova-card-media-fallback { padding: 6px; }
.nova-lead-row-media .nova-card-media-glyph svg { width: 22px; height: 22px; }
.nova-lead-row-media .nova-card-media-label { display: none; }

.nova-lead-row-body { display: flex; flex-direction: column; gap: 5px; min-width: 0; }

.nova-lead-row-title {
	margin: 0;
	font-family: var(--nova-display);
	font-weight: 600;
	font-size: 15px;
	line-height: 1.35;
	color: var(--nova-ink);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.nova-lead-row:hover .nova-lead-row-title { color: var(--nova-primary-deep); }

.nova-lead-row-meta { font-size: 12px; color: var(--nova-muted); }

/* ---- 8. Category hubs (image cards with count) ---------------------------- */
.nova-cathub-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.nova-cathub-card {
	position: relative;
	display: block;
	text-decoration: none;
	border-radius: var(--nova-radius-md);
	overflow: hidden;
	aspect-ratio: 16 / 11;
	background: var(--nova-ink);
	box-shadow: 0 12px 32px rgba(20, 24, 31, 0.12);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nova-cathub-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 28px 56px rgba(20, 24, 31, 0.22);
}

.nova-cathub-card .nova-card-img,
.nova-cathub-card .nova-cat-tile-fallback {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(.2,.7,.3,1);
}

.nova-cathub-card:hover .nova-card-img { transform: scale(1.07); }

.nova-cat-tile-fallback {
	display: grid;
	place-items: center;
	background: radial-gradient(circle at 30% 25%, hsl(var(--nova-tile-hue, 12) 45% 32%), hsl(calc(var(--nova-tile-hue, 12) + 20) 55% 16%));
	color: rgba(255,255,255,0.85);
}

.nova-cathub-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 4px;
	padding: 20px;
	background: linear-gradient(180deg, rgba(15,19,25,0) 30%, rgba(15,19,25,0.86) 100%);
}

.nova-cathub-count {
	font-family: var(--nova-display);
	font-weight: 700;
	font-size: 12px;
	color: var(--nova-gold);
	text-transform: none;
}

.nova-cathub-name {
	margin: 0;
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 22px;
	line-height: 1.2;
	color: #fff;
}

.nova-cathub-arrow {
	position: absolute;
	top: 16px; right: 16px;
	z-index: 2;
	width: 34px; height: 34px;
	border-radius: 50%;
	background: rgba(255,255,255,0.16);
	backdrop-filter: blur(4px);
	display: grid;
	place-items: center;
	color: #fff;
	font-size: 16px;
	transition: background 0.18s ease, transform 0.18s ease;
}

.nova-cathub-card:hover .nova-cathub-arrow {
	background: var(--nova-primary);
	transform: rotate(-45deg);
}

/* ---- 9. Dark band (premium CTA / stats strip) ----------------------------- */
.nova-band {
	background: var(--nova-ink-grad);
	color: #cfd4dc;
	padding: 40px 0;
	position: relative;
	overflow: hidden;
}

.nova-band::after {
	content: "";
	position: absolute;
	right: -120px; top: -80px;
	width: 340px; height: 340px;
	border-radius: 50%;
	background: rgba(204, 41, 54, 0.14);
	pointer-events: none;
}

.nova-band-inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 26px;
	flex-wrap: wrap;
}

.nova-band-text h2 {
	margin: 0 0 6px;
	color: #fff;
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 800;
	line-height: 1.2;
}

.nova-band-text p { margin: 0; color: #9aa2ad; font-size: 16px; }

.nova-band .nova-btn-primary { box-shadow: 0 12px 28px rgba(204, 41, 54, 0.4); }

/* Feature cards: number chip in brand red */
.nova-feature-card > span {
	display: inline-grid;
	place-items: center;
	width: 42px; height: 42px;
	border-radius: 12px;
	background: var(--nova-mist);
	color: var(--nova-primary);
	font-family: var(--nova-display);
	font-weight: 800;
	font-size: 16px;
	margin-bottom: 4px;
}

/* ---- 10. Sidebar mini posts (with thumbnails) ----------------------------- */
.nova-mini-post {
	display: flex;
	gap: 12px;
	text-decoration: none;
	color: inherit;
	padding: 10px 0;
	border-bottom: 1px solid var(--nova-border);
}

.nova-mini-post:last-child { border-bottom: 0; padding-bottom: 0; }
.nova-mini-post:first-child { padding-top: 0; }

.nova-mini-post-media {
	flex-shrink: 0;
	width: 74px;
	border-radius: 9px;
	overflow: hidden;
	background: var(--nova-mist);
}

.nova-mini-post-media .nova-card-media { aspect-ratio: 4 / 3; }
.nova-mini-post-media .nova-card-media-label { display: none; }
.nova-mini-post-media .nova-card-media-glyph svg { width: 20px; height: 20px; }

.nova-mini-post-title {
	margin: 0;
	font-family: var(--nova-display);
	font-weight: 600;
	font-size: 14px;
	line-height: 1.35;
	color: var(--nova-ink);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.nova-mini-post:hover .nova-mini-post-title { color: var(--nova-primary-deep); }
.nova-mini-post-meta { font-size: 11.5px; color: var(--nova-muted); margin-top: 4px; }

/* ---- 11. Single post: featured image hero + reading progress -------------- */
.nova-single-media {
	margin: 0 0 4px;
	border-radius: var(--nova-radius);
	overflow: hidden;
	background: var(--nova-mist);
	box-shadow: var(--nova-shadow);
}

.nova-single-media .nova-card-media { aspect-ratio: 16 / 9; }

.nova-single-media figure { margin: 0; }

.nova-single-media-wrap { padding-top: 26px; }

.nova-progress {
	position: fixed;
	top: 0; left: 0;
	height: 3px;
	width: 0;
	background: linear-gradient(90deg, var(--nova-primary), var(--nova-gold));
	z-index: 60;
	transition: width 0.1s linear;
}

/* Verdict / rating box shortcode */
.nova-verdict {
	margin: 30px 0;
	border: 1px solid var(--nova-border);
	border-radius: var(--nova-radius-md);
	overflow: hidden;
	background: #fff;
	box-shadow: 0 12px 30px rgba(20,24,31,0.07);
}

.nova-verdict-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding: 18px 22px;
	background: var(--nova-ink-grad);
	color: #fff;
}

.nova-verdict-head h3 {
	margin: 0;
	color: #fff;
	font-size: 20px;
	font-weight: 800;
}

.nova-verdict-score {
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
	font-family: var(--nova-display);
	font-weight: 800;
}

.nova-verdict-score b { font-size: 30px; color: #fff; line-height: 1; }
.nova-verdict-score span { font-size: 15px; color: #9aa2ad; }

.nova-verdict-body { padding: 20px 22px; }
.nova-verdict-body p { margin: 0 0 10px; color: var(--nova-body); }
.nova-verdict-body :last-child { margin-bottom: 0; }

.nova-verdict-stars { margin-top: 8px; }
.nova-verdict-stars .nova-star { font-size: 20px; }

/* ---- 12. Section head eyebrow in brand red -------------------------------- */
.nova-eyebrow, .nova-pill {
	background: var(--nova-mist);
	color: var(--nova-primary-deep);
}

/* ---- 13. Responsive ------------------------------------------------------- */
@media (max-width: 960px) {
	.nova-lead-grid { grid-template-columns: 1fr; }
	.nova-cathub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
	.nova-cathub-grid { grid-template-columns: 1fr; }
	.nova-lead { padding-top: 26px; }
	.nova-post-card-title { font-size: 18px; }
	.nova-lead-feature-body { padding: 20px; }
	.nova-band-inner { flex-direction: column; align-items: flex-start; }
	.nova-topbar-label { display: none; }
	.nova-single-media .nova-card-media { aspect-ratio: 4 / 3; }
}
