@import '../../../assets/css/tokens.css';

/* inlined from src/Blocks/review-box/styles/_tokens.css */
/*
 * Halo Review — token defaults per archetype.
 *
 * Defaults shipped here. Plugin emits `--hr-cat-accent` and `--hr-cat-rgb`
 * inline on the card root from Settings (typeStyles[type].accent ||
 * appearance.brandColor) — those inline values win.
 */

:root {
	--hr-cat-game-accent:    #0369a1; --hr-cat-game-rgb:    3, 105, 161;
	--hr-cat-gadget-accent:  #3d3d4e; --hr-cat-gadget-rgb:  61, 61, 78;
	--hr-cat-movie-accent:   #a16207; --hr-cat-movie-rgb:   161, 98, 7;
	--hr-cat-series-accent:  #be185d; --hr-cat-series-rgb:  190, 24, 93;
	--hr-cat-general-accent: #4f46e5; --hr-cat-general-rgb: 79, 70, 229;

	--hr-ease-smooth: cubic-bezier(.2, 0, 0, 1);
	--hr-ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

/* Review root — each style picks the matching default and exposes shared vars. */
.halo-review--game    { --hr-cat-accent: var(--hr-cat-game-accent);    --hr-cat-rgb: var(--hr-cat-game-rgb); }

.halo-review--gadget  { --hr-cat-accent: var(--hr-cat-gadget-accent);  --hr-cat-rgb: var(--hr-cat-gadget-rgb); }

.halo-review--movie   { --hr-cat-accent: var(--hr-cat-movie-accent);   --hr-cat-rgb: var(--hr-cat-movie-rgb); }

.halo-review--series  { --hr-cat-accent: var(--hr-cat-series-accent);  --hr-cat-rgb: var(--hr-cat-series-rgb); }

.halo-review--general { --hr-cat-accent: var(--hr-cat-general-accent); --hr-cat-rgb: var(--hr-cat-general-rgb); }

.halo-review--game,
.halo-review--gadget,
.halo-review--movie,
.halo-review--series,
.halo-review--general {
	--hr-cat-glow: rgba(var(--hr-cat-rgb), .35);
}


/* inlined from src/Blocks/review-box/styles/_verdict-card.css */
/*
 * Halo Review — verdict card.
 *
 * Hero shell shared across all five archetypes: image + scrim + type pill
 * (with brand logo slot) + eyebrow + content grid (writer info + score box).
 */

@keyframes hr-vc-card-in {

	from { opacity: 0; transform: translateY(20px); }

	to   { opacity: 1; transform: translateY(0); }
}

.hr-verdict-card {
	position: relative;
	width: 100%;
	margin: 0 0 20px;
	border-radius: var(--hr-radius-xl, 14px);
	overflow: hidden;
	background: #0d0820;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, .06) inset,
		0 0 0 1px rgba(255, 255, 255, .04),
		0 10px 24px -14px rgba(0, 0, 0, .5),
		0 18px 40px -28px rgba(var(--hr-cat-rgb, 250, 152, 58), .18);
}

@media (prefers-reduced-motion: no-preference) {

	@supports (animation-timeline: view()) {

		.hr-verdict-card {
			animation: hr-vc-card-in .7s var(--hr-ease-smooth) both;
			animation-timeline: view();
			animation-range: entry 0% cover 30%;
		}
	}
}

.hr-verdict-card::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(120% 80% at 85% 100%, rgba(var(--hr-cat-rgb, 250, 152, 58), .1), transparent 55%);
	mix-blend-mode: screen;
	z-index: 1;
}

.hr-vc-image {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.hr-vc-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hr-vc-scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top,
		rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .45) 32%,
		rgba(0, 0, 0, .18) 58%, transparent 82%);
	pointer-events: none;
}

@keyframes hr-vc-type-in {

	from { opacity: 0; transform: translateY(-6px); }

	to   { opacity: 1; transform: translateY(0); }
}

.hr-vc-type {
	position: absolute;
	top: 16px;
	left: 20px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 6px 12px;
	font: 700 10px/1 ui-monospace, monospace;
	letter-spacing: .14em;
	text-transform: uppercase;
	background: rgba(13, 8, 32, .85);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 999px;
	z-index: 2;
}

@media (prefers-reduced-motion: no-preference) {

	@supports (animation-timeline: view()) {

		.hr-vc-type {
			animation: hr-vc-type-in .5s var(--hr-ease-smooth) both;
			animation-timeline: view();
			animation-range: entry 15% cover 45%;
		}
	}
}

.hr-vc-type::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--hr-cat-accent);
	box-shadow: 0 0 8px rgba(var(--hr-cat-rgb), .8);
}

.hr-verdict-card img.hr-vc-type-logo {
	height: 20px !important;
	min-height: 20px !important;
	max-height: 20px !important;
	width: auto !important;
	max-width: none !important;
	display: block;
	margin-right: 2px;
	object-fit: contain;
}

@keyframes hr-vc-eyebrow-in {

	from { opacity: 0; }

	to   { opacity: 1; }
}

.hr-vc-eyebrow {
	position: absolute;
	top: 16px;
	right: 20px;
	font: 700 11px/1 ui-monospace, monospace;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .7);
	z-index: 2;
	text-shadow: 0 1px 6px rgba(0, 0, 0, .6);
}

@media (prefers-reduced-motion: no-preference) {

	@supports (animation-timeline: view()) {

		.hr-vc-eyebrow {
			animation: hr-vc-eyebrow-in .5s var(--hr-ease-smooth) both;
			animation-timeline: view();
			animation-range: entry 15% cover 45%;
		}
	}
}

.hr-vc-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 28px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 20px;
	align-items: end;
	z-index: 2;
	background: linear-gradient(to top,
		rgba(13, 8, 32, .96) 0%,
		rgba(13, 8, 32, .9) 30%,
		rgba(13, 8, 32, .7) 55%,
		rgba(13, 8, 32, .35) 80%,
		rgba(13, 8, 32, 0) 100%);
	-webkit-mask-image: linear-gradient(to top, #000 70%, transparent 100%);
	mask-image: linear-gradient(to top, #000 70%, transparent 100%);
	padding-top: 80px;
}

@keyframes hr-vc-info-in {

	from { opacity: 0; transform: translateY(12px); }

	to   { opacity: 1; transform: translateY(0); }
}

.hr-vc-info {
	min-width: 0;
	color: #fff;
}

@media (prefers-reduced-motion: no-preference) {

	@supports (animation-timeline: view()) {

		.hr-vc-info {
			animation: hr-vc-info-in .6s var(--hr-ease-smooth) both;
			animation-timeline: view();
			animation-range: entry 20% cover 50%;
		}
	}
}

.hr-vc-chips {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
}

.hr-vc-verdict-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font: 700 11px/1.2 system-ui;
	letter-spacing: .14em;
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--hr-cat-accent);
	color: #fff;
	border: 1px solid var(--hr-cat-accent);
}

.hr-vc-title {
	font: 700 35px/1.1 system-ui;
	letter-spacing: -.015em;
	margin: 5px 0 !important;
	line-height: 1.1 !important;
	color: #fff;
	text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}

.hr-vc-verdict {
	font: 400 20px/1.35 system-ui;
	color: rgba(255, 255, 255, .85);
	margin: 10px 0;
	max-width: 42ch;
}

.hr-review-summary__title {
	font: 700 18px/1.3 system-ui;
	color: inherit;
	margin: 10px 0 6px !important;
}

.hr-review-summary {
	font: 400 16px/1.6 system-ui;
	color: inherit;
	margin: 10px 0 20px !important;
	max-width: 68ch;
}

.hr-vc-plat {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 3px 9px;
	font: 600 11px/1.4 ui-monospace, monospace;
	letter-spacing: .04em;
	color: #fff;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 5px;
}

.hr-vc-plat-icon {
	width: 14px;
	height: 14px;
	object-fit: contain;
	display: block;
}

.hr-vc-writer {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-top: 10px;
	border-top: 1px solid rgba(255, 255, 255, .15);
}

