:root {
	--cv-bg: #0f1419;
	--cv-panel: #161d27;
	--cv-border: #243041;
	--cv-text: #e7eef7;
	--cv-muted: #8b9bb0;
	--cv-accent: #3ddc97;
	--cv-accent-dim: rgba(61, 220, 151, 0.18);
	--cv-warn: #f0b429;
	--cv-danger: #ef6b6b;
	--cv-cell: #1c2736;
	--cv-cell-active: #2a4a3a;
	--cv-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.code-visualizer-page {
	background: var(--cv-bg);
	display: flex;
	flex-direction: column;
	height: 100vh;
	height: 100dvh;
	max-height: 100vh;
	max-height: 100dvh;
	overflow: hidden;
	padding: 0 !important;
	margin: 0 !important;
}

html:has(body.code-visualizer-page) {
	height: 100%;
	overflow: hidden;
}

.code-visualizer-page .back-top {
	display: none !important;
}

.code-visualizer-page main {
	padding: 0 !important;
	margin: 0 !important;
	max-width: none !important;
	flex: 1 1 0;
	min-height: 0;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.cv-root {
	flex: 1 1 0;
	min-height: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
	background: var(--cv-bg);
	color: var(--cv-text);
	font-family: IRANSansWeb, IRANSans, Tahoma, "Segoe UI", sans-serif;
	overflow: hidden;
}

.cv-topbar {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.65rem 1rem;
	border-bottom: 1px solid var(--cv-border);
	background: #121820;
	flex-wrap: wrap;
}

.cv-brand {
	color: var(--cv-text);
	text-decoration: none;
	font-weight: 700;
}

.cv-divider {
	width: 1px;
	height: 1.1rem;
	background: var(--cv-border);
}

.cv-title {
	font-weight: 700;
}

.cv-title-sub {
	font-size: 0.78rem;
	font-weight: 500;
	color: var(--cv-muted);
	padding: 0.12rem 0.45rem;
	border-radius: 6px;
	background: rgba(36, 48, 65, 0.65);
}

.cv-lang {
	font-size: 0.75rem;
	padding: 0.15rem 0.5rem;
	border-radius: 999px;
	background: var(--cv-accent-dim);
	color: var(--cv-accent);
}

.cv-spacer {
	flex: 1;
}

.cv-controls {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	flex-wrap: wrap;
}

.cv-controls-sep {
	width: 1px;
	height: 1.4rem;
	background: var(--cv-border);
	margin: 0 0.15rem;
}

.cv-btn {
	border: 1px solid var(--cv-border);
	background: var(--cv-panel);
	color: var(--cv-text);
	border-radius: 8px;
	padding: 0.35rem 0.7rem;
	font-size: 0.85rem;
	cursor: pointer;
	transition: background 0.2s var(--cv-ease), border-color 0.2s ease, transform 0.15s ease;
}

.cv-btn:hover:not(:disabled) {
	border-color: #3a4d66;
	background: #1a2432;
}

.cv-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.cv-btn-primary {
	background: var(--cv-accent);
	border-color: var(--cv-accent);
	color: #062016;
	font-weight: 700;
}

.cv-btn-primary:hover:not(:disabled) {
	background: #54e6a8;
	border-color: #54e6a8;
}

.cv-btn-primary.is-loading {
	opacity: 0.75;
	pointer-events: none;
}

.cv-btn.is-playing {
	border-color: var(--cv-warn);
	color: var(--cv-warn);
}

.cv-btn-ghost {
	color: var(--cv-danger);
	border-color: rgba(239, 107, 107, 0.35);
}

.cv-step-wrap {
	min-width: 6.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	padding: 0 0.25rem;
}

.cv-step {
	text-align: center;
	font-size: 0.8rem;
	color: var(--cv-muted);
}

.cv-progress {
	height: 3px;
	background: #1c2736;
	border-radius: 99px;
	overflow: hidden;
}

.cv-progress-bar {
	height: 100%;
	width: 0%;
	background: var(--cv-accent);
	border-radius: 99px;
	transition: width 0.25s var(--cv-ease);
}

.cv-speed {
	background: var(--cv-panel);
	color: var(--cv-text);
	border: 1px solid var(--cv-border);
	border-radius: 8px;
	padding: 0.3rem 0.4rem;
}

.cv-examples {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.45rem 1rem;
	border-bottom: 1px solid var(--cv-border);
	background: #111820;
	flex-wrap: wrap;
	direction: rtl;
}

.cv-examples-label {
	font-size: 0.8rem;
	color: var(--cv-muted);
}

.cv-chip {
	border: 1px solid var(--cv-border);
	background: transparent;
	color: var(--cv-muted);
	border-radius: 999px;
	padding: 0.2rem 0.7rem;
	font-size: 0.8rem;
	cursor: pointer;
	transition: all 0.2s var(--cv-ease);
}

.cv-chip:hover {
	color: var(--cv-text);
	border-color: #3a4d66;
}

.cv-chip.is-active {
	color: var(--cv-accent);
	border-color: rgba(61, 220, 151, 0.45);
	background: var(--cv-accent-dim);
}

.cv-body {
	flex: 1 1 0;
	min-height: 0;
	display: grid;
	direction: ltr;
	grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.15fr);
	overflow: hidden;
}

.cv-pane {
	min-height: 0;
	height: 100%;
	padding: 0 !important;
	margin: 0 !important;
}

.cv-pane-editor {
	border-right: 1px solid var(--cv-border);
	display: flex;
	flex-direction: column;
	min-height: 0;
	background: #1e1e1e;
	padding: 0 !important;
}

.cv-editor {
	flex: 1 1 auto;
	width: 100%;
	min-height: 0;
	height: 100%;
	position: relative;
	direction: ltr;
	overflow: hidden;
	background: #1e1e1e;
}

.cv-editor .monaco-editor {
	position: absolute !important;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
}

.cv-pane-state-outer {
	position: relative;
	min-height: 0;
	height: 100%;
	overflow: hidden;
	background: #10161f;
	padding: 0 !important;
}

.cv-pane-state {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	padding: 0.85rem !important;
	height: 100%;
	overflow: auto;
	background: transparent;
	direction: rtl;
	box-sizing: border-box;
}

.cv-memory-row {
	display: grid;
	grid-template-columns: minmax(160px, 0.9fr) minmax(200px, 1.15fr);
	gap: 1.35rem;
	align-items: start;
	direction: ltr;
	position: relative;
	min-height: 0;
}

.cv-memory-row > .cv-panel {
	min-width: 0;
	height: 100%;
}

svg.cv-ref-layer {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 12;
	overflow: visible;
}

.cv-ref-path {
	fill: none;
	stroke: #3ddc97;
	stroke-width: 2.4;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 7 6;
	animation: cvArrowDash 1s linear infinite, cvArrowAppear 0.4s var(--cv-ease) both;
}

.cv-ref-path-glow {
	fill: none;
	stroke: rgba(61, 220, 151, 0.22);
	stroke-width: 8;
	stroke-linecap: round;
	pointer-events: none;
}

@keyframes cvArrowDash {
	to { stroke-dashoffset: -26; }
}

@keyframes cvArrowAppear {
	from { opacity: 0; }
	to { opacity: 1; }
}

.cv-ref-source.is-linked .cv-ref-id,
.cv-ref-target.is-linked .cv-ref-id {
	box-shadow: 0 0 0 2px rgba(61, 220, 151, 0.4);
}

.cv-panel {
	background: var(--cv-panel);
	border: 1px solid var(--cv-border);
	border-radius: 12px;
	padding: 0.7rem 0.8rem;
	position: relative;
	z-index: 1;
}

.cv-panel-vars,
.cv-panel-heap {
	background: linear-gradient(180deg, #182130 0%, #161d27 100%);
}

.cv-panel-title {
	font-size: 0.82rem;
	font-weight: 600;
	color: #a8b8cc;
	margin-bottom: 0.55rem;
}

.cv-panel-title-heap {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	gap: 0.55rem;
	direction: rtl;
	white-space: nowrap;
}

.cv-panel-heading {
	flex: 0 0 auto;
}

.cv-panel-note {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	gap: 0.35rem;
	flex: 0 0 auto;
	direction: ltr;
	font-size: 0.72rem;
	font-weight: 500;
	color: var(--cv-muted);
}

.cv-panel-note-text {
	white-space: nowrap;
}

.cv-ref-id-sample {
	font-size: 0.72rem;
	padding: 0.08rem 0.38rem;
	pointer-events: none;
	flex-shrink: 0;
}

.cv-heap-item {
	padding: 0.55rem 0.65rem;
	border: 1px solid var(--cv-border);
	border-radius: 12px;
	background: rgba(15, 20, 25, 0.35);
	margin-bottom: 0.65rem;
}

.cv-heap-item.is-linked {
	border-color: rgba(61, 220, 151, 0.55);
	background: rgba(61, 220, 151, 0.06);
}

.cv-heap-head {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	margin-bottom: 0.45rem;
	direction: ltr;
	flex-wrap: wrap;
}

.cv-heap-kind {
	font-size: 0.68rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--cv-muted);
}

.cv-heap-name {
	color: var(--cv-accent);
	font-size: 0.9rem;
}

.cv-panel-hero {
	min-height: 7rem;
}

.cv-empty {
	color: var(--cv-muted);
	font-size: 0.9rem;
	line-height: 1.6;
}

.cv-empty strong {
	color: var(--cv-accent);
	font-weight: 600;
}

.cv-struct-block {
	margin-bottom: 0.85rem;
	animation: cvFadeIn 0.28s var(--cv-ease);
}

.cv-struct-name {
	font-size: 0.85rem;
	margin-bottom: 0.4rem;
	color: #c9d7e8;
}

.cv-struct-name code {
	color: var(--cv-accent);
}

.cv-cells {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	direction: ltr;
}

.cv-cell {
	min-width: 2.35rem;
	padding: 0.45rem 0.5rem;
	border-radius: 8px;
	background: var(--cv-cell);
	border: 1px solid var(--cv-border);
	text-align: center;
	transform: translateY(0) scale(1);
	opacity: 1;
	animation: cvCellIn 0.32s var(--cv-ease) both;
	transition:
		background 0.28s var(--cv-ease),
		border-color 0.28s var(--cv-ease),
		transform 0.28s var(--cv-ease),
		box-shadow 0.28s var(--cv-ease);
}

.cv-cell-index {
	display: block;
	font-size: 0.65rem;
	color: var(--cv-muted);
	margin-bottom: 0.15rem;
}

.cv-cell-value {
	font-family: Consolas, "Courier New", monospace;
	font-size: 0.95rem;
}

.cv-cell.is-active {
	background: var(--cv-cell-active);
	border-color: var(--cv-accent);
	transform: translateY(-3px) scale(1.06);
	box-shadow: 0 6px 16px rgba(61, 220, 151, 0.18);
	animation: cvPulse 0.55s var(--cv-ease);
}

.cv-cell.is-changed {
	border-color: var(--cv-warn);
}

.cv-dict-cell {
	min-width: 4.5rem;
}

.cv-dict-key {
	display: block;
	font-size: 0.7rem;
	color: var(--cv-muted);
}

.cv-fn-box {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.6rem 0.85rem;
	border: 1.5px solid rgba(61, 220, 151, 0.5);
	border-radius: 12px;
	background: rgba(61, 220, 151, 0.1);
	direction: ltr;
	animation: cvFadeIn 0.28s var(--cv-ease);
}

.cv-heap-label {
	font-size: 0.72rem;
	color: var(--cv-muted);
	margin: 0.15rem 0 0.45rem;
	letter-spacing: 0.03em;
}

.cv-heap-fn {
	margin-bottom: 0.35rem;
}

.cv-heap-item .cv-fn-box {
	border: none;
	background: transparent;
	padding: 0.15rem 0;
}

.cv-ref-target.is-linked .cv-fn-box {
	border-color: transparent;
	box-shadow: none;
}

.cv-var-ref {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	flex-wrap: wrap;
	justify-self: end;
}

.cv-ref-source {
	cursor: default;
}

.cv-ref-target.is-linked .cv-fn-box {
	border-color: rgba(61, 220, 151, 0.95);
	box-shadow: 0 0 0 1px rgba(61, 220, 151, 0.28), 0 8px 20px rgba(61, 220, 151, 0.08);
}

.cv-ref-id {
	font-family: Consolas, "Courier New", monospace;
	font-size: 0.85rem;
	font-weight: 700;
	color: #062016;
	background: var(--cv-accent);
	border-radius: 999px;
	padding: 0.14rem 0.5rem;
	letter-spacing: 0.02em;
}

.cv-fn-box .cv-ref-id {
	margin-inline-end: 0.1rem;
}

.cv-fn-label {
	font-size: 0.68rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--cv-muted);
}

