.carousel-container {
	position: relative;
	width: 100%;
	max-width: 100vw;
	margin: 0 auto;
	overflow: hidden;
	padding: 10px 60px;
}
.carousel-wrapper {
	overflow: hidden;
	width: 100%;
}
.carousel-track {
	display: flex;
	transition: transform 0.5s ease;
}
.carousel-item {
	flex: 0 0 100%;
	margin-right: 20px;
	box-sizing: border-box;
}
.card {
	display: block;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	transition: transform 0.3s, box-shadow 0.3s;
	height: 100%;
}
.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
.carousel-image {
	overflow: hidden;
	position: relative;
	aspect-ratio: 16/9;
}
.carousel-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.card-content {
	padding: 15px;
}
.card-title {
	margin: 0 0 10px;
	font-size: 1.1rem;
	color: #333;
}
.card-meta {
	/* display: flex; */
	display: none;
	gap: 10px;
	font-size: 0.85rem;
	color: #666;
	margin-bottom: 10px;
}
.card-excerpt {
	display: none;
	font-size: 0.9rem;
	line-height: 1.5;
	color: #555;
}
.carousel-prev,
.carousel-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.9);
	color: #333;
	border: none;
	border-radius: 50%;
	/* font-size: 14px; */
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	font-weight: bold;
}
.carousel-prev {
	left: 10px;
}
.carousel-next {
	right: 10px;
}
.carousel-prev:hover,
.carousel-next:hover {
	background: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.carousel-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 20px;

	visibility: hidden;
}
.carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ccc;
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background 0.3s;
}
.carousel-dot.active,
.carousel-dot:hover {
	background: #333;
}
@media (min-width: 768px) {
	.carousel-item {
		flex: 0 0 calc(50% - 10px);
	}
	.carousel-prev,
	.carousel-next {
		width: 40px;
		height: 40px;
		/* font-size: 18px; */
	}
}
