.google-reviews-widget {
	/* font-family: "Inter", sans-serif; */
	max-width: 1300px;
	margin: 0 auto;
	padding: 50px 5px;
}

/* Heading */
.google-header {
	text-align: center;
	margin-bottom: 35px;
}

.rating-box {
	display: flex;
	justify-content: center;
	align-items: center;
}

.rating-number {
	font-size: 48px;
	font-weight: 800;
	color: #34a853;
}

.rating-stars {
	font-size: 32px;
	color: #ffb300;
	margin-left: 8px;
}

/* Desktop Grid */
.review-grid-container {
	display: grid;
	gap: 15px;
	grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 992px) {
	.review-grid-container {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Cards */
.review-card {
	background: #fff;
	border-radius: 16px;
	padding: 5px;
	border: 2px dashed #1aa7ff;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
	transition: 0.3s ease;
	height: 100%;
}

.review-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

/* Profile */
.review-profile {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
}

/* .avatar {
	width: 48px;
	height: 48px;
	background: #ccc;
	color: #fff;
	font-weight: bold;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 14px;
	font-size: 20px;
} */
.avatar-dynamic {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 700;
	font-size: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
	border: 2px solid rgba(255, 255, 255, 0.3);
	transition: 0.3s;
	margin-right: 14px;
}

.avatar-dynamic:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.review-stars {
	color: #ffb300;
	font-size: 20px;
	margin-bottom: 8px;
}

.review-text {
	font-size: 15px;
	line-height: 1.6;
	/* color: #444; */
	max-height: 120px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 5; /* Show 5 lines */
	-webkit-box-orient: vertical;
	max-height: calc(1.6em * 5); /* optional fallback */
}

/* Button */
.google-link {
	text-align: center;
	margin-top: 35px;
}

/* .google-link a {
	background: #4285f4;
	color: white;
	padding: 12px 36px;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	transition: 0.3s;
}

.google-link a:hover {
	background: #3367d6;
} */

/* Mobile Slider */
.carousel-item {
	padding: 10px;
}
.review-user-info {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}
@media screen and (max-width: 700px) {
	.review-card {
		padding: 10px;
	}
	.reviewsbtn {
		font-size: 17px;
	}
    .rating-stars {

        font-size: 22px;
    }
    .rating-number {

        font-size: 25px;
    }
}
.review-author {
	font-size: 15px;
	font-weight: 700;
	color: #222;
	margin-bottom: 2px;
	letter-spacing: -0.2px;
}

.review-time {
	font-size: 13px;
	color: #6f6f6f;
	opacity: 0.85;
	font-weight: 500;
}