.cv-fn-box code {
	color: var(--cv-accent);
	font-size: 0.95rem;
	font-weight: 600;
}

.cv-frame {
	border: 1px dashed rgba(61, 220, 151, 0.35);
	border-radius: 10px;
	padding: 0.5rem 0.6rem;
	margin-bottom: 0.35rem;
	background: rgba(15, 20, 25, 0.4);
	animation: cvFadeIn 0.28s var(--cv-ease);
}

.cv-frame.is-active-frame {
	border-color: rgba(61, 220, 151, 0.65);
	background: rgba(61, 220, 151, 0.07);
}

.cv-frame-title {
	font-size: 0.78rem;
	color: var(--cv-muted);
	margin-bottom: 0.35rem;
	text-align: right;
}

.cv-frame-empty {
	font-size: 0.8rem;
	padding: 0.2rem 0;
}

.cv-var-fn {
	color: var(--cv-accent) !important;
}

.cv-var-name {
	color: #9ecbff;
}

.cv-var-value {
	color: #d7e4f5;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.cv-var-row {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 0.75rem;
	padding: 0.45rem 0.5rem;
	border-radius: 8px;
	direction: ltr;
	font-family: Consolas, "Courier New", monospace;
	font-size: 0.9rem;
	animation: cvFadeIn 0.22s var(--cv-ease);
	transition: background 0.25s ease;
}

