@charset "utf-8";

/* 새글 스킨 (latest) */
.notice {position:relative;padding:15px 50px}
.notice h2 a {display: none;}
.notice li {
    text-overflow: ellipsis;
    overflow: hidden;
    width: 429px;
    height: 291px;
    text-align: left;
    padding: 2.5%;
    margin: 0 1%;
    box-shadow: -3px -8px 28px rgba(0,0,0,0.15), 0 10px 10px rgba(0,0,0,0.15);
    transition: .3s;
    white-space: pre-wrap;
    display: flex;
    flex-direction: column;
    position: relative;
}
.notice li:hover {
    box-shadow: -5px -10px 28px rgba(0,0,0,0.15), 0 12px 14px rgba(0,0,0,0.15);
    scale: 1.08;
    transition: 1s;
}
.notice li a, .notice li.empty_li {color:#363636;display:inline-block; font-size: 18px;}
.notice li .lock_icon {display:inline-block;line-height:14px;width:16px;font-size:0.833em;color:#4f818c;background:#cbe3e8;text-align:center;border-radius:2px;font-size: 12px;border:1px solid #a2c6ce;vertical-align:baseline}
.notice li .new_icon {display:inline-block;line-height:16px;width:16px;font-size:0.833em;color:#ffff00;background:#6db142;text-align:center;margin-right:3px;border-radius:2px;vertical-align:baseline}
.notice .cnt_cm {background:#5c85c1;color:#fff;font-size:11px;height:16px;line-height:16px;padding:0 5px;border-radius:3px;white-space:nowrap;margin-left:5px}
.notice li.empty_li {border-bottom:0;line-height:120px}

.notice ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5%;
}
.notice li .notice_tit a {
    font-weight: bold;
    font-size: 30px;
    color: #363636;
}
.notice li .notice_con a {
    margin: 5% 0 10%;
}
.notice li a img {
    display: none;
}
.notice .notice_hr {
    display: none;
}
.notice .notice_date {
    margin-top: 3.5%;
    padding-top: 3.5%;
    border-top: 2px solid #d4d3d3;
}
.notice .notice_cr {
    position: absolute;
    right: 10%;
    bottom: 12%;
}
.notice .notice_cr a {
    font-size: 25px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    background-color: #6ae7e8;
    text-align: center;
    line-height: 1.3;
    display: inline-block;
    font-weight: bold;
}
.notice .notice_cr a:hover {
    transform: rotate(90deg);
}

@media all and (max-width: 767px) {
    .notice {
        padding: 5% 0 20%;
    }
    .notice ul {
        flex-direction: column;
    }
    .notice li {
        width: 80vw;
        height: auto;
        margin-bottom: 5%;
    }
    .notice li a {
        font-size: 13px;
    }
    .notice li .notice_tit a {
        font-size: 18px;
    }
    .notice li .notice_con a {
        margin: 2% 0 5%;
    }
    .notice .notice_date {
        margin-top: 2%;
    }
    .notice .notice_cr {
        right: 3%;
        bottom: 7%;
    }
    .notice .notice_cr a {
        font-size: 15px;
        width: 20px;
        height: 20px;
        line-height: 1.2;
        font-weight: 500;
    }
}