/* ==========================================================================
   Крипто Отзывы — editorial review hub
   Magazine + analytical dashboard. Density-first, mixed layouts.
   ========================================================================== */

:root {
	/* base palette — newspaper-night */
	--bg:           #0a0d12;
	--bg-2:         #11151c;
	--bg-3:         #181d26;
	--bg-card:      #11151c;
	--bg-elev:      #1a2029;
	--bg-tone:      #0e1218;

	--border:       #232a36;
	--border-2:     #2f3744;
	--rule:         #1a2029;

	--text:         #eaeef5;
	--text-soft:    #c0c7d3;
	--text-muted:   #828b9a;
	--text-faded:   #5d6573;
	--text-inv:     #0a0d12;

	/* brand */
	--accent:       #1199fa;
	--accent-hov:   #0d86e0;

	/* editorial gold */
	--ed:           #d4a574;
	--ed-soft:      rgba(212, 165, 116, 0.12);

	/* signal tones */
	--cyan:    #06b6d4;  --cyan-bg:  rgba(6, 182, 212, 0.10);
	--green:   #10b981;  --green-bg: rgba(16, 185, 129, 0.10);
	--amber:   #f59e0b;  --amber-bg: rgba(245, 158, 11, 0.10);
	--red:     #ef4444;  --red-bg:   rgba(239, 68, 68, 0.10);
	--blue:    #3b82f6;  --blue-bg:  rgba(59, 130, 246, 0.10);

	/* rating */
	--star: #fbbf24;

	/* layout */
	--container:  1280px;
	--container-narrow: 920px;
	--gutter: 28px;
	--r-xs: 3px;
	--r-sm: 5px;
	--r:    8px;
	--r-lg: 12px;
	--r-xl: 16px;

	/* fonts */
	--sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--serif: "Source Serif Pro", "Iowan Old Style", "Charter", "Georgia", "Times New Roman", serif;
	--mono:  ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.6;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--accent-hov); }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--serif);
	color: var(--text);
	line-height: 1.18;
	margin: 0 0 0.6em;
	font-weight: 700;
	letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.1rem, 4.2vw, 3.3rem); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.55rem, 2.6vw, 2.1rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; }
strong { color: var(--text); font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--rule); margin: 28px 0; }

code, kbd, .mono, .num { font-family: var(--mono); }
.num { font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }

.screen-reader-text { border:0; clip:rect(1px,1px,1px,1px); clip-path:inset(50%); height:1px; width:1px; margin:-1px; overflow:hidden; padding:0; position:absolute; }
.skip-link { position:absolute; top:-100px; left:1em; z-index:100000; background:var(--accent); color:#fff; padding:0.7em 1em; border-radius:var(--r); }
.skip-link:focus { top:1em; }

/* ==========================================================================
   Editorial labels (magazine eyebrows)
   ========================================================================== */
.editorial-label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--sans);
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--ed);
}
.editorial-label::before {
	content: "";
	display: inline-block;
	width: 24px; height: 1px;
	background: var(--ed);
}
.editorial-label--accent { color: var(--accent); }
.editorial-label--accent::before { background: var(--accent); }
.editorial-label--muted  { color: var(--text-muted); }
.editorial-label--muted::before { background: var(--text-muted); }

/* Issue header (magazine date stamp) */
.issue-stamp {
	display: flex;
	gap: 16px;
	align-items: baseline;
	padding: 14px 0;
	border-top: 1px solid var(--rule);
	border-bottom: 1px solid var(--rule);
	font-family: var(--mono);
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text-muted);
}
.issue-stamp strong { color: var(--text); font-weight: 600; }
.issue-stamp .dot { color: var(--ed); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
	display: inline-flex; align-items: center; justify-content: center;
	gap: 0.5em;
	padding: 0.7em 1.25em;
	border: 1px solid transparent;
	border-radius: var(--r);
	font-family: var(--sans);
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	transition: all 0.15s ease;
	text-decoration: none;
	white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hov); color: #fff; }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border-2); }
.btn-outline:hover { background: var(--bg-elev); border-color: var(--text-muted); color: var(--text); }
.btn-ghost { background: var(--bg-elev); color: var(--text); }
.btn-ghost:hover { background: var(--bg-3); }
.btn-ed { background: transparent; color: var(--ed); border-color: var(--ed); }
.btn-ed:hover { background: var(--ed-soft); color: var(--ed); }
.btn-lg { padding: 0.95em 1.6em; font-size: 1rem; }
.btn-sm { padding: 0.45em 0.85em; font-size: 0.83rem; }
.btn-block { width: 100%; }
.btn-link { background: transparent; padding: 0; color: var(--accent); text-decoration: none; }
.btn-link:hover { text-decoration: underline; }
.btn-link::after { content: " →"; }

/* ==========================================================================
   Site header
   ========================================================================== */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(10, 13, 18, 0.92);
	backdrop-filter: saturate(180%) blur(12px);
	-webkit-backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 24px; min-height: 64px; }
.site-branding { display: flex; align-items: center; }
.site-title {
	font-family: var(--serif);
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--text);
	letter-spacing: -0.01em;
	display: flex; align-items: center; gap: 10px;
}
.site-title::before {
	content: ""; display: inline-block;
	width: 22px; height: 22px;
	background:
		linear-gradient(135deg, var(--accent) 0%, var(--accent) 50%, transparent 50%, transparent 100%),
		var(--ed);
	border-radius: 2px;
}
.site-description { display: none; }

