.pc-98f5d4bc-container {
	position: relative;
	width: 100%;
}

.pc-98f5d4bc-carousel {
	width: 100%;
	position: relative;
	overflow: hidden;
	padding: 10px 0 40px 0; /* Extra bottom padding for pagination */
}

.pc-98f5d4bc-card {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	text-decoration: none;
	width: 100%;
	height: 450px;
	background: #111;
}

.pc-98f5d4bc-img-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}

.pc-98f5d4bc-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease-in-out;
}

/* Adjusted gradient overlay for deeper visibility as requested */
.pc-98f5d4bc-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.95) 100%);
	z-index: 2;
}

.pc-98f5d4bc-content {
	position: relative;
	z-index: 3;
	padding: 30px 24px;
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.pc-98f5d4bc-title {
	margin: 0;
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color 0.3s ease;
}

.pc-98f5d4bc-meta {
	font-size: 13px;
	opacity: 0.8;
	font-weight: 500;
}

/* Hover Effect */
.pc-98f5d4bc-card:hover .pc-98f5d4bc-img-wrapper img {
	transform: scale(1.08);
}

/* Top Right Navigation Container */
.pc-98f5d4bc-nav-container {
	display: flex;
	justify-content: flex-end;
	gap: 12px;
	margin-bottom: 20px;
	padding-right: 10px;
}

/* Navigation Buttons */
.pc-98f5d4bc-nav-btn {
	width: 44px;
	height: 44px;
	background: #f0f0f0;
	color: #333;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: background 0.3s, color 0.3s;
}

.pc-98f5d4bc-nav-btn:hover {
	background: #111;
	color: #fff;
}

.pc-98f5d4bc-nav-btn.swiper-button-disabled {
	opacity: 0.5;
	pointer-events: none;
}

/* Pagination Dots */
.pc-98f5d4bc-carousel .swiper-pagination {
	bottom: 0;
}

.pc-98f5d4bc-carousel .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #ccc;
	opacity: 1;
	margin: 0 5px;
	transition: all 0.3s ease;
}

.pc-98f5d4bc-carousel .swiper-pagination-bullet-active {
	background: #e6005c; /* Pinkish-red accent */
	width: 20px;
	border-radius: 5px;
}
