/*
 * Orbitalia Dynamic Widgets — Dynamic Reviews
 *
 * Testimonial / review cards on a responsive CSS grid.
 * BEM scoped, zero JS. All visual properties are overridable from the
 * Elementor Style tab, so this stylesheet only defines layout primitives,
 * accessible defaults and the star shape.
 *
 * NOTE: these are editorial testimonials, not verified third-party reviews,
 * so the widget intentionally emits NO Review / AggregateRating schema.
 */

.orbitalia-reviews {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 24px;
	row-gap: 24px;
	margin: 0;
	padding: 0;
}

.orbitalia-reviews__item {
	display: flex;
	flex-direction: column;
	margin: 0;
	min-width: 0;
}

/* Stars (plain text, e.g. ★★★★★) ----------------------------------------- */

.orbitalia-reviews__stars {
	margin-bottom: 16px;
	color: #14b8a6;
	font-size: 16px;
	line-height: 1;
	letter-spacing: 2px;
}

/* Quote ------------------------------------------------------------------- */

.orbitalia-reviews__text {
	margin: 0 0 16px;
	padding: 0;
	border: 0;
	quotes: none;
	line-height: 1.5;
	overflow-wrap: anywhere;
}

.orbitalia-reviews__text p {
	margin: 0;
}

/* Meta (author + source) -------------------------------------------------- */

.orbitalia-reviews__meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-top: auto;
}

.orbitalia-reviews__author {
	font-style: normal;
	font-weight: 600;
	line-height: 1.3;
}

.orbitalia-reviews__source {
	font-size: 0.85rem;
	line-height: 1.3;
}

/* Editor-only empty state ------------------------------------------------- */

.orbitalia-reviews--empty {
	display: block;
	padding: 16px;
	background: #fff7e6;
	border: 1px dashed #d6a23a;
	color: #6b4500;
	font-style: italic;
}
