/* =============================================
   Stronger Things Reviews — Stylesheet
   ============================================= */

.st-reviews-wrap {
	display: flex;
	gap: 48px;
	align-items: flex-start;
	background: #FAF8F4;
	padding: 64px 0;
	box-sizing: border-box;
}

/* ---- Summary (left panel) ---- */
.st-reviews-summary {
	flex: 0 0 260px;
	font-family: 'Inter', sans-serif;
}

.st-google-label {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}

.st-google-label span {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #0B0C0D;
}

.st-overall-rating {
	font-family: 'Anton', sans-serif;
	font-size: 72px;
	font-weight: 700;
	color: #0B0C0D;
	line-height: 1;
	margin-bottom: 8px;
}

.st-summary-stars {
	font-size: 22px;
	letter-spacing: 3px;
	margin-bottom: 8px;
}

.st-stars {
	color: #F59E0B;
	font-size: 18px;
	letter-spacing: 2px;
}

.st-review-count {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: #6B7280;
	margin-bottom: 16px;
}

.st-read-all {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #0B0C0D;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.st-read-all:hover {
	color: #43879C;
}

/* ---- Carousel (right panel) ---- */
.st-reviews-carousel-wrap {
	flex: 1;
	position: relative;
	min-width: 0;
}

.st-reviews-track-outer {
	overflow: hidden;
}

.st-reviews-track {
	display: flex;
	transition: transform 0.4s ease;
	gap: 0;
}

/* ---- Review cards ---- */
.st-review-card {
	flex: 0 0 calc(33.333% - 16px);
	margin-right: 24px;
	background: #FFFFFF;
	border: 1px solid #E5E7EB;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	box-sizing: border-box;
}

.st-review-card:last-child {
	margin-right: 0;
}

.st-review-text {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: #0B0C0D;
	line-height: 1.7;
	margin: 12px 0 0;
}

/* ---- Reviewer row ---- */
.st-reviewer {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 16px;
}

.st-reviewer img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.st-reviewer-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.st-reviewer-name {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #0B0C0D;
}

.st-reviewer-source {
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: #6B7280;
}

/* ---- Arrow buttons ---- */
.st-prev,
.st-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #FFFFFF;
	border: 1px solid #E5E7EB;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 16px;
	color: #0B0C0D;
	z-index: 10;
	transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
	padding: 0;
	line-height: 1;
}

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

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

.st-prev:hover,
.st-next:hover {
	color: #43879C;
	border-color: #43879C;
	box-shadow: 0 2px 8px rgba(67, 135, 156, 0.2);
}

/* ---- Dot navigation ---- */
.st-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 20px;
}

.st-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #D1D5DB;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: background 0.2s, transform 0.2s;
}

.st-dot.active {
	background: #43879C;
	transform: scale(1.25);
}

/* ---- Mobile ---- */
@media (max-width: 767px) {
	.st-reviews-wrap {
		flex-direction: column;
		padding: 32px 16px;
		gap: 24px;
		/* Prevent arrow buttons from creating horizontal page overflow */
		overflow: hidden;
	}

	.st-reviews-summary {
		flex: none;
		width: 100%;
	}

	.st-reviews-carousel-wrap {
		width: 100%;
	}

	.st-review-card {
		flex: 0 0 calc(100% - 24px);
		margin-right: 16px;
		max-width: calc(100% - 24px);
		box-sizing: border-box;
	}

	.st-reviews-track-outer {
		overflow: hidden;
		width: 100%;
	}

	/* On mobile, keep buttons inside the carousel bounds so they
	   don't bleed past the viewport edge and cause horizontal scroll */
	.st-prev {
		left: 8px;
		width: 30px;
		height: 30px;
		font-size: 13px;
	}

	.st-next {
		right: 8px;
		width: 30px;
		height: 30px;
		font-size: 13px;
	}

	.st-overall-rating {
		font-size: 52px;
	}

	.st-review-text {
		font-size: 14px;
	}
}
