.review-spotlight {
	background-color: var(--color-background-inverse);
	color: var(--color-text-inverse);
}

.review-spotlight__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-l);
	align-items: center;
}

@media (min-width: 56rem) {
	.review-spotlight__inner {
		grid-template-columns: 0.8fr 1fr;
		gap: var(--space-2xl);
	}
}

.review-spotlight__media {
	aspect-ratio: 4 / 3;
	border-radius: var(--radius-l);
	overflow: hidden;
	background-color: color-mix(in srgb, currentColor 6%, transparent);
}

.review-spotlight__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.review-spotlight__content h2 {
	color: currentColor;
	margin-bottom: var(--space-s);
}

.review-spotlight__quote {
	color: currentColor;
	opacity: 0.9;
}

.review-spotlight__author {
	margin-top: var(--space-m);
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.review-spotlight__author-name {
	font-weight: var(--font-weight-semibold);
}

.review-spotlight__content .text-caption {
	color: currentColor;
	opacity: 0.55;
}
