/* ──────────────────────────────────────────────────────────────────────────
   VeloRun · main stylesheet
   Earthy / outdoor / editorial. Light theme only.
   ──────────────────────────────────────────────────────────────────────── */

:root {
	--font-display: 'Archivo', system-ui, sans-serif;
	--font-text:    'Inter Tight', system-ui, sans-serif;
	--font-mono:    'JetBrains Mono', ui-monospace, monospace;

	--bg:        oklch(0.965 0.012 80);
	--bg-2:      oklch(0.935 0.018 78);
	--bg-3:      oklch(0.885 0.020 75);
	--line:      oklch(0.82 0.022 75);
	--line-soft: oklch(0.88 0.018 75);
	--ink:       oklch(0.22 0.018 60);
	--ink-2:     oklch(0.38 0.020 60);
	--ink-3:     oklch(0.55 0.020 65);
	--accent:    oklch(0.58 0.135 45);    /* clay terracotta */
	--accent-ink: oklch(0.98 0.005 80);
	--moss:      oklch(0.48 0.085 140);
	--ember:     oklch(0.62 0.155 50);
	--paper:     oklch(0.985 0.006 85);

	--pad: clamp(20px, 3vw, 36px);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
	font-family: var(--font-text);
	color: var(--ink);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
	font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
button { font: inherit; cursor: pointer; }

::selection { background: var(--accent); color: var(--accent-ink); }

.screen-reader-text { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100; padding: 12px 16px; background: var(--ink); color: var(--bg); }
.skip-link:focus { left: 0; }

/* ── Type ramp ─────────────────────────────────────────────────────────── */
.vr-display { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; line-height: 0.95; }
.vr-display-xl { font-size: clamp(48px, 8vw, 96px); }
.vr-heading { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.015em; line-height: 1.05; font-size: 22px; }
.vr-heading.vr-h-md { font-size: clamp(28px, 3.6vw, 40px); margin: 12px 0 32px; }
.vr-eyebrow { font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.vr-eyebrow-accent { color: var(--accent); }
.vr-eyebrow-soft   { color: var(--ink-3); }
.vr-eyebrow-moss   { color: var(--moss); display: inline-flex; align-items: center; gap: 8px; }
.vr-eyebrow-moss::before { content: ''; width: 18px; height: 2px; background: var(--moss); }
.vr-eyebrow-ember  { color: var(--ember); display: inline-flex; align-items: center; gap: 8px; }
.vr-eyebrow-ember::before { content: ''; width: 18px; height: 2px; background: var(--ember); }
.vr-meta    { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); }
.vr-accent-dot { color: var(--accent); }

/* ── Buttons / chips ───────────────────────────────────────────────────── */
.vr-btn {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 12px 18px; border-radius: 999px;
	font-family: var(--font-display); font-weight: 700; font-size: 13px;
	letter-spacing: 0.02em; border: 0;
	transition: transform .15s ease, background .15s ease;
	text-decoration: none;
	white-space: nowrap;
}
.vr-btn:hover { transform: translateY(-1px); }
.vr-btn-primary { background: var(--accent); color: var(--accent-ink); }
.vr-btn-primary:hover { background: var(--accent); color: var(--accent-ink); }
.vr-btn-ghost   { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.vr-btn-ghost:hover { background: var(--bg-2); color: var(--ink); }
.vr-btn-compact { padding: 8px 14px; font-size: 12px; }
.vr-btn-block { display: flex; width: 100%; justify-content: center; }

.vr-chip {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 5px 10px; border-radius: 999px;
	font-family: var(--font-mono); font-size: 11px; font-weight: 500;
	letter-spacing: 0.04em;
	background: var(--bg-2); color: var(--ink-2);
	box-shadow: inset 0 0 0 1px var(--line-soft);
}
.vr-chip.is-bieg::before { content: ''; width: 6px; height: 6px; border-radius: 999px; background: var(--ember); }
.vr-chip.is-row::before  { content: ''; width: 6px; height: 6px; border-radius: 999px; background: var(--moss); }

.vr-rule       { height: 1px; background: var(--line-soft); border: 0; margin: 0; }
.vr-rule-inset { margin: 0 var(--pad); }

/* ── Placeholder image ─────────────────────────────────────────────────── */
.vr-img {
	position: relative;
	background:
		repeating-linear-gradient(135deg,
			color-mix(in oklch, var(--ink) 6%, transparent) 0 1px,
			transparent 1px 9px),
		linear-gradient(180deg,
			color-mix(in oklch, var(--ink) 8%, var(--bg-2)) 0%,
			var(--bg-2) 100%);
	color: var(--ink-3);
	overflow: hidden;
	min-height: 200px;
}
.vr-img::before {
	content: attr(data-caption);
	position: absolute; inset: auto 0 0 0;
	padding: 10px 14px;
	font-family: var(--font-mono); font-size: 10px;
	color: color-mix(in oklch, var(--ink) 65%, transparent);
}
.vr-img.is-hero {
	background:
		repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 9px),
		linear-gradient(170deg, oklch(0.32 0.04 60) 0%, oklch(0.22 0.025 60) 100%);
}
.vr-img.is-hero::before {
	color: color-mix(in oklch, white 75%, transparent);
}

.vr-topo-svg { color: var(--line); }

/* ── Header / nav ──────────────────────────────────────────────────────── */
.vr-site-header { position: sticky; top: 0; z-index: 50; background: var(--bg); border-bottom: 1px solid var(--line-soft); }
.vr-nav-inner {
	display: flex; align-items: center; justify-content: space-between;
	padding: 16px var(--pad); gap: 24px;
}
.vr-site-brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.vr-site-name { font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.02em; }
.vr-site-name-accent { color: var(--accent); }

.vr-nav-menu { flex: 1; }
.vr-nav-list { list-style: none; margin: 0; padding: 0; display: flex; gap: 26px; justify-content: center; }
.vr-nav-link {
	position: relative; padding: 4px 0; font-size: 14px; font-weight: 500;
	color: var(--ink-2);
}
.vr-nav-link:hover, .current-menu-item .vr-nav-link, .current-menu-item > a {
	color: var(--ink);
}
.current-menu-item .vr-nav-link::after, .current-menu-item > a::after {
	content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--accent);
}

.vr-nav-actions { display: flex; align-items: center; gap: 14px; }
.vr-search-toggle { display: flex; align-items: center; gap: 6px; padding: 4px; border: 0; background: 0; color: var(--ink-2); }
.vr-nav-burger { display: none; flex-direction: column; gap: 4px; padding: 8px; border: 0; background: 0; }
.vr-nav-burger span { width: 22px; height: 1.8px; background: var(--ink); }

.vr-search-panel { padding: 24px var(--pad); border-top: 1px solid var(--line-soft); background: var(--paper); }
.vr-search-inner { max-width: 880px; margin: 0 auto; }

/* ── Main wrapper ──────────────────────────────────────────────────────── */
.vr-site-main { display: block; }

