/* ══════════════════════════════════════════════════════════════════════════
   SexBabesVR — theme-level custom stylesheet
   Loaded from template/include_header_general.tpl AFTER main.css, so rules
   here win ties without touching main.css.

   ⚠ Keep every block in this file clearly delimited and ticket-tagged.
   ⚠ main.css is NOT to be edited for new components — add them here.
   ══════════════════════════════════════════════════════════════════════════ */


/* ═══ #188 guides/blog section ═══════════════════════════════════════════════
   Ticket #188 — KVS Posts surfaces restyled to the approved mockup
   (_mockups/188-guides-section.html). Serves TWO post types:
     • guides — evergreen how-to articles  (/guides/)
     • blog   — editorial + scene-release gallery posts (/blog/)
   Templates:
     template/blocks/posts_list/list_posts_common_posts_list.tpl   (hub)
     template/blocks/view_post/post_view_post_view.tpl             (article)
   Self-contained: all tokens are scoped to .sbvr-hub / .sbvr-post so nothing
   leaks into the rest of the site. Dark theme only. Class prefix sbvr-.
   ⚠ .sbvr-chip is ALREADY TAKEN by the ops dashboard (main.css ~L25107) —
     the chips here are namespaced .sbvr-hub__chip / .sbvr-post__chip.
   ────────────────────────────────────────────────────────────────────────── */

.sbvr-hub,
.sbvr-post {
	--sbvr188-bg:         #0b0b0d;
	--sbvr188-bg-2:       #131318;
	--sbvr188-surface:    #16161c;
	--sbvr188-surface-2:  #1c1c23;
	--sbvr188-line:       rgba(255, 255, 255, .09);
	--sbvr188-line-2:     rgba(255, 255, 255, .16);
	--sbvr188-text:       #ffffff;
	--sbvr188-text-2:     #b9b9c4;
	--sbvr188-text-3:     #7c7c8a;
	--sbvr188-pink:       #FF7DE0;
	--sbvr188-cyan:       #01B5F0;
	--sbvr188-mid:        #8B99E8;
	--sbvr188-grad:       linear-gradient(135deg, #FF7DE0 0%, #01B5F0 100%);
	--sbvr188-radius:     14px;
	--sbvr188-radius-sm:  10px;
	--sbvr188-pill:       999px;
	--sbvr188-ff:         Roboto, "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

	font-family: var(--sbvr188-ff);
	color: var(--sbvr188-text);
}

.sbvr-hub *,
.sbvr-hub *::before,
.sbvr-hub *::after,
.sbvr-post *,
.sbvr-post *::before,
.sbvr-post *::after { box-sizing: border-box; }

.sbvr-hub a,
.sbvr-post a { text-decoration: none; }

/* --- shared bits ---------------------------------------------------------- */
.sbvr-hub__eyebrow,
.sbvr-post__eyebrow {
	display: inline-block;
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--sbvr188-text-2);
	line-height: 1.4;
}

.sbvr-hub__rule,
.sbvr-post__rule {
	width: 56px;
	height: 3px;
	border-radius: 2px;
	background: var(--sbvr188-grad);
	margin: .55rem 0 0;
}

.sbvr-hub__chip,
.sbvr-post__chip {
	display: inline-flex;
	align-items: center;
	font-size: .66rem;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
	padding: .36em .8em;
	border-radius: var(--sbvr188-pill);
	border: 1px solid currentColor;
	color: var(--sbvr188-text-3);
	line-height: 1.4;
	white-space: nowrap;
}
/* Nth-child tinting: categories are author-defined, so the accent rotates
   deterministically instead of being keyed to a hard-coded slug list. */
