#wrapper h3 {
	margin: 14px 14px 8px;
	font-size: 22px;
	color: var(--accent-ink);
	position: relative;
	padding-left: 14px;
}

#wrapper h3::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 1.1em;
	background: var(--nav);
	border-radius: 2px;
}

#PKWs,
#Motorraeder,
#Anhaenger {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0 14px 6px;
}

.card {
	background-color: var(--card);
	border: 1px solid var(--card-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.card:hover {
	transform: scale(1.03);
	box-shadow: var(--shadow-md);
}

.card.spacer {
	background: none;
	border: none;
	box-shadow: none;
}

.card img {
	display: block;
	width: 100%;
	height: auto;
	cursor: zoom-in;
	transition: filter 0.2s var(--ease);
}

.card:hover img {
	filter: brightness(1.03);
}

.card .text h3 {
	margin: 10px 12px 4px;
	padding: 0;
}

.card .text h3::before {
	display: none;
}

.card .text p {
	margin: 0 12px 14px;
	color: var(--ink-soft);
}

@media (min-width: 900px) {
	.card {
		width: calc(50% - 6px);
	}

	.card img {
		aspect-ratio: 4 / 3;
		object-fit: cover;
	}

	.card .text h3,
	.card .text p {
		text-align: center;
	}
}

@media (max-width: 899px) {
	.card {
		width: 100%;
		display: flex;
		align-items: stretch;
	}

	.card img {
		width: 42%;
		object-fit: cover;
	}

	.card.spacer {
		display: none;
	}

	.card .text {
		flex: 1;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}
