.cs-wrapper-390bb0d9 {
	overflow: hidden;
	width: 100%;
	position: relative;
	display: flex;
}

.cs-track-390bb0d9 {
	display: flex;
	width: max-content;
	animation: scroll-left-390bb0d9 20s linear infinite;
}

.cs-track-390bb0d9.cs-pause-hover-390bb0d9:hover {
	animation-play-state: paused;
}

.cs-items-390bb0d9 {
	display: flex;
	flex-shrink: 0;
	gap: 20px;
	padding-right: 20px; /* match the gap so it seamlessly repeats */
}

.cs-card-390bb0d9 {
	flex: 0 0 auto;
	width: 400px;
	background: #fff;
	padding: 30px;
	border: 1px solid #eaeaea;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.cs-rating-390bb0d9 {
	margin-bottom: 15px;
	display: flex;
	gap: 2px;
}

.cs-star-390bb0d9 {
	font-size: 18px;
}

.cs-star-390bb0d9.cs-star-inactive {
	opacity: 0.3;
}

.cs-content-390bb0d9 {
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	margin-bottom: 25px;
}

.cs-divider-390bb0d9 {
	border-top: 1px solid #eaeaea;
	margin-bottom: 20px;
	width: 100%;
}

.cs-meta-wrapper-390bb0d9 {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.cs-author-wrap-390bb0d9 {
	display: flex;
	flex-direction: column;
}

.cs-author-name-390bb0d9 {
	font-weight: bold;
	color: #111;
	font-size: 14px;
	margin-bottom: 4px;
}

.cs-author-title-390bb0d9 {
	font-size: 12px;
	color: #777;
}

.cs-platform-390bb0d9 {
	font-size: 12px;
	color: #999;
}

@keyframes scroll-left-390bb0d9 {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%); /* Moves exactly half the track width (one of the .cs-items sets) */
	}
}