/* Reviews styling */

/* Mobile-first styles */
.google-reviews {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	position: relative;
	z-index: 1;
}

/* Individual review box */
.google-reviews-single {
	background: #f7f9fc;
	padding: 15px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	margin-bottom: 30px;
}

/* Container styling */
.google-reviews-container {
	z-index: 1;
	position: relative;
}

.google-reviews-header {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.google-reviews-author h3 {
	margin: 0 0 3px 0;
	font-size: 1rem;
	font-weight: 600;
	font-family: var(--font-body-text);
}

.google-reviews-header p {
	margin-bottom: 0;
	font-size: 0.9rem;
}

.google-reviews-header p.google-reviews-tiny {
	font-size: 0.8rem;
	color: #9d9a9a;
}

.google-reviews-profile-pic {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 12px;
}

.google-reviews-google-logo {
	width: 30px;
	height: 30px;
	margin-left: auto;
}

/* Rating stars */
.google-reviews-rating {
	color: #ff9b01;
	font-size: 1.6rem;
	margin: 0px 0 16px;
	line-height: 1;
}

.google-reviews-text {
	font-size: 0.9rem;
	margin-bottom: 1rem;
	line-height: 1.4;
}

.google-reviews-see-more {
	font-size: 0.9rem;
}

.google-reviews-cta {
	text-align: center;
	margin: 0 0 80px;
}

/* Desktop styles */
@media (min-width: 1025px) {
	.google-reviews {
		grid-template-columns: repeat(var(--columns, 2), 1fr);
		gap: 35px;
	}

	.google-reviews-single {
		padding: 25px;
	}
}
