/* Ladewagen catalog pagination */
.catalog .pagination-container {
	width: 100%;
	margin: 28px 0 12px;
	display: flex;
	justify-content: center;
}

.catalog .pagination {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.catalog .pagination-item a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	background-color: #3d424a;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1;
	transition: opacity 0.3s ease;
}

.catalog .pagination-item a:hover {
	opacity: 0.75;
}

.catalog .pagination-item.active a {
	background-color: #4494a9;
}

/* Homepage Ladewagen tile */
.brand-logo-item .ladewagen-home-tile {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 120px;
	padding: 20px 28px;
	background: #3d424a;
	color: #fff;
	font-size: 1.35rem;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.brand-logo-item .link:hover .ladewagen-home-tile {
	opacity: 0.85;
}
