#verkaufsstellen-filter {
	display: flex;
	justify-content: center;
	padding-bottom: 20px;
}
select#bundesland-filter {
    background: #eceeef;
    border-radius: 5px;
    border-width: 0;
	font-size: 18px;
    padding: 5px;
}
.verkaufsstellen-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}
p.no-stores {
	display: block;
	font-size: 20px;
	line-height: 1.5em;
	text-align: center;  /* zentrieren */
	margin: 20px 0;      /* Abstand nach oben/unten */
}
.verkaufsstellen-grid:has(.verkaufsstelle-item:only-child) {
	justify-content: center;
	grid-template-columns: 1fr;
}
/* Fallback für Browser ohne :has() */
@supports not (selector(:has(*))) {
	.verkaufsstellen-grid.single-item {
		justify-content: center;
		grid-template-columns: 1fr;
	}
}
.verkaufsstellen-grid.single-item .verkaufsstelle-item {
	width: 50%;
	margin: 0 auto;
}
@media (max-width: 768px) {
	.verkaufsstellen-grid {
		grid-template-columns: 1fr;
	}
	.verkaufsstellen-grid.single-item .verkaufsstelle-item {
		width: 100%; /* volle Breite auf Mobile */
	}
}
.verkaufsstelle-item {
	padding: 25px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0,0,0,0.15);
	display: flex;
	flex-direction: column;
	align-items: center;
}
.verkaufsstelle-item img,
.verkaufsstelle-item svg {
    max-width: 60px;
    margin: 0 auto 10px;
}
.verkaufsstellen-wrapper h2 {
	text-align: center;
	margin-top: 50px;
}
.verkaufsstelle-item h3 {
    margin-bottom: 10px;
	font-size: 24px;
}
.verkaufsstelle-item .adresszusatz,
.verkaufsstelle-item .strasse,
.verkaufsstelle-item .ort,
.verkaufsstelle-item .bundesland {
    display: block;
    font-size: 20px;
}
.verkaufsstelle-item .maps-route-btn,
.no-stores .contact-btn {
    background-color: #8C0B1C;
    border-radius: 5px;
    color:#fff;
    display: inline-block;
	letter-spacing: 1px;
    margin-top: 20px;
    padding: .3em 2em;
	text-transform: uppercase !important;
    text-decoration:none;
    font-size: 20px;
	transition: .5s all;
}
.verkaufsstelle-item .maps-route-btn:hover,
.no-stores .contact-btn:hover {
    background-color: #F0808C;
	transition: .5s all;
}