.hr-vc-writer-av {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .18);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font: 700 13px/1 system-ui;
	flex-shrink: 0;
	border: 1.5px solid rgba(255, 255, 255, .25);
}

.hr-vc-writer-info { display: flex; flex-direction: column; gap: 1px; }

.hr-vc-writer-name { font: 600 13px/1.2 system-ui; color: #fff; }

.hr-vc-writer-meta { font: 400 12px/1.2 system-ui; color: rgba(255, 255, 255, .65); }

/* Mobile — content lifts below the image; score box stays in grid right column. */
@media (max-width: 600px) {

	.hr-vc-image { aspect-ratio: 16 / 10; }

	.hr-vc-scrim {
		background: linear-gradient(to top, rgba(0, 0, 0, .55) 0%, transparent 50%);
	}

	.hr-vc-content {
		position: static;
		background: #0d0820;
		padding: 20px 18px;
		grid-template-columns: 1fr auto;
		gap: 12px;
		align-items: end;
	}

	.hr-vc-title { font: 700 20px/1.1 system-ui; margin: 5px 0 !important; line-height: 1.1 !important; }

	.hr-vc-verdict { font-size: 17px; margin: 10px 0; }

	.hr-vc-chips { gap: 6px; margin-bottom: 10px; }

	.hr-vc-verdict-label { padding: 4px 10px; font-size: 10px; }

	.hr-vc-plat { font-size: 10px; padding: 2px 7px; }

	.hr-vc-writer { padding-top: 10px; }

	.hr-vc-writer-av { width: 28px; height: 28px; font-size: 12px; }

	.hr-vc-writer-name { font-size: 12px; }

	.hr-vc-writer-meta { font-size: 11px; }

	.hr-vc-type { top: 12px; left: 14px; }

	.hr-verdict-card img.hr-vc-type-logo {
		height: 15px !important;
		min-height: 15px !important;
		max-height: 15px !important;
	}

	.hr-vc-eyebrow { top: 12px; right: 14px; }
}

@media (prefers-reduced-motion: reduce) {

	.hr-verdict-card,
	.hr-vc-type,
	.hr-vc-eyebrow,
	.hr-vc-info { animation: none; }
}


/* inlined from src/Blocks/review-box/styles/_score-box.css */
/*
 * Halo Review — score box system.
 *
 * Five archetypes share `.hr-sb` base. Theme via `--hr-cat-accent` and
 * `--hr-cat-rgb` set on the card root (or inline on the score box).
 * Mobile: score box stays pinned right at all viewports. `series` (TV)
 * collapses to chip-only at ≤600px (no left label half).
 */

@keyframes hr-sb-in {

	from { opacity: 0; transform: translateY(8px) scale(.94); }

	to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hr-sb {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-variant-numeric: tabular-nums;
}

@media (prefers-reduced-motion: no-preference) {

	@supports (animation-timeline: view()) {

		.hr-sb {
			animation: hr-sb-in .5s var(--hr-ease-spring) both;
			animation-timeline: view();
			animation-range: entry 20% cover 50%;
		}
	}
}

.hr-sb-num {
	font: 800 clamp(40px, 7vw, 52px) / .9 system-ui;
	letter-spacing: -.05em;
	color: #fff;
	text-shadow: 0 1px 6px rgba(0, 0, 0, .35);
}

.hr-sb-max { font: 600 .42em / 1 system-ui; opacity: .7; margin-left: 1px; letter-spacing: 0; }

.hr-sb-brand { font: 700 10px/1 ui-monospace, monospace; letter-spacing: .18em; text-transform: uppercase; color: rgba(255, 255, 255, .92); }

.hr-sb-tier { font: 700 9px/1 ui-monospace, monospace; letter-spacing: .16em; text-transform: uppercase; }

/* 1. GAME — pixelated 8-bit square */
.hr-sb--game {
	width: 120px; height: 120px;
	background-color: var(--hr-cat-accent);
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' preserveAspectRatio='none' shape-rendering='crispEdges'><g fill='rgba(0,0,0,0.3)'><rect x='14' y='22' width='4' height='4'/><rect x='100' y='18' width='4' height='4'/><rect x='18' y='100' width='4' height='4'/><rect x='98' y='98' width='4' height='4'/></g><g fill='rgba(255,255,255,0.2)'><rect x='106' y='52' width='4' height='4'/><rect x='10' y='66' width='4' height='4'/></g></svg>");
	background-size: 100% 100%;
	background-repeat: no-repeat;
	border-radius: 0;
	clip-path: polygon(
		12px 0, calc(100% - 12px) 0,
		calc(100% - 12px) 4px, calc(100% - 8px) 4px,
		calc(100% - 8px) 8px, calc(100% - 4px) 8px,
		calc(100% - 4px) 12px, 100% 12px,
		100% calc(100% - 12px),
		calc(100% - 4px) calc(100% - 12px), calc(100% - 4px) calc(100% - 8px),
		calc(100% - 8px) calc(100% - 8px), calc(100% - 8px) calc(100% - 4px),
		calc(100% - 12px) calc(100% - 4px), calc(100% - 12px) 100%,
		12px 100%,
		12px calc(100% - 4px), 8px calc(100% - 4px),
		8px calc(100% - 8px), 4px calc(100% - 8px),
		4px calc(100% - 12px), 0 calc(100% - 12px),
		0 12px,
		4px 12px, 4px 8px,
		8px 8px, 8px 4px,
		12px 4px, 12px 0
	);
	box-shadow:
		inset 6px 6px 0 0 rgba(255, 255, 255, .32),
		inset -6px -6px 0 0 rgba(0, 0, 0, .32);
	padding: 14px 10px;
	gap: 4px;
	image-rendering: pixelated;
}

.hr-sb--game::before {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, .18) 0%, rgba(255, 255, 255, 0) 55%);
	pointer-events: none;
}

.hr-sb--game .hr-sb-num { font-size: clamp(38px, 6.4vw, 46px); }

/* 2. GADGET (TECH) — LCD readout */
.hr-sb--gadget {
	width: 128px; height: 128px;
	border-radius: 6px;
	background: rgba(0, 0, 0, .35);
	border: 1.5px solid color-mix(in srgb, var(--hr-cat-accent) 70%, transparent);
	padding: 14px 10px;
	gap: 6px;
	box-shadow:
		inset 0 0 0 4px rgba(0, 0, 0, .18),
		inset 0 0 24px rgba(var(--hr-cat-rgb), .18);
}

.hr-sb--gadget::before {
	content: ''; position: absolute; inset: 6px;
	background: repeating-linear-gradient(0deg,
		transparent 0, transparent 2px,
		rgba(255, 255, 255, .025) 2px, rgba(255, 255, 255, .025) 3px);
	pointer-events: none;
}

.hr-sb--gadget .hr-sb-num {
	font-family: ui-monospace, 'JetBrains Mono', monospace;
	font-size: clamp(40px, 6.8vw, 48px);
	color: #fff;
	text-shadow:
		0 0 14px rgba(var(--hr-cat-rgb), .7),
		0 1px 0 rgba(0, 0, 0, .4);
}

.hr-sb--gadget .hr-sb-divider { width: 48px; height: 1px; background: color-mix(in srgb, var(--hr-cat-accent) 60%, transparent); }

