/*
 * Styling for the server-rendered reviews only.
 *
 * The widget script replaces this block on load, so these styles are visible
 * for a moment on a slow connection, permanently for a visitor with
 * JavaScript disabled, and never for anyone else. They aim to look
 * deliberate rather than to imitate the widget: a half-drawn copy of the
 * real thing looks broken, a clean set of quotations does not.
 */
.rotf-reviews {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fill, minmax(min(15rem, 100%), 1fr));
}
.rotf-reviews .rotf-review {
	margin: 0;
	padding: 0.875rem 1rem;
	border: 1px solid rgba(128, 128, 128, 0.25);
	border-radius: 12px;
	/* No background colour: the host page's own surface shows through, which
	   is right on both light and dark themes without guessing which it is. */
	quotes: none;
}
.rotf-reviews .rotf-review p {
	margin: 0 0 0.5rem;
	font-size: 0.9375rem;
	line-height: 1.5;
}
.rotf-reviews .rotf-review cite {
	display: block;
	font-size: 0.8125rem;
	font-style: normal;
	opacity: 0.72;
}
