/* ==========================================================================
   Review-Wall der Leistungsseiten (assets/content/reviews-leistung.php)
   Karten-Grid mit echten Google-Zitaten, vor der FAQ-Sektion.
   ========================================================================== */

.sxc-reviews {
	padding: 3rem 0;
	background: #f8fafc;
}
.sxc-reviews__head {
	text-align: center;
	max-width: 46rem;
	margin: 0 auto 1.75rem;
}
.sxc-reviews__head .headline {
	margin: 0 0 0.6rem;
}
.sxc-reviews__google {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	color: #475569;
	font-size: 0.9375rem;
}
.sxc-reviews__google:hover .sxc-reviews__google-txt {
	text-decoration: underline;
}
.sxc-reviews__google-logo {
	height: 18px;
	width: auto;
	display: block;
}
.sxc-reviews__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.1rem;
	max-width: 72rem;
	margin: 0 auto;
	align-items: stretch;
}
.sxc-reviews__grid--2 {
	grid-template-columns: repeat(2, 1fr);
	max-width: 52rem;
}
.sxc-review {
	margin: 0;
	background: #fff;
	border: 1px solid #e3edf7;
	border-radius: 14px;
	padding: 1.4rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}
.sxc-review__stars {
	display: inline-flex;
	gap: 2px;
}
.sxc-review__quote {
	margin: 0;
	color: #1f2937;
	line-height: 1.55;
	font-size: 0.9688rem;
}
.sxc-review__author {
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	padding-top: 0.4rem;
}
.sxc-review__name {
	font-weight: 700;
	color: #1f2937;
	font-size: 0.9375rem;
}
.sxc-review__src {
	color: #64748b;
	font-size: 0.8125rem;
}

@media (max-width: 900px) {
	.sxc-reviews__grid,
	.sxc-reviews__grid--2 {
		grid-template-columns: 1fr;
		max-width: 34rem;
	}
}