.sbvr-hub__card:nth-child(4n+1) .sbvr-hub__chip { color: var(--sbvr188-pink); background: rgba(255, 125, 224, .08); }
.sbvr-hub__card:nth-child(4n+2) .sbvr-hub__chip { color: var(--sbvr188-cyan); background: rgba(1, 181, 240, .08); }
.sbvr-hub__card:nth-child(4n+3) .sbvr-hub__chip { color: var(--sbvr188-mid);  background: rgba(139, 153, 232, .10); }
.sbvr-hub__card:nth-child(4n+4) .sbvr-hub__chip { color: #d7d7e2;             background: rgba(255, 255, 255, .05); }
.sbvr-post__chip { color: var(--sbvr188-pink); background: rgba(255, 125, 224, .08); }

/* Measure cap. Scoped to containers INSIDE these components only — never a
   bare `body.X .container` rule, which would shift the topbar hamburger
   (see reference_kvs_topbar_container_pitfall). Checked at 1920 and 3440. */
.sbvr-hub > .container,
.sbvr-post > .container { max-width: 1180px; }

/* ─── HUB (posts list) ───────────────────────────────────────────────────── */
.sbvr-hub { display: block; padding: 26px 0 56px; }

.sbvr-hub__hero {
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid var(--sbvr188-line);
	background: var(--sbvr188-bg-2);
	border-radius: var(--sbvr188-radius);
	padding: 64px 34px 56px;
	margin-bottom: 46px;
}
.sbvr-hub__hero::before,
.sbvr-hub__hero::after {
	content: "";
	position: absolute;
	pointer-events: none;
	border-radius: 50%;
	filter: blur(90px);
	opacity: .28;
}
.sbvr-hub__hero::before {
	width: 520px; height: 520px; left: -160px; top: -220px;
	background: radial-gradient(circle, #FF7DE0 0%, rgba(255, 125, 224, 0) 68%);
}
.sbvr-hub__hero::after {
	width: 600px; height: 600px; right: -200px; bottom: -320px;
	background: radial-gradient(circle, #01B5F0 0%, rgba(1, 181, 240, 0) 68%);
}
.sbvr-hub__hero-inner { position: relative; z-index: 1; }

.sbvr-hub__title {
	font-size: clamp(2rem, 5.2vw, 3.4rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -.02em;
	margin: 1.25rem 0 0;
	color: var(--sbvr188-text);
}
.sbvr-hub__sub {
	margin: 1.1rem 0 0;
	max-width: 62ch;
	font-size: clamp(1rem, 2.1vw, 1.12rem);
	line-height: 1.65;
	color: var(--sbvr188-text-2);
}

.sbvr-hub__head { margin-bottom: 34px; }
.sbvr-hub__head-title {
	font-size: clamp(1.4rem, 3vw, 1.9rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -.02em;
	margin: .55rem 0 0;
	color: var(--sbvr188-text);
}

.sbvr-hub__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}
@media (min-width: 1500px) { .sbvr-hub__grid { gap: 22px; } }

.sbvr-hub__card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--sbvr188-surface);
	border: 1px solid var(--sbvr188-line);
	border-radius: var(--sbvr188-radius);
	padding: 24px 24px 22px;
	overflow: hidden;
	color: var(--sbvr188-text);
	transition: border-color .2s ease, transform .2s ease, background-color .2s ease;
}
.sbvr-hub__card::before {
	content: "";
	position: absolute; left: 0; top: 0; height: 2px;
	width: 34px;
	background: var(--sbvr188-grad);
	border-radius: 0 2px 2px 0;
	transition: width .28s cubic-bezier(.22, .8, .3, 1);
}
.sbvr-hub__card:hover {
	border-color: var(--sbvr188-line-2);
	background: var(--sbvr188-surface-2);
	transform: translateY(-2px);
}
.sbvr-hub__card:hover::before { width: 100%; }

.sbvr-hub__card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
	min-height: 22px;
}
.sbvr-hub__num {
	font-family: ui-monospace, "Consolas", monospace;
	font-size: .72rem;
	color: var(--sbvr188-text-3);
	letter-spacing: .08em;
}
.sbvr-hub__card-title {
	font-size: 1.14rem;
	font-weight: 800;
	line-height: 1.28;
	letter-spacing: -.02em;
	margin: 0 0 .55rem;
	color: var(--sbvr188-text);
}
.sbvr-hub__card-title a { color: inherit; }
.sbvr-hub__card:hover .sbvr-hub__card-title,
.sbvr-hub__card:hover .sbvr-hub__card-title a {
	background: var(--sbvr188-grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.sbvr-hub__desc {
	color: var(--sbvr188-text-2);
	font-size: .925rem;
	line-height: 1.6;
	margin: 0 0 16px;
}
.sbvr-hub__foot {
	margin-top: auto;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: .76rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--sbvr188-text-3);
	padding-top: 14px;
	border-top: 1px solid var(--sbvr188-line);
}
.sbvr-hub__dot { width: 3px; height: 3px; border-radius: 50%; background: var(--sbvr188-text-3); flex: none; }
.sbvr-hub__arrow { margin-left: auto; color: var(--sbvr188-text-2); font-size: 1rem; letter-spacing: 0; }
.sbvr-hub__card:hover .sbvr-hub__arrow { color: var(--sbvr188-pink); }

.sbvr-hub__empty {
	border: 1px solid var(--sbvr188-line);
	border-radius: var(--sbvr188-radius);
	background: var(--sbvr188-surface);
	padding: 48px 24px;
	text-align: center;
	color: var(--sbvr188-text-2);
}
.sbvr-hub__pager { margin-top: 34px; }

/* ─── ARTICLE (post view) ────────────────────────────────────────────────── */
.sbvr-post { display: block; padding: 0 0 56px; }
.sbvr-post__wrap { max-width: 940px; margin: 0 auto; }

.sbvr-post__crumbs {
	padding: 20px 0 0;
	font-size: .8rem;
	color: var(--sbvr188-text-3);
}
.sbvr-post__crumbs ol {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: .45em;
}
.sbvr-post__crumbs li::after { content: "\203A"; margin-left: .45em; color: var(--sbvr188-text-3); }
.sbvr-post__crumbs li:last-child::after { content: ""; }
.sbvr-post__crumbs a { color: var(--sbvr188-text-2); }
.sbvr-post__crumbs a:hover { color: var(--sbvr188-pink); }
.sbvr-post__crumbs [aria-current] { color: var(--sbvr188-text-3); }

.sbvr-post__head {
	padding: 26px 0 34px;
	border-bottom: 1px solid var(--sbvr188-line);
}
.sbvr-post__title {
	font-size: clamp(1.85rem, 4.4vw, 2.85rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -.02em;
	margin: 1.1rem 0 1.05rem;
	color: var(--sbvr188-text);
}
.sbvr-post__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	font-size: .82rem;
	color: var(--sbvr188-text-3);
	font-weight: 600;
	letter-spacing: .04em;
}
.sbvr-post__sep { color: var(--sbvr188-line-2); }

.sbvr-post__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 48px;
	padding: 44px 0 20px;
	align-items: start;
}
/* Two-column only once the TOC actually has entries. The TOC is built by the
   inline script in the article template; when it finds fewer than two headings
   it leaves the list empty and this rule never fires — no orphan column. */
.sbvr-post__layout:has(.sbvr-post__toc li) {
	grid-template-columns: 250px minmax(0, 1fr);
}
@media (max-width: 960px) {
	.sbvr-post__layout,
	.sbvr-post__layout:has(.sbvr-post__toc li) {
		grid-template-columns: minmax(0, 1fr);
		gap: 28px;
		padding-top: 30px;
	}
}
.sbvr-post__aside:empty { display: none; }

.sbvr-post__toc {
	position: sticky;
	top: 24px;
	background: var(--sbvr188-surface);
	border: 1px solid var(--sbvr188-line);
	border-radius: var(--sbvr188-radius);
	padding: 20px 20px 18px;
}
.sbvr-post__toc:not(:has(li)) { display: none; }
.sbvr-post__toc-title {
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--sbvr188-text-3);
	margin: 0 0 14px;
}
.sbvr-post__toc ol { list-style: none; margin: 0; padding: 0; counter-reset: sbvr188toc; }
.sbvr-post__toc li { counter-increment: sbvr188toc; margin-bottom: .55rem; }
.sbvr-post__toc li:last-child { margin-bottom: 0; }
.sbvr-post__toc a {
	display: flex;
	gap: .6em;
	font-size: .87rem;
	line-height: 1.4;
	color: var(--sbvr188-text-2);
	border-left: 2px solid transparent;
	padding-left: .7em;
	margin-left: -.7em;
	transition: color .18s ease, border-color .18s ease;
}
.sbvr-post__toc a::before {
	content: counter(sbvr188toc, decimal-leading-zero);
	font-family: ui-monospace, "Consolas", monospace;
	font-size: .72rem;
	color: var(--sbvr188-text-3);
	flex: none;
	padding-top: .15em;
}
.sbvr-post__toc a:hover { color: #fff; border-left-color: var(--sbvr188-pink); }
@media (max-width: 960px) { .sbvr-post__toc { position: static; } }

/* --- article body (prose) ------------------------------------------------- */
/* 2026-08-17 operator: full width after the TOC column (was 72ch). */
.sbvr-post__body {
	font-size: 1.03rem;
	line-height: 1.78;
	color: var(--sbvr188-text-2);
}
.sbvr-post__body > *:first-child { margin-top: 0; }
.sbvr-post__body p { margin: 0 0 1.05em; }
.sbvr-post__body h2 {
	font-size: clamp(1.3rem, 3vw, 1.65rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -.02em;
	color: var(--sbvr188-text);
	margin: 2.4rem 0 .9rem;
	padding-bottom: .55rem;
	border-bottom: 1px solid var(--sbvr188-line);
	scroll-margin-top: 24px;
	position: relative;
}
/* the gradient rule from the mockup, without asking the author for extra markup */
.sbvr-post__body h2::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 56px;
	height: 3px;
	border-radius: 2px;
	background: var(--sbvr188-grad);
}
.sbvr-post__body h3 {
	font-size: 1.1rem;
	font-weight: 800;
	line-height: 1.25;
	color: var(--sbvr188-text);
	margin: 1.9rem 0 .6rem;
}
.sbvr-post__body strong,
.sbvr-post__body b { color: var(--sbvr188-text); font-weight: 700; }
.sbvr-post__body a {
	color: var(--sbvr188-cyan);
	border-bottom: 1px solid rgba(1, 181, 240, .35);
}
.sbvr-post__body a:hover { color: var(--sbvr188-pink); border-bottom-color: rgba(255, 125, 224, .5); }
/* main.css strips list markers site-wide — put them back inside the prose. */
.sbvr-post__body ul { list-style: disc; }
.sbvr-post__body ol { list-style: decimal; }
.sbvr-post__body ul,
.sbvr-post__body ol { margin: 0 0 1.15em; padding-left: 1.25em; }
.sbvr-post__body li { margin-bottom: .45em; }
.sbvr-post__body ul li::marker { color: var(--sbvr188-pink); }
.sbvr-post__body blockquote {
	margin: 1.6rem 0;
	padding: 0 0 0 1.1rem;
	border-left: 3px solid var(--sbvr188-line-2);
	color: var(--sbvr188-text-2);
	font-style: italic;
}
.sbvr-post__body hr { border: 0; border-top: 1px solid var(--sbvr188-line); margin: 2.2rem 0; }
.sbvr-post__body table { width: 100%; border-collapse: collapse; margin: 1.6rem 0; font-size: .95rem; }
.sbvr-post__body th,
.sbvr-post__body td { padding: .6em .8em; border: 1px solid var(--sbvr188-line); text-align: left; }
.sbvr-post__body th { color: var(--sbvr188-text); background: var(--sbvr188-surface); }

/* numbered steps — authors add class="sbvr-steps" to an <ol> in the body */
.sbvr-post__body ol.sbvr-steps {
	list-style: none;
	counter-reset: sbvr188step;
	margin: 1.5rem 0 1.8rem;
	padding: 0;
}
.sbvr-post__body ol.sbvr-steps > li {
	counter-increment: sbvr188step;
	position: relative;
	padding: 0 0 1.15rem 3.3rem;
	margin: 0;
}
.sbvr-post__body ol.sbvr-steps > li:last-child { padding-bottom: 0; }
.sbvr-post__body ol.sbvr-steps > li::before {
	content: counter(sbvr188step);
	position: absolute;
	left: 0;
	top: .05rem;
	width: 2.15rem;
	height: 2.15rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--sbvr188-grad);
	color: #0b0b0d;
	font-size: .9rem;
	font-weight: 900;
}
.sbvr-post__body ol.sbvr-steps > li::after {
	content: "";
	position: absolute;
	left: 1.07rem;
	top: 2.4rem;
	bottom: .35rem;
	width: 1px;
	background: var(--sbvr188-line-2);
}
.sbvr-post__body ol.sbvr-steps > li:last-child::after { display: none; }
.sbvr-post__body ol.sbvr-steps b { display: block; color: var(--sbvr188-text); font-weight: 700; margin-bottom: .15rem; }