.main-navigation { flex: 1; }
.main-navigation ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 24px; }
.main-navigation a {
	color: var(--text-muted);
	font-weight: 500; font-size: 0.93rem;
	padding: 0.5em 0; transition: color 0.12s;
	position: relative;
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a { color: var(--text); }
.main-navigation .current-menu-item > a::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
	height: 1px; background: var(--ed);
}
.menu-toggle { display: none; background: transparent; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.menu-toggle-bar { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; }

/* ==========================================================================
   Magazine hero — editor's pick + INDEX list
   ========================================================================== */
.mag-hero {
	border-bottom: 1px solid var(--border);
	background:
		linear-gradient(180deg, var(--bg) 0%, var(--bg-tone) 100%);
	padding: 32px 0 48px;
}
.mag-hero-headline {
	font-family: var(--serif);
	font-size: clamp(2rem, 4.2vw, 3rem);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.1;
	margin: 18px 0 12px;
	max-width: 920px;
}
.mag-hero-deck {
	font-family: var(--serif);
	font-size: clamp(1.05rem, 1.4vw, 1.2rem);
	line-height: 1.5;
	color: var(--text-soft);
	max-width: 720px;
	margin-bottom: 36px;
}
.mag-hero-deck em { color: var(--ed); font-style: italic; }

.mag-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
	gap: 40px;
	align-items: stretch;
}

/* Editor's pick card */
.editors-pick {
	background: linear-gradient(165deg, var(--bg-card) 0%, var(--bg-2) 100%);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	overflow: hidden;
	display: grid;
	grid-template-rows: auto 1fr;
	position: relative;
}
.editors-pick::before {
	content: "";
	position: absolute; top: 0; left: 0;
	width: 4px; height: 100%;
	background: var(--ed);
}
.editors-pick-meta {
	display: flex; align-items: center; justify-content: space-between;
	padding: 16px 24px;
	border-bottom: 1px dashed var(--border);
	font-family: var(--mono);
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-muted);
}
.editors-pick-meta strong { color: var(--ed); font-weight: 700; }
.editors-pick-body {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 24px;
	padding: 24px;
	align-items: start;
}
.editors-pick-visual {
	background: var(--bg-3);
	border-radius: var(--r);
	aspect-ratio: 1;
	overflow: hidden;
	position: relative;
	display: flex; align-items: center; justify-content: center;
}
.editors-pick-visual img { width: 100%; height: 100%; object-fit: cover; }
.editors-pick-visual .placeholder-init {
	font-family: var(--serif); font-size: 5rem; font-weight: 800;
	color: var(--accent); opacity: 0.5;
}
.editors-pick-visual::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
	pointer-events: none;
}
.editors-pick-title {
	font-family: var(--serif);
	font-size: 1.8rem;
	margin: 0 0 6px;
	line-height: 1.1;
}
.editors-pick-title a { color: var(--text); }
.editors-pick-title a:hover { color: var(--accent); }
.editors-pick-verdict {
	font-family: var(--serif);
	font-style: italic;
	font-size: 1.05rem;
	color: var(--text-soft);
	margin: 4px 0 16px;
	line-height: 1.4;
	border-left: 2px solid var(--ed);
	padding-left: 12px;
}
.editors-pick-score {
	display: flex; align-items: baseline; gap: 12px;
	margin-bottom: 14px;
}
.editors-pick-score .grade {
	font-family: var(--serif);
	font-size: 2.6rem; font-weight: 800; line-height: 1;
	color: var(--accent);
	font-variant-numeric: tabular-nums;
}
.editors-pick-score .out-of { color: var(--text-faded); font-family: var(--mono); }
.editors-pick-score .count { font-size: 0.85rem; color: var(--text-muted); margin-left: auto; }

.editors-pick-facts {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	margin: 0 0 16px;
	border-top: 1px solid var(--border);
}
.editors-pick-facts > div {
	padding: 10px 0;
	border-bottom: 1px solid var(--border);
	display: flex; justify-content: space-between;
	font-size: 0.85rem;
}
.editors-pick-facts > div:nth-child(odd)  { border-right: 1px solid var(--border); padding-right: 12px; }
.editors-pick-facts > div:nth-child(even) { padding-left: 12px; }
.editors-pick-facts span { color: var(--text-muted); }
.editors-pick-facts strong { color: var(--text); font-family: var(--mono); font-weight: 600; }

.editors-pick-cta { display: flex; gap: 8px; flex-wrap: wrap; }

