@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;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    -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 {
    transform: translateY(-10px);
    box-shadow: 0 14px 20px rgba(0, 0, 0, 0.2);
}
.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: 15px;
    /*padding: 30px 30px 10px;*/
    /*margin: -18% 40px 0;*/
    /*text-align: center;*/
}
.notice li .cont .date {
    /*display: block;*/
    display: none;
    color: #888;
    margin-bottom: 5px;
    font-family: 'Spoqa Han Sans';
}
.notice li .cont a {}
.notice li .cont strong {
    display: block;
    font-weight: 700;
    font-size: 1.5em;
    /*margin-bottom: 20px;*/
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-wrap:break-word;
    height: 23px;
    line-height: 23px;
    text-align: center;
}
.notice li .cont .text {
    /*display: block;*/
    display: none !important;
    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: none;
    /*display: inline-block;*/
    color: #29b1e3;
    font-size: 1em;
    height: auto;
    line-height: 27px !important;
    margin: 0 0 20px;
    -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 .read-more:after {
    content: '>';
    font-family: "Nanum Gothic", "나눔고딕";
    display: inline-block;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    background-color: #29b1e3;
    color: #FFF;
    text-align: center;
    font-size: 0.9em;
    transform: scale(0.75);
    vertical-align: middle;
    position: relative;
    top: -1px;
    margin-left: 4px;
}
.notice li:hover .read-more {
    border-bottom: 1px solid #29b1e3;
}
@media (max-width: 640px) {
    .latest-title {
        padding-bottom: 40px;
    }
    .notice {
        padding: 0 10px;
    }
    .notice ul {
        row-gap: 30px;
    }
    .notice li .cont small {
        margin-bottom: 30px;
    }
}