/* Google Reviews (statisch) – Badge + Footer-Sektion. Ersetzt Business Reviews Bundle. */

/* ---------- gemeinsame Bausteine ---------- */
.mrv-gr-stars { display: inline-flex; gap: 1px; vertical-align: middle; }
.mrv-gr-stars svg { width: 15px; height: 15px; fill: #fbbc04; display: block; }
.mrv-gr-g { display: inline-block; vertical-align: middle; flex: 0 0 auto; }

/* ---------- fließendes Badge (unten links) ---------- */
.mrv-gr-badge {
	position: fixed;
	left: 16px;
	bottom: 16px;
	z-index: 9000;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 8px 13px;
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 10px;
	box-shadow: 0 6px 22px rgba(0, 0, 0, 0.16);
	text-decoration: none;
	color: #1a1e21;
	line-height: 1.2;
	transition: transform 0.16s ease, box-shadow 0.2s ease;
}
.mrv-gr-badge:hover,
.mrv-gr-badge:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
	color: #1a1e21;
}
.mrv-gr-badge:focus-visible { outline: 2px solid #4285F4; outline-offset: 2px; }
.mrv-gr-badge__body { display: flex; flex-direction: column; gap: 2px; }
.mrv-gr-badge__top { display: inline-flex; align-items: center; gap: 6px; }
.mrv-gr-badge__top strong { font-size: 15px; font-weight: 700; }
.mrv-gr-badge__count { font-size: 11px; color: #6a7075; white-space: nowrap; }

@media (max-width: 640px) {
	.mrv-gr-badge { left: 10px; bottom: 10px; padding: 7px 10px; gap: 7px; }
	.mrv-gr-badge__count { display: none; }
	.mrv-gr-badge__top strong { font-size: 14px; }
	.mrv-gr-stars svg { width: 13px; height: 13px; }
}

/* ---------- Footer-Sektion ---------- */
.mrv-greviews {
	max-width: 1140px;
	margin: 0 auto 34px;
	padding: 0 20px;
	text-align: center;
}
.mrv-greviews__head {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 22px;
}
.mrv-greviews__rating { font-size: 22px; font-weight: 700; color: inherit; }
.mrv-greviews__head .mrv-gr-stars svg { width: 20px; height: 20px; }
.mrv-greviews__count { font-size: 14px; opacity: 0.75; flex-basis: 100%; }

.mrv-greviews__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-bottom: 24px;
}
.mrv-greviews__card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 20px;
	background: #fff;
	border: 1px solid #e7e7e7;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	text-align: left;
}
.mrv-greviews__by { display: flex; align-items: center; gap: 10px; }
.mrv-greviews__avatar {
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: #4CAF50;
	color: #fff;
	font-weight: 700;
	font-size: 15px;
}
.mrv-greviews__author { font-weight: 600; font-size: 15px; color: #1a1e21; }
.mrv-greviews__text { margin: 0; font-size: 14px; line-height: 1.55; color: #40474c; }

.mrv-greviews__all {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	color: #4285F4;
	text-decoration: none;
}
.mrv-greviews__all:hover,
.mrv-greviews__all:focus-visible { text-decoration: underline; }

@media (max-width: 980px) {
	.mrv-greviews__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.mrv-greviews__grid { grid-template-columns: 1fr; }
}