/* INDEX top-10 sidebar */
.index-list {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	overflow: hidden;
	display: flex; flex-direction: column;
}
.index-list-head {
	padding: 16px 20px;
	border-bottom: 1px solid var(--border);
	display: flex; justify-content: space-between; align-items: center;
	font-family: var(--mono);
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--text-muted);
}
.index-list-head strong { color: var(--text); }
.index-list-head .pulse {
	display: inline-flex; align-items: center; gap: 6px;
	color: var(--green);
}
.index-list-head .pulse::before {
	content: ""; width: 6px; height: 6px; border-radius: 50%;
	background: var(--green); box-shadow: 0 0 6px var(--green);
	animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.index-row {
	display: grid;
	grid-template-columns: 28px minmax(0,1fr) 50px 36px;
	align-items: center;
	gap: 12px;
	padding: 10px 20px;
	border-bottom: 1px solid var(--rule);
	transition: background 0.12s;
}
.index-row:last-child { border-bottom: 0; }
.index-row:hover { background: var(--bg-elev); }
.index-row a { color: var(--text); display: contents; }
.index-row .rank {
	font-family: var(--mono); font-size: 0.78rem; font-weight: 600;
	color: var(--text-faded); text-align: right;
}
.index-row .name { font-weight: 600; font-size: 0.95rem; }
.index-row .score {
	font-family: var(--mono); font-size: 0.88rem; font-weight: 700;
	color: var(--star); text-align: right;
	font-variant-numeric: tabular-nums;
}
.index-row .trend {
	font-family: var(--mono); font-size: 0.75rem;
	text-align: right; padding: 2px 6px; border-radius: var(--r-xs);
}
.index-row .trend--up    { color: var(--green); background: var(--green-bg); }
.index-row .trend--down  { color: var(--red);   background: var(--red-bg);   }
.index-row .trend--flat  { color: var(--text-muted); }
.index-list-foot {
	padding: 14px 20px;
	border-top: 1px solid var(--border);
	text-align: center;
	margin-top: auto;
}
.index-list-foot a { font-size: 0.85rem; font-weight: 600; }

/* ==========================================================================
   News ticker
   ========================================================================== */
.ticker {
	background: var(--bg-2);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 10px 0;
	overflow: hidden;
	position: relative;
}
.ticker-inner {
	display: flex; align-items: center; gap: 32px;
	white-space: nowrap;
	animation: ticker-scroll 60s linear infinite;
}
.ticker:hover .ticker-inner { animation-play-state: paused; }
@keyframes ticker-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
.ticker-tag {
	font-family: var(--mono);
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	padding: 3px 10px;
	background: var(--red);
	color: #fff;
	border-radius: var(--r-xs);
	margin-right: 4px;
	flex-shrink: 0;
}
.ticker-item {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 0.88rem;
	color: var(--text-soft);
}
.ticker-item a { color: var(--text); }
.ticker-item a:hover { color: var(--accent); }
.ticker-item .num { color: var(--ed); font-weight: 600; }
.ticker-divider { color: var(--border-2); font-family: var(--mono); }

/* ==========================================================================
   Section structure (editorial)
   ========================================================================== */
.section { padding: clamp(40px, 6vw, 72px) 0; }
.section--alt { background: var(--bg-tone); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }

.section-head {
	margin-bottom: 32px;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	gap: 16px;
	padding-bottom: 16px;
	border-bottom: 2px solid var(--border);
}
.section-head h2 {
	margin: 6px 0 0;
	font-size: clamp(1.6rem, 2.6vw, 2.1rem);
}
.section-head .links a { font-size: 0.88rem; color: var(--accent); }

.section-heading {
	font-family: var(--serif);
	font-size: 1.5rem;
	margin: 0 0 1em;
	padding-bottom: 0.4em;
	border-bottom: 2px solid var(--border);
	position: relative;
}
.section-heading::after {
	content: ""; position: absolute; bottom: -2px; left: 0;
	width: 64px; height: 2px;
	background: var(--accent);
}

/* ==========================================================================
   Topic clusters — mixed layout (1 big + list)
   ========================================================================== */
.cluster {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 32px;
	align-items: start;
}
.cluster-lead {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	overflow: hidden;
	transition: border-color 0.15s;
}
.cluster-lead:hover { border-color: var(--border-2); }
.cluster-lead-visual {
	aspect-ratio: 16/9;
	background: var(--bg-3);
	overflow: hidden;
}
.cluster-lead-visual img { width: 100%; height: 100%; object-fit: cover; }
.cluster-lead-body { padding: 24px; }
.cluster-lead-body h3 {
	font-size: 1.6rem; margin-bottom: 10px;
	font-family: var(--serif);
}
.cluster-lead-body h3 a { color: var(--text); }
.cluster-lead-body h3 a:hover { color: var(--accent); }
.cluster-lead-body p { color: var(--text-soft); margin-bottom: 14px; }

.cluster-list {
	display: flex; flex-direction: column;
	gap: 0;
}
.cluster-item {
	display: grid;
	grid-template-columns: 50px minmax(0,1fr);
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid var(--rule);
	align-items: start;
}
.cluster-item:first-child { padding-top: 0; }
.cluster-item:last-child { border-bottom: 0; }
.cluster-item .num-big {
	font-family: var(--serif);
	font-size: 2rem;
	font-weight: 800;
	color: var(--ed);
	line-height: 1;
	font-variant-numeric: tabular-nums;
}
.cluster-item h4 {
	font-size: 1rem; margin: 0 0 6px;
	line-height: 1.3;
	font-family: var(--serif);
}
.cluster-item h4 a { color: var(--text); }
.cluster-item h4 a:hover { color: var(--accent); }
.cluster-item .meta {
	font-family: var(--mono); font-size: 0.75rem;
	color: var(--text-faded); text-transform: uppercase; letter-spacing: 0.08em;
}

/* ==========================================================================
   Exchange detailed card (catalog grid)
   ========================================================================== */
.exchanges-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
	gap: 16px;
}

.exchange-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 20px;
	transition: all 0.18s ease;
	display: flex;
	flex-direction: column;
	position: relative;
}
.exchange-card:hover {
	transform: translateY(-2px);
	border-color: var(--border-2);
	background: var(--bg-elev);
}

.exchange-card-row {
	display: grid;
	grid-template-columns: 40px 1fr auto;
	gap: 14px;
	align-items: center;
	margin-bottom: 14px;
}
.exchange-card-rank {
	font-family: var(--serif);
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--ed);
	line-height: 1;
	text-align: center;
	font-variant-numeric: tabular-nums;
}
.exchange-card-logo {
	width: 44px; height: 44px;
	border-radius: var(--r-sm);
	background: var(--bg-3);
	object-fit: cover;
	flex-shrink: 0;
}
.exchange-card-logo--placeholder {
	display: flex; align-items: center; justify-content: center;
	font-family: var(--serif);
	font-size: 1.3rem; font-weight: 800; color: var(--accent);
	background: rgba(17, 153, 250, 0.1);
}
.exchange-card-title {
	font-family: var(--serif);
	font-size: 1.15rem; margin: 0; color: var(--text); font-weight: 700;
	line-height: 1.2;
}
.exchange-card-title a { color: var(--text); }
.exchange-card-title a:hover { color: var(--accent); }
.exchange-card-tagline { font-size: 0.78rem; color: var(--text-faded); margin-top: 2px; }

.exchange-card-grade {
	font-family: var(--serif);
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--accent);
	font-variant-numeric: tabular-nums;
	line-height: 1;
}
.exchange-card-grade small {
	font-family: var(--mono);
	font-size: 0.75rem;
	color: var(--text-faded);
	display: block;
	margin-top: 2px;
	font-weight: 400;
}

