.mb-pf {
	background: #fff;
	border-radius: 10px;
	box-shadow: rgba(23, 43, 99, 0.12) 0 4px 20px;
	margin: 32px 0;
	padding: 0;
	overflow: hidden;
}

.mb-pf__section {
	padding: 28px 32px 24px;
}

.mb-pf__section--pros {
	border-left: 4px solid #1f2641;
}

.mb-pf__section--cons {
	border-left: 4px solid #D64F15;
	border-top: 1px solid #f0f0f0;
}

.mb-pf__heading {
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0 0 16px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.mb-pf__heading--pros {
	color: #1f2641;
}

.mb-pf__heading--cons {
	color: #D64F15;
}

.mb-pf__heading::before {
	display: inline-flex;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

.mb-pf__heading--pros::before {
	content: '\2713';
	background: #EDE9D0;
	color: #1f2641;
}

.mb-pf__heading--cons::before {
	content: '\2717';
	background: rgba(214, 79, 21, 0.1);
	color: #D64F15;
}

.mb-pf__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mb-pf__item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid #f5f5f5;
	font-size: 18px;
	line-height: 1.6;
	color: #333;
}

.mb-pf__item:last-child {
	border-bottom: none;
}

.mb-pf__icon {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	margin-top: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mb-pf__icon svg {
	width: 18px;
	height: 18px;
}

.mb-pf__text {
	flex: 1;
}

@media (max-width: 600px) {
	.mb-pf__section {
		padding: 20px 20px 18px;
	}

	.mb-pf__heading {
		font-size: 14px;
	}

	.mb-pf__item {
		font-size: 15px;
		gap: 10px;
	}
}
