/**
 * Blog Review 01 family layer.
 *
 * Colour, type, measure, rhythm, and chrome are consumed from the canonical
 * token and chrome stylesheets registered as this file's dependencies.
 */

/* Base and shared primitives. */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 48px;
}

body.sbf-blog-review01 {
	margin: 0;
	max-width: 100%;
	overflow-x: hidden;
	background: var(--sbf-deep);
	color: var(--sbf-ink);
	font-family: var(--sbf-font-body);
	font-size: var(--sbf-size-body);
	line-height: var(--sbf-leading-body);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.sbf-blog-review01 img {
	display: block;
	max-width: 100%;
	border: 0;
}

.sbf-blog-review01 a {
	color: inherit;
}

.sbf-blog-review01 h1,
.sbf-blog-review01 h2 {
	margin: 0;
	font-family: var(--sbf-font-display);
	font-weight: 400;
	font-optical-sizing: auto;
}

.sbf-blog-review01 h1 {
	font-size: var(--sbf-size-display);
	line-height: var(--sbf-leading-display);
	letter-spacing: var(--sbf-tracking-display);
}

.sbf-blog-review01 h2 {
	font-size: var(--sbf-size-h2);
	line-height: var(--sbf-leading-h2);
	letter-spacing: var(--sbf-tracking-h2);
}

.sbf-blog-review01 h3 {
	margin: 0;
	font-family: var(--sbf-font-display);
	font-size: var(--sbf-size-h3);
	font-weight: 400;
	line-height: var(--sbf-leading-h3);
	letter-spacing: var(--sbf-tracking-h3);
}

.sbf-blog-review01 p {
	margin: 0 0 1.15em;
}

.sbf-blog-review01 p:last-child {
	margin-bottom: 0;
}

.sbf-blog-review01 :focus-visible {
	outline: 2px solid var(--sbf-ember);
	outline-offset: 3px;
}

.sbf-blog-review01 .wrap {
	width: 100%;
	max-width: var(--sbf-shell);
	margin: 0 auto;
	padding-inline: var(--sbf-gutter);
}

.sbf-blog-review01 .section {
	padding-block: clamp(64px, 8vw, 104px);
}

.sbf-blog-review01 .micro-label {
	margin: 0 0 16px;
	color: var(--sbf-soft);
	font-family: var(--sbf-font-body);
	font-size: var(--sbf-size-micro);
	font-weight: 700;
	line-height: var(--sbf-leading-micro);
	letter-spacing: var(--sbf-tracking-micro);
	text-transform: uppercase;
}

.sbf-blog-review01 .eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .7em;
	margin: 0 0 20px;
	color: var(--sbf-quiet);
	font-family: var(--sbf-font-body);
	font-size: var(--sbf-size-meta);
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
}

.sbf-blog-review01 .eyebrow::before {
	width: 26px;
	height: 1px;
	background: var(--sbf-ember);
	content: "";
}

.sbf-blog-review01 .link-quiet {
	display: inline-block;
	padding-bottom: 7px;
	border-bottom: 1px solid var(--sbf-rule-strong);
	color: var(--sbf-soft);
	font-size: var(--sbf-size-micro);
	font-weight: 700;
	letter-spacing: .13em;
	text-decoration: none;
	text-transform: uppercase;
	transition: color .2s ease, border-color .2s ease;
}

.sbf-blog-review01 .link-quiet:hover {
	border-color: var(--sbf-ember);
	color: var(--sbf-ink);
}

.sbf-blog-review01 .reading {
	width: min(100%, var(--sbf-text));
	margin: 0 auto;
}

/* Bottom-aligned hero on the shared 109px desktop text edge. */
.sbf-blog-review01 .hero {
	position: relative;
	height: 100svh;
	min-height: 600px;
	overflow: hidden;
	background: var(--sbf-deep);
	isolation: isolate;
}

.sbf-blog-review01 .hero-poster {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sbf-blog-review01 .hero-veil {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(100deg, rgba(11, 10, 9, .80) 0%, rgba(11, 10, 9, .42) 38%, rgba(11, 10, 9, .06) 66%, rgba(11, 10, 9, .30) 100%),
		linear-gradient(0deg, rgba(11, 10, 9, .72) 0%, rgba(11, 10, 9, 0) 44%);
	pointer-events: none;
}

.sbf-blog-review01 .hero-inner {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 0 var(--sbf-gutter) clamp(52px, 7vw, 96px);
	padding-left: 109px;
}

.sbf-blog-review01 .hero-copy {
	max-width: 850px;
}

.sbf-blog-review01 .hero h1 {
	max-width: 14ch;
	color: var(--sbf-ink);
	text-shadow: 0 1px 3px rgba(11, 10, 9, .92), 0 3px 28px rgba(11, 10, 9, .78);
}

.sbf-blog-review01 .hero h1 em {
	color: var(--sbf-ember);
	font-style: italic;
}

.sbf-blog-review01 .hero-sub {
	max-width: 52ch;
	margin: 20px 0 0;
	color: var(--sbf-ink);
	font-size: var(--sbf-size-lead);
	font-weight: 300;
	line-height: var(--sbf-leading-lead);
	opacity: .94;
	text-shadow: 0 1px 3px rgba(11, 10, 9, .92);
}

.sbf-blog-review01 .hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 26px;
	margin: 26px 0 0;
	color: var(--sbf-soft);
	font-size: var(--sbf-size-micro);
	font-weight: 700;
	line-height: var(--sbf-leading-micro);
	letter-spacing: var(--sbf-tracking-micro);
	text-transform: uppercase;
}

