.carousel-container {
	position: relative;
	overflow: visible;
	margin-top: 30px;
	padding: 0;
}

.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%;
	margin-top: -26px;
	width: 52px;
	height: 52px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border: none;
	cursor: pointer;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
	transition: all 0.3s ease;
	z-index: 10;
}

.carousel-control:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
	background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.carousel-control:active {
	transform: scale(0.95);
}

.carousel-control.prev {
	left: 0px;
}

.carousel-control.next {
	right: -40px;
}

.arrow-icon {
	font-size: 32px;
	color: white;
	font-weight: bold;
	line-height: 1;
}

.listCommonLBT {
	width: 370px;
	height: 442px;
	background: #FFFFFF;
	border-radius: 12px;
	text-align: center;
	/*margin-left: 20px;*/
	padding: 0 30px;
	box-sizing: border-box;
}

.listCommonLBT:first-child {
	margin-left: 40px;
}

.listText {
	width: 304px;
	margin: 0 auto;
	color: #888888;
	margin-top: 23px;
	line-height: 1.8;
}