.hr-sb--gadget .hr-sb-brand { color: color-mix(in srgb, var(--hr-cat-accent) 80%, #fff 20%); font-size: 9px; }

/* 3. MOVIE — marquee plate */
.hr-sb--movie {
	width: 132px; height: 120px;
	border-radius: 10px;
	background: linear-gradient(180deg, #0a0a12 0%, #000 100%);
	padding: 14px 12px 12px;
	gap: 4px;
	border: 1px solid rgba(255, 255, 255, .08);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .08),
		0 6px 20px rgba(0, 0, 0, .4);
}

.hr-sb--movie::before {
	content: ''; position: absolute;
	top: 0; left: 14%; right: 14%; height: 2px;
	background: var(--hr-cat-accent);
	box-shadow: 0 0 12px rgba(var(--hr-cat-rgb), .6);
}

.hr-sb--movie .hr-sb-num { font-size: clamp(38px, 6.4vw, 46px); color: #fff; letter-spacing: -.04em; }

.hr-sb--movie .hr-sb-divider { width: 40px; height: 1px; background: rgba(255, 255, 255, .2); margin: 1px 0; }

.hr-sb--movie .hr-sb-brand { color: var(--hr-cat-accent); font-size: 9px; }

/* 4. SERIES (TV) — channel bug */
.hr-sb--series {
	width: 148px; height: 88px;
	flex-direction: row;
	border-radius: 10px;
	background: #0a0a12;
	border: 1px solid rgba(255, 255, 255, .08);
	overflow: hidden;
	padding: 0;
	box-shadow: 0 4px 14px rgba(0, 0, 0, .35);
}

.hr-sb--series-left {
	flex: 1;
	display: flex; flex-direction: column;
	align-items: flex-start; justify-content: center;
	gap: 5px;
	padding: 0 10px 0 12px;
}

.hr-sb--series-right {
	width: 64px;
	align-self: stretch;
	display: flex; align-items: center; justify-content: center;
	background: var(--hr-cat-accent);
	position: relative;
}

.hr-sb--series-right::before {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, .16) 0%, rgba(255, 255, 255, 0) 55%);
	pointer-events: none;
}

.hr-sb--series .hr-sb-num { font-size: clamp(34px, 5.8vw, 40px); }

.hr-sb--series .hr-sb-brand { font-size: 11px; color: #fff; letter-spacing: .14em; }

.hr-sb--series .hr-sb-tier { color: var(--hr-cat-accent); font-size: 8.5px; }

/* 5. GENERAL — circular dial */
.hr-sb--general {
	width: 120px; height: 120px;
	border-radius: 50%;
	background: rgba(0, 0, 0, .4);
	border: 1px solid rgba(255, 255, 255, .08);
	gap: 1px;
}

.hr-sb-ring { position: absolute; inset: 5px; transform: rotate(-90deg); z-index: 0; }

.hr-sb-ring-track { fill: none; stroke: rgba(255, 255, 255, .08); stroke-width: 5; }

@keyframes hr-ring-fill {

	from { stroke-dashoffset: 339.3; }

	to   { stroke-dashoffset: var(--ring-offset, 33.93); }
}

.hr-sb-ring-prog {
	fill: none;
	stroke: var(--hr-cat-accent);
	stroke-width: 5;
	stroke-linecap: round;
	stroke-dasharray: 339.3;
	stroke-dashoffset: var(--ring-offset, 33.93);
	filter: drop-shadow(0 0 3px rgba(var(--hr-cat-rgb), .2));
}

@media (prefers-reduced-motion: no-preference) {

	@supports (animation-timeline: view()) {

		.hr-sb-ring-prog {
			animation: hr-ring-fill 1.1s var(--hr-ease-smooth) both;
			animation-timeline: view();
			animation-range: entry 20% cover 60%;
		}
	}
}

.hr-sb--general .hr-sb-num { position: relative; z-index: 1; font-size: clamp(36px, 6vw, 42px); }

.hr-sb--general .hr-sb-brand { position: relative; z-index: 1; font-size: 9px; color: rgba(255, 255, 255, .7); }

/* Mobile — score box pinned right, never stacks. TV drops left half. */
@media (max-width: 600px) {

	.hr-sb--game { width: 96px; height: 96px; padding: 10px 8px; }

	.hr-sb--game .hr-sb-num { font-size: 34px; }

	.hr-sb--game .hr-sb-brand { font-size: 8px; letter-spacing: .14em; }

	.hr-sb--gadget { width: 100px; height: 100px; padding: 10px 8px; gap: 4px; }

	.hr-sb--gadget .hr-sb-num { font-size: 36px; }

	.hr-sb--gadget .hr-sb-brand { font-size: 8px; }

	.hr-sb--gadget .hr-sb-divider { width: 36px; }

	.hr-sb--movie { width: 102px; height: 96px; padding: 11px 10px 10px; }

	.hr-sb--movie .hr-sb-num { font-size: 34px; }

	.hr-sb--movie .hr-sb-brand { font-size: 8px; letter-spacing: .14em; }

	.hr-sb--movie .hr-sb-divider { width: 32px; }

	.hr-sb--series {
		width: 80px; height: 80px;
		border-radius: 10px;
		background: var(--hr-cat-accent);
		border: none;
		box-shadow: 0 4px 14px rgba(var(--hr-cat-rgb), .35);
		overflow: hidden;
		position: relative;
	}

	.hr-sb--series::before {
		content: ''; position: absolute; inset: 0;
		background: linear-gradient(180deg, rgba(255, 255, 255, .18) 0%, rgba(255, 255, 255, 0) 55%);
		pointer-events: none;
	}

	.hr-sb--series-left { display: none; }

	.hr-sb--series-right { width: 100%; background: transparent; align-self: auto; }

	.hr-sb--series-right::before { display: none; }

	.hr-sb--series .hr-sb-num { font-size: 34px; }

	.hr-sb--general { width: 96px; height: 96px; }

	.hr-sb--general .hr-sb-ring { inset: 4px; }

	.hr-sb--general .hr-sb-num { font-size: 30px; }

	.hr-sb--general .hr-sb-brand { font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {

	.hr-sb { animation: none; }

	.hr-sb-ring-prog { animation: none; stroke-dashoffset: var(--ring-offset, 33.93); }
}


/* inlined from src/Blocks/review-box/styles/_signatures.css */
/*
 * Halo Review — per-archetype signature sections.
 *
 *   game, general  → criteria bars (reuses .halo-review-card__criteria)
 *   gadget         → spec grid (.hr-specs)
 *   movie          → dual score (.hr-dual-score) + cast row (.hr-cast)
 *   series         → episode strip (.hr-episodes)
 */

/* ── verdict paragraph + section title (shared) ── */
.hr-verdict-quote {
	position: relative;
	font: 400 clamp(17px, 2vw, 21px) / 1.55 system-ui;
	color: var(--hr-text);
	margin: 0 0 24px;
	padding-left: 22px;
}

.hr-verdict-quote::before {
	content: '';
	position: absolute;
	left: 0; top: 6px; bottom: 6px;
	width: 3px;
	background: var(--hr-cat-accent);
	border-radius: 2px;
	box-shadow: 0 0 12px rgba(var(--hr-cat-rgb), .4);
}

.hr-verdict-quote strong { color: var(--hr-text); }

.hr-section-title {
	font: 700 13px/1 system-ui;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: inherit;
	margin: 0 0 16px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.hr-section-title::before {
	content: '';
	width: 24px;
	height: 3px;
	background: var(--hr-cat-accent);
	border-radius: 2px;
	box-shadow: 0 0 8px rgba(var(--hr-cat-rgb), .5);
}

/* ── GADGET: spec grid ── */
.hr-specs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin: 0 0 32px;
}

.hr-spec {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 14px 16px;
	background: var(--hr-surface-2);
	border: 1px solid var(--hr-border);
	border-radius: 10px;
	position: relative;
	overflow: hidden;
}

.hr-spec::before {
	content: '';
	position: absolute;
	left: 0; top: 0; bottom: 0;
	width: 3px;
	background: var(--hr-cat-accent);
	opacity: .6;
}

.hr-spec-key { font: 700 10px/1 ui-monospace, monospace; letter-spacing: .1em; text-transform: uppercase; color: var(--hr-text-muted); }

.hr-spec-val { font: 600 15px/1.3 system-ui; color: var(--hr-text); }

.hr-spec-sub { font: 400 12px/1.3 system-ui; color: var(--hr-text-muted); margin-top: 1px; }

@media (max-width: 560px) {

	.hr-specs { grid-template-columns: 1fr; }
}

/* ── MOVIE: dual score + cast row ── */
.hr-dual-score {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin: 0 0 24px;
}

.hr-ds-card {
	padding: 20px 22px;
	background: var(--hr-surface-2);
	border: 1px solid var(--hr-border);
	border-radius: 10px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hr-ds-card::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(var(--hr-cat-rgb), .10) 0%, transparent 60%);
}

.hr-ds-label {
	font: 700 10px/1 ui-monospace, monospace;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--hr-text-muted);
	margin-bottom: 10px;
	position: relative;
}

.hr-ds-num {
	font: 800 44px / .9 system-ui;
	letter-spacing: -.04em;
	font-variant-numeric: tabular-nums;
	position: relative;
}

.hr-ds-max { font: 600 14px/1 system-ui; color: var(--hr-text-muted); margin-left: 2px; }

.hr-ds-meta { font: 400 12px/1.3 system-ui; color: var(--hr-text-muted); margin-top: 6px; position: relative; }

.hr-cast { margin: 0 0 32px; }

.hr-cast-title { font: 700 11px/1 ui-monospace, monospace; letter-spacing: .12em; text-transform: uppercase; color: var(--hr-text-muted); margin: 0 0 12px; }

.hr-cast-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 14px;
}

.hr-cast-item {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 10px 12px;
	background: var(--hr-surface-2);
	border: 1px solid var(--hr-border);
	border-radius: 8px;
}

.hr-cast-name { font: 600 14px/1.3 system-ui; color: var(--hr-text); }

.hr-cast-role { font: 400 12px/1.3 system-ui; color: var(--hr-text-muted); }

@media (max-width: 560px) {

	.hr-dual-score { grid-template-columns: 1fr; }

	.hr-ds-num { font-size: 38px; }
}

/* ── SERIES: episode strip ── */
.hr-episodes {
	margin: 0 0 32px;
	padding: 20px 22px;
	background: var(--hr-surface-2);
	border: 1px solid var(--hr-border);
	border-radius: 10px;
}

.hr-ep-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.hr-ep-title { font: 700 11px/1 ui-monospace, monospace; letter-spacing: .12em; text-transform: uppercase; color: var(--hr-text-muted); }

.hr-ep-avg { font: 700 13px/1 system-ui; font-variant-numeric: tabular-nums; color: var(--hr-cat-accent); }

.hr-ep-avg-label { font: 500 11px/1 system-ui; color: var(--hr-text-muted); margin-right: 6px; letter-spacing: .04em; text-transform: uppercase; }

.hr-ep-bars {
	display: flex;
	align-items: flex-end;
	gap: 6px;
	height: 64px;
	margin-bottom: 10px;
}

.hr-ep-bar {
	flex: 1;
	background: var(--hr-surface-3, var(--hr-surface-2));
	border-radius: 3px 3px 0 0;
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	cursor: help;
	transition: opacity .2s;
}

.hr-ep-bar:hover { opacity: .7; }

.hr-ep-fill {
	width: 100%;
	border-radius: 3px 3px 0 0;
	height: var(--h, 50%);
	background: var(--hr-cat-accent);
}

.hr-ep-nums {
	display: flex;
	gap: 6px;
	font: 700 11px/1 ui-monospace, monospace;
	color: var(--hr-text-muted);
	font-variant-numeric: tabular-nums;
}

.hr-ep-num { flex: 1; text-align: center; }



/* inlined from src/Blocks/review-box/styles/_criteria.css */
/* ════════════════════════════════════════════════════════════════════════
   Halo Review — Per-style criteria variants
   A=general, B=game, C=movie, D=series, E=gadget
   Animations: bars use scaleX (scroll-driven via animation-timeline), dials use stroke-dashoffset.
═════════════════════════════════════════════════════════════════════════ */

.hrcv2 {
	font-family: var(--hr-font-sans);
	color: var(--hr-text);
	margin: var(--hr-space-4) 0;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	clear: both;
}

.hrcv2 *, .hrcv2 *::before, .hrcv2 *::after { box-sizing: border-box; }

/* Neutralize shared icon-wrapper styles so each variant controls its own swatch */
.hrcv2 .halo-review-card__criterion-icon {
	color: inherit;
	width: auto;
	height: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.hrcv2 .halo-review-card__criterion-icon svg {
	width: 100%;
	height: 100%;
	max-width: 18px;
	max-height: 18px;
	display: block;
}

@keyframes hrcv2-bar-grow {

	from { transform: scaleX(0); }

	to   { transform: scaleX(var(--hr-bar-target, 1)); }
}

.hrcv2 [data-halo-review-bar] {
	transform-origin: left center;
	transform: scaleX(var(--hr-bar-target, 1));
	will-change: transform;
}

@media (prefers-reduced-motion: no-preference) {

	@supports (animation-timeline: view()) {

		.hrcv2 [data-halo-review-bar] {
			animation: hrcv2-bar-grow 750ms cubic-bezier(.22, 1, .36, 1) both;
			animation-timeline: view();
			animation-range: entry 0% cover 40%;
		}
	}
}

.hrcv2 [data-halo-review-dial] {
	transition: stroke-dashoffset 800ms cubic-bezier(.4, 0, .2, 1);
	stroke-linecap: round;
}

@media (prefers-reduced-motion: reduce) {

	.hrcv2 [data-halo-review-bar] { animation: none; transform: scaleX(var(--hr-bar-target, 1)); }

	.hrcv2 [data-halo-review-dial] { transition: none; }
}

/* ═══════════════════════════════════════
   VARIANT A — GENERAL (dark grid, SVG dials, amber)
═══════════════════════════════════════ */
.hrcv2--a {
	--hrcv2-a-accent: var(--hr-cat-accent, var(--hr-brand));
	background: #0F0F0F;
	border-radius: var(--hr-radius-lg, 12px);
	overflow: hidden;
	border: 1px solid var(--hr-border);
}

.hrcv2-a-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	background: #1A1A1A;
}

.hrcv2-a-cell {
	background: #0F0F0F;
	padding: 22px 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	transition: background .15s;
	min-width: 0;
}

.hrcv2-a-cell:hover { background: #1C1C1C; }

.hrcv2-a-dial { position: relative; width: 68px; height: 68px; }

.hrcv2-a-dial svg { width: 68px; height: 68px; transform: rotate(-90deg); display: block; }

.hrcv2-a-dial-track { fill: none; stroke: #2A2A2A; stroke-width: 5; }

.hrcv2-a-dial-fill { fill: none; stroke: var(--hrcv2-a-accent); stroke-width: 5; stroke-linecap: round; }

.hrcv2-a-dial-num {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--hr-font-mono, ui-monospace, monospace);
	font-size: 15px;
	font-weight: 700;
	color: #F0F0EE;
	font-variant-numeric: tabular-nums;
}

.hrcv2-a-name {
	font-size: 11px;
	font-weight: 500;
	color: #888884;
	text-align: center;
}

/* ═══════════════════════════════════════
   VARIANT B — GAME (clean rows, violet bars)
═══════════════════════════════════════ */
.hrcv2--b {
	--hrcv2-b-accent: var(--hr-cat-accent, var(--hr-brand));
	background: var(--hr-surface);
	border: 1px solid var(--hr-border);
	border-left: 3px solid var(--hrcv2-b-accent);
	border-radius: var(--hr-radius-lg, 12px);
	overflow: hidden;
}

.hrcv2-b-list { padding: 4px 0; }

.hrcv2-b-row {
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr) 44px;
	align-items: center;
	gap: 14px;
	padding: 12px 22px;
	border-bottom: 1px solid var(--hr-border);
	transition: background .15s;
	min-width: 0;
}

.hrcv2-b-row:last-child { border-bottom: none; }

.hrcv2-b-row:hover { background: var(--hr-surface-2); }

.hrcv2-b-icon {
	width: 34px; height: 34px;
	border-radius: 10px;
	background: rgba(var(--hr-cat-rgb, var(--hr-brand-rgb)), .12);
	border: 1px solid rgba(var(--hr-cat-rgb, var(--hr-brand-rgb)), .22);
	color: var(--hrcv2-b-accent);
	display: flex; align-items: center; justify-content: center;
}

.hrcv2-b-icon svg { width: 18px; height: 18px; }

.hrcv2-b-info { min-width: 0; }

.hrcv2-b-name {
	font-size: 13px;
	font-weight: 500;
	color: var(--hr-text);
	margin-bottom: 6px;
	overflow-wrap: anywhere;
}

.hrcv2-b-track {
	height: 5px;
	background: var(--hr-surface-2);
	border-radius: 100px;
	overflow: hidden;
}

.hrcv2-b-fill {
	height: 100%;
	width: 100%;
	background: var(--hrcv2-b-accent);
	border-radius: 100px;
}

.hrcv2-b-score {
	font-family: var(--hr-font-mono, ui-monospace, monospace);
	font-size: 13px;
	font-weight: 700;
	color: var(--hr-text);
	text-align: right;
	font-variant-numeric: tabular-nums;
}

/* ═══════════════════════════════════════
   VARIANT C — MOVIE (card grid, red)
═══════════════════════════════════════ */
.hrcv2--c {
	--hrcv2-c-accent: var(--hr-cat-accent, var(--hr-brand));
	background: var(--hr-surface-2);
	border: 1px solid var(--hr-border);
	border-radius: var(--hr-radius-lg, 12px);
	padding: 18px;
}

.hrcv2-c-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

@media (max-width: 640px) {

 .hrcv2-c-grid { grid-template-columns: repeat(2, 1fr); } }

.hrcv2-c-card {
	background: var(--hr-surface);
	border-radius: 14px;
	border: 1px solid var(--hr-border);
	padding: 16px 14px 12px;
	transition: transform .2s;
	min-width: 0;
}

.hrcv2-c-card:hover { transform: translateY(-2px); }

.hrcv2-c-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 10px;
	gap: 8px;
}