.sbf-blog-review01 .hero .link-quiet {
	align-self: flex-start;
	margin-top: 30px;
}

/* Archive standing question, full-bleed rows, and three-up cards. */
.sbf-blog-review01 .index-intro {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: clamp(36px, 6vw, 104px);
	align-items: start;
}

.sbf-blog-review01 .index-intro h2 {
	max-width: 14ch;
}

.sbf-blog-review01 .index-intro h2 em {
	color: var(--sbf-ember);
	font-style: italic;
}

.sbf-blog-review01 .index-intro p {
	max-width: 52ch;
	margin: 0;
	color: var(--sbf-quiet);
	font-size: var(--sbf-size-lead);
	font-weight: 300;
	line-height: 1.6;
}

.sbf-blog-review01 .archive {
	border-top: 1px solid var(--sbf-rule);
}

.sbf-blog-review01 .story-row {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
	border-bottom: 1px solid var(--sbf-rule);
}

.sbf-blog-review01 .story-row:nth-child(even) {
	grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
}

.sbf-blog-review01 .story-row:nth-child(even) .story-image {
	order: 2;
}

.sbf-blog-review01 .story-image {
	min-height: clamp(360px, 42vw, 520px);
	overflow: hidden;
	background: var(--sbf-elev);
}

.sbf-blog-review01 .story-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .7s ease;
}

.sbf-blog-review01 .story-row:hover .story-image img {
	transform: scale(1.018);
}

.sbf-blog-review01 .story-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(48px, 6vw, 88px) clamp(28px, 5vw, 72px);
}

.sbf-blog-review01 .story-row:nth-child(odd) .story-copy {
	padding-right: var(--sbf-gutter);
}

.sbf-blog-review01 .story-row:nth-child(even) .story-copy {
	padding-left: 109px;
}

.sbf-blog-review01 .story-copy h2 {
	max-width: 18ch;
}

.sbf-blog-review01 .story-copy p:not(.micro-label) {
	max-width: 44ch;
	margin: 22px 0 0;
	color: var(--sbf-quiet);
	font-weight: 300;
	line-height: 1.72;
}

.sbf-blog-review01 .story-copy .link-quiet {
	align-self: flex-start;
	margin-top: 32px;
}

.sbf-blog-review01 .more-head {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 30px;
	margin-bottom: clamp(34px, 4vw, 52px);
}

.sbf-blog-review01 .more-head h2 {
	max-width: 16ch;
}

.sbf-blog-review01 .more {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--sbf-rule-strong);
}

.sbf-blog-review01 .more article {
	padding: clamp(26px, 3vw, 36px) clamp(20px, 2.4vw, 32px) clamp(30px, 3.4vw, 42px);
	border-right: 1px solid var(--sbf-rule);
	border-bottom: 1px solid var(--sbf-rule);
}

.sbf-blog-review01 .more article:first-child {
	padding-left: 0;
}

.sbf-blog-review01 .more article:last-child {
	padding-right: 0;
	border-right: 0;
}

.sbf-blog-review01 .more h3 {
	max-width: 18ch;
	margin: 0 0 14px;
}

.sbf-blog-review01 .more h3 a {
	text-decoration: none;
}

.sbf-blog-review01 .more p:not(.micro-label) {
	margin: 0;
	color: var(--sbf-quiet);
	font-size: var(--sbf-size-small);
	line-height: var(--sbf-leading-small);
}

/* Article body: one centred reading measure, a wide frame, and a story close. */
.sbf-blog-review01 .article-body {
	color: var(--sbf-ink);
	font-size: var(--sbf-size-body);
	font-weight: 300;
	line-height: 1.72;
}

.sbf-blog-review01 .article-body p {
	margin: 0 0 1.35em;
}

.sbf-blog-review01 .article-body h2 {
	margin: clamp(48px, 5vw, 72px) 0 clamp(18px, 2vw, 26px);
}

.sbf-blog-review01 .article-body h3 {
	margin: clamp(38px, 4vw, 56px) 0 clamp(16px, 2vw, 22px);
}