.exchange-card-bars {
	display: grid; gap: 6px;
	margin-bottom: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--rule);
}
.exchange-card-bar {
	display: grid;
	grid-template-columns: 80px 1fr 30px;
	gap: 10px; align-items: center;
	font-size: 0.78rem;
}
.exchange-card-bar .label { color: var(--text-muted); }
.exchange-card-bar .bar {
	height: 4px; border-radius: 2px;
	background: var(--bg-3);
	overflow: hidden;
}
.exchange-card-bar .bar > span {
	display: block; height: 100%;
	background: linear-gradient(90deg, var(--accent), var(--cyan));
	border-radius: 2px;
}
.exchange-card-bar .value {
	font-family: var(--mono); font-weight: 600;
	color: var(--text); text-align: right;
	font-variant-numeric: tabular-nums; font-size: 0.78rem;
}

.exchange-card-badges {
	display: flex; flex-wrap: wrap; gap: 5px;
	margin-bottom: 14px; min-height: 22px;
}
.badge {
	display: inline-flex; align-items: center; gap: 4px;
	font-family: var(--sans);
	font-size: 0.68rem; font-weight: 700;
	padding: 3px 8px;
	border-radius: var(--r-xs);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	white-space: nowrap;
	border: 1px solid currentColor;
	border-color: transparent;
}
.badge-cyan  { background: var(--cyan-bg);  color: var(--cyan);  }
.badge-green { background: var(--green-bg); color: var(--green); }
.badge-amber { background: var(--amber-bg); color: var(--amber); }
.badge-red   { background: var(--red-bg);   color: var(--red);   }
.badge-blue  { background: var(--blue-bg);  color: var(--blue);  }

.exchange-card-actions {
	display: grid; grid-template-columns: 1fr 1fr;
	gap: 8px; margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid var(--rule);
}

/* Compact card */
.exchange-card--compact {
	display: grid;
	grid-template-columns: 36px 1fr auto;
	gap: 12px; align-items: center;
	padding: 12px 14px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--r);
	transition: border-color 0.15s;
}
.exchange-card--compact:hover { border-color: var(--border-2); }
.exchange-card--compact .exchange-card-logo { width: 36px; height: 36px; }
.exchange-card--compact .compact-meta { display: flex; flex-direction: column; min-width: 0; }
.exchange-card--compact .exchange-card-title { font-size: 0.92rem; margin: 0; font-family: var(--sans); }
.exchange-card--compact a { color: var(--text); }
.exchange-card--compact a:hover { color: var(--accent); }

/* Warning card */
.exchange-card--warning::before {
	content: "ВНИМАНИЕ";
	position: absolute; top: -1px; right: -1px;
	font-family: var(--mono); font-size: 0.65rem;
	font-weight: 700; letter-spacing: 0.1em;
	padding: 4px 10px;
	background: var(--red); color: #fff;
	border-radius: 0 var(--r-lg) 0 var(--r);
}

/* ==========================================================================
   Rating stars (kept for inline use)
   ========================================================================== */
.rating-stars {
	display: inline-block; position: relative;
	font-family: Arial, sans-serif; letter-spacing: 2px; line-height: 1;
}
.rating-stars-bg { color: var(--border-2); }
.rating-stars-fg { position: absolute; top: 0; left: 0; color: var(--star); overflow: hidden; white-space: nowrap; }
.rating-value { font-family: var(--mono); font-weight: 700; color: var(--text); margin-left: 6px; font-variant-numeric: tabular-nums; }
.rating-count { color: var(--text-muted); font-size: 0.85em; margin-left: 4px; }

.rating-input { display: inline-flex; gap: 4px; }
.rating-star-btn { background: transparent; border: 0; color: var(--border-2); font-size: 2rem; cursor: pointer; padding: 0 2px; transition: color 0.1s; line-height: 1; }
.rating-star-btn:hover, .rating-star-btn.is-hover, .rating-star-btn.is-active { color: var(--star); }

/* ==========================================================================
   Verdict block (single exchange — Wirecutter-style)
   ========================================================================== */