.hrcv2-c-icon {
	width: 30px; height: 30px;
	border-radius: 8px;
	background: rgba(var(--hr-cat-rgb, var(--hr-brand-rgb)), .12);
	border: 1px solid rgba(var(--hr-cat-rgb, var(--hr-brand-rgb)), .22);
	color: var(--hrcv2-c-accent);
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}

.hrcv2-c-icon svg { width: 16px; height: 16px; }

.hrcv2-c-num-wrap { text-align: right; }

.hrcv2-c-num {
	font-family: var(--hr-font-mono, ui-monospace, monospace);
	font-size: 28px;
	font-weight: 700;
	color: var(--hr-text);
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.hrcv2-c-denom { font-size: 11px; color: var(--hr-text-muted); margin-left: 2px; }

.hrcv2-c-name {
	font-size: 11px;
	font-weight: 500;
	color: var(--hr-text-muted);
	margin-bottom: 8px;
	overflow-wrap: anywhere;
}

.hrcv2-c-mini {
	height: 3px;
	background: var(--hr-surface-2);
	border-radius: 100px;
	overflow: hidden;
}

.hrcv2-c-mini-fill {
	height: 100%;
	width: 100%;
	background: var(--hrcv2-c-accent);
	border-radius: 100px;
}

/* ═══════════════════════════════════════
   VARIANT D — SERIES (stacked rows, teal)
═══════════════════════════════════════ */
.hrcv2--d {
	--hrcv2-d-accent: var(--hr-cat-accent, var(--hr-brand));
	background: var(--hr-surface);
	border: 1px solid var(--hr-border);
	border-radius: var(--hr-radius-lg, 12px);
	overflow: hidden;
}

.hrcv2-d-row {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) 64px;
	align-items: center;
	border-bottom: 1px solid var(--hr-border);
	transition: background .15s;
	min-width: 0;
}

