.cr-comparison-tool { padding: 48px 0; text-align: center; }
.cr-comparison-tool__heading { margin-bottom: 8px; }
.cr-comparison-tool__intro { max-width: 720px; margin: 0 auto 32px; }

.cr-compare-picker {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	margin-bottom: 28px;
}

.cr-compare-results { margin-top: 32px; }

.cr-compare-table-wrapper { overflow-x: auto; }

.cr-compare-table {
	display: grid;
	min-width: 600px;
	width: fit-content;
	max-width: 100%;
	margin: 0 auto;
}

.cr-compare-table__row {
	display: grid;
	grid-template-columns: 180px repeat(var(--cr-compare-cols), minmax(160px, 240px));
	border-bottom: 1px solid var(--cr-border);
}

.cr-compare-table__label {
	position: sticky;
	left: 0;
	background: var(--cr-bg-card);
	padding: 14px;
	font-weight: 600;
	color: var(--cr-text-primary);
	font-size: 14px;
}

.cr-compare-table__cell {
	padding: 14px;
	text-align: center;
	color: var(--cr-text-secondary);
	font-size: 14px;
}

.cr-compare-table__cell--head { display: flex; flex-direction: column; align-items: center; gap: 8px; font-weight: 700; color: var(--cr-text-primary); }
.cr-compare-table__cell--head img { max-height: 36px; width: auto; max-width: 140px; object-fit: contain; }

.cr-compare-error { color: var(--cr-accent-red); text-align: center; }

@media (min-width: 640px) {
	.cr-compare-picker { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1100px) {
	.cr-compare-picker { grid-template-columns: repeat(4, 1fr); }
}