.verdict {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 32px;
	padding: 32px;
	background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-tone) 100%);
	border: 1px solid var(--border);
	border-left: 4px solid var(--ed);
	border-radius: var(--r-lg);
	margin: 24px 0;
	position: relative;
}
.verdict-quote-mark {
	position: absolute;
	top: 16px; right: 24px;
	font-family: var(--serif);
	font-size: 6rem;
	color: var(--ed);
	opacity: 0.18;
	line-height: 0.7;
	font-style: italic;
	pointer-events: none;
}
.verdict-grade {
	font-family: var(--serif);
	font-size: 5rem;
	font-weight: 800;
	color: var(--accent);
	line-height: 0.9;
	font-variant-numeric: tabular-nums;
	margin-bottom: 8px;
}
.verdict-grade small { font-family: var(--mono); font-size: 1.1rem; color: var(--text-faded); }
.verdict-meta { font-family: var(--mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.verdict-meta div + div { margin-top: 4px; }
.verdict-summary {
	font-family: var(--serif);
	font-size: 1.25rem;
	line-height: 1.5;
	color: var(--text);
	margin: 0 0 16px;
}
.verdict-bottom-line {
	font-family: var(--serif);
	font-style: italic;
	font-size: 1.05rem;
	color: var(--text-soft);
	margin: 0 0 16px;
	border-left: 2px solid var(--ed);
	padding-left: 14px;
}
.verdict-signature {
	display: flex; align-items: center; gap: 12px;
	padding-top: 16px;
	border-top: 1px solid var(--border);
	font-family: var(--mono);
	font-size: 0.78rem;
	color: var(--text-muted);
}
.verdict-signature .by { color: var(--text-faded); }
.verdict-signature .who { color: var(--text); font-weight: 600; font-family: var(--sans); }

/* Score breakdown — horizontal bars */
.score-breakdown {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 24px;
	margin: 24px 0;
}
.score-breakdown-head {
	display: flex; justify-content: space-between; align-items: baseline;
	margin-bottom: 18px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--border);
}
.score-breakdown-head h3 { font-size: 1.1rem; margin: 0; font-family: var(--serif); }
.score-breakdown-head .stamp { font-family: var(--mono); font-size: 0.72rem; color: var(--text-faded); text-transform: uppercase; letter-spacing: 0.08em; }
.score-row {
	display: grid;
	grid-template-columns: 160px 1fr 60px;
	align-items: center;
	gap: 14px;
	padding: 10px 0;
	border-bottom: 1px dashed var(--rule);
}
.score-row:last-child { border-bottom: 0; }
.score-row .cat { display: flex; flex-direction: column; }
.score-row .cat .label { font-weight: 600; color: var(--text); font-size: 0.92rem; }
.score-row .cat .hint  { font-size: 0.75rem; color: var(--text-faded); }
.score-row .bar-wrap {
	height: 8px; background: var(--bg-3);
	border-radius: 4px; overflow: hidden;
	position: relative;
}
.score-row .bar-fill {
	height: 100%;
	border-radius: 4px;
	transition: width 0.4s ease;
}
.score-row[data-tone="green"] .bar-fill { background: linear-gradient(90deg, var(--green), var(--cyan)); }
.score-row[data-tone="amber"] .bar-fill { background: linear-gradient(90deg, var(--amber), #fbbf24); }
.score-row[data-tone="red"]   .bar-fill { background: linear-gradient(90deg, var(--red), var(--amber)); }
.score-row[data-tone="blue"]  .bar-fill { background: linear-gradient(90deg, var(--accent), var(--cyan)); }
.score-row .num {
	font-family: var(--mono); font-weight: 700;
	color: var(--text); text-align: right;
	font-variant-numeric: tabular-nums;
}

/* Dense facts table (single exchange) */
.facts-table {
	width: 100%;
	border-collapse: collapse;
	margin: 24px 0;
}
.facts-table tr {
	border-bottom: 1px solid var(--rule);
}
.facts-table tr:last-child { border-bottom: 0; }
.facts-table th, .facts-table td {
	padding: 12px 16px;
	text-align: left;
	vertical-align: top;
	font-size: 0.92rem;
}
.facts-table th {
	font-family: var(--sans);
	color: var(--text-muted);
	font-weight: 500;
	width: 36%;
	background: transparent;
	border-right: 1px solid var(--rule);
}
.facts-table td {
	color: var(--text);
	font-family: var(--mono);
	font-weight: 500;
}
.facts-table tr:nth-child(odd) { background: var(--bg-tone); }

/* ==========================================================================
   Pros / Cons / Risks
   ========================================================================== */
.pros-cons {
	display: grid; grid-template-columns: 1fr 1fr;
	gap: 0;
	margin: 24px 0;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	overflow: hidden;
}
.pros-cons-block {
	padding: 24px;
}
.pros-cons-block + .pros-cons-block { border-left: 1px solid var(--border); }
.pros-cons-block h3 {
	font-size: 1rem;
	margin: 0 0 14px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--border);
	display: flex; align-items: center; gap: 8px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-family: var(--sans);
	font-weight: 700;
	font-size: 0.82rem;
}
.pros-cons-block--pros h3 { color: var(--green); border-bottom-color: var(--green); }
.pros-cons-block--cons h3 { color: var(--red); border-bottom-color: var(--red); }
.pros-cons-block ul { list-style: none; padding: 0; margin: 0; }
.pros-cons-block li {
	padding: 8px 0 8px 28px;
	position: relative;
	font-size: 0.95rem;
	color: var(--text-soft);
}
.pros-cons-block--pros li::before {
	content: "+"; position: absolute; left: 0; top: 8px;
	width: 20px; height: 20px; border-radius: 50%;
	background: var(--green-bg); color: var(--green);
	text-align: center; line-height: 20px; font-weight: 800;
}
.pros-cons-block--cons li::before {
	content: "−"; position: absolute; left: 0; top: 8px;
	width: 20px; height: 20px; border-radius: 50%;
	background: var(--red-bg); color: var(--red);
	text-align: center; line-height: 20px; font-weight: 800;
}

.risks-block {
	background: linear-gradient(135deg, var(--red-bg), var(--bg-card));
	border: 1px solid rgba(239, 68, 68, 0.25);
	border-left: 4px solid var(--red);
	border-radius: var(--r);
	padding: 22px;
	margin: 24px 0;
}
.risks-block h3 {
	color: var(--red); margin: 0 0 12px;
	font-family: var(--sans);
	font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em;
	font-weight: 700;
	display: flex; align-items: center; gap: 8px;
}
.risks-block ul { padding-left: 20px; margin: 0; }
.risks-block li { color: var(--text-soft); margin-bottom: 6px; font-size: 0.95rem; }

/* ==========================================================================
   TOC
   ========================================================================== */
.toc {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-left: 3px solid var(--accent);
	border-radius: var(--r);
	padding: 18px 22px;
	margin: 24px 0;
}
.toc-title {
	font-family: var(--mono);
	font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
	letter-spacing: 0.1em; color: var(--text-muted);
	margin: 0 0 10px;
}
.toc-list { list-style: none; padding: 0; margin: 0; counter-reset: toc; }
.toc-list li { padding: 5px 0; counter-increment: toc; }
.toc-list li::before {
	content: counter(toc, decimal-leading-zero) ". ";
	font-family: var(--mono);
	color: var(--accent); font-weight: 700;
	font-variant-numeric: tabular-nums; font-size: 0.85rem;
}
.toc-list a { color: var(--text-soft); font-size: 0.94rem; }
.toc-list a:hover { color: var(--accent); }
.toc-list .toc-h3 { padding-left: 14px; }
.toc-list .toc-h3::before { content: "›"; color: var(--text-faded); font-family: var(--sans); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { display: grid; gap: 0; margin: 24px 0; border-top: 1px solid var(--border); }
.faq-item {
	border-bottom: 1px solid var(--border);
	background: transparent;
}
.faq-item summary {
	cursor: pointer;
	padding: 18px 0;
	font-family: var(--serif);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text);
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 32px;
	align-items: center; gap: 16px;
	transition: color 0.12s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
	content: "+";
	font-family: var(--mono); font-weight: 400;
	font-size: 1.6rem; color: var(--ed);
	text-align: center; line-height: 1;
	transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--accent); }
.faq-item-body {
	padding: 0 0 20px;
	color: var(--text-soft);
	font-family: var(--serif);
	font-size: 1.02rem;
	line-height: 1.6;
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */
.breadcrumbs {
	padding: 16px 0;
	font-family: var(--mono);
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--text-faded);
}
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumbs li { display: flex; align-items: center; gap: 6px; }
.breadcrumbs li + li::before { content: "/"; color: var(--text-faded); }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs li:last-child { color: var(--ed); }

/* ==========================================================================
   Comparison
   ========================================================================== */
.comparison-table-wrap { overflow-x: auto; margin: 24px 0; border: 1px solid var(--border); border-radius: var(--r-lg); }
.comparison-table {
	width: 100%; border-collapse: collapse;
	background: var(--bg-card);
	min-width: 720px;
}
.comparison-table th, .comparison-table td {
	padding: 14px 18px;
	text-align: left;
	border-bottom: 1px solid var(--rule);
	vertical-align: top;
}
.comparison-table th {
	background: var(--bg-2);
	font-family: var(--serif);
	font-weight: 700;
	font-size: 1rem;
	color: var(--text);
}
.comparison-table th:first-child { font-family: var(--sans); color: var(--text-muted); font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; }
.comparison-table tr:last-child td { border-bottom: 0; }
.comparison-table td:first-child {
	color: var(--text-muted); font-size: 0.85rem;
	font-family: var(--sans); font-weight: 500;
	width: 26%;
}
.comparison-table td { font-family: var(--mono); font-size: 0.9rem; color: var(--text); }

/* ==========================================================================
   Layout with sidebar
   ========================================================================== */
.layout-with-sidebar {
	display: grid;
	grid-template-columns: minmax(0,1fr) 320px;
	gap: 48px;
	padding-top: 32px; padding-bottom: 48px;
}
.content-area { min-width: 0; }

.entry-content { font-family: var(--serif); font-size: 1.08rem; line-height: 1.7; }
.entry-content p, .entry-content ul, .entry-content ol { margin-bottom: 1.2em; }
.entry-content img { border-radius: var(--r); margin: 1.6em 0; }
.entry-content h2 {
	margin-top: 1.8em;
	padding-bottom: 0.4em;
	border-bottom: 1px solid var(--border);
}
.entry-content h3 { margin-top: 1.6em; }
.entry-content blockquote {
	border: 0;
	margin: 1.6em 0;
	padding: 16px 24px;
	font-family: var(--serif);
	font-style: italic;
	font-size: 1.25rem;
	line-height: 1.5;
	color: var(--text);
	border-left: 3px solid var(--ed);
	background: var(--bg-tone);
	border-radius: 0 var(--r) var(--r) 0;
}
.entry-content blockquote p:last-child { margin-bottom: 0; }
.entry-content > p:first-of-type::first-letter {
	font-family: var(--serif);
	font-size: 3.6em;
	font-weight: 800;
	float: left;
	line-height: 0.85;
	padding: 0.08em 0.12em 0 0;
	color: var(--ed);
}

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews-section { padding: 24px 0; }
.reviews-header {
	display: flex; flex-wrap: wrap; justify-content: space-between;
	align-items: end; gap: 16px; margin-bottom: 24px;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--border);
}
.reviews-summary-rating { display: flex; align-items: baseline; gap: 14px; }
.reviews-summary-value {
	font-family: var(--serif);
	font-size: 2.4rem; font-weight: 800;
	color: var(--accent); line-height: 1;
	font-variant-numeric: tabular-nums;
}
.reviews-summary-count {
	color: var(--text-muted);
	font-family: var(--mono); font-size: 0.85rem;
}

