@charset "utf-8";

/* 새글 스킨 (latest) */
/* .notice {position:relative;padding:15px 50px}
.notice h2 {margin-bottom:20px}
.notice h2 a {font-size:1.2em;color:#fff;color:red;}
.notice li {text-overflow:ellipsis;overflow:hidden;white-space:nowrap;border-bottom:1px solid #343434}
.notice li a, .notice li.empty_li {color:#e3e3e3;padding:11px 0;display:inline-block}
.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 {
    display: flex;
    flex-direction: column;
    /* background: skyblue; */
    height: 100%;
}
.notice h2 {
    font-size: 20px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--main-blue);
}
.notice h2 a {
    font-size: 1rem;
    color: var(--txt-gray);
    font-weight: var(--regular);
}
.notice ul {
    flex: 1;
}
.notice ul li {border-bottom: var(--border);}
.notice ul li .list-link-wrap {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 20px;
}
.list-link-wrap .subject-text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}
.list-link-wrap .datetime {
    flex-shrink: 0;
    margin-left: 10px;
    width: 80px;
    text-align: right;
    font-size: 14px;
    color: var(--txt-gray);
    font-weight: var(--regular);
}
.notice ul li.empty_li {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--txt-gray);
    font-weight: var(--regular);
}