@charset "utf-8";



#shuttle .cont {
    position: relative;
}
#shuttle .cont + .cont {
    margin-top:60px;
}
#shuttle .info_box {
    background-color:#FFF9FC;
    border-radius:30px;
    padding:35px 40px;
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:60px;
    margin-top: -10px;
}
#shuttle .info_box .info_text {
    flex:1;
    display:flex;
    flex-direction:column;
    gap:20px;
}
#shuttle .info_box .info_text .info {
    display:flex;
    flex-direction:column;
    gap:10px;
}
#shuttle .info_box .info_text .info .info_ti {
    font-size:1em;
    font-weight:700;
    color:#7B4992;
    line-height:normal;
}
#shuttle .info_box .info_text .info .info_co p {
    font-size:1em;
    font-weight:400;
    line-height:1.44;
}



#shuttle .shuttle_view {
    position: relative;
}
#shuttle .shuttle_time {
    background: var(--point, linear-gradient(135deg, #C95094 16.43%, #7B4992 87.14%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#shuttle .shuttle_box {
    display:flex;
    flex-wrap: wrap;
    align-items:stretch;
    gap:20px;
}
#shuttle .shuttle_box .shuttle {
    width:calc(25% - 15px);
    border:1px solid #ddd;
    border-radius:20px;
    padding:10px 15px;
    display:flex;
    flex-direction:column;
    gap:10px;
}
#shuttle .shuttle_box .shuttle .shuttle_ti {
    font-size:1.11em;
    font-weight:600;
    line-height:normal;
    color:#7B4992;
    text-align: center;
}
#shuttle .shuttle_box .shuttle .shuttle_img img{
    border-radius:20px;
    width:100%;
}
#shuttle .shuttle_box .shuttle .shuttle_text {
    display:flex;
    justify-content:center;
    align-items: flex-start;
    gap:5px;
    padding:10px;
    background-color:#FFF9FC;
    border-radius: 0px 0px 20px 20px;
}
#shuttle .shuttle_box .shuttle .shuttle_text .shuttle_num {
    width:22px;
    height:22px;
    background-color:#7B4992;
    border-radius:50%;
    line-height:22px;
    font-size:0.88em;
    font-weight:600;
    color:#fff;
    text-align: center;
}
#shuttle .shuttle_box .shuttle .shuttle_text .shuttle_co {
    font-size: 1em;
    font-weight:600;
    line-height:1.22;
}





/* 반응형 미디어쿼리 css */
@media (max-width:1440px) {}
@media (max-width:1200px) {
    #shuttle .shuttle_box .shuttle {
        width:calc(33.333% - 13.333px);
    }
}
@media (max-width:1024px) {}
@media (max-width:991px) {}
@media (max-width:768px) {}
@media (max-width:640px) {
    #shuttle .shuttle_box {
        gap:10px;
    }
    #shuttle .shuttle_box .shuttle {
        width:calc(50% - 5px);
        padding:10px;
    }
    #shuttle .shuttle_box .shuttle .shuttle_text {
        padding:0;
    }
    #shuttle .shuttle_box .shuttle .shuttle_text .shuttle_co {
        flex:1;
    }

    #shuttle .shuttle_box .shuttle .shuttle_text {
        background-color:transparent;
    }
}
@media (max-width:480px) {}
@media (max-width:320px) {}