#map-plug {
	display: none;
}

#google-reviews {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -8px;
}

.review-item {
	flex: 1 1 30%;
	margin: 8px;
	padding: 20px 18px;
	border-radius: 18px;
	border: 1px solid rgba(24, 43, 30, 0.1);
	background: linear-gradient(180deg, rgba(248, 253, 250, 0.95), rgba(241, 249, 244, 0.95));
	box-shadow: 0 12px 26px rgba(22, 38, 29, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 30px rgba(20, 37, 28, 0.14);
}

.review-meta,
.review-stars {
	text-align: center;
	font-size: 110%;
}

.review-author {
	font-weight: 800;
	color: #1f2a22;
	text-transform: capitalize;
}

.review-date {
	opacity: 0.68;
	display: block;
	font-size: 12px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-top: 2px;
}

.review-text {
	line-height: 1.65;
	color: #38453d;
	text-align: center;
	max-width: 34em;
	margin: 12px auto 0;
	font-size: 14px;
}

.review-stars ul {
	display: inline-block;
	list-style: none !important;
	margin: 0;
	padding: 0;
}

.review-stars ul li {
	float: left;
	list-style: none !important;
	margin-right: 1px;
	line-height: 1;
}

.review-stars ul li i {
	color: #e3b14f;
	font-size: 1.3em;
	font-style: normal;
}

.review-stars ul li i.inactive {
	color: #c8cfcb;
}

.star:after {
	content: "\2605";
}

@media (max-width: 1200px) {
	.review-item {
		flex: 1 1 44%;
	}
}

@media (max-width: 768px) {
	.review-item {
		flex: 1 1 100%;
	}
}
