.carousel-container {
	position: relative;
	overflow: hidden;
	margin-top: 30px;
}

.carousel-slide {
	display: none;
	transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
	display: block;
}

.carousel-indicators {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
}

.indicator {
	width: 12px;
	height: 12px;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	cursor: pointer;
	transition: background-color 0.3s;
}

.indicator.active {
	background-color: white;
}

.carousel-control {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, 0.3);
	color: white;
	border: none;
	padding: 10px;
	font-size: 18px;
	cursor: pointer;
	border-radius: 50%;
	transition: background-color 0.3s;
}

.carousel-control:hover {
	background-color: rgba(57, 57, 57, 0.6);
}

.carousel-control.prev {
	left: 16px;
}

.carousel-control.next {
	right: 16px;
}

.listCommonLBT {
	width: 352px;
	height: 442px;
	background: #FFFFFF;
	border-radius: 12px;
	text-align: center;
}

.listText {
	width: 304px;
	margin: 0 auto;
	color: #888888;
	margin-top: 23px;
	line-height: 1.8;
}