
.mve-grid,
.mve-grid * {
	box-sizing: border-box;
}

.mve-grid {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
}

.mve-card {
	min-width: 0;
	background: #eaf3fb;
	overflow: hidden;
}

.mve-heading {
	display: flex;
	align-items: center;
	gap: 17px;
	margin-bottom: 8px;
}

.mve-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	line-height: 1;
	font-size: 42px;
}

.mve-icon svg {
	display: block;
	width: 1em;
	height: 1em;
}

.mve-title {
	margin: 0;
	font-size: 36px;
	font-weight: 400;
	line-height: 1.1;
}

.mve-text {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.16;
	overflow-wrap: anywhere;
}

@media (max-width: 767px) {
	.mve-grid {
		grid-template-columns: 1fr;
		gap: 22px !important;
	}

	.mve-card {
		min-height: auto !important;
	}

	.mve-title {
		font-size: 29px;
	}

	.mve-text {
		font-size: 17px;
	}
}
