/* 9bloko.ru — main stylesheet (extracted from the design prototype) */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
	font-family: var(--font-text);
	color: var(--text);
	background: var(--bg);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: "ss01", "cv11";
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: -0.022em;
	line-height: 1.08;
	margin: 0;
	color: var(--text);
}
h1 { font-size: clamp(40px, 6vw, 80px); letter-spacing: -0.035em; }
h2 { font-size: clamp(28px, 3.2vw, 44px); letter-spacing: -0.028em; }
h3 { font-size: clamp(22px, 2.2vw, 28px); letter-spacing: -0.022em; line-height: 1.18; }
h4 { font-size: 20px; line-height: 1.25; }
h5 { font-size: 16px; line-height: 1.3; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

/* Skip-link */
.skip-link {
	position: absolute; left: -9999px; top: 8px; z-index: 200;
	background: var(--bg); color: var(--text);
	border: 1px solid var(--border); border-radius: 8px;
	padding: 8px 12px;
}
.skip-link:focus { left: 8px; }

/* Layout */
.b9-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.b9-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 40px;
	align-items: start;
}

/* Buttons */
.b9-btn {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 12px 20px; border-radius: var(--r-btn);
	font-weight: 500; font-size: 14px; letter-spacing: -0.01em;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
	white-space: nowrap; border: 1px solid transparent;
	text-decoration: none;
}
.b9-btn-primary { background: var(--accent); color: #fff; }
.b9-btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 8px 24px var(--accent-glow); }
.b9-btn-secondary { background: var(--surface); color: var(--text); border-color: var(--border); }
.b9-btn-secondary:hover { background: var(--bg); border-color: var(--border-strong); }
.b9-btn-ghost { background: transparent; color: var(--text); }
.b9-btn-ghost:hover { background: var(--surface); }
.b9-btn-pill { border-radius: var(--r-pill); }
.b9-btn-sm { padding: 8px 14px; font-size: 13px; }
.b9-btn-lg { padding: 16px 28px; font-size: 16px; }

