.t2a-gr {
	--t2a-gr-text: #050505;
	--t2a-gr-muted: #777777;
	--t2a-gr-card: #f4f4f4;
	--t2a-gr-star: #fbbc04;
	--t2a-gr-border: #111111;
	display: grid;
	grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
	gap: 42px;
	align-items: center;
	width: 100%;
	color: var(--t2a-gr-text);
	font-family: inherit;
}

.t2a-gr,
.t2a-gr * {
	box-sizing: border-box;
	letter-spacing: 0;
}

.t2a-gr a {
	color: inherit;
	text-decoration: none;
}

.t2a-gr__summary {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 16px;
	align-items: start;
	min-width: 0;
}

.t2a-gr__summary--no-photo {
	grid-template-columns: minmax(0, 1fr);
}

.t2a-gr__summary-content {
	min-width: 0;
}

.t2a-gr__name {
	display: block;
	max-width: 270px;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.25;
	color: var(--t2a-gr-text);
}

.t2a-gr__stars {
	display: inline-flex;
	align-items: center;
	gap: 1px;
	color: var(--t2a-gr-star);
}

.t2a-gr__stars svg {
	display: block;
	width: 20px;
	height: 20px;
	fill: currentColor;
	flex: 0 0 auto;
}

.t2a-gr__summary-stars {
	margin-top: 8px;
}

.t2a-gr__count {
	margin-top: 2px;
	font-size: 17px;
	line-height: 1.25;
}

.t2a-gr__write {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	margin-top: 14px;
	padding: 8px 19px;
	border: 1px solid var(--t2a-gr-border);
	border-radius: 5px;
	background: #ffffff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	transition: background-color 160ms ease, color 160ms ease;
}

.t2a-gr__write:hover,
.t2a-gr__write:focus {
	background: #111111;
	color: #ffffff;
}

.t2a-gr__reviews-wrap {
	position: relative;
	min-width: 0;
}

.t2a-gr__reviews {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(286px, 334px);
	gap: 18px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
	padding: 0 2px;
}

.t2a-gr__reviews::-webkit-scrollbar {
	display: none;
}

.t2a-gr__card {
	min-height: 256px;
	padding: 22px 24px 24px;
	border-radius: 9px;
	background: var(--t2a-gr-card);
	scroll-snap-align: start;
}

.t2a-gr__card-head {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) 24px;
	gap: 17px;
	align-items: start;
}

.t2a-gr__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	object-fit: cover;
	color: #ffffff;
	font-size: 21px;
	font-weight: 700;
	line-height: 1;
}

.t2a-gr__avatar--orange {
	background: #f47700;
}

.t2a-gr__avatar--purple {
	background: #5630b7;
}

.t2a-gr__avatar--blue {
	background: #075f9e;
}

.t2a-gr__avatar--green {
	background: #14885b;
}

.t2a-gr__author {
	min-width: 0;
	padding-top: 1px;
}

.t2a-gr__author strong,
.t2a-gr__author time {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.t2a-gr__author strong {
	font-size: 16px;
	font-weight: 800;
	line-height: 1.2;
}

.t2a-gr__author time {
	margin-top: 4px;
	color: var(--t2a-gr-muted);
	font-size: 15px;
	line-height: 1.15;
}

.t2a-gr__google {
	display: inline-flex;
	width: 22px;
	height: 22px;
	margin-top: 1px;
}

.t2a-gr__google svg,
.t2a-gr__verified svg,
.t2a-gr__nav svg {
	display: block;
	width: 100%;
	height: 100%;
}

.t2a-gr__rating-row {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-top: 16px;
}

.t2a-gr__card-stars svg {
	width: 19px;
	height: 19px;
}

.t2a-gr__verified {
	display: inline-flex;
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
}

.t2a-gr__text {
	display: -webkit-box;
	margin: 10px 0 0;
	overflow: hidden;
	color: var(--t2a-gr-text);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.t2a-gr__card.is-expanded .t2a-gr__text {
	display: block;
	overflow: visible;
}

.t2a-gr__read-more {
	display: inline-flex;
	margin-top: 12px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #999999;
	font: inherit;
	font-size: 15px;
	line-height: 1.2;
	cursor: pointer;
}

.t2a-gr__read-more:hover,
.t2a-gr__read-more:focus {
	color: #111111;
}

.t2a-gr__nav {
	position: absolute;
	top: 50%;
	right: -18px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #ffffff;
	box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
	color: #9a9a9a;
	cursor: pointer;
	transform: translateY(-50%);
}

.t2a-gr__nav:hover,
.t2a-gr__nav:focus {
	color: #111111;
}

.t2a-gr-notice {
	padding: 14px 16px;
	border-left: 4px solid #d63638;
	background: #fff7f7;
	color: #111111;
}

@media (max-width: 1024px) {
	.t2a-gr {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.t2a-gr__summary {
		max-width: 380px;
	}
}

@media (max-width: 767px) {
	.t2a-gr {
		gap: 22px;
	}

	.t2a-gr__summary {
		grid-template-columns: 64px minmax(0, 1fr);
		gap: 14px;
	}

	.t2a-gr__name {
		font-size: 17px;
	}

	.t2a-gr__reviews {
		grid-auto-columns: minmax(270px, 86vw);
		gap: 14px;
	}

	.t2a-gr__card {
		min-height: 248px;
		padding: 20px;
	}

	.t2a-gr__nav {
		right: -10px;
	}
}
