.tp-marquee-container {
	overflow: hidden;
	width: 100%;
	position: relative;
	background: transparent;
	padding: 20px 0;
	display: flex;
}

.tp-marquee-track {
	display: flex;
	gap: 20px;
	padding-left: 20px;
	animation: scroll-left 30s linear infinite;
	width: max-content;
}

.tp-marquee-container.pause-on-hover:hover .tp-marquee-track {
	animation-play-state: paused;
}

@keyframes scroll-left {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.tp-review-card {
	flex: 0 0 320px;
	background-color: #ffffff;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.tp-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.tp-stars svg {
	height: 20px;
	width: auto;
}

.tp-trustpilot-logo svg {
	height: 16px;
	width: auto;
}

.tp-review-text {
	font-size: 14px;
	line-height: 1.5;
	color: #1c1c1c;
	margin: 0;
	font-weight: 500;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.tp-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	font-size: 12px;
}

.tp-reviewer-name {
	font-weight: 700;
	color: #1c1c1c;
}

.tp-review-date {
	color: #696969;
}
