/* PC build review page — reuses site tokens (--surface/--border/--text/--muted/--accent) */

.review-intro {
	margin-bottom: 28px;
}

/* Top-level group heading (Current build / Previously owned) */
.group-label {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: "Unbounded", sans-serif;
	font-weight: 700;
	font-size: 18px;
	color: var(--text);
	margin-top: 40px;
	margin-bottom: 14px;
}

.group-label::before {
	content: "";
	width: 4px;
	height: 18px;
	border-radius: 2px;
	background: var(--accent);
}

/* Per-section expand / collapse all */
.section-expand-btn {
	font-family: "DM Mono", monospace;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
	color: var(--accent);
	background: transparent;
	margin-left: auto;
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 4px 10px;
	cursor: pointer;
	transition: border-color 0.2s, color 0.2s;
}

.section-expand-btn:hover {
	border-color: var(--accent);
}

.spec-category.review-group {
	margin-top: 34px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* trigger row inside each collapsible review/legacy card */
.ri-trigger-left {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.ri-trigger-right {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.ri-verdict {
	font-family: "DM Mono", monospace;
	font-size: 15px;
	line-height: 1.6;
	color: var(--text);
	margin: 12px 0 0;
	padding: 12px 14px;
	background: rgba(255, 255, 255, 0.025);
	border-radius: 8px;
}

/* legacy / previously-owned cards reuse the same expand-card component */
.legacy-cat {
	font-family: "DM Mono", monospace;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--accent);
	margin-bottom: 3px;
}

.legacy-name {
	font-family: "Unbounded", sans-serif;
	font-weight: 700;
	font-size: 14px;
	color: var(--text);
}

.legacy-note {
	font-family: "DM Mono", monospace;
	font-size: 11px;
	color: var(--muted);
	margin-top: 2px;
}

