.googlereviews {
	position: relative;
	overflow: hidden;
	padding: 86px 24px 82px;
	background-color: rgb(255,255,255);
	background-image: var(--googlereviews-bg-screen);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.googlereviews__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
}

.googlereviews__intro {
	max-width: 760px;
	margin: 0 auto 70px;
	text-align: center;
}

.googlereviews__superline {
	margin: 0 0 18px;
	color: rgb(255, 169, 0);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0;
	text-transform: uppercase;
}

.googlereviews__headline {
	margin: 0;
	color: rgb(48,49,54);
	font-size: 40px;
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: 0;
}

.googlereviews__content {
	max-width: 650px;
	margin: 22px auto 0;
	color: rgb(0,0,0);
	font-size: 16px;
	line-height: 1.45;
}

.googlereviews__content p {
	margin: 0 0 10px;
}

.googlereviews__content p:last-child {
	margin-bottom: 0;
}

.googlereviews__panel {
	display: grid;
	grid-template-columns: 230px minmax(0, 1fr);
	gap: 34px;
	align-items: center;
}

.googlereviews__summary {
	text-align: center;
}

.googlereviews__summary-title {
	margin: 0 0 10px;
	color: rgb(0,0,0);
	font-size: 25px;
	font-weight: 800;
	line-height: 1.2;
}

.googlereviews__stars,
.googlereviews__card-stars {
	color: rgb(255, 169, 0);
	font-size: 32px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0;
}

.googlereviews__summary-text {
	margin: 12px 0 6px;
	color: rgb(0,0,0);
	font-size: 14px;
	line-height: 1.35;
}

.googlereviews__summary-text strong {
	font-weight: 800;
}

.googlereviews__google {
	display: inline-block;
	margin-top: 4px;
	font-size: 36px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none !important;
}

.googlereviews__reviews {
	position: relative;
	min-width: 0;
}

.googlereviews__track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	padding: 4px 2px 12px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

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

.googlereviews__card {
	flex: 0 0 300px;
	min-height: 206px;
	padding: 20px;
	border-radius: 8px;
	background: rgb(255,255,255);
	box-shadow: 0 8px 22px rgba(0,0,0,0.14);
	scroll-snap-align: start;
}

.googlereviews__card-head {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) 24px;
	gap: 12px;
	align-items: center;
	margin-bottom: 12px;
}

.googlereviews__avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	overflow: hidden;
	border-radius: 999px;
	background: rgb(226,61,128);
	color: rgb(255,255,255);
	font-size: 22px;
	font-weight: 800;
}

.googlereviews__avatar img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.googlereviews__name {
	margin: 0;
	overflow: hidden;
	color: rgb(0,0,0);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.googlereviews__time {
	margin: 2px 0 0;
	color: rgb(125,125,125);
	font-size: 13px;
	line-height: 1.2;
}

.googlereviews__g {
	font-size: 20px;
	font-weight: 800;
	color: #4285f4;
}

.googlereviews__card-stars {
	margin-bottom: 10px;
	font-size: 22px;
}

.googlereviews__text {
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
	color: rgb(0,0,0);
	font-size: 16px;
	line-height: 1.35;
}

.googlereviews__nav {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 1px solid rgba(0,0,0,0.12);
	border-radius: 999px;
	background: rgb(255,255,255);
	color: rgb(95,95,95);
	cursor: pointer;
	transform: translateY(-50%);
	box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.googlereviews__nav::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
}

.googlereviews__nav--prev::before {
	transform: translateX(2px) rotate(-135deg);
}

.googlereviews__nav--next::before {
	transform: translateX(-2px) rotate(45deg);
}

.googlereviews__nav--prev {
	left: -18px;
}

.googlereviews__nav--next {
	right: -18px;
}

.googlereviews__nav[hidden] {
	display: none;
}

@media screen and (max-width: 1099px) {
	.googlereviews {
		padding: 70px 20px 66px;
		background-image: var(--googlereviews-bg-mobile, var(--googlereviews-bg-screen)) !important;
	}

	.googlereviews__intro {
		margin-bottom: 44px;
	}

	.googlereviews__headline {
		font-size: 32px;
	}

	.googlereviews__panel {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.googlereviews__track {
		padding-right: 0;
		padding-left: 0;
	}

	.googlereviews__card {
		flex-basis: min(300px, calc(100vw - 56px));
	}

	.googlereviews__nav--prev {
		left: -10px;
	}

	.googlereviews__nav--next {
		right: -10px;
	}
}
