.grs-wrapper-bc35866d {
	position: relative;
	width: 100%;
	--grs-slides-to-show: 3;
	--grs-gap: 20px;
}

.grs-slider-viewport-bc35866d {
	overflow: hidden;
	width: 100%;
	/* Scroll snapping for touch/swipe */
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none;  /* IE 10+ */
}

.grs-slider-viewport-bc35866d::-webkit-scrollbar {
	display: none; /* Safari and Chrome */
}

.grs-track-bc35866d {
	display: flex;
	gap: var(--grs-gap);
	transition: transform 0.5s ease-in-out;
	will-change: transform;
}

.grs-slide-bc35866d {
	flex: 0 0 calc((100% - (var(--grs-gap) * (var(--grs-slides-to-show) - 1))) / var(--grs-slides-to-show));
	min-width: 0;
}

/* Card Styles */
.grs-card-bc35866d {
	position: relative;
	background: #fff;
	height: 100%;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}

.grs-g-logo-bc35866d {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 1;
}

.grs-header-bc35866d {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	gap: 15px;
	padding-right: 40px; /* Space for Google Logo */
}

.grs-avatar-bc35866d {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}

.grs-meta-bc35866d {
	display: flex;
	flex-direction: column;
}

.grs-name-bc35866d {
	font-weight: 600;
	font-size: 16px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.grs-verified-bc35866d {
	flex-shrink: 0;
}

.grs-date-bc35866d {
	font-size: 13px;
	margin-top: 2px;
}

.grs-stars-bc35866d {
	display: flex;
	gap: 2px;
	margin-bottom: 12px;
}

.grs-text-bc35866d {
	font-size: 15px;
	line-height: 1.6;
	flex-grow: 1;
}

/* Navigation Buttons */
.grs-nav-btn-bc35866d {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	z-index: 2;
	transition: all 0.3s ease;
}
.grs-nav-btn-bc35866d:hover {
	transform: translateY(-50%) scale(1.05);
	box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.grs-prev-bc35866d { left: -20px; }
.grs-next-bc35866d { right: -20px; }

/* Pagination Dots */
.grs-pagination-bc35866d {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 25px;
}
.grs-dot-bc35866d {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

@media (max-width: 1024px) {
	.grs-prev-bc35866d { left: 0px; }
	.grs-next-bc35866d { right: 0px; }
}
