.top-leistungen {
	color: #2d2c80;
	padding: 4rem 1rem;
	margin-top: 100px;
	font-family: 'Montserrat', sans-serif;
	box-sizing: border-box;
}

.top-leistungen__inner {
	max-width: 960px;
	margin: 0 auto;
	text-align: left;
	background-color: #fff35f;
	padding: 2rem;
	box-sizing: border-box;
	position: relative;
	padding-bottom: calc(2rem + 49px);
}

/* Fliesenreihe bündig am unteren Rand */
.top-leistungen__inner::after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 49px;
	/*background-image: url('../img/fliesen-gelb-versatz-klein.png');*/
	background-repeat: repeat-x;
	background-size: auto 100%;
	background-position: bottom center;
	pointer-events: none;
}


.top-leistungen__headline {
	font-weight: 600; /* Montserrat Semibold */
	text-transform: uppercase;
	font-size: 1.8rem;
	margin-bottom: 2rem;
}

.top-leistungen__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3rem 2rem;
	justify-content: center;
}

.top-leistungen__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: inherit;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	padding: 0.5rem;
	border-radius: 8px;
}


.top-leistungen__item:hover {
	transform: translateY(-4px);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
	background-color: rgba(255, 255, 255, 0.2);
}

.top-leistungen__icon-wrapper {
	width: 170px;
	height: 170px;
	margin-bottom: 0.8rem;
}

.top-leistungen__icon {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.top-leistungen__label {
	font-weight: 600; /* Montserrat Semibold */
	text-transform: uppercase;
	font-size: 0.85rem;
	margin-bottom: 0.3rem;
	text-align: center;
	letter-spacing: 0.02em;
	line-height: 1.2;
}

.top-leistungen__arrow {
	font-size: 0.9rem;
	color: inherit;
	transition: transform 0.3s ease;
}

.top-leistungen__item:hover .top-leistungen__arrow {
	transform: translateX(4px);
}

@media (max-width: 960px) {
	.top-leistungen__grid {
		grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	}
}


