/* ============================================================
 * BIOTA · PRIMITIVE · Reviews
 * Gold star row, a rating summary (stars + score + count), and the
 * testimonial card (stars, quote, name + location).
 * ============================================================ */

/* Star glyph row (decorative — pair with screen-reader text for the score). */
.biota-stars {
	margin: 0;
	color: var(--wp--preset--color--accent-gold);
	font-size: var(--wp--preset--font-size--body);
	letter-spacing: 1px;
}

/* Rating summary: stars + score + count on one line. */
.biota-rating {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--wp--preset--spacing--bt-20);
}
.biota-rating__score {
	margin: 0;
	font-weight: 700;
	font-size: var(--wp--preset--font-size--body);
}
.biota-rating__count {
	margin: 0;
	color: var(--wp--preset--color--text-subtle);
	font-size: var(--wp--preset--font-size--body);
}

/* Testimonial card. */
.biota-review {
	display: flex;
	flex-direction: column;
	gap: var(--wp--preset--spacing--bt-20);
	background-color: var(--wp--preset--color--surface-light);
	border-radius: 18px;
	padding: var(--wp--preset--spacing--bt-40);
}
.biota-review__quote {
	margin: 0;
	color: var(--wp--preset--color--text);
	font-size: var(--wp--preset--font-size--body);
	line-height: 1.6;
}
.biota-review__meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.biota-review__name {
	margin: 0;
	font-weight: 700;
	font-size: var(--wp--preset--font-size--body);
}
.biota-review__loc {
	margin: 0;
	color: var(--wp--preset--color--text-subtle);
	font-size: var(--wp--preset--font-size--caption);
}
