/* ==============================
   Swiper 버튼 커스터마이징
   ============================== */

/* 기본 < > 화살표 제거 */
.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

/* 버튼 외형 조정 */
.swiper-button-next,
.swiper-button-prev {
    background: rgba(0, 0, 0, 0.3); /* 반투명 배경 */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    top: 50%;
    margin-top: -20px;
    z-index: 10;
}

/* 버튼 좌우 위치 */
.swiper-button-next { right: -50px; }
.swiper-button-prev { left: -50px; }


/* ==============================
   슬라이드 이미지 통일 (인증서 크기 정렬)
   ============================== */

.swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: contain; /* 이미지 비율 유지하며 꽉 채우기 */
}


/* ==============================
   카드 박스 크기 통일 및 그림자 효과
   ============================== */

/* 카드 전체 박스 설정 */
.card {
    height: 500px; /* 카드 전체 높이 고정 */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: none;
    border-radius: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); /* 그림자 강조 */
    transition: transform 0.2s ease;
}

/* 마우스 호버시 살짝 올라가는 효과 */
.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    height: 250px;  /* 여기를 모든 이미지가 동일하게 고정 */
    width: 100%;
    object-fit: contain;
    object-position: top;
}

.card-body {
    height: 50px;  /* 고정된 캡션 높이 */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}


/* ==============================
   모바일 반응형 보완 (선택사항)
   ============================== */

/* 작은 화면에서는 카드 여백 줄이기 */
@media (max-width: 768px) {
    .swiper-slide img {
        height: 300px;
    }
    .card {
        height: 400px;
    }
}

ul.history-list {
    list-style: none;
    padding-left: 30px;
    border-left: 2px solid #ddd;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #333;
}

ul.history-list li {
    position: relative;  /* 이거 꼭 있어야 함 */
    margin-bottom: 30px;
    padding-left: 10px;
    display: list-item;
}

ul.history-list li::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 5px;
    width: 12px;
    height: 12px;
    background-color: #007bff;
    border-radius: 50%;
    border: 2px solid #fff;
}

.timeline-wrapper {
    max-width: 700px;   /* 너비 제한 */
    margin: 0 auto;     /* 수평 가운데 정렬 */
    padding-left: 50px; /* 살짝 왼쪽 여백 유지해서 선 살림 */
}



.career-list {
    list-style: disc;
    padding-left: 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #666;
    
    /* 강제 블럭 레이아웃으로 고정 */
    display: block !important;
}

.career-list li {
    display: list-item !important;
    margin-bottom: 10px;
}


/**/

/* Breadcamb 영역 오버레이 추가 */
.breadcamb-area {
    position: relative;
    overflow: hidden;
}

.breadcamb-area::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* 어두운 반투명 오버레이 */
    z-index: 1;
}

/* 기존 텍스트 영역을 오버레이 위로 올리기 */
.bradcamb-content {
    position: relative;
    z-index: 2;
}

/* 텍스트에 그림자 추가 */
.bradcamb-content h1, .bradcamb-content ul {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

/**/
.keepit-area {
    background-image: url('../img/bebesum/24h_contact_banner.jpg');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
}