/* ── Hero (front page featured) ────────────────────────────────────────── */
.vr-hero-featured {
	position: relative;
	overflow: hidden;
	background: oklch(0.22 0.025 60);
}
.vr-hero-img {
	position: absolute;
	inset: 0;
	height: auto;
}
.vr-hero-img img,
.vr-hero-img .vr-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.vr-hero-img > svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	color: rgba(255,255,255,0.16);
	mix-blend-mode: screen;
	pointer-events: none;
}
.vr-hero-veil {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 25%, rgba(0,0,0,0.7) 100%);
	pointer-events: none;
}
.vr-hero-content {
	position: relative;
	z-index: 2;
	min-height: clamp(440px, 56vw, 580px);
	padding: 56px var(--pad);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 32px;
	color: white;
	max-width: 1080px;
}
.vr-hero-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.vr-hero-tag  {
	padding: 6px 12px;
	background: var(--accent);
	color: var(--accent-ink);
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
}
.vr-hero-date {
	padding: 6px 12px;
	background: rgba(255,255,255,0.12);
	backdrop-filter: blur(8px);
	color: white;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
}
.vr-hero-title {
	font-size: clamp(36px, 5.6vw, 72px);
	color: white;
	margin: 0;
	max-width: 980px;
	text-wrap: balance;
	line-height: 0.98;
}
.vr-hero-excerpt {
	color: rgba(255,255,255,0.88);
	font-size: clamp(15px, 1.6vw, 18px);
	margin: 0;
	max-width: 700px;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.vr-hero-cta {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}
.vr-hero-cta .vr-meta { color: rgba(255,255,255,0.75); font-size: 12px; }

/* ── Sections ──────────────────────────────────────────────────────────── */
.vr-section { padding: clamp(40px, 6vw, 72px) var(--pad); }
.vr-section-header {
	display: flex; align-items: flex-end; justify-content: space-between;
	margin-bottom: 32px; gap: 20px;
}
.vr-section-header h2 { font-size: clamp(28px, 5vw, 48px); margin: 10px 0 0; }
.vr-section-cta {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: 13px; font-weight: 600; color: var(--ink-2);
	border-bottom: 1.5px solid var(--ink); padding-bottom: 4px;
}
.vr-section-eyebrow { margin-bottom: 16px; }
.vr-section-split { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; }

/* ── Grids ─────────────────────────────────────────────────────────────── */
.vr-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; row-gap: 56px; }
.vr-grid-news { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.vr-grid-reviews { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; column-gap: 60px; }
.vr-grid-reviews-archive { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; row-gap: 56px; }
.vr-grid-routes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; row-gap: 56px; }

/* ── Article card ──────────────────────────────────────────────────────── */
.vr-card-article .vr-card-link { display: flex; flex-direction: column; gap: 14px; color: var(--ink); }
.vr-card-img { aspect-ratio: 16/11; overflow: hidden; border-radius: 4px; position: relative; }
.vr-card-img img, .vr-card-img .vr-img { width: 100%; height: 100%; object-fit: cover; }
.vr-card-body { display: flex; flex-direction: column; gap: 10px; }
.vr-card-meta-top { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.vr-card-excerpt { margin: 0; color: var(--ink-2); font-size: 14px; line-height: 1.55; }
.vr-card-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.vr-size-lg .vr-heading { font-size: clamp(24px, 3vw, 32px); }
.vr-size-sm .vr-heading { font-size: 18px; }
.vr-card-article:hover .vr-heading { color: var(--accent); }

/* ── Review card ───────────────────────────────────────────────────────── */
.vr-review-card a { display: flex; flex-direction: column; gap: 12px; color: var(--ink); }
.vr-review-card .vr-card-img { aspect-ratio: 4/3; }
.vr-score-badge {
	position: absolute; bottom: 12px; right: 12px;
	padding: 6px 12px; background: var(--ink); color: var(--bg);
	font-family: var(--font-display); font-weight: 800; font-size: 18px;
}
.vr-score-badge-inline {
	position: static; display: inline-block;
	padding: 2px 8px; font-size: 12px;
}
.vr-review-brand { font-size: 11px; }
.vr-review-card:hover .vr-heading { color: var(--accent); }

/* ── List numbered ─────────────────────────────────────────────────────── */
.vr-list-numbered { list-style: none; margin: 0; padding: 0; }
.vr-list-numbered li { border-top: 1px solid var(--line-soft); }
.vr-list-numbered li:last-child { border-bottom: 1px solid var(--line-soft); }
.vr-list-numbered a {
	display: grid; grid-template-columns: 40px 90px 1fr auto;
	align-items: center; gap: 20px;
	padding: 20px 4px;
	color: var(--ink);
}
.vr-list-num { font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--ink-3); }
.vr-list-numbered a:hover .vr-heading { color: var(--accent); }

/* ── Editor's picks ────────────────────────────────────────────────────── */
.vr-picks { display: flex; flex-direction: column; gap: 18px; }
.vr-pick {
	display: grid; grid-template-columns: 70px 1fr 40px;
	gap: 14px; align-items: center;
	padding: 14px; border: 1px solid var(--line-soft);
	border-radius: 4px; background: var(--paper);
	color: var(--ink);
}
.vr-pick-img { aspect-ratio: 1/1; }
.vr-pick-img img, .vr-pick-img .vr-img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }
.vr-pick .vr-heading { font-size: 15px; margin-top: 2px; }
.vr-pick-score { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--accent); text-align: right; }

/* ── Archive header ────────────────────────────────────────────────────── */
.vr-archive-header { padding: 72px var(--pad) 48px; border-bottom: 1px solid var(--line-soft); position: relative; overflow: hidden; }
.vr-archive-header-inner { position: relative; max-width: 1200px; margin: 0 auto; }
.vr-archive-header h1 { margin: 14px 0 0; }
.vr-archive-desc { max-width: 540px; margin: 24px 0 0; font-size: 17px; color: var(--ink-2); line-height: 1.55; }
.vr-archive-header svg { position: absolute; right: 0; top: 60px; width: 60%; opacity: 0.5; pointer-events: none; }

