/* ======================== 공지사항 notice.php style =========================== */

ul,ol,li {
    list-style: none;
}
.hidden{
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    text-indent: -9999px;
}



.notice-section-wrap{
    display:block;
    margin: 100px auto;
}

@media (min-width: 1200px){
    #notice .container {
        width: 960px;
    }
}

/* 공지사항 타이틀 및 업데이트 날짜 */
.notice-section-wrap .card {
    border: 0;
    display: block;
    padding-bottom: 1px;
}
.notice-section-wrap .card .card-header {
    background-color: #fff;
    padding: 0;
    padding-bottom: 1px;
}
.notice-section-wrap .card .card-header a{
    display: block;
}

.panel-title{
    padding: 15px 5px;
}
.panel-title li{
    display: inline-block;
    overflow: hidden;
}
.notice-title{
    width: 70%;
    /* height: 2.4em;
    -webkit-line-clamp: 2; */
    vertical-align: middle;
}
.notice-title span{
    font-weight: 600;
    font-size: 17px;
    display: contents;
    /* display: -webkit-inline-box;
    word-break: break-all;
    white-space: normal;
    line-height: 1.2;
    text-align: left;
    word-wrap: break-word;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    vertical-align: initial; */
}
.notice-title-box {
    display: inline-block;
    width: 5px;
    height: 15px;
    margin: 8px 10px 0 0;
    background-color: #c8c8c8;
    vertical-align: top;
    
}


.notice-new{
    display: inline-block;
    margin-top: -3px;
}

.notice-date{
    width: fit-content;
    float: right;
    font-size: 16px;
}
.open-arrow{
    width: 15px;
    margin: 0 0 3px 15px;
}




/* 공지사항 내용 */
.notice-content{
    padding: 20px;
    background-color: #f7f7f9;
    border-radius: 5px;
    text-align: center;
}
.notice-content img {
    border-radius: 10px;
    width: 100%;
    height: auto;
    max-width: 50%;
}



/* =============== 공지사항 모바일 =============== */
@media (max-width:414px){

    .notice-section-wrap{
        margin: 50px auto;
    }

    /* 공지사항 모바일 타이틀 및 업데이트 날짜 */
    .notice-title-box{
        margin: 8px 5px 0 0;
    }
    .notice-title{
        width: 65%;
        vertical-align: middle;
    }
    .notice-title span{
        font-size: 13px;
    }

    .notice-date {
        font-size: 12px;
        margin-top: 5px;
    }
    .open-arrow {
        width: 15px;
        margin: 0 0 0 10px;
    }

    /* 공지사항 모바일 내용 */
    .notice-content img{
        width: 100%;
        height: auto;
        max-width: 100%;
    }
}

/* =============== 공지사항 모바일 아이폰5 320px =============== */
@media (max-width:320px){
    .panel-title{
        padding: 10px 0;
    }
    .notice-title-box{
        margin-right: 8px 3px 0 0;
    }
    .notice-date {
        font-size: 11px;
        margin-top: 5px;
    }

    .open-arrow {
        width: 12px;
        margin: 0 0 0 2px;
    }

}