@charset "utf-8";

/* 기본 구조 */
.basic-banner {
	position: relative;
}

/* 네비게이션 영역 */
.basic-banner .owl-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	z-index: 10;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px; /* 양쪽 여백 */
	pointer-events: none; /* 버튼 외 클릭 방지 */
}

/* 버튼 공통 */
.basic-banner .owl-nav button {
	width: 42px;
    height: 42px;
	border-radius: 50%;
	background: #A9A9A9 !important;
	color: #fff !important;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	pointer-events: all; /* 버튼 클릭 가능하게 */
}
.basic-banner .owl-nav button img{width: 12px;}

/* hover 효과 */
.basic-banner .owl-nav button:hover {
	background: #5B5B5B !important;
	color: #fff;
}

.basic-banner .owl-nav .active {
	background: #5B5B5B !important;
	color: #fff;
}

/* 반응형 대응 (모바일에서는 버튼 작게) */
@media (max-width: 768px) {
	.basic-banner .owl-nav button { width: 20px; height: 20px; }
	.basic-banner .owl-nav { padding: 0 10px; }
	.basic-banner .owl-nav button img{width:5px;}
}
