.aera-lp-section-problem-insight__heading {
	margin: 0 0 1rem;
}

.aera-lp-section-problem-insight__columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.aera-lp-section-problem-insight__column {
	padding: 1rem;
	border-radius: var(--aera-lp-radius-inner);
	border: 1px solid var(--aera-lp-line);
	background: var(--aera-lp-tile-bg, rgba(255, 255, 255, 0.04));
}

.aera-lp-section-problem-insight__column h3 {
	margin: 0 0 0.65rem;
	font-size: 1rem;
}

.aera-lp-section-problem-insight__column p {
	margin: 0 0 0.65rem;
	color: var(--aera-lp-muted);
}

.aera-lp-section-problem-insight__contrast {
	margin-top: 1rem;
	display: grid;
	gap: 0.75rem;
}

.aera-lp-section-problem-insight__contrast-item {
	padding: 0.9rem 1rem;
	border-radius: var(--aera-lp-radius-inner);
	background: var(--aera-lp-tile-bg, rgba(255, 255, 255, 0.04));
	border: 1px solid var(--aera-lp-line);
}

.aera-lp-section-problem-insight__contrast-before,
.aera-lp-section-problem-insight__contrast-after {
	margin: 0;
}

.aera-lp-section-problem-insight__contrast-before {
	color: var(--aera-lp-muted);
	text-decoration: line-through;
	margin-bottom: 0.35rem;
}

.aera-lp-section-problem-insight__contrast-after {
	color: var(--aera-lp-text);
	font-weight: 600;
}

@media (max-width: 780px) {
	.aera-lp-section-problem-insight__columns {
		grid-template-columns: 1fr;
	}
}