.reviews-list { list-style: none; padding: 0; margin: 0 0 36px; }
.review-item {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 20px;
	margin-bottom: 14px;
	transition: border-color 0.2s;
}
.review-item:hover { border-color: var(--border-2); }
.review-item-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 14px; }
.review-item-author { display: flex; gap: 12px; align-items: center; }
.review-item-author img { border-radius: 50%; width: 40px; height: 40px; }
.review-item-name { font-weight: 600; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.review-verified-badge {
	font-family: var(--mono);
	font-size: 0.65rem; font-weight: 700;
	padding: 2px 8px; border-radius: var(--r-xs);
	background: var(--cyan-bg); color: var(--cyan);
	text-transform: uppercase; letter-spacing: 0.08em;
}
.review-item-date {
	font-family: var(--mono);
	font-size: 0.75rem; color: var(--text-faded);
	margin-top: 4px; display: block;
}
.review-item-body { color: var(--text-soft); font-family: var(--serif); font-size: 1rem; line-height: 1.6; }
.review-item-proscons { margin-top: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.review-item-pros, .review-item-cons {
	padding: 12px 14px; border-radius: var(--r); font-size: 0.9rem;
}
.review-item-pros { background: var(--green-bg); border-left: 3px solid var(--green); }
.review-item-cons { background: var(--red-bg); border-left: 3px solid var(--red); }
.review-item-pros strong { color: var(--green); }
.review-item-cons strong { color: var(--red); }

.reviews-empty {
	text-align: center; padding: 48px 24px;
	color: var(--text-muted);
	background: var(--bg-card); border-radius: var(--r-lg);
	border: 1px dashed var(--border);
	font-family: var(--serif); font-style: italic;
}

/* ==========================================================================
   Forms
   ========================================================================== */
.review-form-wrapper {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 28px;
}
.review-form-title { margin-top: 0; font-family: var(--serif); }
.review-form-intro { color: var(--text-muted); margin-bottom: 20px; font-family: var(--serif); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { margin-bottom: 16px; }
.form-field label {
	display: block; margin-bottom: 6px;
	font-family: var(--sans); font-weight: 600; font-size: 0.82rem;
	color: var(--text); text-transform: uppercase; letter-spacing: 0.06em;
}
.form-field .required { color: var(--red); }
.form-field input[type=text], .form-field input[type=email], .form-field input[type=url],
.form-field input[type=number], .form-field input[type=search],
.form-field textarea, .form-field select {
	width: 100%;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--r);
	padding: 11px 13px;
	color: var(--text);
	font-family: var(--sans);
	font-size: 0.95rem;
	transition: border-color 0.15s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
	outline: none; border-color: var(--accent);
}
.form-field textarea { resize: vertical; min-height: 80px; font-family: var(--serif); }
.form-actions { display: flex; align-items: center; gap: 16px; margin-top: 20px; }
.form-message { font-size: 0.9rem; font-family: var(--mono); }
.form-message.success { color: var(--green); }
.form-message.error { color: var(--red); }
.form-logged-in {
	background: var(--cyan-bg); border-radius: var(--r);
	padding: 12px 16px; font-size: 0.9rem; color: var(--text); margin-bottom: 16px;
	border-left: 3px solid var(--cyan);
}

.search-form { display: flex; gap: 8px; }
.search-field {
	flex: 1;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--r);
	padding: 11px 13px; color: var(--text); font-size: 0.95rem;
}
.search-field:focus { outline: none; border-color: var(--accent); }

/* ==========================================================================
   Archive
   ========================================================================== */
.archive-hero {
	padding: 32px 0 24px;
	background: var(--bg-tone);
	border-bottom: 1px solid var(--border);
}
.archive-title { margin: 8px 0; }
.archive-intro { color: var(--text-soft); max-width: 720px; font-family: var(--serif); font-size: 1.05rem; }

.archive-toolbar {
	display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
	padding: 16px 0; margin-bottom: 20px;
	border-bottom: 1px solid var(--border);
	font-family: var(--mono);
	font-size: 0.85rem;
}
.archive-toolbar label { color: var(--text-muted); margin-right: 4px; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.75rem; }
.archive-toolbar select, .archive-toolbar input[type=search] {
	background: var(--bg-card); border: 1px solid var(--border);
	border-radius: var(--r); padding: 8px 12px; color: var(--text);
	font-family: var(--mono);
}

/* Pagination */
.pagination, .nav-links {
	display: flex; justify-content: center; gap: 6px;
	margin: 36px 0; flex-wrap: wrap;
	font-family: var(--mono);
}
.page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 36px; height: 36px; padding: 0 12px;
	border-radius: var(--r-sm);
	background: var(--bg-card); border: 1px solid var(--border);
	color: var(--text); font-weight: 600; text-decoration: none;
	transition: all 0.15s;
}
.page-numbers:hover { background: var(--bg-elev); color: var(--text); }
.page-numbers.current { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ==========================================================================
   Sidebar widgets
   ========================================================================== */
.widget-area .widget {
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--border);
	padding: 0 0 20px;
	margin-bottom: 20px;
}
.widget-area .widget:last-child { border-bottom: 0; }
.widget-title {
	font-family: var(--mono);
	font-size: 0.72rem; font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--ed);
	margin-bottom: 14px;
}
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget li { padding: 8px 0; border-bottom: 1px solid var(--rule); }
.widget li:last-child { border-bottom: 0; }
.widget a { color: var(--text-soft); }
.widget a:hover { color: var(--accent); }