.hrcv2-d-row:last-child { border-bottom: none; }

.hrcv2-d-row:hover { background: var(--hr-surface-2); }

.hrcv2-d-num {
	font-family: var(--hr-font-mono, ui-monospace, monospace);
	font-size: 11px;
	color: var(--hr-text-muted);
	text-align: center;
	padding: 14px 0;
	border-right: 1px solid var(--hr-border);
	font-variant-numeric: tabular-nums;
}

.hrcv2-d-body { padding: 14px 18px; min-width: 0; }

.hrcv2-d-name {
	font-size: 13px;
	font-weight: 500;
	color: var(--hr-text);
	margin-bottom: 7px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	max-width: 100%;
	overflow-wrap: anywhere;
}

.hrcv2-d-name svg { width: 16px; height: 16px; color: var(--hrcv2-d-accent); flex-shrink: 0; }

.hrcv2-d-track {
	height: 4px;
	background: var(--hr-surface-2);
	border-radius: 100px;
	overflow: hidden;
}

.hrcv2-d-fill {
	height: 100%;
	width: 100%;
	background: var(--hrcv2-d-accent);
	border-radius: 100px;
}

.hrcv2-d-pill {
	font-family: var(--hr-font-mono, ui-monospace, monospace);
	font-size: 13px;
	font-weight: 700;
	color: var(--hrcv2-d-accent);
	text-align: center;
	padding-right: 18px;
	font-variant-numeric: tabular-nums;
}

/* ═══════════════════════════════════════
   VARIANT E — GADGET (summary trio + spec rows, blue)
═══════════════════════════════════════ */
.hrcv2--e {
	--hrcv2-e-accent: var(--hr-cat-accent, var(--hr-brand));
	background: var(--hr-surface);
	border: 1px solid var(--hr-border);
	border-radius: var(--hr-radius-lg, 12px);
	overflow: hidden;
}

.hrcv2-e-summary {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-bottom: 1px solid var(--hr-border);
}

.hrcv2-e-sum-item {
	padding: 14px 18px;
	border-right: 1px solid var(--hr-border);
	text-align: center;
	min-width: 0;
}

.hrcv2-e-sum-item:last-child { border-right: none; }

.hrcv2-e-sum-label {
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--hr-text-muted);
	margin-bottom: 4px;
}

.hrcv2-e-sum-val {
	font-family: var(--hr-font-mono, ui-monospace, monospace);
	font-size: 20px;
	font-weight: 700;
	color: var(--hrcv2-e-accent);
	font-variant-numeric: tabular-nums;
	line-height: 1.1;
}

.hrcv2-e-sum-sub { font-size: 10px; color: var(--hr-text-muted); margin-top: 2px; }

.hrcv2-e-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(110px, 140px);
	align-items: center;
	gap: 16px;
	padding: 14px 22px;
	border-bottom: 1px solid var(--hr-border);
	transition: background .15s;
	min-width: 0;
}

.hrcv2-e-row:last-child { border-bottom: none; }

.hrcv2-e-row:hover { background: var(--hr-surface-2); }

.hrcv2-e-left { display: flex; align-items: center; gap: 12px; min-width: 0; }

.hrcv2-e-icon {
	width: 32px; height: 32px;
	border-radius: 9px;
	background: rgba(var(--hr-cat-rgb, var(--hr-brand-rgb)), .12);
	border: 1px solid rgba(var(--hr-cat-rgb, var(--hr-brand-rgb)), .22);
	color: var(--hrcv2-e-accent);
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}

.hrcv2-e-icon svg { width: 16px; height: 16px; }

.hrcv2-e-name { font-size: 13px; font-weight: 500; color: var(--hr-text); overflow-wrap: anywhere; }

.hrcv2-e-right { display: flex; align-items: center; gap: 10px; min-width: 0; }

.hrcv2-e-track {
	flex: 1;
	height: 6px;
	background: var(--hr-surface-2);
	border-radius: 100px;
	overflow: hidden;
}

.hrcv2-e-fill {
	height: 100%;
	width: 100%;
	background: var(--hrcv2-e-accent);
	border-radius: 100px;
}

.hrcv2-e-score {
	font-family: var(--hr-font-mono, ui-monospace, monospace);
	font-size: 13px;
	font-weight: 700;
	color: var(--hr-text);
	min-width: 28px;
	text-align: right;
	font-variant-numeric: tabular-nums;
}

/* ── Mobile tightening ── */
@media (max-width: 560px) {

	.hrcv2-a-grid { grid-template-columns: repeat(2, 1fr); }

	.hrcv2-b-row { padding: 11px 16px; grid-template-columns: 30px 1fr 36px; gap: 10px; }

	.hrcv2-b-icon { width: 30px; height: 30px; }

	.hrcv2-d-row { grid-template-columns: 36px 1fr 54px; }

	.hrcv2-e-row { grid-template-columns: 1fr 110px; padding: 12px 16px; gap: 10px; }

	.hrcv2-e-left .hrcv2-e-icon { display: none; }
}

