.ba-rezept-filter__nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 4px;
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
}

.ba-rezept-filter__nav button {
	appearance: none;
	border: 0;
	background: #e1e1e1;
	color: #000;
	padding: 8px 15px;
	font-size: 15px;
	line-height: 1.2;
	cursor: pointer;
	font-family: inherit;
}

.ba-rezept-filter__nav button.is-active,
.ba-rezept-filter__nav button:hover,
.ba-rezept-filter__nav button:focus-visible {
	background: #293d11;
	color: #fff;
}

.ba-rezept-filter__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

@media (min-width: 641px) {
	.ba-rezept-filter__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.ba-rezept-card {
	background: #fff;
	text-align: center;
	padding-bottom: 15px;
}

.ba-rezept-card.is-hidden {
	display: none;
}

.ba-rezept-card__image {
	display: block;
	height: 200px;
	overflow: hidden;
	background: #f1f1f1;
	margin-bottom: 20px;
}

.ba-rezept-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

.ba-rezept-card__title {
	margin: 5px 0;
	padding: 5px 15px;
	font-size: 20px;
	line-height: 1.2;
}

.ba-rezept-card__title a {
	color: #444;
	text-decoration: none;
}

.ba-rezept-card__cats a {
	display: inline-block;
	margin: 0 2px 2px;
	padding: 3px 8px;
	font-size: 12px;
	text-transform: uppercase;
	color: #fff !important;
	background: #b89f2f;
	text-decoration: none;
	line-height: normal;
}

.ba-rezept-card__excerpt {
	padding: 10px 15px 0;
	margin: 0;
}

.ba-rezept-card__more {
	display: inline-block;
	margin: 15px 0 0;
	padding: 4px 0;
	font-size: 15px;
	color: #888;
	border-bottom: 1px solid #888;
	text-decoration: none;
}

.ba-rezept-card__more:hover,
.ba-rezept-card__more:focus {
	color: #293d11;
	border-bottom-color: #293d11;
}

@media (max-width: 640px) {
	.ba-rezept-card__image {
		height: 220px;
	}
}