/* ── Article single ────────────────────────────────────────────────────── */
.vr-article { width: 100%; }
.vr-article-header { padding: 64px var(--pad) 32px; max-width: 1080px; margin: 0 auto; display: flex; flex-direction: column; gap: 28px; }
.vr-breadcrumbs { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.vr-breadcrumbs a { color: var(--ink-3); }
.vr-breadcrumbs > span:last-child { color: var(--ink); }
.vr-article-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.vr-article-title { font-size: clamp(40px, 8vw, 80px); margin: 0; text-wrap: balance; line-height: 0.98; }
.vr-article-dek { margin: 0; font-size: 22px; color: var(--ink-2); line-height: 1.45; max-width: 800px; }
.vr-article-byline {
	display: flex; align-items: center; gap: 16px;
	padding-top: 8px; border-top: 1px solid var(--line-soft);
	flex-wrap: wrap;
}
.vr-avatar { border-radius: 999px; width: 44px; height: 44px; }
.vr-byline-author { display: flex; flex-direction: column; min-width: 0; }
.vr-byline-name { font-weight: 600; font-size: 14px; color: var(--ink); }
.vr-byline-meta { margin-left: auto; display: flex; gap: 24px; }
.vr-byline-meta-v { font-size: 14px; font-weight: 500; }

.vr-article-hero { margin: 0; padding: 0 var(--pad); }
.vr-article-hero img { width: 100%; height: auto; border-radius: 4px; }
.vr-article-hero .vr-img { width: 100%; height: clamp(320px, 50vw, 560px); }
.vr-article-hero figcaption { margin-top: 10px; font-style: italic; }

.vr-article-body {
	max-width: 760px; margin: 0 auto;
	padding: 64px var(--pad) 32px;
	font-size: 19px; line-height: 1.65; color: var(--ink);
}
.vr-article-body p { margin: 0 0 24px; }
.vr-article-body h2 { font-family: var(--font-display); font-weight: 700; font-size: 36px; margin: 48px 0 16px; line-height: 1.1; }
.vr-article-body h3 { font-family: var(--font-display); font-weight: 700; font-size: 26px; margin: 40px 0 14px; }
.vr-article-body blockquote { margin: 32px 0; padding: 40px 0; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.vr-article-body blockquote p { font-family: var(--font-display); font-weight: 800; font-size: 36px; line-height: 1.15; margin: 0; text-wrap: balance; }
.vr-article-body blockquote cite { display: block; margin-top: 18px; color: var(--ink-3); font-size: 14px; font-style: normal; }
.vr-article-body img { border-radius: 4px; margin: 24px 0; }
.vr-article-body a { color: var(--ink); border-bottom: 1.5px solid var(--accent); }
.vr-article-body ul, .vr-article-body ol { padding-left: 1.2em; margin: 0 0 24px; }
.vr-article-body code { font-family: var(--font-mono); background: var(--bg-2); padding: 1px 4px; border-radius: 2px; font-size: 0.9em; }

.vr-article-tags { padding: 24px var(--pad); max-width: 1080px; margin: 0 auto; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.vr-tag-list { display: flex; gap: 8px; flex-wrap: wrap; }

/* ── Review single ─────────────────────────────────────────────────────── */
.vr-review-hero { padding: 56px var(--pad) 40px; border-bottom: 1px solid var(--line-soft); max-width: 1280px; margin: 0 auto; }
.vr-review-hero .vr-breadcrumbs { margin-bottom: 24px; }
.vr-review-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.vr-review-gallery-main { aspect-ratio: 4/3; border-radius: 4px; overflow: hidden; }
.vr-review-gallery-main img, .vr-review-gallery-main .vr-img { width: 100%; height: 100%; object-fit: cover; }
.vr-review-gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 8px; }
.vr-review-gallery-thumbs img { aspect-ratio: 1/1; object-fit: cover; border-radius: 4px; opacity: 0.7; }
.vr-review-gallery-thumbs img:first-child { opacity: 1; }

.vr-review-summary { display: flex; flex-direction: column; gap: 16px; }
.vr-review-title { font-size: clamp(48px, 7vw, 72px); margin: 6px 0 0; text-wrap: balance; }
.vr-review-subtitle { font-size: 18px; color: var(--ink-2); margin-top: 8px; }
.vr-review-score-card {
	display: grid; grid-template-columns: 160px 1fr; gap: 24px; align-items: center;
	padding: 24px; background: var(--paper);
	border: 1px solid var(--line); border-radius: 6px; margin-top: 8px;
}
.vr-review-score-big { text-align: center; border-right: 1px solid var(--line-soft); padding-right: 24px; }
.vr-score-num { font-size: 88px; line-height: 0.9; color: var(--accent); }
.vr-stars { display: inline-flex; gap: 2px; margin-bottom: 8px; }
.vr-stars svg { width: 22px; height: 22px; }
.vr-review-verdict-head { font-size: 20px; }

.vr-review-prices { margin-top: 8px; display: flex; flex-direction: column; gap: 8px; }
.vr-review-prices .vr-eyebrow { margin-bottom: 4px; }
.vr-price-row {
	display: grid; grid-template-columns: 1fr auto auto; align-items: center;
	gap: 16px; padding: 14px 16px;
	background: var(--paper);
	border: 1px solid var(--line-soft); border-radius: 4px;
}
.vr-price-row.is-highlight { background: color-mix(in oklch, var(--accent) 8%, var(--paper)); }
.vr-price-store { display: flex; align-items: center; gap: 10px; }
.vr-price-icon {
	width: 32px; height: 32px; border-radius: 4px; background: var(--bg-3);
	display: flex; align-items: center; justify-content: center;
	font-family: var(--font-display); font-weight: 800; font-size: 13px;
}
.vr-price-name { font-size: 14px; font-weight: 600; }
.vr-price-tag { color: var(--accent); font-size: 10px; }
.vr-price-value { font-size: 22px; }
.vr-affiliate-fineprint { margin-top: 10px; }

.vr-review-detail-row {
	padding: 72px var(--pad);
	display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
	max-width: 1280px; margin: 0 auto;
}
.vr-rating-list { display: flex; flex-direction: column; gap: 14px; }
.vr-rating-row { display: grid; grid-template-columns: 110px 1fr 40px; align-items: center; gap: 14px; }
.vr-rating-label { font-size: 13px; color: var(--ink-2); font-weight: 500; }
.vr-rating-bar { height: 6px; background: var(--bg-3); border-radius: 999px; overflow: hidden; }
.vr-rating-bar > i { display: block; height: 100%; background: var(--accent); border-radius: 999px; }
.vr-rating-value { text-align: right; font-weight: 600; color: var(--ink); }

.vr-proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vr-proscons ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.vr-proscons li { display: flex; gap: 10px; font-size: 14px; line-height: 1.5; color: var(--ink-2); }
.vr-pros li span { color: var(--moss); font-weight: 700; }
.vr-cons li span { color: var(--ember); font-weight: 700; }

.vr-review-bottomline { margin-top: 36px; padding-top: 24px; border-top: 2px solid var(--ink); }
.vr-review-bottomline p { font-size: 24px; line-height: 1.3; margin: 10px 0 0; font-family: var(--font-display); font-weight: 700; }

.vr-specs-grid {
	display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
	border: 1px solid var(--line); border-radius: 4px; overflow: hidden;
}
.vr-spec { padding: 20px 22px; border-right: 1px solid var(--line-soft); background: var(--paper); }
.vr-spec:last-child { border-right: 0; }
.vr-spec-value { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin-top: 6px; color: var(--ink); }

/* ── Route single ──────────────────────────────────────────────────────── */
.vr-route-header { padding: 48px var(--pad) 32px; max-width: 1280px; margin: 0 auto; }
.vr-route-header .vr-breadcrumbs { margin-bottom: 20px; }
.vr-route-header-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: end; }
.vr-route-title { font-size: clamp(48px, 7vw, 80px); margin: 18px 0 0; text-wrap: balance; line-height: 0.98; }
.vr-route-dek { margin: 24px 0 0; font-size: 19px; color: var(--ink-2); line-height: 1.5; max-width: 620px; }
.vr-route-cta { display: flex; flex-direction: column; gap: 12px; }
.vr-route-cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.vr-route-map-wrap { margin: 0 var(--pad); position: relative; }
.vr-route-map-wrap img { width: 100%; border: 1px solid var(--line); border-radius: 6px; }
.vr-route-map-placeholder svg { width: 100%; height: auto; border: 1px solid var(--line); border-radius: 6px; display: block; }
.vr-route-map-wrap figcaption { margin-top: 10px; font-style: italic; }

.vr-route-stats-section { padding-top: 32px; padding-bottom: 24px; }
.vr-stats-strip {
	display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
	border: 1px solid var(--line); border-radius: 4px; overflow: hidden;
}
.vr-stat { padding: 20px 22px; border-right: 1px solid var(--line-soft); background: var(--paper); }
.vr-stat:last-child { border-right: 0; }
.vr-stat-val { display: flex; align-items: baseline; gap: 6px; margin-top: 6px; }
.vr-stat-val .vr-display { font-size: 32px; }

.vr-route-body-row { display: grid; grid-template-columns: 1.6fr 1fr; gap: 64px; padding-top: 48px; }
.vr-route-body { font-size: 17px; line-height: 1.65; color: var(--ink); }
.vr-route-body h2, .vr-route-body h3 { font-family: var(--font-display); font-weight: 700; }
.vr-route-body h2 { font-size: 28px; margin: 0 0 16px; }
.vr-route-body h3 { font-size: 22px; margin: 32px 0 12px; }
.vr-route-body p { margin: 0 0 16px; }

.vr-route-pois h2 { margin-bottom: 12px; }
.vr-poi { display: grid; grid-template-columns: 60px 1fr; gap: 14px; padding: 18px 0; border-top: 1px solid var(--line-soft); }
.vr-poi-km { font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: var(--accent); }
.vr-poi-icon { font-family: var(--font-display); font-weight: 700; font-size: 24px; margin-top: 4px; }
.vr-poi-name { font-size: 17px; margin: 0; }
.vr-poi-desc { font-size: 13px; color: var(--ink-2); margin-top: 4px; line-height: 1.5; }
.vr-poi-tag { display: inline-block; margin-top: 8px; padding: 2px 8px; font-size: 10px; font-family: var(--font-mono); letter-spacing: 0.08em; background: var(--bg-2); color: var(--ink-2); border-radius: 2px; }

/* ── Route card ────────────────────────────────────────────────────────── */
.vr-route-card a { display: flex; flex-direction: column; gap: 14px; color: var(--ink); }
.vr-route-map { position: relative; height: 220px; border: 1px solid var(--line-soft); border-radius: 4px; overflow: hidden; background: var(--bg-2); }
.vr-route-map img { width: 100%; height: 100%; object-fit: cover; }
.vr-route-map svg { width: 100%; height: 100%; display: block; }
.vr-route-surface { position: absolute; bottom: 12px; left: 12px; padding: 4px 10px; background: rgba(0,0,0,0.7); color: white; font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.08em; }
.vr-route-diff { position: absolute; bottom: 12px; right: 12px; display: flex; gap: 2px; }
.vr-route-diff span { width: 6px; height: 14px; background: rgba(255,255,255,0.3); }
.vr-route-diff span.on { background: var(--accent); }
.vr-route-body { display: block; }
.vr-route-stats { display: flex; gap: 18px; font-size: 13px; color: var(--ink-2); }
.vr-route-stats strong { color: var(--ink); font-family: var(--font-display); font-weight: 700; }
.vr-route-card:hover .vr-heading { color: var(--accent); }

/* ── Newsletter band ───────────────────────────────────────────────────── */
.vr-newsletter { position: relative; padding: 64px var(--pad); background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); overflow: hidden; }
.vr-newsletter > svg { position: absolute; inset: 0; opacity: 0.5; pointer-events: none; width: 100%; height: 220px; }
.vr-newsletter-inner { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; max-width: 1100px; margin: 0 auto; }
.vr-newsletter-copy h2 { font-size: clamp(32px, 5vw, 52px); margin: 14px 0; }
.vr-newsletter-copy p { margin: 0; color: var(--ink-2); font-size: 16px; max-width: 460px; line-height: 1.55; }
.vr-newsletter-form { display: flex; flex-direction: column; gap: 12px; }
.vr-newsletter-input { display: flex; gap: 8px; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 6px; }
.vr-newsletter-input input { flex: 1; padding: 12px 18px; background: transparent; border: 0; outline: 0; font: inherit; color: var(--ink); font-size: 15px; }