/* tip callout — authors add class="sbvr-callout" to a <div>/<aside> in the body */
.sbvr-post__body .sbvr-callout {
	position: relative;
	background: var(--sbvr188-surface);
	border: 1px solid var(--sbvr188-line);
	border-radius: var(--sbvr188-radius-sm);
	padding: 20px 22px 18px;
	margin: 1.8rem 0;
	overflow: hidden;
}
.sbvr-post__body .sbvr-callout::before {
	content: "";
	position: absolute;
	left: 0; top: 0; bottom: 0;
	width: 3px;
	background: var(--sbvr188-grad);
}
.sbvr-post__body .sbvr-callout__label {
	display: block;
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: .2em;
	text-transform: uppercase;
	margin-bottom: .5rem;
	background: var(--sbvr188-grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.sbvr-post__body .sbvr-callout p { font-size: .95rem; color: var(--sbvr188-text-2); }
.sbvr-post__body .sbvr-callout p:last-child { margin-bottom: 0; }

/* FAQ — any native <details> in the body picks this up, no extra classes needed */
.sbvr-post__body details {
	background: var(--sbvr188-surface);
	border: 1px solid var(--sbvr188-line);
	border-radius: var(--sbvr188-radius-sm);
	margin-bottom: 10px;
	overflow: hidden;
}
.sbvr-post__body details[open] { border-color: var(--sbvr188-line-2); background: var(--sbvr188-surface-2); }
.sbvr-post__body summary {
	cursor: pointer;
	list-style: none;
	padding: 16px 52px 16px 20px;
	position: relative;
	font-size: 1rem;
	font-weight: 700;
	color: var(--sbvr188-text);
	line-height: 1.45;
}
.sbvr-post__body summary::-webkit-details-marker { display: none; }
.sbvr-post__body summary::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	width: 11px;
	height: 11px;
	margin-top: -7px;
	border-right: 2px solid var(--sbvr188-pink);
	border-bottom: 2px solid var(--sbvr188-cyan);
	transform: rotate(45deg);
	transition: transform .22s ease;
}
.sbvr-post__body details[open] summary::after { transform: rotate(225deg); margin-top: -2px; }
.sbvr-post__body details > *:not(summary) {
	padding: 0 20px 18px;
	color: var(--sbvr188-text-2);
	font-size: .95rem;
	line-height: 1.7;
}

/* --- gallery (blog scene-release posts) ----------------------------------- */
/* Every image in a post body is responsive by default. */
.sbvr-post__body img {
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: var(--sbvr188-radius-sm);
	border: 1px solid var(--sbvr188-line);
}
.sbvr-post__body figure { margin: 1.8rem 0; }
.sbvr-post__body figcaption {
	margin-top: .6rem;
	font-size: .82rem;
	color: var(--sbvr188-text-3);
}
/* Authors wrap a run of screenshots in <div class="sbvr-post-gallery"> …
   (TinyMCE source view). No JS — pure grid, square-ish auto-fill tiles. */
.sbvr-post-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 12px;
	margin: 1.8rem 0;
	padding: 0;
	list-style: none;
}
.sbvr-post-gallery > * { margin: 0; min-width: 0; }
.sbvr-post-gallery a { display: block; border-bottom: 0; }
.sbvr-post-gallery img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	transition: transform .2s ease, border-color .2s ease;
}
.sbvr-post-gallery a:hover img { transform: translateY(-2px); border-color: var(--sbvr188-line-2); }
/* Blog posts are gallery-heavy: give the body a wider measure so the grid
   is not squeezed into the 72ch prose column. */
