/*
(주)파이브센스_FIVESENSES.Corp.
파이브프로_FIVEPro_웹솔루션.
본 라이브러리(소스코드 및 디자인 포함)는 (주)파이브센스의 자산이며, 저작권법 및 부정경쟁방지법에 의해 보호됩니다.
무단 사용, 외부 유출, 복제, 배포, 변형을 금지합니다.
위반 시 민·형사상 법적 책임 및 손해배상 청구 대상이 됩니다.
작성일: 2025-03-18 | 저작권자: (주)파이브센스(520-86-01244) | All Rights Reserved.
*/

/* 타이틀 */
.refill .main_cont_title {
    margin-bottom: 60px;
}
.refill .main_cont_title h2 {
    display: inline-block;
    width: auto;
    font-size: 45px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
}

/* 카드 */
.refill .main_cont_card {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 20px;
}
.refill .main_cont_card .card {
    position: relative;
    width: calc((100% - 20px * 4) /5);
    transition: all 400ms;
}
.refill .main_cont_card .card .img_box {
    width: 100%;
    height: auto;
    aspect-ratio: 280 / 240;
    overflow: hidden;
}
.refill .main_cont_card .card .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 400ms;
}
.refill .main_cont_card .card.on .img_box img {
    transform: scale(1.1);
}
.refill .main_cont_card .card .text_box {
    text-align: center;
    padding: 15px 0;
}
.refill .main_cont_card .card .text_box h2  {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.3;
    color: #fff;
}
.refill .main_cont_card .card .text_box span  {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.3;
    color: #fff;
}

/* 반응형 */
@media (max-width: 991px) {

    /* 타이틀 */
    .refill .main_cont_title {
        margin-bottom: 30px;
    }
    .refill .main_cont_title h2 {
        font-size: 27px;
    }

    /* 카드 */
    .refill .main_cont_card {
        gap: 25px 10px;
    }
    .refill .main_cont_card .card {
        width: calc((100% - 10px) /2);
    }
    .refill .main_cont_card .card .text_box {
        padding: 10px 0;
    }
    .refill .main_cont_card .card .text_box h2  {
        font-size: 15px;
    }
    .refill .main_cont_card .card .text_box span  {
        font-size: 12px;
    }
}