/* Vor- und Nachteile (acf/prons-cons) */
.pros-cons {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin-top: 8px;
}

.pros-cons__list {
	margin: 0;
	padding: 22px 24px;
	list-style: none;
	border-radius: var(--boho-radius);
	border: 1px solid var(--boho-line);
	background: #fff;
	box-shadow: var(--boho-shadow-soft);
}

.pros-cons__list_pros {
	border-color: rgba(112, 85, 185, .25);
	background: linear-gradient(180deg, var(--boho-violet-soft) 0%, #fff 55%);
}

.pros-cons__list_cons {
	border-color: rgba(253, 139, 15, .3);
	background: linear-gradient(180deg, var(--boho-accent-soft) 0%, #fff 55%);
}

.pros-cons__list::before {
	display: block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.pros-cons__list_pros::before {
	content: "Dafür spricht";
	color: var(--boho-violet);
}

.pros-cons__list_cons::before {
	content: "Das stört";
	color: var(--boho-accent-dark);
}

.pros-cons__item {
	position: relative;
	padding-left: 30px;
	margin-bottom: 12px;
	line-height: 1.6;
	list-style: none;
}

.pros-cons__item:last-child {
	margin-bottom: 0;
}

.pros-cons__list_pros .pros-cons__item::before,
.pros-cons__list_cons .pros-cons__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 11px;
}

.pros-cons__list_pros .pros-cons__item::before {
	background-color: rgba(112, 85, 185, .14);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237055b9' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}

.pros-cons__list_cons .pros-cons__item::before {
	background-color: rgba(253, 139, 15, .16);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f65d06' stroke-width='3.4' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E");
}

@media (max-width: 767px) {
	.pros-cons {
		grid-template-columns: minmax(0, 1fr);
	}
}
