.hrt-mve {
	width: 100%;
	min-height: 0;
	background: #fffdf9;
	color: #1a1a1a;
	overflow: hidden;
}

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

.hrt-mve__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.hrt-mve__header {
	text-align: center;
}

.hrt-mve__badge-row {
	display: block;
	margin-bottom: 12px;
}

.hrt-mve__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 16px;
	border-radius: 999px;
	background: #fff1db;
	color: #ff9600;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

.hrt-mve__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	line-height: 1;
}

.hrt-mve__icon i {
	line-height: 1;
}

.hrt-mve__icon svg {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.hrt-mve__heading {
	margin: 0;
	color: #000;
	font-size: clamp(30px, 4vw, 48px);
	font-weight: 700;
	line-height: 1.12;
}

.hrt-mve__highlight {
	color: #ff9600;
}

.hrt-mve__description {
	max-width: 850px;
	margin: 15px auto 0;
	color: #4a4a4a;
	font-size: 17px;
	line-height: 1.7;
}

.hrt-mve__description > :first-child,
.hrt-mve__card-content > :first-child,
.hrt-mve__purpose-intro > :first-child {
	margin-top: 0;
}

.hrt-mve__description > :last-child,
.hrt-mve__card-content > :last-child,
.hrt-mve__purpose-intro > :last-child {
	margin-bottom: 0;
}

.hrt-mve__cards {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: var(--hrt-mve-gap);
	--hrt-mve-columns: 2;
	--hrt-mve-gap: 24px;
}

.hrt-mve__card {
	position: relative;
	display: flex;
	flex: 1 1 calc((100% - (var(--hrt-mve-columns) - 1) * var(--hrt-mve-gap)) / var(--hrt-mve-columns));
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	padding: 28px 30px;
	border: 1px solid #f2e6d6;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 8px 30px rgba(0, 0, 0, .04);
	transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.hrt-mve__card:hover {
	transform: translateY(-3px);
	background: #fff9f0;
	border-color: rgba(255, 150, 0, .22);
	box-shadow: 0 14px 32px rgba(0, 0, 0, .07);
}

.hrt-mve__card.has-top-accent::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 4px;
	background: #ff9600;
	content: "";
	transition: width .25s ease;
}

.hrt-mve__card.has-top-accent:hover::before {
	width: 100%;
}

.hrt-mve__card-icon {
	width: 48px;
	height: 48px;
	margin-bottom: 17px;
	border-radius: 14px;
	background: #fff1db;
	color: #ff9600;
	font-size: 20px;
}

.hrt-mve__card-title {
	margin: 0 0 10px;
	color: #000;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.35;
}

.hrt-mve__card-title:last-child {
	margin-bottom: 0;
}

.hrt-mve__card-content {
	color: #4a4a4a;
	font-size: 15px;
	line-height: 1.75;
}

.hrt-mve__purpose {
	margin-top: 26px;
	padding: 28px 30px;
	border: 1px solid rgba(255, 150, 0, .18);
	border-radius: 20px;
	background: linear-gradient(135deg, #fff5e6, #ffedd4);
}

.hrt-mve__purpose.is-first {
	margin-top: 0;
}

.hrt-mve__purpose-intro {
	color: #4a4a4a;
	font-size: 16px;
	line-height: 1.75;
}

.hrt-mve__purposes {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 12px;
}

.hrt-mve__purposes.is-first {
	margin-top: 0;
}

.hrt-mve__purpose-tag {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 9px 14px;
	border-radius: 9px;
	background: #faf8f5;
	color: #222;
	font-size: 14px;
	line-height: 1.4;
	text-align: center;
}

@media (max-width: 767px) {
	.hrt-mve__heading {
		font-size: clamp(28px, 9vw, 38px);
	}

	.hrt-mve__description {
		font-size: 16px;
	}

	.hrt-mve__cards {
		--hrt-mve-columns: 1;
	}

	.hrt-mve__card {
		flex-basis: 100%;
		padding: 23px 20px;
	}

	.hrt-mve__purpose {
		padding: 23px 20px;
	}

	.hrt-mve__purposes {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hrt-mve__card,
	.hrt-mve__card.has-top-accent::before {
		transition: none;
	}

	.hrt-mve__card:hover {
		transform: none;
	}
}