/* ==========================================================================
   Trust block — editorial signature card
   ========================================================================== */
.trust-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 36px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
}
.trust-card-head h2 { font-family: var(--serif); font-size: 1.8rem; margin: 12px 0 14px; }
.trust-card-head p { font-family: var(--serif); font-size: 1.05rem; color: var(--text-soft); line-height: 1.5; }
.trust-signature {
	margin-top: 24px;
	padding-top: 18px;
	border-top: 1px solid var(--border);
	font-family: var(--mono);
	font-size: 0.78rem;
	color: var(--text-muted);
}
.trust-signature .who { color: var(--text); font-weight: 600; font-family: var(--sans); font-size: 0.95rem; display: block; margin-bottom: 4px; }
.trust-card-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.trust-card-list li {
	display: grid; grid-template-columns: 30px 1fr;
	gap: 12px; align-items: start;
	font-family: var(--serif); font-size: 1.02rem; color: var(--text-soft);
	padding-bottom: 12px; border-bottom: 1px dashed var(--rule);
}
.trust-card-list li:last-child { border-bottom: 0; }
.trust-card-list li::before {
	content: ""; counter-increment: trust;
	font-family: var(--mono);
	color: var(--ed); font-weight: 800;
	font-variant-numeric: tabular-nums;
	font-size: 0.95rem;
}
.trust-card-list { counter-reset: trust; }
.trust-card-list li::before { content: counter(trust, decimal-leading-zero); }

/* ==========================================================================
   Methodology — editorial numbered list
   ========================================================================== */
.methodology-list {
	counter-reset: meth;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}
