.bgr-reviews {
	--bgr-columns: 3;
	--bgr-gap: 32px;
	--bgr-speed: 500ms;
	position: relative;
	width: 100%;
}

.bgr-grid,
.bgr-track {
	gap: var(--bgr-gap);
}

.bgr-grid {
	display: grid;
	grid-template-columns: repeat(var(--bgr-columns), minmax(0, 1fr));
}

.bgr-layout-list .bgr-grid {
	grid-template-columns: 1fr;
}

.bgr-viewport {
	overflow: hidden;
	width: 100%;
}

.bgr-track {
	display: flex;
	will-change: transform;
	transition: transform var(--bgr-speed) ease;
}

.bgr-review-slide {
	box-sizing: border-box;
	min-width: calc((100% - (var(--bgr-gap) * (var(--bgr-columns) - 1))) / var(--bgr-columns));
}

.bgr-review-card {
	box-sizing: border-box;
	border: 1px solid #e8eaeb;
	border-radius: 4px;
	background: #fff;
	padding: 48px 38px;
	width: 100%;
}

.bgr-equal-height .bgr-review-card,
.bgr-equal-height .bgr-review-slide {
	height: 100%;
}

.bgr-review-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.bgr-review-text {
	font-size: 20px;
	line-height: 1.8;
	letter-spacing: .02em;
	color: #3c494b;
	margin-bottom: 24px;
}

.bgr-read-more {
	appearance: none;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	padding: 0;
	margin: -10px 0 24px;
	text-decoration: underline;
}

.bgr-review-author {
	display: flex;
	align-items: center;
	gap: 22px;
	margin-top: auto;
}

.bgr-avatar-top .bgr-review-author {
	align-items: flex-start;
	flex-direction: column;
}

.bgr-avatar-right .bgr-review-author {
	flex-direction: row-reverse;
	justify-content: flex-end;
}

.bgr-review-avatar {
	width: 70px;
	height: 70px;
	border-radius: 999px;
	object-fit: cover;
	flex: 0 0 auto;
}

.bgr-avatar-fallback {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #0062a7;
	color: #fff;
	font-size: 36px;
	line-height: 1;
}

.bgr-author-meta {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.bgr-stars {
	font-size: 20px;
	line-height: 1;
	letter-spacing: 2px;
	color: #d96b00;
	white-space: nowrap;
}

.bgr-stars-compact {
	letter-spacing: 0;
}

.bgr-stars-number {
	letter-spacing: 0;
	font-weight: 700;
}

.bgr-review-name {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.25;
	color: #3c494b;
}

.bgr-review-name a {
	color: inherit;
	text-decoration: none;
}

.bgr-review-name a:hover {
	text-decoration: underline;
}

.bgr-source-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 1px 5px rgba(0,0,0,.14);
	font-weight: 700;
	font-size: 13px;
	color: #4285f4;
	margin-left: auto;
}

.bgr-nav-btn {
	position: absolute;
	top: 50%;
	z-index: 2;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	border: 1px solid currentColor;
	border-radius: 999px;
	background: #fff;
	color: #3c494b;
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
}

.bgr-prev {
	left: -20px;
}

.bgr-next {
	right: -20px;
}

.bgr-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 22px;
}

.bgr-dot {
	width: 10px;
	height: 10px;
	border: 1px solid currentColor;
	border-radius: 50%;
	background: transparent;
	padding: 0;
	cursor: pointer;
	opacity: .55;
}

.bgr-dot.is-active {
	background: currentColor;
	opacity: 1;
}

.bgr-notice {
	padding: 14px 16px;
	border-left: 4px solid #d63638;
	background: #fff7f7;
	color: #1d2327;
}

@media (max-width: 1024px) {
	.bgr-reviews {
		--bgr-columns: min(2, var(--bgr-columns));
	}

	.bgr-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.bgr-reviews {
		--bgr-columns: 1 !important;
	}

	.bgr-grid {
		grid-template-columns: 1fr;
	}

	.bgr-review-card {
		padding: 32px 24px;
	}

	.bgr-review-text {
		font-size: 17px;
		line-height: 1.65;
	}

	.bgr-prev {
		left: 8px;
	}

	.bgr-next {
		right: 8px;
	}
}