@media (max-width: 420px) {

	.hrcv2-a-grid,
	.hrcv2-c-grid,
	.hrcv2-e-summary { grid-template-columns: 1fr; }

	.hrcv2-b-row,
	.hrcv2-d-row,
	.hrcv2-e-row { padding-inline: 12px; }

	.hrcv2-e-row {
		grid-template-columns: 1fr;
		gap: 8px;
	}
}

/* ── Article-flow root (no box) ── */
.halo-review {
	--hr-brand: #fa983a;
	--hr-brand-rgb: 250, 152, 58;
	--hr-surface: #fff;
	--hr-surface-2: #f3f4f6;
	--hr-text: #111118;
	--hr-text-muted: #6b7280;
	--hr-border: #e4e4e9;
	--hr-success: #16a34a;
	--hr-success-bg: #f0fdf4;
	--hr-danger: #dc2626;
	--hr-danger-bg: #fef2f2;
	--hr-shadow-xs: 0 1px 2px rgba(0, 0, 0, .04), 0 1px 4px rgba(0, 0, 0, .04);
	--hr-space-2: 8px;
	--hr-space-3: 12px;
	--hr-space-4: 16px;
	--hr-space-5: 20px;
	--hr-radius-lg: 12px;
	font-family: var(--hr-font-sans);
	color: inherit;
	display: block;
	width: 100%;
	max-width: 100%;
	margin: 1.5em 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	padding: 0;
	overflow: visible;
	clear: both;
	container-type: inline-size;
}

.halo-review *,
.halo-review *::before,
.halo-review *::after { box-sizing: border-box; }

/* ── Section rhythm ── */
.halo-review > * { margin-bottom: 30px; }

.halo-review > .hr-section-title { margin-bottom: 0; }

.halo-review > *:last-child { margin-bottom: 0; }

.halo-review > :where(.hr-verdict-card, .hrcv2, .halo-review-card__proscons, .halo-review-card__buy-links, .hr-brand-block, .hr-specs, .hr-dual-score, .hr-cast, .hr-episodes) {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	clear: both;
}

@media (max-width: 640px) {

	.halo-review > * { margin-bottom: 25px; }

	.halo-review > .hr-section-title { margin-bottom: 0; }

	.halo-review > *:last-child { margin-bottom: 0; }
}

/* ── Theme-conflict isolation: scoped reset for properties themes commonly leak ── */
.halo-review.halo-review {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
	text-align: left;
	text-transform: none;
	letter-spacing: normal;
}

.halo-review :where(h1, h2, h3, h4, h5, h6) {
	margin: 0;
	padding: 0;
	font-family: inherit;
	color: inherit;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: normal;
	text-transform: none;
}

.halo-review :where(p) {
	margin: 0;
	padding: 0;
	color: inherit;
	font-family: inherit;
}

.halo-review :where(a) {
	color: var(--hr-brand);
	text-decoration: none;
	background: transparent;
	box-shadow: none;
}

.halo-review :where(a:hover, a:focus) {
	text-decoration: underline;
}

.halo-review :where(ul, ol) {
	margin: 0;
	padding: 0;
	list-style: none;
}

.halo-review :where(li) {
	margin: 0;
	padding: 0;
}

.halo-review :where(img, svg) {
	max-width: 100%;
	height: auto;
	border: 0;
}

.halo-review :where(div, span, p, li, a, h1, h2, h3, h4, h5, h6) {
	overflow-wrap: anywhere;
}

.halo-review :where(button) {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	background: transparent;
	border: 0;
	padding: 0;
	margin: 0;
	cursor: pointer;
	letter-spacing: normal;
	text-transform: none;
}

/* ── Hero ── */
.halo-review-card__hero {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--hr-surface-2);
}

.halo-review-card__hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Scrim overlay on hero — subtle cinematic depth */
.halo-review-card__hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.20) 35%, transparent 65%);
	pointer-events: none;
}

/* ── Body ── */
.halo-review-card__body { padding: var(--hr-space-5); }

.halo-review-card__title {
	margin: 0 0 var(--hr-space-2);
	font-size: 1.375rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -.02em;
	color: var(--hr-text);
}

.halo-review-card__subtitle {
	margin: 0 0 var(--hr-space-3);
	color: var(--hr-text-muted);
	font-size: 0.875rem;
	line-height: 1.4;
}

/* ── Score — cinematic large number ── */
.halo-review-card__score {
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
	font-variant-numeric: tabular-nums;
	margin-bottom: var(--hr-space-4);
	padding: var(--hr-space-2) var(--hr-space-4);
	background: rgba(var(--hr-brand-rgb), .07);
	border: 1px solid rgba(var(--hr-brand-rgb), .15);
	border-radius: var(--hr-radius-lg);
}

.halo-review-card__score-value {
	font-size: 2.75rem;
	font-weight: 800;
	color: var(--hr-cat-accent, var(--hr-brand));
	line-height: 1;
	letter-spacing: -.03em;
}

.halo-review-card__score-suffix {
	font-size: 0.875rem;
	color: var(--hr-text-muted);
	font-weight: 500;
}

/* ── Criteria ── */
.halo-review-card__criteria {
	margin: var(--hr-space-4) 0;
	display: grid;
	gap: var(--hr-space-3);
}

.halo-review-card__criterion {
	display: grid;
	gap: 6px;
	font-size: 0.875rem;
}

.halo-review-card__criterion-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.halo-review-card__criterion-bar {
	height: 6px;
	background: var(--hr-surface-2);
	border-radius: var(--hr-radius-pill);
	overflow: hidden;
}

@keyframes hr-bar-grow {

	from { transform: scaleX(0); }

	to   { transform: scaleX(var(--hr-bar-target, 1)); }
}

.halo-review-card__criterion-fill {
	height: 100%;
	background: var(--hr-brand);
	border-radius: var(--hr-radius-pill);
	transform-origin: left center;
	transform: scaleX(var(--hr-bar-target, 1));
	will-change: transform;
}

@media (prefers-reduced-motion: no-preference) {

	@supports (animation-timeline: view()) {

		.halo-review-card__criterion-fill {
			animation: hr-bar-grow 600ms cubic-bezier(.22, 1, .36, 1) both;
			animation-timeline: view();
			animation-range: entry 0% cover 35%;
		}
	}
}

/* ── Criterion label + icon ── */
.halo-review-card__criterion-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.halo-review-card__criterion-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	color: var(--hr-brand);
	flex-shrink: 0;
}

.halo-review-card__criterion-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

/* ── Standalone criteria-scores block: larger, more prominent ── */
.halo-review-criteria-scores .halo-review-card__criteria {
	gap: var(--hr-space-4);
}

.halo-review-criteria-scores .halo-review-card__criterion {
	gap: 10px;
	font-size: 1rem;
}

.halo-review-criteria-scores .halo-review-card__criterion-row {
	font-weight: 600;
}

.halo-review-criteria-scores .halo-review-card__criterion-score {
	font-variant-numeric: tabular-nums;
	font-size: 1.05rem;
}

.halo-review-criteria-scores .halo-review-card__criterion-bar {
	height: 12px;
}

.halo-review-criteria-scores .halo-review-card__criterion-icon {
	width: 22px;
	height: 22px;
}

/* ── Verdict ── */
.halo-review-card__verdict {
	margin: var(--hr-space-4) 0 0;
	padding: var(--hr-space-4);
	background: var(--hr-surface-2);
	border-inline-start: 3px solid var(--hr-cat-accent, var(--hr-brand));
	border-radius: 0 var(--hr-radius-md) var(--hr-radius-md) 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--hr-text);
	font-style: italic;
}

