.pcc-carousel-wrap {
	position: relative;
	width: 100%;
}

.pcc-swiper {
	width: 100%;
	overflow: hidden;
}

.pcc-swiper .swiper-wrapper {
	align-items: stretch;
}

.pcc-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	background-color: #ffffff;
	border: 1px solid #ececec;
	border-radius: 8px;
	padding: 16px 16px 20px;
	text-align: center;
	text-decoration: none;
	color: inherit;
	box-sizing: border-box;
	transition: box-shadow .25s ease, transform .25s ease;
}

a.pcc-card {
	cursor: pointer;
}

a.pcc-card:hover {
	transform: translateY(-3px);
}

.pcc-card-image {
	width: 100%;
	height: 180px;
	margin-bottom: 16px;
	overflow: hidden;
	border-radius: 4px;
	background: #f7f7f7;
}

.pcc-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pcc-card-title {
	font-size: 17px;
	font-weight: 700;
	line-height: 1.4;
	color: #1a1a1a;
	margin-bottom: 8px;
}

.pcc-card-description {
	font-size: 13.5px;
	line-height: 1.6;
	color: #6b6b6b;
}

/* Navigation arrows */
.pcc-arrow {
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #ffffff;
	border: 1px solid #ececec;
	box-shadow: 0 2px 10px rgba(0,0,0,.08);
	color: #1a1a1a;
	cursor: pointer;
	transition: background-color .25s ease, color .25s ease;
	padding: 0;
}

.pcc-arrow svg {
	width: 16px;
	height: 16px;
	pointer-events: none;
}

.pcc-arrow:hover {
	background-color: #147C3D;
	color: #ffffff;
}

.pcc-arrow.swiper-button-disabled {
	opacity: .35;
	cursor: default;
	pointer-events: none;
}

.pcc-arrow-prev {
	left: -18px;
}

.pcc-arrow-next {
	right: -18px;
}

/* Pagination dots */
.pcc-swiper .swiper-pagination {
	position: relative;
	margin-top: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.pcc-swiper .swiper-pagination-bullet {
	width: 9px;
	height: 9px;
	background-color: #d8d8d8;
	opacity: 1;
	margin: 0;
	transition: background-color .25s ease, transform .25s ease;
}

.pcc-swiper .swiper-pagination-bullet-active {
	background-color: #147C3D;
	transform: scale(1.15);
}

@media (max-width: 767px) {
	.pcc-arrow-prev {
		left: 4px;
	}
	.pcc-arrow-next {
		right: 4px;
	}
}