/* Cards */
.b9-card {
	background: #FFFFFF;
	border: 1px solid var(--border);
	border-radius: var(--r-card);
	overflow: hidden;
	box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.b9-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 36px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.04);
	border-color: var(--border-strong);
}
[data-theme="dark"] .b9-card { background: #1C1C1E; box-shadow: 0 1px 2px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.3); }
[data-theme="dark"] .b9-card:hover { background: #232326; box-shadow: 0 12px 36px rgba(0,0,0,0.6); }

/* Tags */
.b9-tag {
	display: inline-flex; align-items: center;
	padding: 4px 10px; border-radius: var(--r-pill);
	background: var(--accent-soft); color: var(--accent);
	font-size: 11px; font-weight: 600;
	letter-spacing: 0.04em; text-transform: uppercase;
	text-decoration: none;
}
.b9-tag-neutral { background: var(--surface); color: var(--text-secondary); }
.b9-divider { height: 1px; background: var(--border); border: 0; margin: 0; }

/* Placeholder */
.b9-placeholder {
	position: relative;
	background:
		repeating-linear-gradient(135deg, rgba(0,0,0,0.06) 0 14px, rgba(0,0,0,0.02) 14px 28px),
		linear-gradient(135deg, #E8E8EC 0%, #D8D8DD 100%);
	display: flex; align-items: center; justify-content: center;
	color: #6E6E73; font-family: var(--font-mono);
	font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase;
	overflow: hidden;
}
.b9-placeholder::after {
	content: ""; position: absolute; inset: 0;
	background: radial-gradient(80% 60% at 30% 20%, rgba(0,113,227,0.18), transparent 60%);
	pointer-events: none;
}
[data-theme="dark"] .b9-placeholder {
	background:
		repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 14px, rgba(255,255,255,0.01) 14px 28px),
		linear-gradient(135deg, #2A2A2D 0%, #1A1A1C 100%);
	color: #98989D;
}

/* Brand glow */
.b9-glow { position: relative; overflow: hidden; isolation: isolate; }
.b9-glow::before {
	content: ""; position: absolute; inset: -40%;
	background:
		radial-gradient(closest-side at 20% 0%, var(--accent-glow), transparent 70%),
		radial-gradient(closest-side at 90% 100%, var(--accent-glow), transparent 70%);
	z-index: -1; opacity: 0.7; pointer-events: none;
}

/* Mono / eyebrow */
.b9-mono {
	font-family: var(--font-mono); font-size: 11px;
	letter-spacing: 0.08em; text-transform: uppercase;
	color: var(--text-tertiary);
}
.b9-eyebrow {
	font-size: 12px; font-weight: 600;
	letter-spacing: 0.12em; text-transform: uppercase;
	color: var(--accent);
}

/* Rail scrollbar */
.b9-rail::-webkit-scrollbar { height: 6px; }
.b9-rail::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 999px; }
.b9-rail { scrollbar-width: thin; }

/* ===== Navbar ===== */
.b9-nav {
	position: sticky; top: 0; z-index: 50;
	background: color-mix(in oklab, var(--bg) 75%, transparent);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	backdrop-filter: saturate(180%) blur(20px);
	border-bottom: 1px solid var(--border);
}
.b9-nav-inner { display: flex; align-items: center; gap: 32px; height: 64px; }
.b9-wordmark {
	display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0;
	color: var(--text);
}
.b9-wordmark-text {
	font-family: var(--font-display);
	font-weight: 700; font-size: 20px;
	letter-spacing: -0.04em; line-height: 1;
}
.b9-wordmark-dot { color: var(--accent); }

.b9-nav-links { display: flex; gap: 4px; flex: 1; overflow: hidden; }
.b9-nav-link {
	padding: 8px 12px; border-radius: 8px;
	font-size: 14px; font-weight: 500;
	color: var(--text-secondary);
	transition: all .18s; white-space: nowrap;
}
.b9-nav-link:hover, .b9-nav-link:focus { background: var(--surface); color: var(--text); }
.b9-nav-link.is-active, .b9-nav-link.current-menu-item, .b9-nav-link.current_page_item { color: var(--text); }

.b9-search-trigger {
	display: flex; align-items: center; gap: 10px;
	padding: 8px 12px; border-radius: 10px;
	background: var(--surface); border: 1px solid var(--border);
	color: var(--text-tertiary); font-size: 13px; min-width: 200px;
}
.b9-search-trigger:hover { background: var(--bg); border-color: var(--border-strong); }
.b9-kbd {
	font-family: var(--font-mono); font-size: 11px; padding: 1px 5px;
	border-radius: 4px; background: var(--bg); border: 1px solid var(--border);
	color: var(--text-secondary);
}
.b9-icon-btn {
	padding: 10px; border-radius: 10px; color: var(--text);
	transition: background .18s;
	display: inline-flex; align-items: center; justify-content: center;
}
.b9-icon-btn:hover { background: var(--surface); }
.b9-burger { display: none; }

/* ===== Hero ===== */
.b9-hero { padding: 32px 0 48px; }
.b9-hero-grid {
	display: grid; grid-template-columns: 1.7fr 1fr;
	gap: 32px; align-items: stretch;
}
.b9-hero-featured {
	position: relative; border-radius: 24px; overflow: hidden;
	min-height: 520px; border: 1px solid var(--border);
	display: block; color: #fff;
}
.b9-hero-cover { position: absolute; inset: 0; }
.b9-hero-cover img,
.b9-hero-cover .b9-cover-img {
	width: 100%; height: 100%; object-fit: cover; display: block;
}
.b9-hero-shade {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
}
.b9-hero-body {
	position: absolute; left: 40px; right: 40px; bottom: 36px;
	color: #fff; display: flex; flex-direction: column; gap: 18px;
}
.b9-hero-meta { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.b9-tag-on-dark { background: rgba(255,255,255,0.15); color: #fff; }
.b9-hero-kicker {
	font-family: var(--font-mono); font-size: 11px; opacity: 0.8;
	text-transform: uppercase; letter-spacing: 0.1em;
}
.b9-hero-title {
	font-size: clamp(36px, 5vw, 64px);
	color: #fff; max-width: 720px; letter-spacing: -0.035em;
}
.b9-hero-excerpt { font-size: 17px; opacity: 0.85; max-width: 600px; line-height: 1.55; }
.b9-author-row { display: flex; gap: 16px; align-items: center; margin-top: 8px; }
.b9-avatar {
	width: 36px; height: 36px; border-radius: 50%;
	background: var(--accent); overflow: hidden;
	display: flex; align-items: center; justify-content: center;
	font-weight: 600; font-size: 13px; color: #fff;
}
.b9-avatar img { width: 100%; height: 100%; object-fit: cover; }
.b9-author-meta { font-size: 13px; line-height: 1.3; }
.b9-author-meta-sub { opacity: 0.7; font-size: 12px; }

.b9-hero-secondary { display: flex; flex-direction: column; gap: 16px; }
.b9-secondary-card {
	flex: 1; display: grid; grid-template-columns: 1fr 1.3fr;
	gap: 16px; padding: 16px;
	background: var(--surface); border: 1px solid var(--border);
	border-radius: 20px; align-items: stretch;
	transition: all .2s; cursor: pointer;
	text-decoration: none; color: inherit;
}
.b9-secondary-card:hover { background: var(--bg); border-color: var(--border-strong); transform: translateY(-2px); }
.b9-secondary-card .b9-placeholder,
.b9-secondary-card .b9-cover-img { border-radius: 12px; font-size: 10px; height: 100%; min-height: 120px; object-fit: cover; }
.b9-secondary-body { display: flex; flex-direction: column; gap: 8px; padding: 4px 4px 4px 0; }
.b9-secondary-body h3 { font-size: 18px; line-height: 1.25; }

/* Read meta */
.b9-readmeta {
	display: flex; align-items: center; gap: 10px;
	font-size: 12px; color: var(--text-tertiary); flex-wrap: wrap;
}
.b9-readmeta span.dot::before { content: "·"; margin-right: 6px; }
.b9-readmeta .ico { display: inline-flex; align-items: center; gap: 4px; }

/* Section header */
.b9-section-head {
	display: flex; justify-content: space-between; align-items: flex-end;
	margin-bottom: 24px; gap: 16px; flex-wrap: wrap;
}
.b9-link-arrow {
	font-size: 14px; color: var(--accent);
	display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0;
}
.b9-link-arrow:hover { gap: 8px; }

/* Article card */
.b9-article-card { display: flex; flex-direction: column; height: 100%; }
.b9-article-cover { padding: 8px; padding-bottom: 0; }
.b9-article-cover .b9-placeholder,
.b9-article-cover .b9-cover-img {
	height: 220px; border-radius: 10px; width: 100%; object-fit: cover; display: block;
}
.b9-article-body {
	padding: 16px 20px 20px; display: flex;
	flex-direction: column; gap: 10px; flex: 1;
}
.b9-article-title { font-size: 20px; line-height: 1.2; }
.b9-article-title a { color: inherit; }
.b9-article-excerpt { color: var(--text-secondary); font-size: 14px; line-height: 1.55; }
.b9-article-meta-spacer { margin-top: auto; padding-top: 4px; }

/* In-feed ad */
.b9-infeed { position: relative; padding: 0; }
.b9-ad-label {
	position: absolute; top: 12px; right: 12px; z-index: 2;
	padding: 3px 8px; border-radius: 999px;
	background: rgba(0,0,0,0.5); color: #fff;
	font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em;
	text-transform: uppercase;
}
.b9-infeed-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 200px; }
.b9-infeed-body {
	padding: 24px; display: flex; flex-direction: column;
	justify-content: center; gap: 8px;
}
.b9-infeed-body h4 {
	font-family: var(--font-display); font-size: 22px;
	font-weight: 700; letter-spacing: -0.02em;
}

/* Rail */
.b9-rail-section { padding-top: 64px; }
.b9-rail-list {
	display: flex; gap: 20px; overflow-x: auto; padding-bottom: 16px;
	margin: 0 -8px; padding-left: 8px; padding-right: 8px;
}
.b9-rail-card {
	flex: 0 0 280px; display: flex; flex-direction: column;
	cursor: pointer; padding: 8px; text-decoration: none; color: inherit;
}
.b9-rail-card .b9-placeholder,
.b9-rail-card .b9-cover-img { height: 170px; border-radius: 10px; font-size: 11px; width: 100%; object-fit: cover; display: block; }
.b9-rail-body { padding: 14px 12px 12px; display: flex; flex-direction: column; gap: 8px; }
.b9-rail-title {
	font-family: var(--font-display); font-size: 17px; font-weight: 600;
	letter-spacing: -0.01em; line-height: 1.25;
}

/* Rumors block */
.b9-rumors {
	margin-top: 96px; padding: 80px 0;
	background: var(--rumor-bg); color: var(--rumor-text);
	position: relative; overflow: hidden;
}
.b9-rumors::before {
	content: ""; position: absolute; inset: 0; pointer-events: none;
	background: radial-gradient(60% 40% at 80% 0%, rgba(10,132,255,0.18), transparent 70%);
}
.b9-rumors .b9-section-head { margin-bottom: 32px; }
.b9-rumors h2 { color: var(--rumor-text); }
.b9-rumors-eyebrow {
	font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
	text-transform: uppercase; color: #0A84FF; margin-bottom: 8px;
}
.b9-rumors-lede { color: var(--rumor-secondary); margin-top: 12px; max-width: 560px; font-size: 16px; }
.b9-rumors-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; position: relative; }
.b9-rumor-card {
	background: var(--rumor-surface); border-radius: 16px;
	padding: 24px; border: 1px solid rgba(255,255,255,0.06);
	display: flex; flex-direction: column; gap: 12px;
	cursor: pointer; transition: all .2s;
	text-decoration: none;
}
.b9-rumor-card:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.16); }
.b9-rumor-card h3 { font-size: 22px; color: var(--rumor-text); line-height: 1.2; }
.b9-rumor-tag {
	padding: 4px 10px; border-radius: 999px;
	background: rgba(10,132,255,0.18); color: #0A84FF;
	font-size: 11px; font-weight: 600;
	text-transform: uppercase; letter-spacing: 0.04em;
}
.b9-rumor-foot {
	margin-top: auto; display: flex; justify-content: space-between;
	align-items: center; font-size: 12px; color: var(--rumor-secondary); gap: 12px; flex-wrap: wrap;
}
.b9-btn-on-dark {
	background: rgba(255,255,255,0.1); color: #fff;
	border: 1px solid rgba(255,255,255,0.2);
}
.b9-btn-on-dark:hover { background: rgba(255,255,255,0.18); }

