.jzs-wp-trust-section,
.jzs-wp-trust-section * {
	box-sizing: border-box;
}

.jzs-wp-trust-section {
	width: 100%;
	overflow: hidden;
	padding: 50px 0;
	background-color: #fafafa;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.jzs-wp-trust-header {
	text-align: center;
	margin-bottom: 25px;
	padding: 0 20px;
}

.jzs-wp-trust-header-inner {
	color: #111;
	font-size: 1.25rem;
	font-weight: 500;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.jzs-wp-trust-eyebrow {
	margin-bottom: 4px;
	color: #888;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 2px;
	line-height: 1.2;
	text-transform: uppercase;
}

.jzs-wp-trust-rating {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

.jzs-wp-trust-score {
	color: #111;
	font-size: 2.3rem;
	font-weight: 800;
	line-height: 1;
}

.jzs-wp-trust-score span {
	color: #bbb;
	font-size: 1.4rem;
	font-weight: 500;
}

.jzs-wp-trust-stars {
	display: flex;
	gap: 4px;
}

.jzs-wp-trust-star {
	width: 26px;
	height: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #00b67a;
}

.jzs-wp-trust-copy {
	margin-top: 6px;
	color: #555;
	font-size: 1.35rem;
	line-height: 1.35;
}

.jzs-wp-trust-copy span {
	color: #00b67a;
	font-weight: 700;
}

.jzs-wp-marquee-viewport {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.jzs-wp-marquee-track {
	display: flex;
	width: max-content;
	padding: 10px 0;
	animation: jzs-wp-trust-marquee 50s linear infinite;
}

.jzs-wp-marquee-track:hover {
	animation-play-state: paused;
}

@keyframes jzs-wp-trust-marquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

.jzs-wp-review-card {
	width: 350px;
	min-height: 190px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	margin: 0 12px;
	padding: 24px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.03);
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.jzs-wp-review-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.jzs-wp-review-title {
	margin: 0 0 10px;
	color: #1a1a1a;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
}

.jzs-wp-review-text {
	flex-grow: 1;
	margin: 0 0 20px;
	color: #444;
	font-size: 14px;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}

.jzs-wp-review-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid #f2f2f2;
}

.jzs-wp-review-author {
	color: #222;
	font-size: 13px;
	font-weight: 700;
}

.jzs-wp-review-date {
	color: #777;
	font-size: 12px;
	white-space: nowrap;
}

.jzs-wp-trust-button-wrap {
	margin-top: 40px;
	text-align: center;
}

.jzs-wp-trust-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 34px;
	border-radius: 50px;
	background: #00b67a;
	color: #fff !important;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(0, 182, 122, 0.25);
	transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.jzs-wp-trust-button:hover,
.jzs-wp-trust-button:focus {
	background: #00a068;
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 182, 122, 0.35);
}

@media (max-width: 749px) {
	.jzs-wp-trust-section {
		padding: 34px 0 38px;
	}

	.jzs-wp-trust-header {
		margin-bottom: 18px;
		padding: 0 16px;
	}

	.jzs-wp-trust-header-inner {
		gap: 10px;
	}

	.jzs-wp-trust-eyebrow {
		max-width: 280px;
		margin-bottom: 0;
		font-size: 1rem;
		letter-spacing: 1.4px;
		overflow-wrap: anywhere;
	}

	.jzs-wp-trust-rating {
		flex-direction: column;
		gap: 7px;
	}

	.jzs-wp-trust-score {
		font-size: 2rem;
	}

	.jzs-wp-trust-score span {
		font-size: 1.15rem;
	}

	.jzs-wp-trust-stars {
		gap: 3px;
	}

	.jzs-wp-trust-star {
		width: 24px;
		height: 24px;
	}

	.jzs-wp-trust-star svg {
		width: 15px;
		height: 15px;
	}

	.jzs-wp-trust-copy {
		max-width: 320px;
		font-size: 1rem;
	}

	.jzs-wp-marquee-track {
		padding: 8px 0;
		animation-duration: 42s;
	}

	.jzs-wp-review-card {
		width: min(84vw, 320px);
		min-height: 210px;
		margin: 0 7px;
		padding: 20px;
		border-radius: 10px;
	}

	.jzs-wp-review-card:hover {
		transform: none;
	}

	.jzs-wp-review-title {
		font-size: 15px;
		line-height: 1.3;
	}

	.jzs-wp-review-text {
		font-size: 13.5px;
		line-height: 1.45;
		-webkit-line-clamp: 5;
	}

	.jzs-wp-review-footer {
		align-items: flex-start;
		gap: 4px;
		flex-direction: column;
		padding-top: 14px;
	}

	.jzs-wp-review-date {
		white-space: normal;
	}

	.jzs-wp-trust-button-wrap {
		margin-top: 30px;
		padding: 0 18px;
	}

	.jzs-wp-trust-button {
		width: 100%;
		max-width: 330px;
		min-height: 48px;
		padding: 13px 20px;
		font-size: 14px;
		text-align: center;
	}
}

@media (max-width: 380px) {
	.jzs-wp-review-card {
		width: 86vw;
		padding: 18px;
	}

	.jzs-wp-trust-copy {
		font-size: 0.95rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.jzs-wp-marquee-track {
		animation-play-state: paused;
	}
}
