/* Verified Review Marquee
---------------------------------------- */

.nou-reviews-section {
	--nou-reviews-blue: #0837ff;
	--nou-reviews-border: #dbe6ff;
	--nou-reviews-ink: #080d21;
	--nou-reviews-muted: #52627c;
	background: #f7faff;
	overflow: hidden;
}

.nou-reviews-header {
	text-align: center;
}

.nou-reviews-eyebrow {
	align-items: center;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid var(--nou-reviews-border);
	border-radius: 999px;
	color: var(--nou-reviews-blue);
	display: inline-flex;
	font-size: 13px;
	font-weight: 700;
	gap: 9px;
	line-height: 1.3;
	margin: 0 auto;
	padding: 9px 15px;
	width: fit-content;
}

.nou-reviews-eyebrow::before {
	background: var(--nou-reviews-blue);
	border-radius: 999px;
	box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.28);
	content: "";
	height: 16px;
	width: 16px;
}

.nou-reviews-title {
	color: var(--nou-reviews-ink);
	font-size: 44px;
	font-weight: 700;
	line-height: 1.15;
	margin: 0;
}

.nou-reviews-intro {
	color: var(--nou-reviews-muted);
	font-size: 17px;
	line-height: 1.65;
	margin: 0 auto;
	max-width: 650px;
}

.nou-reviews-marquee {
	overflow: hidden;
	position: relative;
	width: 100%;
}

.nou-reviews-marquee::before,
.nou-reviews-marquee::after {
	bottom: 0;
	content: "";
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 58px;
	z-index: 2;
}

.nou-reviews-marquee::before {
	background: linear-gradient(90deg, #f7faff 0%, rgba(247, 250, 255, 0) 100%);
	left: 0;
}

.nou-reviews-marquee::after {
	background: linear-gradient(270deg, #f7faff 0%, rgba(247, 250, 255, 0) 100%);
	right: 0;
}

.nou-reviews-track {
	display: flex;
	gap: 24px;
	width: max-content;
}

.nou-reviews-track.is-ready {
	animation: nou-reviews-scroll 58s linear infinite;
}

.nou-reviews-marquee:hover .nou-reviews-track {
	animation-play-state: paused;
}

.nou-review-card {
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(230, 237, 252, 0.92);
	border-radius: 12px;
	box-shadow: 0 18px 45px rgba(23, 43, 77, 0.06);
	display: flex;
	flex: 0 0 356px;
	flex-direction: column;
	gap: 16px;
	min-height: 276px;
	padding: 28px;
	text-align: left;
}

.nou-review-rating {
	color: var(--nou-reviews-blue);
	font-size: 15px;
	letter-spacing: 4px;
	line-height: 1;
	margin: 0;
	white-space: nowrap;
	width: 100%;
}

.nou-review-buyer {
	color: var(--nou-reviews-ink);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.4;
	margin: 0;
	width: 100%;
}

.nou-review-copy {
	color: #53617b;
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
	min-height: 72px;
}

.nou-review-product {
	align-items: center;
	gap: 12px;
	justify-content: flex-start;
	margin-top: auto;
	padding-top: 4px;
}

.nou-review-product-image {
	flex: 0 0 58px;
	margin: 0;
}

.nou-review-product-image img {
	background: #f0f5ff;
	border: 1px solid #e6edfc;
	border-radius: 8px;
	display: block;
}

.nou-review-product-name {
	color: var(--nou-reviews-ink);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0;
}

.nou-review-product-type {
	color: #6f7e98;
	font-size: 12px;
	line-height: 1.4;
	margin: 0;
}

@keyframes nou-reviews-scroll {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(calc(-50% - 12px), 0, 0);
	}
}

.editor-styles-wrapper .nou-reviews-track.is-ready {
	animation: none;
}

.editor-styles-wrapper .nou-reviews-marquee {
	overflow-x: auto;
}

@media (prefers-reduced-motion: reduce) {
	.nou-reviews-marquee {
		overflow-x: auto;
	}

	.nou-reviews-track.is-ready {
		animation: none;
	}
}

@media (max-width: 781px) {
	.nou-reviews-title {
		font-size: 32px;
	}

	.nou-reviews-marquee::before,
	.nou-reviews-marquee::after {
		width: 24px;
	}

	.nou-review-card {
		flex-basis: 302px;
		min-height: 268px;
		padding: 20px;
	}
}
