﻿
/* 공통 캐러셀 스타일 */
.carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 200px;
    margin: 0 15px;
    /*background-color: #8ecae6;*/
    display: flex;
    justify-content: center;
    align-items: center;
}


    .carousel-item img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

/* 네비게이션 버튼 스타일 (선택사항) */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

    .carousel-button.prev {
        left: 10px;
    }

    .carousel-button.next {
        right: 10px;
    }

@media screen and (max-width: 768px) {
    .carousel-item {
        min-width: 100%;
        margin: 0;
    }
}

/* 인증서(문서 이미지) 캐러셀 */
#certification-carousel .carousel-item {
    height: 400px;
}

/* 파트너(로고) 캐러셀 */
#partner-carousel .carousel-item {
    height: 60px;
}

/* 고객사(로고) 캐러셀 */
#customer-carousel .carousel-item {
    height: 60px;
}
