/* Facebook Reviews Widget */

.fbr-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;
}

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

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

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

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

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

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

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

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

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

.fbr-star.filled {
	color: #f5a623;
}

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

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

/* Editor states */
.fbr-placeholder,
.fbr-error {
	padding: 16px;
	border: 1px dashed #ccc;
	border-radius: 8px;
	color: #888;
	font-size: 0.9rem;
	text-align: center;
}

.fbr-error {
	border-color: #e53e3e;
	color: #e53e3e;
	background: #fff5f5;
}

.fbr-placeholder p,
.fbr-error p {
	margin: 0;
}

/* Hover effect on the whole card */
.fbr-widget:hover {
	transition: box-shadow 0.2s ease;
}

.fbr-link:focus-visible {
	outline: 2px solid #1877F2;
	outline-offset: 4px;
	border-radius: 8px;
}