.cv-var-row + .cv-var-row {
	margin-top: 0.2rem;
}

.cv-var-row.is-changed {
	background: rgba(240, 180, 41, 0.14);
	box-shadow: inset 3px 0 0 var(--cv-warn);
}

.cv-console {
	border: 1px solid var(--cv-border);
	border-radius: 10px;
	background: #0c1218;
	min-height: 5.5rem;
	overflow: hidden;
}

.cv-console.is-waiting {
	border-color: rgba(61, 220, 151, 0.55);
	box-shadow: 0 0 0 1px rgba(61, 220, 151, 0.15);
}

.cv-console-hint {
	direction: rtl;
	text-align: right;
	font-family: IRANSansWeb, IRANSans, Tahoma, sans-serif;
	font-size: 0.82rem;
	line-height: 1.7;
	color: #b7c6d8;
	padding: 0.55rem 0.75rem 0.4rem;
	border-bottom: 1px solid rgba(36, 48, 65, 0.9);
	background: rgba(18, 28, 38, 0.9);
}

.cv-console-hint strong {
	color: var(--cv-accent);
	font-weight: 700;
}

.cv-console-hint code {
	font-family: "Cascadia Code", "Fira Code", Consolas, monospace;
	font-size: 0.78rem;
	color: #9ecbff;
	direction: ltr;
	unicode-bidi: isolate;
}