/* ── Pros / Cons ── */
.halo-review-card__proscons {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
	gap: var(--hr-space-4);
	margin: var(--hr-space-4) 0;
	align-items: start;
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.halo-review.halo-review .halo-review-card__proscons {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
	align-items: start;
	gap: 16px;
	margin: 16px 0;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

@media (max-width: 640px) {

	.halo-review-card__proscons { grid-template-columns: 1fr; gap: var(--hr-space-3); }
}

.halo-review-card__proscons-col {
	position: relative;
	background: var(--hr-surface);
	border: 1px solid var(--hr-border);
	border-radius: var(--hr-radius-lg);
	padding: var(--hr-space-5) var(--hr-space-5) var(--hr-space-4);
	overflow: hidden;
	min-width: 0;
	box-shadow: var(--hr-shadow-xs);
}

.halo-review.halo-review .halo-review-card__proscons-col {
	position: relative;
	min-width: 0;
	padding: 20px 20px 16px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #e4e4e9;
	border-radius: 12px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 1px 4px rgba(0, 0, 0, .04);
}

.halo-review-card__proscons-col::before {
	content: '';
	position: absolute;
	inset: 0 0 auto 0;
	height: 3px;
	background: currentcolor;
	opacity: .9;
}

.halo-review-card__proscons-col--pros { color: var(--hr-success); background: linear-gradient(180deg, var(--hr-success-bg) 0%, var(--hr-surface) 60%); }

.halo-review-card__proscons-col--cons { color: var(--hr-danger);  background: linear-gradient(180deg, var(--hr-danger-bg)  0%, var(--hr-surface) 60%); }

.halo-review.halo-review .halo-review-card__proscons-col--pros {
	color: #16a34a;
	background: linear-gradient(180deg, #f0fdf4 0%, #fff 64%);
}

.halo-review.halo-review .halo-review-card__proscons-col--cons {
	color: #dc2626;
	background: linear-gradient(180deg, #fef2f2 0%, #fff 64%);
}

.halo-review.halo-review .halo-review-card__proscons-col--pros::before {
	background: #16a34a;
}

.halo-review.halo-review .halo-review-card__proscons-col--cons::before {
	background: #dc2626;
}

.halo-review-card__proscons-heading {
	font-size: 0.8125rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin: 0 0 var(--hr-space-3);
	display: flex;
	align-items: center;
	gap: var(--hr-space-2);
	color: inherit;
}

.halo-review.halo-review .halo-review-card__proscons-heading {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 12px;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	font-family: var(--hr-font-sans);
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.halo-review-card__proscons-heading .hr-list-icon {
	width: 20px;
	height: 20px;
	padding: 4px;
	border-radius: 999px;
	background: currentcolor;
	color: var(--hr-surface);
	flex-shrink: 0;
}

.halo-review.halo-review .halo-review-card__proscons-heading .hr-list-icon {
	position: static;
	width: 20px;
	height: 20px;
	padding: 4px;
	background: currentcolor;
	border-radius: 999px;
	color: #fff;
	stroke-width: 2.5;
}

.halo-review.halo-review .halo-review-card__proscons-heading--pros .hr-list-icon {
	background: #16a34a;
	color: #fff;
}

.halo-review.halo-review .halo-review-card__proscons-heading--cons .hr-list-icon {
	background: #dc2626;
	color: #fff;
}

.halo-review-card__proscons-heading--pros { color: var(--hr-success); }

.halo-review-card__proscons-heading--cons { color: var(--hr-danger); }

.halo-review-card__list,
.halo-review .halo-review-card__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: var(--hr-space-2);
}

.halo-review.halo-review .halo-review-card__list {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	list-style: none;
}

.halo-review-card__list li,
.halo-review .halo-review-card__list li {
	padding-inline-start: 26px;
	position: relative;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: var(--hr-text);
	list-style: none;
	margin: 0;
	min-width: 0;
}

.halo-review.halo-review .halo-review-card__list li {
	position: relative;
	min-width: 0;
	margin: 0;
	padding: 0 0 0 26px;
	background: transparent;
	border: 0;
	box-shadow: none;
	color: #111118;
	font-family: var(--hr-font-sans);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.55;
	list-style: none;
}

.halo-review-card__list li::before,
.halo-review-card__list li::marker {
	content: none;
	display: none;
}

.halo-review-card__list li .hr-list-icon {
	position: absolute;
	inset-inline-start: 0;
	top: 3px;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	stroke-width: 3;
}

.halo-review-card__list--pros .hr-list-icon { color: var(--hr-success); }

.halo-review-card__list--cons .hr-list-icon { color: var(--hr-danger); }

.halo-review.halo-review .halo-review-card__list li .hr-list-icon {
	position: absolute;
	top: 4px;
	left: 0;
	width: 16px;
	height: 16px;
	padding: 0;
	background: transparent;
	border-radius: 0;
	color: currentcolor;
	stroke-width: 3;
}

.halo-review.halo-review .halo-review-card__list--pros li .hr-list-icon {
	color: #16a34a;
}

.halo-review.halo-review .halo-review-card__list--cons li .hr-list-icon {
	color: #dc2626;
}

.halo-review-theme-dark .halo-review.halo-review .halo-review-card__proscons-col {
	background: #15171c;
	border-color: #2c2f38;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 1px 4px rgba(0, 0, 0, .3);
}

.halo-review-theme-dark .halo-review.halo-review .halo-review-card__proscons-col--pros {
	color: #22c55e;
	background: linear-gradient(180deg, #0d2818 0%, #15171c 64%);
}

.halo-review-theme-dark .halo-review.halo-review .halo-review-card__proscons-col--cons {
	color: #ef4444;
	background: linear-gradient(180deg, #2a1010 0%, #15171c 64%);
}

.halo-review-theme-dark .halo-review.halo-review .halo-review-card__list li {
	color: #f1f2f5;
}

.halo-review-theme-dark .halo-review.halo-review .halo-review-card__proscons-heading--pros .hr-list-icon,
.halo-review-theme-dark .halo-review.halo-review .halo-review-card__list--pros li .hr-list-icon {
	color: #22c55e;
}

.halo-review-theme-dark .halo-review.halo-review .halo-review-card__proscons-heading--pros .hr-list-icon {
	background: #22c55e;
	color: #15171c;
}

.halo-review-theme-dark .halo-review.halo-review .halo-review-card__proscons-heading--cons .hr-list-icon,
.halo-review-theme-dark .halo-review.halo-review .halo-review-card__list--cons li .hr-list-icon {
	color: #ef4444;
}

.halo-review-theme-dark .halo-review.halo-review .halo-review-card__proscons-heading--cons .hr-list-icon {
	background: #ef4444;
	color: #15171c;
}

/* ── Buy links ── */
.halo-review-card__buy-links {
	display: flex;
	flex-wrap: wrap;
	gap: var(--hr-space-2);
	margin-top: var(--hr-space-4);
}

.halo-review-card__buy-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 16px;
	background: var(--hr-cat-accent, var(--hr-brand));
	color: #fff;
	text-decoration: none;
	border-radius: var(--hr-radius-lg);
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1;
	transition: background var(--hr-dur-fast) var(--hr-ease-out), transform var(--hr-dur-fast) var(--hr-ease-out);
}

.hr-buy-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	display: block;
}

.hr-buy-label {
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
}

.halo-review-card__buy-link:hover {
	background: color-mix(in srgb, var(--hr-cat-accent, var(--hr-brand)) 85%, #000);
	color: #fff;
	transform: translateY(-1px);
}

.halo-review-card__buy-link:focus-visible,
.hr-brand-cta:focus-visible,
.hr-brand-review-pill:focus-visible,
.hr-brand-follow-btn:focus-visible {
	outline: 0;
	box-shadow:
		0 0 0 3px rgba(var(--hr-brand-rgb), .22),
		0 0 0 1px var(--hr-brand);
}

/* ── Rating badge standalone ── */
.halo-review-rating-badge {
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
	font-variant-numeric: tabular-nums;
	padding: var(--hr-space-2) var(--hr-space-3);
	background: rgba(var(--hr-brand-rgb), .08);
	border: 1px solid rgba(var(--hr-brand-rgb), .20);
	border-radius: var(--hr-radius-lg);
}

.halo-review-rating-badge__value {
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--hr-cat-accent, var(--hr-brand));
	line-height: 1;
	letter-spacing: -.02em;
}

.halo-review-rating-badge__suffix {
	font-size: 0.8125rem;
	color: var(--hr-text-muted);
	font-weight: 500;
}

/* ── Verdict box standalone ── */
.halo-review-verdict-box {
	margin: 1em 0;
	padding: var(--hr-space-5);
	background: var(--hr-surface-2);
	border-inline-start: 3px solid var(--hr-cat-accent, var(--hr-brand));
	border-radius: 0 var(--hr-radius-lg) var(--hr-radius-lg) 0;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--hr-text);
	font-style: italic;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {

	.halo-review-card__criterion-fill { animation: none; transform: scaleX(var(--hr-bar-target, 1)); }

	.halo-review-card__buy-link { transition: none; }

	.halo-review-card__buy-link:hover { transform: none; }
}

/* ════════════════════════════════
   BRAND BLOCK
════════════════════════════════ */
.hr-brand-block {
	--hr-brand-color: var(--hr-brand);
	margin-top: var(--hr-space-5);
	border: 1px solid var(--hr-border);
	border-top: 3px solid var(--hr-brand-color);
	border-radius: var(--hr-radius-lg);
	background:
		radial-gradient(circle at 100% 0, rgba(var(--hr-brand-rgb), .12), transparent 38%),
		linear-gradient(180deg, rgba(var(--hr-brand-rgb), .055) 0%, var(--hr-surface) 60%);
	overflow: hidden;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	clear: both;
	box-shadow: var(--hr-shadow-xs);
}

.hr-brand-identity {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 16px;
	border-bottom: 1px solid var(--hr-border);
	min-width: 0;
	background: rgba(var(--hr-brand-rgb), .028);
}

@media (min-width: 560px) {

 .hr-brand-identity { padding: 16px 20px; gap: 16px; } }

.hr-brand-logo { flex-shrink: 0; display: flex; align-items: center; height: 30px; }

.hr-brand-logo-img { height: 30px; width: auto; max-width: 130px; object-fit: contain; display: block; }

.hr-brand-logo-wordmark {
	font-size: clamp(1rem, 4vw, 1.25rem);
	font-weight: 900;
	letter-spacing: -.04em;
	line-height: 1;
	color: var(--hr-brand-color);
	white-space: nowrap;
}

.hr-brand-vr { width: 1px; height: 28px; background: var(--hr-border); flex-shrink: 0; }

.hr-brand-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }

.hr-brand-name-row { display: flex; align-items: center; gap: 6px; min-width: 0; }

.hr-brand-site-icon { width: 14px; height: 14px; border-radius: 3px; flex-shrink: 0; object-fit: contain; }

.hr-brand-site-name { font-size: .875rem; font-weight: 700; color: var(--hr-text); line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; letter-spacing: -.01em; }

.hr-brand-site-url { font-size: .6875rem; color: var(--hr-text-muted); line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.hr-brand-cta {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 8px 16px;
	min-height: 34px;
	border-radius: var(--hr-radius-pill);
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .01em;
	text-decoration: none;
	white-space: nowrap;
	border: none;
	background: var(--hr-brand-color);
	color: #fff;
	text-align: center;
	justify-content: center;
	box-shadow: 0 2px 10px rgba(var(--hr-brand-rgb), .32);
	transition: transform 120ms ease, box-shadow 120ms ease, opacity 120ms ease;
}

.hr-brand-cta:hover { opacity: .92; color: #fff; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(var(--hr-brand-rgb), .42); }

.halo-review.halo-review .hr-brand-cta,
.halo-review.halo-review .hr-brand-cta:visited,
.halo-review.halo-review .hr-brand-cta:hover,
.halo-review.halo-review .hr-brand-cta:focus,
.halo-review.halo-review .hr-brand-cta:active {
	color: #fff;
	text-decoration: none;
}

.hr-brand-stats { display: flex; align-items: stretch; border-bottom: 1px solid var(--hr-border); }

.hr-brand-stat {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1px;
	padding: 10px 8px;
	border-right: 1px solid var(--hr-border);
	text-align: center;
}

.hr-brand-stat:last-child { border-right: none; }

.hr-brand-stat-val { font-size: 1rem; font-weight: 700; color: var(--hr-brand-color); line-height: 1; letter-spacing: -.03em; }

.hr-brand-stat-label { font-size: .5625rem; font-weight: 600; color: var(--hr-text-muted); text-transform: uppercase; letter-spacing: .07em; }

.hr-brand-featured { padding: 12px 16px; display: flex; flex-direction: column; gap: 10px; }

@media (min-width: 560px) {

 .hr-brand-featured { padding: 14px 20px; } }

.hr-brand-featured-title {
	font-size: .5625rem;
	font-weight: 700;
	color: var(--hr-text-muted);
	text-transform: uppercase;
	letter-spacing: .1em;
	display: flex;
	align-items: center;
	gap: 8px;
}

.hr-brand-featured-title::after { content: ''; flex: 1; height: 1px; background: var(--hr-border); }

.hr-brand-reviews-row { display: grid; grid-template-columns: 1fr; gap: 8px; }

@media (min-width: 440px) {

 .hr-brand-reviews-row { grid-template-columns: 1fr 1fr; } }

@media (min-width: 680px) {

 .hr-brand-reviews-row { grid-template-columns: repeat(3, 1fr); } }

.hr-brand-review-pill {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 9px 11px;
	border-radius: var(--hr-radius-lg, 12px);
	background: var(--hr-surface-2);
	border: 1px solid var(--hr-border);
	text-decoration: none;
	transition: border-color 120ms ease, background 120ms ease;
	overflow: hidden;
	min-width: 0;
}

.hr-brand-review-pill:hover {
	border-color: rgba(var(--hr-brand-rgb), .4);
	background: rgba(var(--hr-brand-rgb), .04);
}

.hr-brand-pill-thumb {
	width: 36px;
	height: 36px;
	border-radius: var(--hr-radius-md, 8px);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .5625rem;
	font-weight: 700;
	background: var(--hr-surface-2);
	color: var(--hr-text-muted);
	overflow: hidden;
}

.hr-brand-pill-thumb-img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hr-brand-pill-body { flex: 1; min-width: 0; }

.hr-brand-pill-name { font-size: .75rem; font-weight: 600; color: var(--hr-text); line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.hr-brand-pill-cat { font-size: .5625rem; color: var(--hr-text-muted); margin-top: 1px; }

.hr-brand-pill-score { flex-shrink: 0; font-size: .875rem; font-weight: 700; color: var(--hr-brand-color); line-height: 1; letter-spacing: -.03em; }

.hr-brand-footer-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 10px 16px;
	background: rgba(var(--hr-brand-rgb), .03);
	border-top: 1px solid var(--hr-border);
	flex-wrap: wrap;
}

@media (min-width: 560px) {

 .hr-brand-footer-row { padding: 10px 20px; } }

.hr-brand-tagline { font-size: .75rem; color: var(--hr-text-muted); line-height: 1.4; flex: 1; min-width: 0; font-style: italic; }

.hr-brand-follow-row { display: flex; gap: 6px; flex-shrink: 0; }

.hr-brand-follow-btn {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px 10px;
	min-height: 28px;
	border-radius: var(--hr-radius-pill);
	font-size: .5625rem;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: .04em;
	text-transform: uppercase;
	border: 1.5px solid var(--hr-border);
	background: var(--hr-surface);
	color: var(--hr-text-muted);
	transition: border-color 120ms ease, color 120ms ease;
}

.hr-brand-follow-btn:hover { border-color: rgba(var(--hr-brand-rgb), .5); color: var(--hr-brand-color); }

@media (max-width: 520px) {

	.hr-brand-identity {
		display: grid;
		grid-template-columns: auto 1fr;
		align-items: center;
	}

	.hr-brand-vr { display: none; }

	.hr-brand-cta {
		grid-column: 1 / -1;
		width: 100%;
	}

	.hr-brand-footer-row { align-items: flex-start; }

	.hr-brand-follow-row {
		width: 100%;
		flex-wrap: wrap;
	}
}

@media (prefers-reduced-motion: reduce) {

	.hr-brand-cta,
	.hr-brand-review-pill,
	.hr-brand-follow-btn { transition: none; }
}