/* Credibility bar */
.b9-cred { display: inline-flex; gap: 2px; align-items: center; }
.b9-cred-cell {
	width: 10px; height: 10px; border-radius: 3px;
	background: var(--border-strong); opacity: 0.35;
}
.b9-cred-cell.on { background: var(--accent); opacity: 1; }
.b9-rumors .b9-cred-cell.on { background: #0A84FF; }
.b9-cred-score {
	margin-left: 6px; font-family: var(--font-mono); font-size: 10px;
	color: var(--text-tertiary);
}
.b9-rumors .b9-cred-score { color: var(--rumor-secondary); }

/* Reviews */
.b9-reviews {
	margin-top: 96px; padding: 64px 0;
	background: var(--surface);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}
.b9-reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.b9-review-card {
	position: relative; display: grid;
	grid-template-columns: 1.2fr 1fr; gap: 0;
	background: var(--bg); text-decoration: none; color: inherit;
}
.b9-review-card .b9-placeholder,
.b9-review-card .b9-cover-img { min-height: 280px; height: 100%; width: 100%; object-fit: cover; }
.b9-review-body { padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.b9-review-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.b9-verdict {
	margin-top: auto; padding: 12px 14px;
	background: var(--surface); border-radius: 12px;
	font-size: 13px; color: var(--text);
	border-left: 3px solid var(--accent);
}

/* Score ring */
.b9-ring { position: relative; }
.b9-ring svg { transform: rotate(-90deg); display: block; }
.b9-ring-text {
	position: absolute; inset: 0; display: flex;
	align-items: center; justify-content: center;
	font-family: var(--font-display); font-weight: 700; font-size: 26px;
	letter-spacing: -0.04em; color: var(--text);
}

/* CTA */
.b9-cta { margin-top: 96px; }
.b9-cta-inner {
	border-radius: 28px; padding: 72px 56px;
	background: linear-gradient(140deg, var(--surface) 0%, var(--bg) 100%);
	border: 1px solid var(--border);
	display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
	align-items: center; position: relative; overflow: hidden;
}
.b9-cta-inner h2 { font-size: 48px; margin-bottom: 16px; }
.b9-cta-inner p { font-size: 17px; color: var(--text-secondary); line-height: 1.55; max-width: 480px; }
.b9-cta-form { display: flex; flex-direction: column; gap: 12px; }
.b9-cta-row { display: flex; gap: 8px; }
.b9-input {
	flex: 1; padding: 16px 18px;
	border-radius: var(--r-input); border: 1px solid var(--border-strong);
	background: var(--bg); font-size: 15px; font-family: inherit;
	color: var(--text); outline: none;
	transition: border-color .18s, box-shadow .18s;
}
.b9-input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.b9-cta-or { display: flex; gap: 12px; align-items: center; margin-top: 8px; flex-wrap: wrap; }
.b9-fineprint { font-size: 12px; color: var(--text-tertiary); margin-top: 4px; }

/* Leaderboard */
.b9-leaderboard { margin-top: 16px; }
.b9-leaderboard-inner {
	position: relative; border-radius: 16px; overflow: hidden;
	border: 1px dashed var(--border-strong);
}
.b9-leaderboard-inner .b9-placeholder { height: 90px; font-size: 11px; }
.b9-leaderboard-label {
	position: absolute; top: 8px; right: 12px; z-index: 2;
	font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em;
	text-transform: uppercase; color: var(--text-tertiary);
}

/* Sidebar */
.b9-sidebar {
	display: flex; flex-direction: column; gap: 20px;
	position: sticky; top: 88px;
}
.b9-widget {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r-card);
	padding: 20px;
}
.b9-widget-title,
.b9-sidebar .b9-widget h1,
.b9-sidebar .b9-widget h2,
.b9-sidebar .b9-widget h3,
.b9-sidebar .b9-widget h4,
.b9-sidebar .b9-widget h5,
.b9-sidebar .b9-widget h6,
.b9-sidebar .b9-widget .widget-title,
.b9-sidebar .b9-widget .widgettitle,
.b9-sidebar .b9-widget .wpp-widget-block-title,
.b9-sidebar .b9-widget .wp-block-heading {
	font-family: var(--font-display);
	font-size: 13px; font-weight: 700;
	letter-spacing: 0.06em; text-transform: uppercase;
	color: var(--text-secondary);
	margin: 0 0 16px;
	line-height: 1.2;
	display: flex; align-items: center; justify-content: space-between;
}

/* Telegram widget */
.b9-tg-widget {
	background: linear-gradient(140deg, var(--accent) 0%, #0A84FF 100%);
	color: #fff; border: none; position: relative; overflow: hidden;
}
.b9-tg-widget::before {
	content: ""; position: absolute; top: -40px; right: -40px;
	width: 160px; height: 160px; border-radius: 50%;
	background: rgba(255,255,255,0.12);
}
.b9-tg-widget > * { position: relative; }
.b9-tg-title {
	margin-top: 12px; font-family: var(--font-display);
	font-size: 22px; font-weight: 700;
	letter-spacing: -0.02em; line-height: 1.15;
}
.b9-tg-sub { margin-top: 8px; opacity: 0.85; font-size: 13px; line-height: 1.5; }
.b9-tg-foot {
	margin-top: 16px; display: flex; align-items: center;
	justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.b9-tg-stats { font-size: 12px; opacity: 0.8; }
.b9-tg-stats strong { font-size: 16px; }
.b9-btn-tg-cta { background: #fff; color: var(--accent); padding: 8px 14px; font-size: 13px; }

/* Top read */
.b9-toplist { display: flex; flex-direction: column; gap: 14px; }
.b9-top-item { display: flex; gap: 12px; align-items: flex-start; }
.b9-top-rank {
	font-family: var(--font-display);
	font-size: 22px; font-weight: 700;
	color: var(--text-tertiary);
	min-width: 24px; line-height: 1; letter-spacing: -0.04em;
}
.b9-top-rank.is-first { color: var(--accent); }
.b9-top-title {
	font-size: 14px; font-weight: 500; color: var(--text);
	line-height: 1.35; letter-spacing: -0.01em;
	display: block; text-decoration: none;
}
.b9-top-title:hover { color: var(--accent); }
.b9-top-meta {
	margin-top: 4px; font-size: 12px; color: var(--text-tertiary);
	display: flex; align-items: center; gap: 6px;
}

/* Ad widget */
.b9-ad-card { padding: 0; }
.b9-ad-card .b9-placeholder { aspect-ratio: 300/250; }
.b9-ad-body { padding: 16px; }
.b9-ad-title {
	font-family: var(--font-display); font-size: 16px; font-weight: 600;
	letter-spacing: -0.01em; margin-top: 6px;
}
.b9-ad-pill {
	position: absolute; top: 10px; right: 10px; z-index: 2;
	padding: 3px 8px; border-radius: 999px;
	background: rgba(0,0,0,0.5); color: #fff;
	font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* Rumors widget (sidebar) */
.b9-rumors-list { display: flex; flex-direction: column; gap: 14px; }
.b9-rumor-row { padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.b9-rumor-row:last-child { padding-bottom: 0; border-bottom: 0; }
.b9-rumor-row-head { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; flex-wrap: wrap; }
.b9-rumor-row-text { font-size: 13.5px; line-height: 1.45; color: var(--text); display: block; text-decoration: none; }
.b9-rumor-row-text:hover { color: var(--accent); }

/* Price tracker */
.b9-price-list { display: flex; flex-direction: column; }
.b9-price-row {
	display: flex; align-items: center; justify-content: space-between;
	padding: 10px 0; border-top: 1px solid var(--border); gap: 12px;
}
.b9-price-row:first-child { border-top: 0; }
.b9-price-model { font-size: 13px; font-weight: 500; color: var(--text); }
.b9-price-model a { color: inherit; }
.b9-price-model a:hover { color: var(--accent); }
.b9-price-amount {
	display: flex; align-items: center; gap: 8px;
	font-family: var(--font-mono); font-size: 13px; color: var(--text);
}
.b9-price-delta {
	display: inline-flex; align-items: center; gap: 2px;
	font-size: 11px; font-family: var(--font-mono);
}
.b9-price-delta.down { color: var(--success); }
.b9-price-delta.up { color: var(--danger); }
.b9-price-cta { width: 100%; justify-content: center; margin-top: 12px; }

/* Newsletter */
.b9-news-title {
	font-family: var(--font-display); font-size: 18px; font-weight: 700;
	letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 6px;
}
.b9-news-sub { font-size: 13px; color: var(--text-secondary); line-height: 1.5; margin-bottom: 14px; }
.b9-news-form { display: flex; flex-direction: column; gap: 8px; }
.b9-news-input {
	width: 100%; padding: 12px 14px;
	border-radius: var(--r-input);
	border: 1px solid var(--border-strong);
	background: var(--bg); color: var(--text);
	font-family: inherit; font-size: 14px; outline: none;
	transition: border-color .18s, box-shadow .18s;
}
.b9-news-input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }

/* Tag cloud */
.b9-tagcloud { display: flex; flex-wrap: wrap; gap: 6px; }
.b9-tagcloud .b9-tag {
	padding: 6px 12px; font-size: 12px;
	text-transform: none; letter-spacing: 0; font-weight: 500;
	cursor: pointer;
}

/* Footer */
.b9-footer {
	margin-top: 96px;
	background: var(--surface);
	border-top: 1px solid var(--border);
	padding: 64px 0 32px;
}
.b9-footer-grid {
	display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 48px;
}
.b9-footer-about p {
	margin-top: 16px; color: var(--text-secondary);
	font-size: 14px; line-height: 1.6; max-width: 320px;
}
.b9-footer-socials { margin-top: 20px; display: flex; gap: 8px; flex-wrap: wrap; }
.b9-footer-col-title { margin-bottom: 12px; }
.b9-footer-col-list { display: flex; flex-direction: column; gap: 8px; list-style: none; padding: 0; margin: 0; }
.b9-footer-col-list a { font-size: 14px; color: var(--text-secondary); }
.b9-footer-col-list a:hover { color: var(--text); }
.b9-footer-bottom {
	display: flex; justify-content: space-between; flex-wrap: wrap;
	gap: 16px; font-size: 12px; color: var(--text-tertiary);
}
.b9-footer-bottom a:hover { color: var(--text-secondary); }

/* Cmd+K */
.b9-cmdk-backdrop {
	position: fixed; inset: 0; z-index: 100;
	background: rgba(0,0,0,0.4); backdrop-filter: blur(8px);
	display: flex; align-items: flex-start; justify-content: center;
	padding-top: 96px;
}
.b9-cmdk-backdrop[hidden] { display: none; }
.b9-cmdk {
	width: min(640px, 92vw);
	background: var(--bg);
	border: 1px solid var(--border-strong);
	border-radius: 16px;
	box-shadow: 0 20px 80px rgba(0,0,0,0.3);
	overflow: hidden;
}
.b9-cmdk-head {
	display: flex; align-items: center; gap: 12px;
	padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.b9-cmdk-input {
	flex: 1; border: none; outline: none;
	background: transparent; color: var(--text);
	font-size: 16px; font-family: inherit;
}
.b9-cmdk-body { padding: 8px; max-height: 400px; overflow: auto; }
.b9-cmdk-section { padding: 8px 4px; }
.b9-cmdk-section .b9-mono { padding: 6px 12px; }
.b9-cmdk-item {
	display: flex; align-items: center; gap: 12px;
	padding: 10px 12px; border-radius: 8px;
	cursor: pointer; text-decoration: none; color: inherit;
}
.b9-cmdk-item:hover, .b9-cmdk-item.is-active { background: var(--surface); }
.b9-cmdk-item-ico { color: var(--text-tertiary); display: inline-flex; }
.b9-cmdk-item-chev { margin-left: auto; color: var(--text-tertiary); display: inline-flex; }

/* Reading progress */
.b9-progress {
	position: fixed; top: 0; left: 0; height: 2px;
	background: var(--accent); width: 0; z-index: 60;
	transition: width 80ms linear;
}

/* Single article */
.b9-article-hero {
	position: relative; min-height: 480px;
	border-radius: 24px; overflow: hidden; margin-top: 24px;
	border: 1px solid var(--border); color: #fff;
}
.b9-article-hero .b9-placeholder, .b9-article-hero .b9-cover-img {
	position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.b9-article-hero .b9-hero-shade { position: absolute; inset: 0; }
.b9-article-hero-body {
	position: absolute; left: 40px; right: 40px; bottom: 36px;
	display: flex; flex-direction: column; gap: 18px;
}
.b9-article-content {
	font-size: 18px; line-height: 1.7; max-width: 720px;
}
.b9-article-content p { margin: 1em 0; }
.b9-article-content h2 { margin-top: 2em; margin-bottom: 0.6em; font-size: clamp(26px, 2.6vw, 36px); }
.b9-article-content h3 { margin-top: 1.6em; margin-bottom: 0.4em; }
.b9-article-content blockquote {
	margin: 1.6em 0; padding: 12px 24px;
	border-left: 3px solid var(--accent);
	background: var(--surface); border-radius: 8px;
	font-style: italic; color: var(--text);
}
.b9-article-content img,
.b9-article-content figure { border-radius: 16px; overflow: hidden; margin: 2em 0; }
.b9-article-content code {
	font-family: var(--font-mono); font-size: 0.92em;
	background: var(--surface); padding: 2px 6px; border-radius: 6px;
}
.b9-article-content pre {
	background: var(--surface); padding: 20px; border-radius: 12px;
	overflow-x: auto; font-size: 14px;
}
.b9-article-content pre code { background: transparent; padding: 0; }
.b9-article-content ul, .b9-article-content ol { padding-left: 1.4em; margin: 1em 0; }
.b9-article-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.b9-article-content a:hover { text-decoration: none; }

/* Pros / cons */
.b9-proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.b9-proscons-block {
	padding: 20px; border-radius: 16px; border: 1px solid var(--border);
	background: var(--surface);
}
.b9-proscons-block h4 { margin-bottom: 10px; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; }
.b9-proscons-block.pros h4 { color: var(--success); }
.b9-proscons-block.cons h4 { color: var(--danger); }
.b9-proscons-block ul { margin: 0; padding-left: 1.2em; }
.b9-proscons-block li { margin-bottom: 6px; line-height: 1.5; }

/* Related posts */
.b9-related {
	display: grid; grid-template-columns: 1fr 1fr 1fr;
	gap: 24px; margin-top: 64px;
}

/* Pagination */
.b9-pagination {
	display: flex; gap: 8px; justify-content: center;
	margin-top: 48px; flex-wrap: wrap;
}
.b9-pagination .page-numbers {
	padding: 10px 14px; border-radius: 10px;
	background: var(--surface); color: var(--text);
	font-size: 14px; font-weight: 500;
	transition: all .18s; border: 1px solid var(--border);
}
.b9-pagination .page-numbers.current,
.b9-pagination .page-numbers:hover {
	background: var(--accent); color: #fff; border-color: var(--accent);
}
.b9-pagination .page-numbers.dots { background: transparent; border: none; }

/* Comments */
.b9-comments { margin-top: 64px; max-width: 720px; }
.b9-comments .comment-list { list-style: none; margin: 0; padding: 0; }
.b9-comments .comment { padding: 16px 0; border-bottom: 1px solid var(--border); }

/* Mobile drawer */
.b9-drawer { position: fixed; inset: 0; z-index: 80; display: none; }
.b9-drawer[data-open="true"] { display: block; }
.b9-drawer-back { position: absolute; inset: 0; background: rgba(0,0,0,0.35); backdrop-filter: blur(4px); }
.b9-drawer-panel {
	position: absolute; top: 0; right: 0; bottom: 0;
	width: min(320px, 86vw);
	background: var(--bg); border-left: 1px solid var(--border);
	padding: 24px; display: flex; flex-direction: column; gap: 8px;
	overflow-y: auto;
}
.b9-drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.b9-drawer-link {
	padding: 12px 14px; border-radius: 10px;
	font-size: 16px; font-weight: 500; color: var(--text);
	display: block;
}
.b9-drawer-link:hover { background: var(--surface); }

/* Responsive */
@media (max-width: 1100px) {
	.b9-hero-grid { grid-template-columns: 1fr; }
	.b9-hero-featured { min-height: 460px; }
	.b9-grid { grid-template-columns: 1fr; gap: 48px; }
	.b9-cta-inner { grid-template-columns: 1fr; padding: 56px 40px; gap: 32px; }
	.b9-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
	.b9-related { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 800px) {
	.b9-nav-links, .b9-search-trigger { display: none; }
	.b9-burger { display: inline-flex; }
	.b9-hero-body, .b9-article-hero-body { left: 24px; right: 24px; bottom: 24px; }
	.b9-hero-title { font-size: clamp(28px, 7vw, 42px); }
	.b9-hero-featured { min-height: 420px; }
	.b9-secondary-card { grid-template-columns: 1fr; }
	.b9-secondary-card .b9-placeholder, .b9-secondary-card .b9-cover-img { height: 160px; min-height: 160px; }
	.b9-rumors-grid, .b9-reviews-grid { grid-template-columns: 1fr; }
	.b9-review-card { grid-template-columns: 1fr; }
	.b9-review-card .b9-placeholder, .b9-review-card .b9-cover-img { min-height: 200px; }
	.b9-rumors { padding: 56px 0; }
	.b9-rumors h2 { font-size: 32px; }
	.b9-cta-inner { padding: 48px 24px; }
	.b9-cta-inner h2 { font-size: 32px; }
	.b9-cta-row { flex-direction: column; }
	.b9-footer { padding: 48px 0 24px; }
	.b9-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
	.b9-footer-bottom { flex-direction: column; align-items: flex-start; }
	.b9-fresh-grid { grid-template-columns: 1fr !important; }
	.b9-infeed-grid { grid-template-columns: 1fr; }
	.b9-section-head h2 { font-size: 28px; }
	.b9-related { grid-template-columns: 1fr; }
	.b9-proscons { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
	.b9-hero { padding: 16px 0 32px; }
	.b9-rail-card { flex: 0 0 240px; }
	.b9-cta-inner { padding: 40px 20px; }
	.b9-footer-grid { grid-template-columns: 1fr; }
	.b9-article-content { font-size: 17px; }
}
