/* PBV Limburg – Ergebnis-Karten */
.pbv-results {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin: 24px 0;
}
.pbv-card {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 24px;
	background: #182029;
	border-top: 4px solid #8a9aa8;
	border-radius: 6px;
	color: #fff;
	text-decoration: none !important;
	transition: transform .15s ease, background .15s ease;
}
a.pbv-card:hover {
	background: #1f2933;
	transform: translateY(-2px);
}
.pbv-card.pbv-sieg       { border-top-color: #29a3df; }
.pbv-card.pbv-niederlage { border-top-color: #5a6470; }

.pbv-card__meta {
	font-size: 14px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #9fb0bf;
}
.pbv-card__score {
	font-family: "Oswald", "Arial Narrow", sans-serif;
	font-size: 56px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
}
.pbv-card__opp {
	font-size: 16px;
	color: #d5dee6;
}
.pbv-card__status {
	font-family: "Oswald", "Arial Narrow", sans-serif;
	font-size: 15px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #c9d3dc;
}
.pbv-sieg .pbv-card__status { color: #29a3df; }

@media (max-width: 900px) {
	.pbv-results      { grid-template-columns: minmax(0, 1fr); }
	.pbv-card__score  { font-size: 44px; }
}
