@charset "utf-8";

/* 새글 스킨 (latest) */
.notice ul {
    font-size: 0px;
    max-width: 1000px;
    margin: 0 auto;
}
.notice li {
    display: block;
    font-size: 0.7rem;
    margin-bottom: 15px;
    background-color: #FFF;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0px 1px 1px rgba(50, 50, 90, 0.15)
}
.notice li:nth-of-type(3n) {
    margin-right: 0px;
}

.notice li > a {
    display: table;
    width: 100%;
    table-layout: fixed;
}
.notice li > a > div {
    display: table-cell;
    position: relative;
    vertical-align: middle;
}
.notice li .date {
    text-align: center;
    width: 120px;
    font-size: 24pt;
    font-weight: 800;
}
@media (max-width: 640px) {
    .notice li .date {
        width: 80px;
    }
}
.notice li .date:after {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 10px;
    right: 0;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.07);
}
.notice li:hover .date:after {
    background-color: rgba(255, 255, 255, 0.15);
}
.notice li .date small {
    display: block;
    font-size: 8pt;
    margin-bottom: -9px;
    color: #656565;
}
.notice li .cont {
    padding: 20px;
}
.notice li:hover {
    background-color: rgba(53, 53, 55, 1);
}
.notice li:hover .cont,
.notice li:hover .cont *,
.notice li:hover .date,
.notice li:hover .date * {
    color: #FFF !important;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.notice li .cont a {}
.notice li .cont strong {
    display: block;
    font-weight: 400;
    font-size: 1.3em;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 23px;
    line-height: 23px;
    white-space: nowrap;
}
.notice li .cont .text {
    display: block;
    font-weight: 300;
    color: #555;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.5em;
    height: 1.5em;
    margin-bottom: 10px;
}
.notice li .cont .read-more {
    font-size: 0.8em;
}