.wba-testimonials {
	padding: 72px 40px 56px;
	background: var(--wba-cream);
}

.wba-testimonials__inner {
	max-width: 1240px;
	margin: 0 auto;
	display: flex;
	align-items: flex-start;
	gap: 64px;
}

.wba-testimonials__left {
	flex: 0 0 340px;
}

.wba-testimonials__badge {
	font-family: var(--wba-font-body);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--wba-green-accent);
	margin: 0 0 14px;
}

.wba-testimonials__titel {
	font-family: var(--wba-font-head);
	font-size: clamp(22px, 2.2vw, 32px);
	font-weight: 700;
	color: var(--wba-green-dark);
	margin: 0 0 40px;
	line-height: 1.2;
}

.wba-testimonials__right {
	flex: 1;
	min-width: 0;
}

.wba-testimonials__footer {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 40px;
}

/* Karte */
.wba-testi-karte {
	background: var(--wba-white);
	border-radius: var(--wba-radius-lg);
	padding: 26px 24px 30px;
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(58, 107, 74, 0.10);
	box-sizing: border-box;
	height: 100%;
}

/* Sterne grün */
.wba-testi-karte__sterne {
	display: flex;
	gap: 3px;
	color: var(--wba-green-accent);
	margin-bottom: 14px;
}

/* Anführungszeichen statt grauem Balken */
.wba-testi-karte__text {
	font-family: var(--wba-font-body);
	font-size: 13.5px;
	color: var(--wba-green-mid);
	line-height: 1.75;
	margin: 0 0 18px;
	flex: 1;
	quotes: "\201E" "\201C";
}

.wba-testi-karte__text::before {
	content: open-quote;
	color: var(--wba-green-accent);
	font-family: var(--wba-font-head);
	font-size: 28px;
	line-height: 0;
	vertical-align: -10px;
	margin-right: 3px;
}

.wba-testi-karte__text::after {
	content: close-quote;
	color: var(--wba-green-accent);
	font-family: var(--wba-font-head);
	font-size: 28px;
	line-height: 0;
	vertical-align: -10px;
	margin-left: 3px;
}

.wba-testi-karte__autor {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding-top: 14px;
	margin-top: auto;
}

.wba-testi-karte__name {
	font-family: var(--wba-font-body);
	font-size: 13px;
	font-weight: 700;
	color: var(--wba-green-dark);
}

.wba-testi-karte__rolle {
	font-family: var(--wba-font-body);
	font-size: 12px;
	color: var(--wba-green-bright);
}

.wba-slider--testimonials {
	overflow: hidden;
}

.wba-slider--testimonials .wba-slider__track {
	display: flex;
	transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
	padding-bottom: 16px;
	margin-bottom: -16px;
}

.wba-slider--testimonials .wba-slider__slide {
	flex: 0 0 calc(33.333% - 12px);
	margin-right: 18px;
}

.wba-slider__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 24px;
	width: 100%;
}

.wba-slider__dots button {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	background: rgba(74, 140, 92, 0.25);
	padding: 0;
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
}

.wba-slider__dots button.is-active {
	background: var(--wba-green-accent);
	transform: scale(1.3);
}

@media (max-width: 1024px) {
	.wba-testimonials__inner {
		flex-direction: column;
		gap: 40px;
	}
	.wba-testimonials__left {
		flex: none;
	}
	.wba-slider--testimonials .wba-slider__slide {
		flex: 0 0 calc(50% - 9px);
	}
}

@media (max-width: 640px) {
	.wba-testimonials {
		padding: 48px 20px 40px;
	}
	.wba-testimonials__footer {
		padding: 0 20px;
	}
	.wba-slider--testimonials .wba-slider__slide {
		flex: 0 0 calc(100% - 18px);
	}
}