.csc-rpc-holder {
	position: relative;
}

.csc-rpc-swiper {
	position: relative;
}

.csc-rpc-card {
	display: block;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 10px;
	overflow: hidden;
	padding: 10px;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.csc-rpc-card:hover {
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}

.csc-rpc-thumb {
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 8px;
	background: rgba(0, 0, 0, 0.03);
}

.csc-rpc-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.csc-rpc-title {
	display: block;
	margin-top: 10px;
	font-size: 14px;
	line-height: 1.35;
	min-height: 2.7em;
	overflow: hidden;
}

.csc-rpc-price {
	display: block;
	margin-top: 6px;
	font-size: 14px;
	font-weight: 600;
}

.csc-rpc-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	background: rgba(255, 255, 255, 0.95);
	cursor: pointer;
}

.csc-rpc-prev {
	left: 8px;
}

.csc-rpc-next {
	right: 8px;
}

.csc-rpc-nav:before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-top: 2px solid rgba(0, 0, 0, 0.65);
	border-right: 2px solid rgba(0, 0, 0, 0.65);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

.csc-rpc-prev:before {
	transform: translate(-50%, -50%) rotate(-135deg);
}

@media (max-width: 767px) {
	.csc-rpc-nav {
		width: 34px;
		height: 34px;
	}
}

