.ftb-buttons-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin: 20px 0;
	padding: 0;
}

.ftb-button {
	display: block;
	width: 22%;
	padding-top: 22%; /* quadratisch */
	position: relative;
	background-size: cover;
	background-position: center;
	border-radius: 10px;
	overflow: hidden;
	text-decoration: none;
	transition: transform 0.2s ease;
}

.ftb-button:hover {
	transform: scale(1.03);
}

.ftb-text-overlay {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 8px;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	box-sizing: border-box;
}

/* 📱 Mobile Optimierung */
@media screen and (max-width: 768px) {
	.ftb-button {
		width: 48%;
		padding-top: 48%;
	}

	.ftb-text-overlay {
		font-size: 14px;
		padding: 6px;
	}

	.ftb-buttons-container {
		gap: 10px;
		margin: 10px 0;
	}
}
