/* Google Reviews Widget */

.grw-widget {
	display: inline-flex;
	align-items: center;
	background: #ffffff;
	border-radius: 12px;
	padding: 20px 24px;
	font-family: inherit;
	max-width: 100%;
	box-sizing: border-box;
}

.grw-link {
	display: flex;
	align-items: center;
	gap: 16px;
	text-decoration: none;
	color: inherit;
	width: 100%;
}

.grw-link:hover {
	text-decoration: none;
	color: inherit;
}

.grw-logo {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.grw-logo svg {
	display: block;
	width: 48px;
	height: 48px;
}

.grw-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.grw-stars-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.grw-rating-number {
	font-size: 1.25rem;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1;
}

.grw-stars {
	display: flex;
	align-items: center;
	gap: 1px;
	line-height: 1;
}

.grw-star {
	font-size: 22px;
	line-height: 1;
}

.grw-star.filled {
	color: #F4B400;
}

.grw-star.empty {
	color: #d0d0d0;
}

.grw-review-count {
	font-size: 0.85rem;
	color: #555555;
	line-height: 1;
}

.grw-link:focus-visible {
	outline: 2px solid #4285F4;
	outline-offset: 4px;
	border-radius: 8px;
}