.sbf-blog-review01 .article-body ul,
.sbf-blog-review01 .article-body ol {
	margin: 0 0 1.35em;
	padding-left: 1.4em;
}

.sbf-blog-review01 .article-body blockquote {
	margin: 40px 0;
	padding: 10px 0 10px 28px;
	border-left: 1px solid var(--sbf-ember);
	color: var(--sbf-ink);
	font-family: var(--sbf-font-display);
	font-size: var(--sbf-size-h3);
	font-style: italic;
	font-weight: 400;
	line-height: 1.22;
}

.sbf-blog-review01 .wide-frame {
	width: 100%;
	max-width: var(--sbf-shell);
	margin: 0 auto;
	padding-inline: var(--sbf-gutter);
}

.sbf-blog-review01 .wide-frame img {
	width: 100%;
	aspect-ratio: 2 / 1;
	background: var(--sbf-elev);
	object-fit: cover;
}

.sbf-blog-review01 .continue {
	border-top: 1px solid var(--sbf-rule);
	background: var(--sbf-elev);
}

.sbf-blog-review01 .continue-grid {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: clamp(36px, 6vw, 104px);
	align-items: start;
}

.sbf-blog-review01 .continue h2 {
	max-width: 14ch;
}

.sbf-blog-review01 .continue p {
	max-width: 48ch;
	margin: 0 0 clamp(26px, 3vw, 38px);
	color: var(--sbf-quiet);
	font-weight: 300;
	line-height: 1.72;
}

/* Honest empty state, aligned to the wrap's left edge. */
.sbf-blog-review01 .index-empty .wrap > p {
	max-width: 44ch;
	margin: 0;
	padding-block: clamp(44px, 5.5vw, 72px);
	border-top: 1px solid var(--sbf-rule);
	border-bottom: 1px solid var(--sbf-rule);
	color: var(--sbf-quiet);
	font-size: var(--sbf-size-lead);
	font-weight: 300;
	line-height: 1.6;
}

.sbf-blog-review01 .blog-pagination {
	padding: 0 0 clamp(64px, 8vw, 104px);
}

.sbf-blog-review01 .blog-pagination .wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.sbf-blog-review01 .blog-pagination .page-numbers {
	padding-bottom: 5px;
	border-bottom: 1px solid var(--sbf-rule-strong);
	color: var(--sbf-soft);
	font-size: var(--sbf-size-micro);
	font-weight: 700;
	letter-spacing: var(--sbf-tracking-micro);
	text-decoration: none;
	text-transform: uppercase;
}

.sbf-blog-review01 .blog-pagination .page-numbers.current,
.sbf-blog-review01 .blog-pagination .page-numbers:hover {
	border-color: var(--sbf-ember);
	color: var(--sbf-ink);
}

@media (max-width: 900px) {
	.sbf-blog-review01 .index-intro,
	.sbf-blog-review01 .continue-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.sbf-blog-review01 .story-row,
	.sbf-blog-review01 .story-row:nth-child(even) {
		grid-template-columns: 1fr;
	}

	.sbf-blog-review01 .story-row:nth-child(even) .story-image {
		order: 0;
	}

	.sbf-blog-review01 .story-image {
		min-height: 64vw;
	}

	.sbf-blog-review01 .story-copy,
	.sbf-blog-review01 .story-row:nth-child(odd) .story-copy,
	.sbf-blog-review01 .story-row:nth-child(even) .story-copy {
		padding: clamp(40px, 7vw, 64px) var(--sbf-gutter) clamp(40px, 7vw, 64px) 109px;
	}

	.sbf-blog-review01 .more {
		grid-template-columns: 1fr;
	}

	.sbf-blog-review01 .more article,
	.sbf-blog-review01 .more article:first-child,
	.sbf-blog-review01 .more article:last-child {
		padding-inline: 0;
		border-right: 0;
	}

	.sbf-blog-review01 .more-head {
		display: block;
	}
}

@media (max-width: 640px) {
	.sbf-blog-review01 .hero-inner {
		padding-bottom: 44px;
		padding-left: 20px;
	}

	.sbf-blog-review01 .story-copy,
	.sbf-blog-review01 .story-row:nth-child(odd) .story-copy,
	.sbf-blog-review01 .story-row:nth-child(even) .story-copy {
		padding-right: 20px;
		padding-left: 20px;
	}

	.sbf-blog-review01 .hero h1 {
		max-width: 11ch;
	}

	.sbf-blog-review01 .hero-meta {
		gap: 8px 18px;
	}

	.sbf-blog-review01 .wide-frame img {
		aspect-ratio: 16 / 10;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		transition: none !important;
		animation: none !important;
	}
}

