/* ═══════════════════════════════════════════════════════════
   Google Reviews Slider
   ═══════════════════════════════════════════════════════════ */

.vgrs {
	margin: 0 auto;
}

.vgrs__heading {
	text-align: center;
	font-size: 32px;
	font-weight: 700;
	color: #1d2327;
	margin: 0 0 32px;
	line-height: 1.2;
}

/* ── Track ────────────────────────────── */

.vgrs__track-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.vgrs__track {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding: 4px 4px 8px;
	margin: -4px -4px 0;
	width: 100%;
	order: -1;
}

.vgrs__track::-webkit-scrollbar {
	display: none;
}

/* ── Card ─────────────────────────────── */

.vgrs__card {
	flex: 0 0 calc((100% - 48px) / 3);
	scroll-snap-align: start;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	box-shadow: 0 2px 12px rgba(0,0,0,.06);
	transition: box-shadow .2s ease, transform .2s ease;
}

.vgrs__card:hover {
	box-shadow: 0 6px 24px rgba(0,0,0,.1);
	transform: translateY(-2px);
}

/* ── Header ───────────────────────────── */

.vgrs__card-header {
	display: flex;
	align-items: center;
	gap: 12px;
}

.vgrs__avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.vgrs__avatar-initial {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #f0c33c;
	color: #1d2327;
	font-size: 20px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	text-transform: uppercase;
}

.vgrs__meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.vgrs__author {
	font-size: 15px;
	font-weight: 600;
	color: #1d2327;
}

.vgrs__stars {
	color: #f0c33c;
	font-size: 14px;
	letter-spacing: 1px;
}

.vgrs__date {
	font-size: 12px;
	color: #999;
}

/* ── Text ─────────────────────────────── */

.vgrs__text {
	font-size: 14px;
	line-height: 1.6;
	color: #444;
	margin: 0;
	flex: 1;
}

/* ── Google Badge ─────────────────────── */

.vgrs__google-badge {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: #999;
	padding-top: 8px;
	border-top: 1px solid #f0f0f0;
}

.vgrs__google-badge svg {
	flex-shrink: 0;
}

/* ── Arrows (below track, centered) ───── */

.vgrs__arrow {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #e5e7eb;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: border-color 0.2s, background 0.2s;
	padding: 0;
}

.vgrs__arrow:hover {
	border-color: #f0c33c;
	background: #f0c33c;
}

.vgrs__arrow:hover svg {
	fill: #fff;
}

.vgrs__arrow svg {
	width: 20px;
	height: 20px;
	fill: #1d2327;
}

/* ── Responsive ───────────────────────── */

@media (max-width: 991px) {
	.vgrs__card {
		flex: 0 0 calc((100% - 24px) / 2);
	}
}

@media (max-width: 600px) {
	.vgrs__heading {
		font-size: 24px;
		margin-bottom: 24px;
	}

	.vgrs__card {
		flex: 0 0 100%;
		padding: 20px;
	}

	.vgrs__arrow {
		width: 36px;
		height: 36px;
	}

	.vgrs__arrow svg {
		width: 18px;
		height: 18px;
	}
}