.cv-output {
	margin: 0;
	min-height: 3.2rem;
	max-height: 12rem;
	overflow: auto;
	white-space: pre-wrap;
	direction: ltr;
	text-align: left;
	font-family: "Cascadia Code", "Fira Code", Consolas, "Courier New", monospace;
	font-size: 0.92rem;
	line-height: 1.55;
	color: #d8ebe0;
	padding: 0.55rem 0.75rem 0.35rem;
}

.cv-console-input-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0;
	padding: 0.4rem 0.75rem 0.55rem;
	border-top: 1px dashed rgba(61, 220, 151, 0.28);
	background: rgba(61, 220, 151, 0.06);
	direction: ltr;
}

.cv-console-prompt-text {
	color: #e8f5ee;
	font-family: "Cascadia Code", "Fira Code", Consolas, "Courier New", monospace;
	font-size: 0.92rem;
	line-height: 1.55;
	white-space: pre-wrap;
	flex: 0 1 auto;
	max-width: 100%;
}

.cv-console-input {
	flex: 1 1 6rem;
	min-width: 4rem;
	border: none;
	outline: none;
	background: transparent;
	color: var(--cv-accent);
	font-family: "Cascadia Code", "Fira Code", Consolas, "Courier New", monospace;
	font-size: 0.92rem;
	line-height: 1.55;
	padding: 0;
	caret-color: var(--cv-accent);
}