.methodology-item {
	counter-increment: meth;
	padding: 24px 24px 24px 32px;
	background: var(--bg-card);
	border-top: 3px solid var(--ed);
	position: relative;
	border-radius: 0 0 var(--r) var(--r);
}
.methodology-item::before {
	content: counter(meth, decimal-leading-zero);
	font-family: var(--serif);
	font-size: 3rem; font-weight: 800;
	color: var(--ed); opacity: 0.4;
	position: absolute; top: 12px; right: 18px;
	line-height: 1;
}
.methodology-item h3 {
	font-family: var(--serif);
	font-size: 1.15rem;
	margin: 0 0 8px;
}
.methodology-item p {
	font-family: var(--serif);
	color: var(--text-soft);
	font-size: 0.98rem;
	margin: 0 0 12px;
	line-height: 1.5;
}
.methodology-weight {
	font-family: var(--mono);
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--accent);
	padding: 4px 8px;
	background: rgba(17, 153, 250, 0.08);
	border-radius: var(--r-xs);
	display: inline-block;
}

/* Disclaimer banner */
.disclaimer-banner {
	background: var(--amber-bg);
	border: 1px solid rgba(245, 158, 11, 0.25);
	border-left: 4px solid var(--amber);
	border-radius: var(--r);
	padding: 14px 18px;
	font-size: 0.9rem;
	color: var(--text-soft);
	display: flex; gap: 14px; align-items: flex-start;
	margin: 16px 0;
}
.disclaimer-banner::before {
	content: "⚠";
	flex-shrink: 0;
	font-size: 1.1rem;
	color: var(--amber);
	line-height: 1;
	padding-top: 2px;
}
.disclaimer-banner strong { color: var(--amber); }

/* ==========================================================================
   CTA strip (refined, less SaaS)
   ========================================================================== */
.cta-strip {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-top: 3px solid var(--ed);
	border-radius: var(--r-lg);
	padding: 28px;
	margin: 32px 0;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 28px;
	align-items: center;
}
.cta-strip h3 { font-family: var(--serif); margin: 0 0 6px; font-size: 1.4rem; }
.cta-strip p { color: var(--text-soft); margin: 0; font-family: var(--serif); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
	background: var(--bg-tone);
	border-top: 1px solid var(--border);
	padding: 48px 0 24px;
	margin-top: 64px;
}
.footer-widgets {
	display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 32px; margin-bottom: 32px;
}
.footer-brand p { font-size: 0.92rem; color: var(--text-muted); }
.footer-navigation ul { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
.footer-navigation a { color: var(--text-muted); font-size: 0.9rem; }
.site-info {
	text-align: center; color: var(--text-faded);
	font-family: var(--mono); font-size: 0.78rem;
	padding-top: 24px; border-top: 1px solid var(--border);
}
.site-info .disclaimer {
	max-width: 720px; margin: 8px auto 0;
	font-family: var(--serif); font-size: 0.82rem; line-height: 1.5; font-style: italic;
}

/* 404 */
.error-404 { text-align: center; padding: 80px 0; }
.error-404 .page-title {
	font-family: var(--serif);
	font-size: clamp(5rem, 12vw, 8rem);
	color: var(--ed); margin: 0;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

/* Single post / page */
.single-post .entry-header, .single-page .entry-header { margin-bottom: 24px; }
.single-post .entry-meta { color: var(--text-faded); font-family: var(--mono); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; }
.entry-featured { margin: 24px 0; }
.entry-featured img { border-radius: var(--r-lg); }

/* Post card (article) */
.post-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	overflow: hidden;
	transition: all 0.2s ease;
	display: flex; flex-direction: column;
}
.post-card:hover { border-color: var(--border-2); }
.post-card-image { display: block; overflow: hidden; aspect-ratio: 16/9; background: var(--bg-3); }
.post-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.post-card:hover .post-card-image img { transform: scale(1.04); }
.post-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.post-card-cat {
	font-family: var(--mono);
	font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
	letter-spacing: 0.1em; color: var(--ed); margin-bottom: 8px;
}
.post-card-title { font-family: var(--serif); font-size: 1.15rem; margin-bottom: 8px; line-height: 1.3; }
.post-card-title a { color: var(--text); }
.post-card-title a:hover { color: var(--accent); }
.post-card-meta { font-family: var(--mono); font-size: 0.78rem; color: var(--text-faded); margin: auto 0 0; text-transform: uppercase; letter-spacing: 0.06em; }

.posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 18px;
}

/* ==========================================================================
   Related exchanges
   ========================================================================== */
.related-exchanges { margin: 48px 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.mag-hero-grid { grid-template-columns: 1fr; }
	.cluster { grid-template-columns: 1fr; }
	.trust-card { grid-template-columns: 1fr; }
	.cta-strip { grid-template-columns: 1fr; text-align: center; }
	.footer-widgets { grid-template-columns: 1fr 1fr; }
	.verdict { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 900px) {
	.layout-with-sidebar { grid-template-columns: 1fr; }
	.pros-cons { grid-template-columns: 1fr; }
	.pros-cons-block + .pros-cons-block { border-left: 0; border-top: 1px solid var(--border); }
	.form-row { grid-template-columns: 1fr; }
	.review-item-proscons { grid-template-columns: 1fr; }
	.score-row { grid-template-columns: 130px 1fr 50px; }
	.editors-pick-body { grid-template-columns: 1fr; }
	.editors-pick-visual { aspect-ratio: 16/10; max-height: 240px; }
}

@media (max-width: 720px) {
	.menu-toggle { display: block; }
	.main-navigation ul {
		display: none; position: absolute;
		top: 100%; left: 0; right: 0;
		flex-direction: column; gap: 0;
		background: var(--bg-tone); border-bottom: 1px solid var(--border);
		padding: 8px 24px 16px;
	}
	.main-navigation.toggled ul { display: flex; }
	.main-navigation a { padding: 12px 0; border-bottom: 1px solid var(--border); }
	.footer-widgets { grid-template-columns: 1fr; }
	.section-head { grid-template-columns: 1fr; }
	.exchange-card-actions { grid-template-columns: 1fr; }
	.facts-table th { width: 45%; }
}
