@charset "utf-8";

/* 새글 스킨 (latest) */
.notice {
    position: relative;
}

.notice .latest-title {
    padding-bottom: 20px;
    border-bottom: 3px solid rgba(0, 87, 175, 0.5);
}
.notice .latest-title a,
.notice .latest-title span {
    position: relative;
    font-size: 1.3em;
    font-weight: 600;
    display: block;
    overflow: hidden;
    color: #056cbe;
}
.notice .latest-title a .more {
    position: absolute;
    display: inline-grid;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.5) !important;
    aspect-ratio: 1 / 1;
    height: 25px;
    place-items: center;
    line-height: 100% !important;
    font-weight: 100 !important;
    font-size: 14pt;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
}
.notice .latest-title a:hover .more {
    background: #056cbe;
    color: #FFF !important;
}

.notice li {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1em;
    padding: 5px 10px;
    display: grid;
    grid-template-columns: 95px auto;
    align-items: center;
}
.notice li a, .notice li.empty_li {
    color: #7b7a7a;
    padding: 18px 0;
    display: inline-block;
    position: relative;
}
.notice li a{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}
.notice li a .circle {
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 4px solid #FFF;
    background-color: #666;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 5px;
}
.notice li a,
.notice .datetime {
    vertical-align: top;
}
.notice li a,
.notice li a .subject {
    transition: all 0.3s ease-in-out;
}
.notice li a:hover,
.notice li a:hover .subject {
    color: #99c9f3 !important;
}
.notice .datetime {
    display: inline-block;
    font-size: 23pt;
    font-weight: 600;
    text-align: center;
    color: #3c83c0;
    padding: 6px 0;
    opacity: 0.7;
}
.notice .datetime small {
    display: block;
    font-size: 9pt;
    margin-top: -5px;
    color: #656565;
}
.notice li a {
    overflow: hidden;
}
.notice li a,
.notice li.empty_li {
    padding: 23px 0 !important;
}
.notice li .subject {
    font-size: 18pt;
    color: #000;
    font-weight: 500;
}
.notice li a .more-btn {
    display: none;
    position: relative;
    float: right;
    width: 25%;
    background-color: #FFF;
}
.notice li a .more-btn .read-more {
    position: absolute;
    right: 0;
    height: 30px;
    line-height: 30px;
    border-radius: 30px;
    border: 1px solid #4466e2;
    color: #4466e2;
    text-align: center;
    padding: 0 20px;
    font-size: 0.85em;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.notice li a:hover .read-more {
    background-color: #4466e2;
    color: #FFF;
}
.notice li .bo_subject {
    display: inline-block;
    font-size: 9pt;
    height: 23px;
    line-height: 21px;
    border: 1px solid #A78842;
    border-radius: 23px;
    padding: 0 8px;
    color: #000;
    margin-right: 4px;
    letter-spacing: -1px;
}
.notice li .subject,
.notice li .cont {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: rgba(255, 255, 255, 1) !important;
}
.notice li:hover .subject {
    /*text-decoration: underline;*/
}
.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-grid;
    aspect-ratio: 1 / 1;
    height: 26px;
    border-radius: 3px;
    font-size: 15px;
    background: #0070c9;
    text-align: center;
    margin-right: 5px;
    place-items: center;
    line-height: 100% !important;
    vertical-align: middle;
    transform: translateY(-2px);
}
.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}

@media (max-width: 640px) {
    .notice li {
        grid-template-columns: 65px auto;
    }
    .notice .datetime {
        font-size: 14pt;
    }
    .notice li a,
    .notice li.empty_li {
        padding: 14px 0 !important;
    }
    .notice li .subject {
        font-size: 14pt;
    }
}
@media (max-width: 460px) {
    .notice li {
        grid-template-columns: 45px auto;
        gap: 10px;
        padding: 5px 0;
    }
}