/* === Projects Carousel === */

.wplb-projects-carousel-wrapper {
	position: relative;
	overflow: hidden;
}

.wplb-projects-carousel {
	display: flex;
	transition: transform 0.4s ease;
}

.wplb-carousel-slide {
	flex: 0 0 auto;
	padding: 0 10px;
	box-sizing: border-box;
}

/* Image */
.wplb-carousel-slide-image {
	overflow: hidden;
}

.wplb-carousel-slide-image img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
	border-radius: 4px 4px 0 0;
	transition: transform 0.3s ease;
}

.wplb-carousel-slide:hover .wplb-carousel-slide-image img {
	transform: scale(1.04);
}

/* Content */
.wplb-carousel-slide-content {
	padding: 16px;
}

/* Categories */
.wplb-carousel-slide-cats {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-bottom: 8px;
}

/* Title */
.wplb-carousel-slide-title {
	margin: 0 0 8px;
	font-size: 16px;
	line-height: 1.4;
}

.wplb-carousel-slide-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s;
}

.wplb-carousel-slide-title a:hover {
	color: #0066cc;
}

/* Excerpt */
.wplb-carousel-slide-excerpt {
	font-size: 13px;
	color: #666;
	line-height: 1.6;
}

/* Arrows */
.wplb-carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	cursor: pointer;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
	z-index: 10;
	line-height: 1;
}

.wplb-carousel-arrow:hover {
	background: rgba(0, 0, 0, 0.8);
}

.wplb-carousel-prev { left: 8px; }
.wplb-carousel-next { right: 8px; }

/* Dots */
.wplb-carousel-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
}

.wplb-carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ccc;
	cursor: pointer;
	border: none;
	padding: 0;
	transition: background 0.2s;
}

.wplb-carousel-dot.active {
	background: #0066cc;
}