/* ── Footer ────────────────────────────────────────────────────────────── */
.vr-footer { background: var(--ink); color: var(--bg); padding: 60px var(--pad) 32px; }
.vr-footer-inner { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.vr-footer .vr-site-brand { color: var(--bg); }
.vr-footer-brand p { color: color-mix(in oklch, var(--bg) 65%, transparent); margin-top: 16px; line-height: 1.6; max-width: 280px; font-family: var(--font-mono); font-size: 11px; }
.vr-footer-menus { display: contents; }
.vr-footer-col ul { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.vr-footer-col a { font-size: 13px; color: color-mix(in oklch, var(--bg) 85%, transparent); }
.vr-footer-col a:hover { color: var(--accent); }
.vr-footer-rule { border: 0; height: 1px; background: color-mix(in oklch, var(--bg) 18%, transparent); margin: 0; }
.vr-footer-fineprint { display: flex; justify-content: space-between; align-items: center; margin-top: 22px; }
.vr-footer-fineprint .vr-meta { color: color-mix(in oklch, var(--bg) 65%, transparent); }

/* ── Author page ───────────────────────────────────────────────────────── */
.vr-author-hero { padding: 64px var(--pad) 48px; border-bottom: 1px solid var(--line-soft); max-width: 1280px; margin: 0 auto; }
.vr-author-grid { display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: start; margin-top: 24px; }
.vr-author-portrait .vr-author-img { width: 280px; height: 280px; border-radius: 4px; }
.vr-author-bio { font-size: 19px; color: var(--ink-2); line-height: 1.55; max-width: 640px; margin: 24px 0 0; }
.vr-author-stats { margin-top: 32px; }

/* ── Search results ────────────────────────────────────────────────────── */
.vr-search-header { padding: 64px var(--pad) 32px; border-bottom: 1px solid var(--line-soft); max-width: 1280px; margin: 0 auto; }
.vr-search-count { color: var(--ink-3); font-family: var(--font-mono); font-size: 22px; }
.vr-search-form, .vr-search-form-inline {
	display: flex; align-items: center; gap: 8px;
	margin-top: 24px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 6px;
	max-width: 600px;
}
.vr-search-form input, .vr-search-form-inline input { flex: 1; padding: 10px 18px; background: transparent; border: 0; outline: 0; font: inherit; font-size: 15px; color: var(--ink); }
.vr-search-icon { color: var(--ink-2); margin-left: 14px; }
.vr-search-list { display: flex; flex-direction: column; gap: 0; }
.vr-search-item { display: grid; grid-template-columns: 180px 1fr; gap: 24px; padding: 28px 0; border-top: 1px solid var(--line-soft); }
.vr-search-item:first-child { border-top: 0; }
.vr-search-item > a:first-child img { width: 100%; height: 130px; object-fit: cover; border-radius: 4px; }
.vr-search-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.vr-search-excerpt { margin: 0 0 10px; font-size: 14px; color: var(--ink-2); line-height: 1.55; }

/* ── 404 ───────────────────────────────────────────────────────────────── */
.vr-404 { position: relative; padding: 120px var(--pad); text-align: center; overflow: hidden; }
.vr-404 > svg { position: absolute; inset: 0; width: 100%; opacity: 0.5; pointer-events: none; }
.vr-404-inner { position: relative; max-width: 600px; margin: 0 auto; }
.vr-404 p { font-size: 18px; color: var(--ink-2); margin: 20px 0 28px; }
.vr-404-cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── Pagination ────────────────────────────────────────────────────────── */
.vr-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 56px; flex-wrap: wrap; }
.vr-pagination .page-numbers {
	min-width: 36px; height: 36px; padding: 0 12px;
	border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
	font-family: var(--font-display); font-weight: 600; font-size: 13px;
	color: var(--ink-2); background: transparent;
	box-shadow: inset 0 0 0 1px var(--line);
}
.vr-pagination .page-numbers.current { background: var(--ink); color: var(--bg); box-shadow: none; }
.vr-pagination .page-numbers.dots { box-shadow: none; }

/* ── Comments ──────────────────────────────────────────────────────────── */
.vr-comments { max-width: 760px; margin: 0 auto; padding: 48px var(--pad); }
.vr-comment-list { list-style: none; margin: 32px 0; padding: 0; }
.vr-comment-list .comment { padding: 18px 0; border-top: 1px solid var(--line-soft); }
.vr-comment-list .children { list-style: none; padding-left: 24px; }
.comment-form { margin-top: 32px; }
.comment-form input[type=text], .comment-form input[type=email], .comment-form input[type=url], .comment-form textarea {
	width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 4px;
	font: inherit; background: var(--paper);
}
.comment-form p { display: flex; flex-direction: column; gap: 6px; margin: 0 0 14px; }
.comment-form label { font-size: 13px; font-weight: 600; color: var(--ink-2); }

/* ──────────────────────────────────────────────────────────────────────────
   BAJERY · reading progress, TOC, share rail, callouts, TLDR, etc.
   ──────────────────────────────────────────────────────────────────────── */

/* ── Reading progress bar (sticky top) ─────────────────────────────────── */
.vr-reading-progress {
	position: sticky; top: 0; left: 0; right: 0;
	height: 3px; background: transparent;
	z-index: 60; pointer-events: none;
	margin-bottom: -3px;
}
.vr-reading-progress > i {
	display: block; height: 100%; width: 0%;
	background: var(--accent);
	transition: width .15s ease-out;
}

/* ── Article layout — sticky TOC + share + body ────────────────────────── */
.vr-article-layout {
	display: grid;
	grid-template-columns: 60px minmax(0, 760px) 240px;
	gap: 48px;
	max-width: 1280px;
	margin: 0 auto;
	padding: 24px var(--pad) 0;
	align-items: start;
	justify-content: center;
}
.vr-article-layout .vr-article-body {
	max-width: 760px; margin: 0; padding: 40px 0 0;
}

/* ── Share rail (left sticky) ──────────────────────────────────────────── */
.vr-share-rail {
	position: sticky; top: 96px;
	display: flex; flex-direction: column;
	gap: 10px; align-items: center;
}
.vr-share-label {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	font-size: 10px;
	letter-spacing: 0.16em;
	margin-bottom: 6px;
}
.vr-share-btn {
	width: 40px; height: 40px; border-radius: 999px;
	border: 1.5px solid var(--line); background: var(--paper);
	color: var(--ink-2); display: flex; align-items: center; justify-content: center;
	cursor: pointer; transition: all .15s ease; padding: 0;
	position: relative;
}
.vr-share-btn:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
.vr-share-btn svg { width: 18px; height: 18px; }
.vr-copy-feedback {
	position: absolute; left: 50%; top: -32px; transform: translateX(-50%);
	background: var(--ink); color: var(--bg);
	padding: 4px 10px; border-radius: 4px;
	font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em;
	white-space: nowrap;
}
.vr-copy-feedback::after {
	content: ''; position: absolute; left: 50%; bottom: -3px; transform: translateX(-50%) rotate(45deg);
	width: 6px; height: 6px; background: var(--ink);
}

/* ── Sticky TOC (right) ────────────────────────────────────────────────── */
.vr-toc { position: sticky; top: 96px; align-self: start; }
.vr-toc-inner {
	padding: 20px;
	background: var(--paper);
	border: 1px solid var(--line-soft);
	border-radius: 4px;
	max-height: calc(100vh - 120px);
	overflow-y: auto;
}
.vr-toc-list { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-direction: column; gap: 1px; }
.vr-toc-list li a {
	display: grid; grid-template-columns: 26px 1fr; gap: 8px;
	padding: 7px 10px 7px 12px;
	margin-left: -12px;
	border-left: 2px solid transparent;
	color: var(--ink-2);
	font-size: 12.5px;
	line-height: 1.4;
	transition: color .15s, border-color .15s;
}
.vr-toc-list li.is-h3 a { padding-left: 24px; }
.vr-toc-list li a:hover { color: var(--ink); }
.vr-toc-list li a.is-active {
	color: var(--ink);
	border-left-color: var(--accent);
	font-weight: 600;
}
.vr-toc-list .vr-toc-num {
	font-family: var(--font-mono);
	color: var(--ink-3);
	font-size: 11px;
}
.vr-toc hr { border: 0; border-top: 1px solid var(--line-soft); margin: 14px 0; }
.vr-toc-progress-row {
	display: flex; justify-content: space-between;
	font-size: 10px;
}
.vr-toc-progress {
	margin-top: 6px;
	height: 3px;
	background: var(--bg-3);
	border-radius: 999px;
	overflow: hidden;
}
.vr-toc-progress > i {
	display: block; height: 100%; width: 0%;
	background: var(--accent);
	transition: width .2s ease-out;
}

/* ── TLDR / Key takeaways box ──────────────────────────────────────────── */
.vr-tldr-wrap { padding: 24px var(--pad) 0; max-width: 1080px; margin: 0 auto; }
.vr-tldr {
	padding: 32px;
	background: var(--ink);
	color: var(--bg);
	border-radius: 6px;
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 32px;
}
.vr-tldr-head .vr-display { font-size: 28px; margin: 8px 0 0; color: var(--bg); }
.vr-tldr-body { font-size: 15px; line-height: 1.55; color: color-mix(in oklch, var(--bg) 88%, transparent); }
.vr-tldr-body p { margin: 0 0 10px; }
.vr-tldr-body p:last-child { margin-bottom: 0; }
/* Parsing format: "Label | text" per line → motyw renderuje jako lista */
.vr-tldr-body ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.vr-tldr-body li {
	display: grid; grid-template-columns: 140px 1fr; gap: 18px;
	font-size: 15px; line-height: 1.5;
}
.vr-tldr-body li strong {
	font-family: var(--font-display); font-weight: 800;
	color: var(--accent); font-size: 14px;
	letter-spacing: 0.02em;
}

/* ── Callout boxes (use in Gutenberg via class) ────────────────────────── */
/* Usage: dodaj "Additional CSS class" do bloku Group: vr-callout vr-callout-tip */
.vr-callout {
	padding: 20px 24px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 4px;
	margin: 32px 0;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 18px;
	align-items: start;
}
.vr-callout::before {
	content: attr(data-icon, '!');
	width: 32px; height: 32px;
	border-radius: 999px;
	display: flex; align-items: center; justify-content: center;
	font-family: var(--font-display); font-weight: 800; font-size: 18px;
	flex-shrink: 0;
}
.vr-callout > * { margin: 0 0 8px; }
.vr-callout > *:last-child { margin-bottom: 0; }
.vr-callout p { margin: 0 0 8px; font-size: 16px; line-height: 1.55; }
.vr-callout strong:first-child {
	font-family: var(--font-display); font-weight: 700;
	font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
	display: block; margin-bottom: 6px;
}

.vr-callout-tip {
	background: color-mix(in oklch, var(--moss) 12%, var(--paper));
	border-color: color-mix(in oklch, var(--moss) 35%, var(--line));
	border-left: 4px solid var(--moss);
}
.vr-callout-tip::before { content: '!'; background: var(--moss); color: var(--bg); }
.vr-callout-tip strong:first-child { color: var(--moss); }

.vr-callout-warn {
	background: color-mix(in oklch, var(--ember) 10%, var(--paper));
	border-color: color-mix(in oklch, var(--ember) 35%, var(--line));
	border-left: 4px solid var(--ember);
}
.vr-callout-warn::before { content: '⚠'; background: var(--ember); color: var(--bg); font-size: 16px; }
.vr-callout-warn strong:first-child { color: var(--ember); }

.vr-callout-info {
	background: color-mix(in oklch, var(--accent) 8%, var(--paper));
	border-color: color-mix(in oklch, var(--accent) 30%, var(--line));
	border-left: 4px solid var(--accent);
}
.vr-callout-info::before { content: 'i'; background: var(--accent); color: var(--accent-ink); font-family: var(--font-display); font-style: italic; }
.vr-callout-info strong:first-child { color: var(--accent); }

/* ── Pull quote (Gutenberg pullquote block, or .vr-pull-quote) ─────────── */
.vr-article-body blockquote,
.vr-article-body .wp-block-pullquote,
.vr-pull-quote {
	margin: 48px 0;
	padding: 36px 0;
	border-top: 2px solid var(--ink);
	border-bottom: 2px solid var(--ink);
	background: transparent;
	position: relative;
	text-align: left;
}
.vr-article-body blockquote::before,
.vr-pull-quote::before {
	content: '"';
	position: absolute; top: -28px; left: -4px;
	background: var(--bg); padding: 0 12px;
	font-family: var(--font-display); font-weight: 800;
	font-size: 64px; line-height: 1;
	color: var(--accent);
}
.vr-article-body blockquote p,
.vr-article-body .wp-block-pullquote p,
.vr-pull-quote p {
	font-family: var(--font-display); font-weight: 800;
	font-size: clamp(28px, 4vw, 40px);
	line-height: 1.1;
	margin: 0;
	text-wrap: balance;
	color: var(--ink);
}
.vr-article-body blockquote cite,
.vr-article-body .wp-block-pullquote cite,
.vr-pull-quote cite {
	display: block; margin-top: 18px;
	color: var(--ink-3); font-size: 14px;
	font-style: normal; font-weight: normal;
	font-family: var(--font-text);
}

/* ── Inline newsletter band ────────────────────────────────────────────── */
.vr-inline-newsletter {
	margin: 56px 0;
	padding: 36px 32px;
	background: var(--bg-2);
	border-radius: 6px;
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 24px;
	align-items: center;
}
.vr-inline-newsletter .vr-inline-newsletter-copy h3 {
	font-family: var(--font-display); font-weight: 800;
	font-size: 28px; margin: 8px 0 4px; line-height: 1.1;
}
.vr-inline-newsletter form {
	display: flex; gap: 6px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 4px;
}
.vr-inline-newsletter input {
	width: 200px;
	padding: 8px 14px;
	background: transparent; border: 0; outline: 0;
	font: inherit; font-size: 13px;
}

/* ── Comparison table ──────────────────────────────────────────────────── */
.vr-article-body .wp-block-table,
.vr-comparison {
	margin: 40px 0;
	border: 1px solid var(--line);
	border-radius: 4px;
	overflow: hidden;
}
.vr-article-body .wp-block-table table,
.vr-comparison table {
	width: 100%; border-collapse: collapse;
	font-size: 14px;
}
.vr-article-body .wp-block-table thead,
.vr-comparison thead {
	background: var(--bg-2);
}
.vr-article-body .wp-block-table th,
.vr-comparison th {
	padding: 14px 18px;
	text-align: left;
	font-family: var(--font-display); font-weight: 700;
	font-size: 13px; letter-spacing: 0.02em;
	color: var(--ink-2);
	border-bottom: 1px solid var(--line);
}
.vr-article-body .wp-block-table td,
.vr-comparison td {
	padding: 14px 18px;
	border-top: 1px solid var(--line-soft);
	color: var(--ink-2);
}
.vr-article-body .wp-block-table tr td:first-child,
.vr-comparison tr td:first-child { color: var(--ink-3); }
.vr-article-body .wp-block-table tr td:not(:first-child),
.vr-comparison tr td:not(:first-child) { color: var(--ink); font-weight: 500; }

/* ── Stats inline grid (manual class) ──────────────────────────────────── */
.vr-stats-inline {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	border: 1px solid var(--line);
	border-radius: 4px;
	overflow: hidden;
	margin: 32px 0;
}
.vr-stats-inline > * {
	padding: 20px 22px;
	border-right: 1px solid var(--line-soft);
	background: var(--paper);
}
.vr-stats-inline > *:last-child { border-right: 0; }
.vr-stats-inline strong {
	font-family: var(--font-display); font-weight: 800;
	font-size: 28px; line-height: 1;
	display: block; margin: 6px 0 4px;
	color: var(--ink);
}
.vr-stats-inline em {
	font-style: normal; font-size: 12px; color: var(--ink-3);
}
.vr-stats-inline small {
	font-family: var(--font-mono); font-size: 11px;
	color: var(--ink-3); letter-spacing: 0.06em; text-transform: uppercase;
}

/* ── Numbered section heading (use .vr-section-num as h2 class) ────────── */
.vr-article-body h2.vr-numbered::before {
	content: counter(vr-section, decimal-leading-zero);
	counter-increment: vr-section;
	display: block;
	font-family: var(--font-mono); font-size: 16px; font-weight: 600;
	color: var(--accent);
	margin-bottom: 8px;
	letter-spacing: 0.04em;
}
.vr-article-body { counter-reset: vr-section; }

/* ── Headings get scroll-margin for TOC anchor jumps ───────────────────── */
.vr-article-body h2, .vr-article-body h3 { scroll-margin-top: 90px; }

/* ── Author bio box at end of guide ────────────────────────────────────── */
.vr-author-bio-end {
	margin: 64px 0 0;
	padding: 32px;
	background: var(--paper);
	border: 1px solid var(--line-soft);
	border-radius: 6px;
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 24px;
	align-items: start;
}
.vr-author-bio-end .vr-author-bio-img {
	width: 80px; height: 80px; border-radius: 999px;
}
.vr-author-bio-end h3 { font-size: 22px; margin: 6px 0 8px; }
.vr-author-bio-end h3 a { color: var(--ink); }
.vr-author-bio-end h3 a:hover { color: var(--accent); }
.vr-author-bio-end p {
	margin: 0 0 14px;
	font-size: 14px; color: var(--ink-2); line-height: 1.55;
}
.vr-author-bio-links { display: flex; gap: 8px; flex-wrap: wrap; }

/* ── Highlight (mark) styling for search results / glossary ────────────── */
.vr-article-body mark, mark {
	background: color-mix(in oklch, var(--accent) 25%, transparent);
	color: var(--ink); padding: 0 3px; border-radius: 2px;
}

/* ── Responsive collapse for sticky rails ──────────────────────────────── */
@media (max-width: 1080px) {
	.vr-article-layout {
		grid-template-columns: minmax(0, 760px);
		justify-content: center;
		gap: 0;
	}
	.vr-share-rail, .vr-toc { display: none; }
	.vr-article-layout .vr-article-body { padding-top: 24px; }
}
@media (max-width: 720px) {
	.vr-tldr { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
	.vr-tldr-body li { grid-template-columns: 1fr; gap: 4px; }
	.vr-tldr-body li strong { font-size: 11px; }
	.vr-stats-inline { grid-template-columns: 1fr; }
	.vr-stats-inline > * { border-right: 0; border-bottom: 1px solid var(--line-soft); }
	.vr-stats-inline > *:last-child { border-bottom: 0; }
	.vr-inline-newsletter { grid-template-columns: 1fr; padding: 24px; }
	.vr-inline-newsletter input { width: 100%; }
	.vr-author-bio-end { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
	.vr-nav-burger { display: flex; }
	.vr-nav-menu { display: none; }
	.vr-nav-menu.is-open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--line-soft); padding: 16px var(--pad); }
	.vr-nav-menu.is-open .vr-nav-list { flex-direction: column; gap: 16px; }
	.vr-nav-actions .vr-search-label, .vr-nav-actions .vr-btn { display: none; }
	.vr-section-split { grid-template-columns: 1fr; gap: 32px; }
	.vr-grid-news, .vr-grid-3, .vr-grid-routes, .vr-grid-reviews-archive { grid-template-columns: 1fr 1fr; }
	.vr-grid-reviews { grid-template-columns: 1fr; }
	.vr-review-hero-grid { grid-template-columns: 1fr; }
	.vr-review-detail-row { grid-template-columns: 1fr; gap: 32px; }
	.vr-route-header-grid { grid-template-columns: 1fr; }
	.vr-route-body-row { grid-template-columns: 1fr; gap: 32px; }
	.vr-specs-grid, .vr-stats-strip { grid-template-columns: repeat(3, 1fr); }
	.vr-newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
	.vr-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
	.vr-author-grid { grid-template-columns: 1fr; }
	.vr-author-portrait .vr-author-img { width: 200px; height: 200px; }
	.vr-list-numbered a { grid-template-columns: 28px 80px 1fr; }
	.vr-list-numbered a > .vr-meta:last-child { display: none; }
	.vr-byline-meta { width: 100%; gap: 14px; margin-left: 0; }
}

@media (max-width: 640px) {
	.vr-grid-news, .vr-grid-3, .vr-grid-routes, .vr-grid-reviews-archive { grid-template-columns: 1fr; }
	.vr-specs-grid, .vr-stats-strip { grid-template-columns: 1fr 1fr; }
	.vr-footer-inner { grid-template-columns: 1fr; }
	.vr-search-item { grid-template-columns: 1fr; }
	.vr-section-header { flex-direction: column; align-items: flex-start; }
	.vr-proscons { grid-template-columns: 1fr; }
	.vr-review-score-card { grid-template-columns: 1fr; }
	.vr-review-score-big { border-right: 0; border-bottom: 1px solid var(--line-soft); padding-right: 0; padding-bottom: 16px; }
	.vr-rating-row { grid-template-columns: 90px 1fr 36px; gap: 10px; }
}


/* ──────────────────────────────────────────────────────────────────────────
   v1.2 — polish: hover, animations, reading list, print, mobile sticky
   ──────────────────────────────────────────────────────────────────────── */

/* Card hover (subtle lift + image scale) */
.vr-card-article .vr-card-img,
.vr-review-card .vr-card-img,
.vr-route-card .vr-route-map { transition: transform .35s cubic-bezier(.2,.7,.3,1); overflow: hidden; }
.vr-card-article .vr-card-img img,
.vr-review-card .vr-card-img img,
.vr-route-card .vr-route-map img { transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.vr-card-article:hover .vr-card-img img,
.vr-review-card:hover .vr-card-img img,
.vr-route-card:hover .vr-route-map img { transform: scale(1.04); }

/* Header scroll behavior */
.vr-site-header { transition: transform .35s cubic-bezier(.2,.7,.3,1); }
.vr-site-header.is-hidden { transform: translateY(-100%); }

/* Reading list */
.vr-readlist-toggle {
	position: relative;
	display: inline-flex; align-items: center; gap: 6px;
	padding: 4px 8px; border: 0; background: 0; color: var(--ink-2); cursor: pointer;
}
.vr-readlist-toggle:hover { color: var(--ink); }
.vr-readlist-count {
	display: none;
	min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px;
	background: var(--accent); color: var(--accent-ink);
	font-family: var(--font-mono); font-size: 10px; font-weight: 600;
	align-items: center; justify-content: center;
}
.vr-readlist-toggle[data-count]:not([data-count="0"]) .vr-readlist-count { display: inline-flex; }

.vr-save-btn {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 6px 12px; border-radius: 999px;
	background: var(--bg-2); color: var(--ink-2);
	font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.04em;
	border: 0; cursor: pointer; transition: all .15s ease;
}
.vr-save-btn:hover { background: var(--bg-3); color: var(--ink); }
.vr-save-btn.is-saved { background: var(--accent); color: var(--accent-ink); }
.vr-save-btn svg { width: 14px; height: 14px; }

.vr-readlist-panel {
	position: fixed; top: 0; right: 0; bottom: 0; width: 420px; max-width: 100vw;
	background: var(--bg); border-left: 1px solid var(--line);
	z-index: 200; transform: translateX(100%);
	transition: transform .35s cubic-bezier(.2,.7,.3,1);
	display: flex; flex-direction: column;
	box-shadow: -20px 0 50px rgba(0,0,0,0.15);
}
.vr-readlist-panel.is-open { transform: translateX(0); }
.vr-readlist-header {
	padding: 24px 28px; border-bottom: 1px solid var(--line-soft);
	display: flex; align-items: center; justify-content: space-between;
}
.vr-readlist-header h2 { font-family: var(--font-display); font-weight: 800; font-size: 22px; margin: 0; }
.vr-readlist-close {
	width: 36px; height: 36px; border-radius: 999px;
	display: flex; align-items: center; justify-content: center;
	border: 1px solid var(--line); background: transparent; cursor: pointer;
}
.vr-readlist-close:hover { background: var(--bg-2); }
.vr-readlist-items { flex: 1; overflow-y: auto; padding: 8px 28px 28px; }
.vr-readlist-item {
	display: grid; grid-template-columns: 60px 1fr auto;
	gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line-soft);
	align-items: center;
}
.vr-readlist-item:last-child { border-bottom: 0; }
.vr-readlist-item-img { width: 60px; height: 60px; background: var(--bg-3); border-radius: 4px; overflow: hidden; }
.vr-readlist-item-img img { width: 100%; height: 100%; object-fit: cover; }
.vr-readlist-item-text { font-size: 14px; line-height: 1.4; color: var(--ink); font-weight: 500; min-width: 0; }
.vr-readlist-item-text small { display: block; color: var(--ink-3); font-family: var(--font-mono); font-size: 10px; margin-top: 4px; }
.vr-readlist-item-text a { color: inherit; }
.vr-readlist-item-text a:hover { color: var(--accent); }
.vr-readlist-remove {
	width: 28px; height: 28px; border-radius: 999px;
	border: 1px solid var(--line); background: transparent; color: var(--ink-3);
	display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.vr-readlist-remove:hover { color: var(--ember); border-color: var(--ember); }
.vr-readlist-empty { text-align: center; padding: 60px 20px; color: var(--ink-3); }
.vr-readlist-empty svg { width: 40px; height: 40px; margin-bottom: 14px; opacity: 0.4; }
.vr-readlist-backdrop {
	position: fixed; inset: 0; background: rgba(0,0,0,0.4);
	z-index: 199; opacity: 0; pointer-events: none;
	transition: opacity .35s;
}
.vr-readlist-backdrop.is-open { opacity: 1; pointer-events: auto; }

/* Entrance animations */
@media (prefers-reduced-motion: no-preference) {
	.vr-card-article, .vr-review-card, .vr-route-card, .vr-list-numbered li, .vr-pick {
		opacity: 0; transform: translateY(16px);
		transition: opacity .5s ease, transform .5s cubic-bezier(.2,.7,.3,1);
	}
	.vr-card-article.is-in, .vr-review-card.is-in, .vr-route-card.is-in,
	.vr-list-numbered li.is-in, .vr-pick.is-in { opacity: 1; transform: none; }
}

/* Sticky mobile newsletter */
.vr-mobile-newsletter {
	position: fixed; left: 0; right: 0; bottom: 0;
	z-index: 80;
	background: var(--ink); color: var(--bg);
	padding: 14px 16px; display: none;
	align-items: center; gap: 12px;
	transform: translateY(100%);
	transition: transform .35s cubic-bezier(.2,.7,.3,1);
	box-shadow: 0 -8px 30px rgba(0,0,0,0.2);
}
.vr-mobile-newsletter.is-open { transform: translateY(0); }
.vr-mobile-newsletter-text { flex: 1; min-width: 0; }
.vr-mobile-newsletter-text strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 13px; }
.vr-mobile-newsletter-text small { font-family: var(--font-mono); font-size: 10px; opacity: 0.7; }
.vr-mobile-newsletter .vr-btn { padding: 8px 14px; font-size: 11px; }
.vr-mobile-newsletter-close {
	width: 28px; height: 28px; border-radius: 999px;
	border: 1px solid rgba(255,255,255,0.2); background: transparent; color: var(--bg);
	display: flex; align-items: center; justify-content: center; cursor: pointer;
}
@media (max-width: 720px) { .vr-mobile-newsletter { display: flex; } }

/* Glossary tooltip */
.vr-glossary {
	border-bottom: 1.5px dotted var(--accent); cursor: help;
	position: relative;
}
.vr-glossary:hover::after, .vr-glossary:focus::after {
	content: attr(data-definition);
	position: absolute; bottom: calc(100% + 8px); left: 50%;
	transform: translateX(-50%);
	background: var(--ink); color: var(--bg);
	padding: 10px 14px; border-radius: 4px;
	font-family: var(--font-text); font-weight: 400;
	font-size: 12px; line-height: 1.45;
	white-space: normal; width: max-content; max-width: 320px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.18);
	z-index: 100; border-bottom: 0; letter-spacing: 0;
}
.vr-glossary:hover::before, .vr-glossary:focus::before {
	content: ''; position: absolute;
	bottom: calc(100% + 2px); left: 50%;
	transform: translateX(-50%) rotate(45deg);
	width: 8px; height: 8px; background: var(--ink); z-index: 100;
}