/* Shared chrome, stated here because chrome.css does not state it.
 *
 * chrome.css sets the footer link's colour, size, leading, tracking and
 * decoration but NOT its weight, so the parent Divi theme supplies 500. The
 * six older family stylesheets never noticed: each is a Divi-out-specifying
 * dump that materialises an explicit value onto every element, so each
 * happens to carry 400. This family's sheet is lean, so it inherited the bug
 * and the parity gate caught it — footer links at weight 500 against 400 on
 * /contact/ and /team-.../, at all four widths.
 *
 * The real fix belongs in chrome.css, which is a declared non-goal of this
 * build and would move six live families. Filed separately; this is the
 * local, in-scope correction that makes Blog match its neighbours today.
 */
body.sbf-blog-review01 .foot-col a{font-weight:400}

/* Divi-parent immunity.
 *
 * Divi remains the parent theme until the last legacy page is migrated, and it
 * ships inline stylesheets that set h1-h6 colour and size and the body font
 * size. The six older family stylesheets never notice because each is a
 * generated dump that materialises an explicit value onto every element — that
 * is what the 447KB of review45.css is. This sheet is lean, so Divi won.
 *
 * Measured on the clone against the design artifact at 1440x900:
 *   hero h1          60px      should be 84px  (display step)
 *   article h2       48px      should be 60px  (h2 step)
 *   article h2 color rgb(147,147,147)  should be --sbf-ink
 *   article p        16px      should be 17px  (body step)
 *
 * story-review07.css carries the same block for the same reason; this states
 * only the values Divi overrides, not a blanket !important sweep.
 */
body.sbf-blog-review01 .hero h1{font-size:var(--sbf-size-display)!important;line-height:var(--sbf-leading-display)!important;letter-spacing:var(--sbf-tracking-display)!important}
body.sbf-blog-review01 main :is(h1,h2,h3,h4,h5,h6){color:var(--sbf-ink)!important}
body.sbf-blog-review01 .article-body h2{font-size:var(--sbf-size-h2)!important;line-height:var(--sbf-leading-h2)!important;letter-spacing:var(--sbf-tracking-h2)!important}
body.sbf-blog-review01 .article-body p,body.sbf-blog-review01 .article-body li{font-size:var(--sbf-size-body)!important;line-height:1.72!important}
body.sbf-blog-review01 .story-copy h2{font-size:var(--sbf-size-h2)!important;line-height:var(--sbf-leading-h2)!important}
body.sbf-blog-review01 .more h3{font-size:var(--sbf-size-h3)!important;line-height:var(--sbf-leading-h3)!important}

/* Divi also supplies a 16px font-size to every <p>, which reaches this
 * family's small text: archive-row dates, card labels and copy, the hero deck
 * and meta, the empty-state line and the captions all rendered at 16px against
 * the design's 11-21px. Stating each class's step is what the older family
 * stylesheets do by brute force; this is the same thing written by hand for
 * the classes this family actually uses.
 */
body.sbf-blog-review01 .micro-label{font-size:var(--sbf-size-micro)!important;line-height:var(--sbf-leading-micro)!important;font-weight:700!important;color:var(--sbf-soft)!important}
body.sbf-blog-review01 .hero-sub{font-size:var(--sbf-size-lead)!important;line-height:var(--sbf-leading-lead)!important;font-weight:300!important}
body.sbf-blog-review01 .hero-meta,body.sbf-blog-review01 .hero-meta span{font-size:var(--sbf-size-micro)!important;line-height:var(--sbf-leading-micro)!important;font-weight:700!important}
body.sbf-blog-review01 .index-intro p{font-size:var(--sbf-size-lead)!important;font-weight:300!important;line-height:1.6!important}
body.sbf-blog-review01 .index-empty p{font-size:var(--sbf-size-lead)!important;font-weight:300!important;line-height:1.6!important}
body.sbf-blog-review01 .story-copy p:not(.micro-label){font-size:var(--sbf-size-body)!important;font-weight:300!important;line-height:1.72!important;color:var(--sbf-quiet)!important}
body.sbf-blog-review01 .more article p:not(.micro-label){font-size:var(--sbf-size-small)!important;line-height:var(--sbf-leading-small)!important;font-weight:400!important;color:var(--sbf-quiet)!important}
body.sbf-blog-review01 .article-note{font-size:var(--sbf-size-meta)!important;line-height:1.55!important}
body.sbf-blog-review01 .wide-frame figcaption{font-size:var(--sbf-size-micro)!important;line-height:var(--sbf-leading-micro)!important;font-weight:400!important;color:var(--sbf-soft)!important}
body.sbf-blog-review01 .continue p{font-size:var(--sbf-size-body)!important;font-weight:300!important;line-height:1.72!important}
body.sbf-blog-review01 .link-quiet{font-size:var(--sbf-size-micro)!important;font-weight:700!important;color:var(--sbf-soft)!important}
