@charset "utf-8";

/* 새글 스킨 (latest) */
.latest-title {
    font-size: 2.5em;
    text-align: center;
    padding-bottom: 60px;
}
.latest-title small {
    display: block;
    font-size: 0.6em;
    line-height: 45px;
    color: #838381;
}
.notice ul {
    column-gap: 35px;
}
.notice li {
    display: inline-block;
    font-size: 0.7rem;
}
.notice li:nth-of-type(3n) {
    margin-right: 0px;
}
.notice li .img-full {
    position: relative;
}
.notice li .img-full .no-img {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2em;
    font-weight: 600;
    color: #000;
}

.notice li .cont {
    position: relative;
    background-color: #FFF;
    padding: 30px 30px 10px;
    margin: -18% 40px 0;
    text-align: center;
}
.notice li .cont a {}
.notice li .cont strong {
    display: block;
    font-weight: 500;
    font-size: 1.4em;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 23px;
    line-height: 23px;
    white-space: nowrap;
}
.notice li .cont .text {
    display: block;
    font-weight: 400;
    color: #838381;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap:break-word;
    line-height: 1.9em;
    height: 3.8em;
    margin-bottom: 60px;
    font-size: 1.08em;
}
.notice li .cont .read-more {
    display: inline-block;
    color: #000;
    font-size: 1.2em;
    height: auto;
    line-height: 48px !important;
    border-radius: 50px;
    border: 2px solid #E8E8E8;
    padding: 0 40px;
    font-weight: 600;
    -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:hover .read-more {
    background-color: #000;
    border-color: #000;
    color: #FFF;
}
@media (max-width: 640px) {
    .latest-title {
        padding-bottom: 40px;
    }
    .notice {
        padding: 0 10px;
    }
    .notice ul {
        row-gap: 30px;
    }
    .notice li .cont {
        margin: -18% 20px 0;
    }
    .notice li .cont small {
        margin-bottom: 30px;
    }
}