.sbvr-post__body--gallery { max-width: none; }
@media (max-width: 600px) {
	.sbvr-post-gallery { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 8px; }
}

/* 2026-08-17 operator: blog gallery posts match the /gallery-samples/ look —
   no TOC, single full-width column, 4-across rounded 3:2 tiles with zoom hover. */
.sbvr-post__layout:has(.sbvr-post__body--gallery .sbvr-post-gallery),
.sbvr-post__layout:has(.sbvr-post__body--gallery) { grid-template-columns: minmax(0, 1fr); padding-top: 14px; }
.sbvr-post__layout:has(.sbvr-post__body--gallery) .sbvr-post__toc { display: none; }
.sbvr-post__body--gallery .sbvr-post-gallery {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}
.sbvr-post__body--gallery .sbvr-post-gallery a {
	border-radius: 8px;
	overflow: hidden;
	background: #000;
}
.sbvr-post__body--gallery .sbvr-post-gallery img {
	aspect-ratio: 3 / 2;
	border-radius: 8px;
	transition: transform .25s ease;
}
.sbvr-post__body--gallery .sbvr-post-gallery a:hover img { transform: scale(1.04); }
@media (max-width: 760px) {
	.sbvr-post__body--gallery .sbvr-post-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* 2026-08-17 operator: gallery-post bottom matches /gallery-samples/ —
   gradient scene CTA pill, model card with stat pills, category pills. */
.sbvr-post__body .sbvr-gcta {
	display: block;
	text-align: center;
	margin: 2rem auto;
	max-width: 520px;
	background: linear-gradient(135deg, #FF7DE0 0%, #01B5F0 100%);
	color: #fff !important;
	font-weight: 800;
	font-size: 1.06rem;
	padding: 16px 28px;
	border-radius: 999px;
	border-bottom: 0;
	box-shadow: 0 6px 24px rgba(255, 125, 224, .25);
}
.sbvr-post__body .sbvr-gcta:hover { color: #fff; border-bottom: 0; filter: brightness(1.06); }
.sbvr-post__body .sbvr-gcta small {
	display: block;
	font-weight: 400;
	font-size: .78rem;
	opacity: .92;
	margin-top: 3px;
}
.sbvr-post__body .sbvr-modelcard {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	flex-wrap: wrap;
	background: var(--sbvr188-surface, #16181f);
	border: 1px solid var(--sbvr188-line, #262a35);
	border-radius: 12px;
	padding: 20px;
	margin: 2rem 0;
}
.sbvr-post__body .sbvr-modelcard > a { border-bottom: 0; flex: 0 0 auto; }
.sbvr-post__body .sbvr-modelcard img {
	width: 150px;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border-radius: 10px;
	background: #000;
	margin: 0;
}
.sbvr-post__body .sbvr-modelcard > div { flex: 1 1 300px; min-width: 0; }
.sbvr-post__body .sbvr-modelcard h3 { margin: 0 0 .4rem; font-size: 1.25rem; }
.sbvr-post__body .sbvr-modelcard h3::after { display: none; }
.sbvr-post__body .sbvr-modelcard p { margin: 0; font-size: .95rem; }
.sbvr-post__body .sbvr-modelcard .sbvr-statpills { margin: 0 0 .7rem; }
.sbvr-post__body .sbvr-statpill,
.sbvr-post__body .sbvr-statpills span {
	display: inline-block;
	background: var(--sbvr188-surface-2, #1c1f28);
	border: 1px solid var(--sbvr188-line, #262a35);
	border-radius: 6px;
	padding: 3px 10px;
	font-size: .78rem;
	color: var(--sbvr188-text-3, #9aa0ae);
	margin: 0 6px 6px 0;
}
.sbvr-post__body .sbvr-catpills { margin: 1rem 0 0; }
.sbvr-post__body .sbvr-catpills a {
	display: inline-block;
	background: var(--sbvr188-surface-2, #1c1f28);
	border: 1px solid var(--sbvr188-line, #262a35);
	border-radius: 999px;
	padding: 6px 16px;
	font-size: .9rem;
	color: var(--sbvr188-text, #e8eaf0);
	border-bottom-width: 1px;
	margin: 0 8px 10px 0;
}
.sbvr-post__body .sbvr-catpills a:hover { border-color: #FF7DE0; color: #fff; }
.sbvr-post__body .sbvr-friends-note { font-style: italic; color: var(--sbvr188-text-3, #9aa0ae); }

/* --- CTA ------------------------------------------------------------------ */
/* Canonical component is .sbvr-cta-trail (main.css). This is a SKIN modifier
   only — gradient frame from the mockup, no structural overrides. */
/* The gradient FRAME lives on the wrapper, the inner fill on the component —
   the mockup's .cta / .cta__inner pair. Deliberately NO pseudo-element: the
   base .sbvr-cta-trail is position:static, so an absolutely-positioned ::after
   resolved against the wrong ancestor and blanketed the whole article
   (caught in Docker 2026-08-15). Two real boxes cannot do that. */
.sbvr-post__cta {
	margin: 56px 0 10px;
	border-radius: 20px;
	padding: 2px;
	background: linear-gradient(135deg, #FF7DE0 0%, #01B5F0 100%);
}
.sbvr-cta-trail--post,
.sbvr-cta-trail--post:hover {
	margin: 0;
	border: 0;
	border-radius: 18px;
	padding: 30px 32px;
	background: linear-gradient(135deg, rgba(255, 125, 224, .10) 0%, rgba(1, 181, 240, .10) 100%), #101015;
}
@media (max-width: 600px) {
	.sbvr-cta-trail--post,
	.sbvr-cta-trail--post:hover { padding: 24px 20px; }
}

/* --- related / keep reading ----------------------------------------------- */
.sbvr-post__related {
	padding: 56px 0 10px;
	border-top: 1px solid var(--sbvr188-line);
	margin-top: 56px;
}
.sbvr-post__related-title {
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: -.02em;
	margin: .9rem 0 0;
	color: var(--sbvr188-text);
}
.sbvr-post__related-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 26px;
}

/* --- responsive ----------------------------------------------------------- */
@media (max-width: 860px) {
	.sbvr-post__related-grid { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 820px) {
	.sbvr-hub__grid { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 600px) {
	.sbvr-hub__hero { padding: 44px 20px 40px; margin-bottom: 34px; }
	.sbvr-hub__card { padding: 20px 18px 18px; }
	.sbvr-post__title { max-width: none; }
}

/* --- a11y / motion -------------------------------------------------------- */
.sbvr-hub a:focus-visible,
.sbvr-post a:focus-visible,
.sbvr-post summary:focus-visible {
	outline: 2px solid var(--sbvr188-cyan);
	outline-offset: 3px;
	border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
	.sbvr-hub *,
	.sbvr-post * { transition: none !important; animation: none !important; }
}
/* ═══ end #188 guides/blog section ═══════════════════════════════════════ */
