@charset "utf-8";

/* MPB_MAIN_02_04 - 통이미지 스와이퍼 */
/* 이미지 100%, 비율 1:1.2 */

/* 외곽 컨테이너 */
.mpb04_outer {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* 이미지 영역 */
.mpb04_wrap {
    width: 100%;
    position: relative;
    aspect-ratio: 1 / 1.2; /* 1:1.2 비율 */
    padding: 0;
    margin: 0;
}

.mpb04_swiper {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

.mpb04_swiper .swiper-wrapper {
    height: 100%;
    padding: 0;
    margin: 0;
}

.mpb04_swiper .swiper-slide {
    position: relative;
    width: 100% !important;
    height: 100% !important;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
}

/* 슬라이드 링크 */
.mpb04_link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    padding: 0;
    margin: 0;
}

/* 배경 이미지 */
.mpb04_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px 50px 20px 50px;
    overflow: hidden;
}

.mpb04_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

/* 상단 컨트롤 영역 (이미지 위 분리) */
.mpb04_controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding-bottom: clamp(10px, calc(0.78vw + 7.5px), 15px);
}

/* 네비게이션 화살표 */
.mpb04_prev,
.mpb04_next {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 28px;
    height: 28px;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ddd;
    border-radius: 50%;
    transition: all 0.3s;
}

.mpb04_prev:hover,
.mpb04_next:hover {
    background: #bbb;
}

.mpb04_prev:after {
    font-size: 14px;
    color: #555;
    font-weight: bold;
    content: "\ec49";
    font-family: unicons-line;
}

.mpb04_next:after {
    font-size: 14px;
    color: #555;
    font-weight: bold;
    content: "\eb9f";
    font-family: unicons-line;
}

/* 페이지네이션 dots */
.mpb04_pagination {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto !important;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mpb04_pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
    margin: 0 !important;
    transition: all 0.2s ease;
}

.mpb04_pagination .swiper-pagination-bullet-active {
    background: #666;
}

/* 빈 상태 */
.mpb04_empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 200px;
    text-align: center;
    color: #fff;
    background: var(--item-color, #1976d2);
}

.mpb04_empty_title {
    font-size: clamp(16px, calc(0.63vw + 14px), 20px);
    font-weight: 700;
    margin-bottom: 8px;
}

.mpb04_empty_desc {
    font-size: clamp(12px, calc(0.23vw + 11.25px), 14px);
    opacity: 0.8;
}
