/* Lazy Block: reviews. Vars from base style.css. */

.reviews { position: relative; }

.reviews__track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding-bottom: 6px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

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

.review {
	scroll-snap-align: start;
	flex: 0 0 calc(33.333% - 14px);
	background: #fff;
	border: 1px solid var(--hair);
	border-radius: 14px;
	padding: 26px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.review__quote {
	position: relative;
	margin: 0;
	padding-top: 16px;
	color: var(--ink-900);
	line-height: 1.6;
	font-size: 15px;
}

.review__quote::before {
	content: "\201C";
	position: absolute;
	top: -10px;
	left: -2px;
	font-size: 48px;
	line-height: 1;
	color: var(--accent);
	opacity: .5;
	font-family: Georgia, serif;
}

.review__foot {
	margin-top: auto;
	display: flex;
	align-items: center;
	gap: 12px;
	border-top: 1px solid var(--hair);
	padding-top: 16px;
}

.review__logo {
	width: 46px;
	height: 46px;
	border-radius: 8px;
	background: var(--soft);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	flex: none;
}

.review__logo img { width: 100%; height: 100%; object-fit: contain; }
.review__who b { display: block; color: var(--ink-900); font-size: 14.5px; }
.review__who span { font-size: 13px; color: var(--body); }

.reviews__nav { display: flex; gap: 10px; margin-top: 22px; }

.reviews__nav button {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid var(--hair);
	background: #fff;
	cursor: pointer;
	color: var(--ink-900);
	font-size: 20px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.reviews__nav button:hover { border-color: var(--accent); color: var(--accent); }

@media (max-width: 900px) { .review { flex-basis: calc(50% - 10px); } }
@media (max-width: 600px) { .review { flex-basis: 88%; } }