.cv-console-finish {
	display: block;
	width: 100%;
	margin-top: 0.45rem;
	border: 1px solid rgba(61, 220, 151, 0.4);
	background: rgba(61, 220, 151, 0.1);
	color: var(--cv-accent);
	border-radius: 8px;
	padding: 0.4rem 0.6rem;
	font-size: 0.82rem;
	font-family: IRANSansWeb, IRANSans, Tahoma, sans-serif;
	cursor: pointer;
}

.cv-console-finish:hover {
	background: rgba(61, 220, 151, 0.18);
}

.cv-status {
	font-size: 0.85rem;
	color: var(--cv-muted);
	min-height: 1.2rem;
	line-height: 1.5;
}

.cv-status.is-error {
	color: var(--cv-danger);
}

.cv-status.is-ok {
	color: var(--cv-accent);
}

@keyframes cvFadeIn {
	from { opacity: 0; transform: translateY(4px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes cvCellIn {
	from { opacity: 0; transform: translateY(6px) scale(0.92); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes cvPulse {
	0% { transform: translateY(-1px) scale(1); }
	40% { transform: translateY(-4px) scale(1.08); }
	100% { transform: translateY(-3px) scale(1.06); }
}

@media (max-width: 1100px) {
	.cv-body {
		grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
	}
}

.cv-title-short {
	display: none;
}

.cv-btn-short {
	display: none;
}

@media (max-width: 900px) {
	.cv-root {
		max-height: none;
		height: 100%;
		padding-bottom: env(safe-area-inset-bottom, 0);
	}

	.cv-topbar {
		padding: 0.4rem 0.55rem;
		gap: 0.35rem;
		flex: 0 0 auto;
	}

	.cv-brand {
		font-size: 0.8rem;
		max-width: 5rem;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.cv-divider,
	.cv-title-sub {
		display: none;
	}

	.cv-title {
		font-size: 0.92rem;
	}

	.cv-lang {
		font-size: 0.66rem;
		padding: 0.1rem 0.35rem;
	}

	.cv-spacer {
		display: none;
	}

	.cv-controls {
		width: 100%;
		justify-content: stretch;
		gap: 0.28rem;
	}

	.cv-controls-sep {
		display: none;
	}

	.cv-btn {
		padding: 0.42rem 0.45rem;
		font-size: 0.78rem;
		flex: 1 1 auto;
		text-align: center;
		min-height: 2.2rem;
	}

	.cv-btn-primary {
		flex: 1.15 1 auto;
	}

	.cv-btn-full {
		display: none;
	}

	.cv-btn-short {
		display: inline;
	}

	.cv-step-wrap {
		min-width: 4.2rem;
		flex: 0 0 auto;
		padding: 0;
	}

	.cv-step {
		font-size: 0.7rem;
	}

	.cv-speed {
		padding: 0.32rem 0.2rem;
		font-size: 0.75rem;
		flex: 0 0 auto;
		min-height: 2.2rem;
	}

	.cv-examples {
		padding: 0.35rem 0.55rem;
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: thin;
		gap: 0.3rem;
		flex: 0 0 auto;
	}

	.cv-examples-label {
		flex: 0 0 auto;
	}

	.cv-chip {
		flex: 0 0 auto;
		white-space: nowrap;
		font-size: 0.72rem;
		padding: 0.28rem 0.55rem;
		min-height: 2rem;
	}

	.cv-title-full {
		display: none;
	}

	.cv-title-short {
		display: inline;
	}

	.cv-panel-note-text {
		display: none;
	}

	.cv-body {
		display: flex;
		flex-direction: column;
		flex: 1 1 0;
		min-height: 0;
		height: auto;
		grid-template-columns: none;
		grid-template-rows: none;
		overflow: hidden;
	}

	.cv-pane-editor {
		display: flex !important;
		flex-direction: column;
		flex: 0 0 40%;
		min-height: 150px;
		max-height: 46%;
		width: 100%;
		border-right: none;
		border-bottom: 1px solid var(--cv-border);
	}

	.cv-editor {
		min-height: 0;
		height: 100%;
	}

	.cv-pane-state-outer {
		display: flex !important;
		flex-direction: column;
		flex: 1 1 0;
		min-height: 0;
		width: 100%;
		border-right: none;
		overflow: hidden;
	}

	.cv-pane-state {
		flex: 1 1 0;
		min-height: 0;
		height: auto;
		padding: 0.5rem !important;
		gap: 0.5rem;
		-webkit-overflow-scrolling: touch;
	}

	.cv-memory-row {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
		gap: 1.05rem;
		align-items: start;
	}

	.cv-memory-row > .cv-panel {
		min-width: 0;
	}

	.cv-panel {
		padding: 0.45rem 0.5rem;
	}

	.cv-panel-title {
		font-size: 0.72rem;
		margin-bottom: 0.35rem;
	}

	.cv-ref-id-sample {
		font-size: 0.65rem;
		padding: 0.06rem 0.3rem;
	}

	.cv-frame {
		padding: 0.35rem 0.4rem;
		margin-bottom: 0.2rem;
	}

	.cv-var-row {
		gap: 0.35rem;
		padding: 0.28rem 0.3rem;
		font-size: 0.78rem;
	}

	.cv-ref-id {
		font-size: 0.72rem;
		padding: 0.08rem 0.32rem;
	}

	.cv-panel-hero {
		min-height: 0;
	}

	.cv-panel-title-heap {
		flex-wrap: nowrap;
		white-space: nowrap;
		gap: 0.35rem;
	}

	.cv-ref-path {
		stroke-width: 2;
		stroke-dasharray: 5 4;
	}

	.cv-ref-path-glow {
		stroke-width: 5;
	}

	.cv-console {
		min-height: 4.2rem;
	}

	.cv-console-hint {
		font-size: 0.78rem;
		padding: 0.4rem 0.55rem 0.3rem;
	}

	.cv-console-input,
	.cv-console-prompt-text {
		font-size: 16px;
	}

	.cv-output {
		max-height: 6.5rem;
		min-height: 2.5rem;
		font-size: 0.85rem;
	}

	.cv-status {
		font-size: 0.75rem;
		line-height: 1.45;
	}

	.cv-console-finish {
		min-height: 2.3rem;
		font-size: 0.8rem;
	}
}

@media (max-width: 420px) {
	.cv-brand {
		display: none;
	}

	.cv-memory-row {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
		gap: 0.85rem;
	}
}
