@charset "utf-8";
/* ==========================================================================
 * 로컬 작업용 추가 스타일
 *  - carouFredSel → Swiper 11.1.3 교체에 따른 보정만 담는다.
 *  - 원본 사이트 CSS 는 절대경로(https://www.kca.kr/...)로 그대로 불러온다.
 * ========================================================================== */

/* --------------------------------------------------------------------------
 * 1. 컨트롤 버튼이 .swiper(z-index:1) 아래로 깔리는 문제 보정
 * ----------------------------------------------------------------------- */
.alim_controll,
.press_controll,
.press_pager,
.popup_controll {
	z-index: 10;
}

/* --------------------------------------------------------------------------
 * 2. 페이저 위치 보정
 *    Swiper 가 .press_pager 에 swiper-pagination-bullets /
 *    swiper-pagination-horizontal 클래스를 추가하면서 bottom:8px 로 덮어쓴다.
 * ----------------------------------------------------------------------- */
.press .press_pager {
	position: absolute;
	bottom: 20px;
	left: 0;
	width: 100%;
	text-align: center;
}

/* --------------------------------------------------------------------------
 * 3. 슬라이드 li 기본값 보정 (원본 float 레이아웃 잔재 정리)
 * ----------------------------------------------------------------------- */
.alim_list.swiper-wrapper > li,
.press_list.swiper-wrapper > li,
.popup_list.swiper-wrapper > li {
	float: none;
	height: auto;
}

/* alim / popup 은 이미지 한 장짜리 슬라이드 */
.alim_list.swiper-wrapper > li a,
.popup_list.swiper-wrapper > li a {
	display: block;
	width: 100%;
}

.alim_list.swiper-wrapper > li a img,
.popup_list.swiper-wrapper > li a img {
	width: 100%;
	height: auto !important;
}

/* --------------------------------------------------------------------------
 * 4. 컨트롤 앵커 포커스 표시 (키보드 접근성)
 * ----------------------------------------------------------------------- */
.alim_controll a:focus,
.press_controll a:focus,
.popup_controll a:focus {
	outline: 2px solid #435fd8;
	outline-offset: 1px;
}