/* Webux Bewertungen (reviews) - Google-style review cards. */
.webux-reviews {
	display: grid;
	grid-template-columns: repeat(var(--webux-cols, 3), minmax(0, 1fr));
	gap: clamp(1.5rem, 2.5vw, 2rem);
	/* Separate the cards from the rating pill / heading above (section inner has
	   no gap of its own). */
	margin-top: clamp(2.25rem, 4.5vw, 3rem);
}

@media (max-width: 900px) {
	.webux-reviews {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.webux-reviews {
		grid-template-columns: 1fr;
	}
}

.webux-review {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	background: var(--wp--preset--color--base, #ffffff);
	border: 1px solid color-mix(in srgb, var(--wp--preset--color--border, #e6e3db) 60%, transparent);
	border-radius: 20px;
	padding: clamp(1.75rem, 3vw, 2.25rem);
	box-shadow: 0 12px 32px rgba(16, 24, 15, 0.07), 0 2px 6px rgba(16, 24, 15, 0.04);
}

.webux-review__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.webux-review__who {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.webux-review__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	color: #ffffff;
	font-weight: 700;
	font-size: 19px;
	line-height: 1;
}

.webux-review__meta {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}

.webux-review__name {
	font-weight: 700;
	font-size: 15px;
	color: #202124;
}

.webux-review__date {
	font-size: 13px;
	color: #70757a;
}

.webux-review__g {
	flex: 0 0 auto;
	display: block;
}

.webux-review__stars {
	display: inline-flex;
	gap: 1px;
}

.webux-review__star {
	display: inline-flex;
	line-height: 0;
}

.webux-review__star svg {
	display: block;
}

.webux-review__star.is-on {
	color: #f5a623;
}

.webux-review__star.is-off {
	color: #e2e4dd;
}

.webux-review__quote {
	margin: 0;
	color: #3c4043;
	font-size: 15.5px;
	line-height: 1.7;
}