/* Random tip card */
.vr-random-tip {
	display: inline-flex; flex-direction: column; gap: 8px;
	padding: 18px 22px; background: var(--bg-2); border-radius: 4px;
	max-width: 480px; text-align: left;
}
.vr-random-tip .vr-eyebrow { font-size: 10px; }
.vr-random-tip p { margin: 0; font-size: 14px; color: var(--ink-2); line-height: 1.5; }

/* 404 better */
.vr-404-suggestions {
	margin-top: 56px;
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
	max-width: 900px; text-align: left;
}
@media (max-width: 720px) { .vr-404-suggestions { grid-template-columns: 1fr; } }

/* Print stylesheet */
@media print {
	.vr-site-header, .vr-footer, .vr-newsletter,
	.vr-share-rail, .vr-toc, .vr-reading-progress,
	.vr-mobile-newsletter, .vr-readlist-panel, .vr-readlist-backdrop,
	.vr-related, .vr-comments, .vr-save-btn { display: none !important; }
	body { color: #000; background: #fff; font-size: 11pt; line-height: 1.45; }
	.vr-article-body { padding: 0; max-width: none; font-size: 11pt; }
	.vr-article-header { padding: 0 0 16pt; }
	.vr-article-title { font-size: 24pt; }
	.vr-tldr { background: #f5f5f5; color: #000; border: 1pt solid #000; page-break-inside: avoid; }
	.vr-tldr * { color: #000 !important; }
	.vr-tldr strong { font-weight: 700; color: #000 !important; }
	.vr-callout { page-break-inside: avoid; border: 1pt solid #000; background: none; }
	blockquote, .wp-block-pullquote { page-break-inside: avoid; border-color: #000 !important; }
	.vr-article-body a::after { content: ' [' attr(href) ']'; font-size: 9pt; color: #666; }
	.vr-article-body a[href^="#"]::after, .vr-article-body a[href^="javascript"]::after { content: ''; }
	img { max-width: 100% !important; page-break-inside: avoid; }
	h2, h3 { page-break-after: avoid; }
}

/* Author bio social chips */
.vr-author-social { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }

/* Focus styles */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px; }
.vr-btn:focus-visible, .vr-share-btn:focus-visible, .vr-save-btn:focus-visible { outline-offset: 3px; }

/* ──────────────────────────────────────────────────────────────────────────
   v2.0 · 6-category system
   ──────────────────────────────────────────────────────────────────────── */

/* Category chip (carries its own accent via --cat-accent) */
.vr-cat-chip {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 4px 10px 4px 8px; border-radius: 999px;
	font-family: var(--font-display); font-weight: 700;
	font-size: 11px; letter-spacing: 0.04em;
	color: var(--cat-accent, var(--accent));
	background: color-mix(in oklch, var(--cat-accent, var(--accent)) 12%, var(--paper));
	box-shadow: inset 0 0 0 1px color-mix(in oklch, var(--cat-accent, var(--accent)) 35%, transparent);
	transition: background .15s ease, transform .15s ease;
}
.vr-cat-chip svg { width: 13px; height: 13px; flex: none; }
.vr-cat-chip:hover { color: var(--cat-accent, var(--accent)); background: color-mix(in oklch, var(--cat-accent, var(--accent)) 20%, var(--paper)); transform: translateY(-1px); }

/* Category archive header — icon badge + accent */
.vr-archive-cat-badge {
	display: inline-flex; align-items: center; justify-content: center;
	width: 56px; height: 56px; border-radius: 14px;
	color: var(--accent);
	background: color-mix(in oklch, var(--accent) 12%, var(--paper));
	box-shadow: inset 0 0 0 1.5px color-mix(in oklch, var(--accent) 35%, transparent);
	margin-bottom: 22px;
}
.vr-archive-cat-badge svg { width: 30px; height: 30px; }
.vr-cat-strip {
	display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px;
}
.vr-cat-strip a {
	display: inline-flex; align-items: center; gap: 7px;
	padding: 8px 14px; border-radius: 999px;
	font-family: var(--font-display); font-weight: 700; font-size: 12px;
	letter-spacing: 0.03em; color: var(--ink-2);
	background: var(--paper); box-shadow: inset 0 0 0 1px var(--line);
	transition: transform .15s ease, color .15s ease, box-shadow .15s ease;
}
.vr-cat-strip a svg { width: 15px; height: 15px; color: var(--ccol); }
.vr-cat-strip a:hover { transform: translateY(-1px); color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ccol); }
.vr-cat-strip a.is-active { color: var(--paper); background: var(--ccol); box-shadow: none; }
.vr-cat-strip a.is-active svg { color: currentColor; }

/* Discipline switch in header */
.vr-disc-switch { display: inline-flex; gap: 4px; align-items: center; }
.vr-disc-switch a {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 6px 11px; border-radius: 999px;
	font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em;
	color: var(--ink-2); background: var(--bg-2);
}
.vr-disc-switch a:hover { color: var(--ink); }
.vr-disc-switch a.is-bieg::before { content: ''; width: 6px; height: 6px; border-radius: 999px; background: var(--ember); }
.vr-disc-switch a.is-row::before { content: ''; width: 6px; height: 6px; border-radius: 999px; background: var(--moss); }

/* Recipe (Kuchnia) layout */
.vr-recipe-grid {
	display: grid; grid-template-columns: 1.1fr 1.6fr; gap: clamp(28px, 5vw, 64px);
	padding: 0 var(--pad); max-width: 1180px; margin: 0 auto;
	align-items: start;
}
@media (max-width: 880px) { .vr-recipe-grid { grid-template-columns: 1fr; } }
.vr-ingredients {
	background: var(--paper); border-radius: 8px; padding: 26px 28px;
	box-shadow: inset 0 0 0 1px var(--line); position: sticky; top: 92px;
}
.vr-ingredients h2 { margin: 10px 0 18px; }
.vr-ingredients ul { list-style: none; margin: 0; padding: 0; }
.vr-ingredients li {
	display: flex; justify-content: space-between; gap: 16px;
	padding: 11px 0; border-bottom: 1px solid var(--line-soft);
	font-size: 15px;
}
.vr-ingredients li:last-child { border-bottom: 0; }
.vr-ingredients li b { font-family: var(--font-mono); font-weight: 500; color: var(--ink-2); white-space: nowrap; }
.vr-recipe-steps ol { counter-reset: step; list-style: none; margin: 0; padding: 0; }
.vr-recipe-steps li {
	position: relative; padding: 0 0 26px 56px; margin: 0;
	font-size: 17px; line-height: 1.6; color: var(--ink-2);
}
.vr-recipe-steps li::before {
	counter-increment: step; content: counter(step, decimal-leading-zero);
	position: absolute; left: 0; top: -2px;
	font-family: var(--font-display); font-weight: 800; font-size: 18px;
	color: var(--accent);
	width: 38px; height: 38px; border-radius: 999px;
	display: inline-flex; align-items: center; justify-content: center;
	background: color-mix(in oklch, var(--accent) 12%, var(--paper));
}

/* Race (Wyścigi) facts box */
.vr-race-facts {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 1px; background: var(--line);
	border-radius: 8px; overflow: hidden; box-shadow: inset 0 0 0 1px var(--line);
}
.vr-race-facts .vr-fact { background: var(--bg); padding: 20px 22px; }
.vr-race-facts .vr-fact .vr-meta { margin-bottom: 8px; }
.vr-race-facts .vr-fact-v { font-family: var(--font-display); font-weight: 800; font-size: 24px; letter-spacing: -0.01em; }
.vr-race-status {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 7px 14px; border-radius: 999px;
	font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: 0.03em;
	color: var(--accent); background: color-mix(in oklch, var(--accent) 12%, var(--paper));
	box-shadow: inset 0 0 0 1px color-mix(in oklch, var(--accent) 35%, transparent);
}
.vr-race-status::before { content: ''; width: 7px; height: 7px; border-radius: 999px; background: var(--accent); }
.vr-race-reg {
	display: flex; align-items: center; justify-content: space-between; gap: 18px;
	flex-wrap: wrap; margin-top: 18px; padding: 16px 22px;
	background: var(--paper); border-radius: 8px; box-shadow: inset 0 0 0 1px var(--line);
}
.vr-recipe-notes { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line-soft); }
.vr-article-layout-narrow { display: block; max-width: 760px; margin: 0 auto; }
.vr-article-layout-narrow .vr-article-body { padding-left: 0; padding-right: 0; }
.vr-empty { padding: 48px var(--pad); color: var(--ink-3); font-size: 17px; }
