/*
 * GORILLA GARAGE — Section: Reviews
 *
 * Dunkle Section, mittiger Header, 4-Spalten-Grid mit dunklen 3D-Cards,
 * darunter offizielles Google-Logo-Lockup als Quellen-Stempel/CTA.
 */

.gg-section-reviews {
	position: relative;
	overflow: hidden;
}

.gg-section-reviews__header {
	margin-bottom: var(--space-12);
}

.gg-section-reviews__brandmark {
	display: inline-flex;
	justify-content: center;
	margin-bottom: var(--space-3);
}

.gg-section-reviews__brandmark-svg {
	width: 32px;
	height: 32px;
	display: block;
}

.gg-section-reviews__stars {
	font-size: var(--fs-xl);
	letter-spacing: 0.15em;
	color: var(--gg-gold);
	margin-bottom: var(--space-2);
}

/* ────────────────────────────────────────────────────────────
 * Grid — 4 Cards nebeneinander (≥1024px), 2 auf Tablet, 1 mobil
 * ──────────────────────────────────────────────────────────── */

.gg-section-reviews__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-6);
	perspective: 1200px;
}

@media (min-width: 640px) {
	.gg-section-reviews__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.gg-section-reviews__grid {
		grid-template-columns: repeat(4, 1fr);
		gap: var(--space-5);
	}
}

.gg-section-reviews__item {
	display: block;
}

/* ────────────────────────────────────────────────────────────
 * Trustindex-Widget-Wrapper — rahmt das eingebettete Plugin-Widget
 * (wp-reviews-plugin-for-google) in die Dark-Section ein.
 * Das Widget bringt eigenes CSS mit; hier nur Breite/Zentrierung.
 * ──────────────────────────────────────────────────────────── */

.gg-section-reviews__widget {
	width: 100%;
	margin-inline: auto;
}

.gg-section-reviews__widget > * {
	margin-inline: auto;
}

/* ────────────────────────────────────────────────────────────
 * Google-Lockup-Footer — offizielle Brand-Farben, dezenter CTA
 * ──────────────────────────────────────────────────────────── */

.gg-section-reviews__footer {
	margin-top: var(--space-10);
	display: flex;
	justify-content: center;
}

.gg-section-reviews__google-cta {
	display: inline-flex;
	align-items: center;
	gap: var(--space-3);
	padding: var(--space-3) var(--space-5);
	background-color: var(--gg-white);
	border-radius: var(--radius-pill);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.08) inset,
		0 10px 30px rgba(0, 0, 0, 0.45),
		0 2px 6px rgba(0, 0, 0, 0.35);
	color: var(--gg-grey-700, #2c2c2c);
	text-decoration: none;
	font-family: var(--font-body);
	font-size: var(--fs-sm);
	font-weight: var(--fw-semibold);
	letter-spacing: var(--ls-wide);
	transition:
		transform var(--dur-base) var(--ease-emphasis),
		box-shadow var(--dur-base) var(--ease-emphasis);
}

.gg-section-reviews__google-cta:hover,
.gg-section-reviews__google-cta:focus-visible {
	transform: var(--hover-lift-card);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.1) inset,
		0 16px 40px rgba(0, 0, 0, 0.5),
		0 4px 10px rgba(0, 0, 0, 0.4);
	text-decoration: none;
}

.gg-section-reviews__google-label {
	color: #5f6368;
	text-transform: uppercase;
	font-size: var(--fs-xs);
	letter-spacing: var(--ls-widest);
}

.gg-google-logo {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.gg-google-logo__wordmark {
	font-family: 'Product Sans', 'Arial', sans-serif;
	font-weight: 500;
	font-size: 18px;
	letter-spacing: -0.5px;
	line-height: 1;
	text-transform: none;
}

.gg-section-reviews__google-arrow {
	color: #5f6368;
	font-size: var(--fs-base);
	transition: transform var(--dur-base) var(--ease-emphasis);
}

.gg-section-reviews__google-cta:hover .gg-section-reviews__google-arrow,
.gg-section-reviews__google-cta:focus-visible .gg-section-reviews__google-arrow {
	transform: var(--hover-nudge-arrow);
}

