@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;
}
.calendar ul {
    column-gap: 25px;
}
.calendar li {
    display: inline-block;
    font-size: 0.7rem;
    width: 100%;
}
.calendar li:nth-of-type(3n) {
    margin-right: 0px;
}
.calendar li .img-full {
    position: relative;
}
.calendar 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;
}

.calendar li * {
    -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;
}
.calendar li .cont {
    position: relative;
    text-align: center;
}
.calendar li:hover * {
    color: #7A0039 !important;
    border-color: #7A0039 !important;
}
.calendar li .cont .ca-name {
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 28px;
    padding: 0 15px;
    background-color: #7A0039;
    color: #FFF;
}
.calendar li .cont a {}
.calendar li .cont strong {
    display: block;
    font-weight: 500;
    font-size: 1.2em;
    /*margin-bottom: 20px;*/
    overflow: hidden;
    text-overflow: ellipsis;
    height: 46px;
    line-height: 23px;
    /*white-space: nowrap;*/
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap:break-word;
}
.calendar 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;
}
.calendar li .cont .datetime {
    display: block;
    font-size: 2.2em;
    color: #000;
    font-weight: 800;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 2px solid #000;
}
.calendar li .cont .datetime .en {
    font-weight: 300;
}
.calendar 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;
}
.calendar li:hover .read-more {
    background-color: #000;
    border-color: #000;
    color: #FFF;
}
@media (max-width: 640px) {
    .latest-title {
        padding-bottom: 40px;
    }
    .calendar {
        padding: 0 10px;
    }
    .calendar ul {
        row-gap: 30px;
    }
    .calendar ul li {
        position: relative;
        padding: 0 40px;
    }
    .calendar ul li:not(:last-child):after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: -15px;
        height: 1px;
        background-color: #DDD;
        border-bottom: 1px solid #FFF;
    }
    .calendar li .cont small {
        margin-bottom: 30px;
    }

    .calendar .owl-nav {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 0;
        font-family: "Nanum Gothic", "나눔고딕", sans-serif;
    }
    .calendar .owl-nav > * {
        position: absolute;
        transform: translateY(-50%);
        font-size: 3em !important;
        z-index: 5;
    }
    .calendar .owl-nav .owl-prev {
        left: 5px;
    }
    .calendar .owl-nav .owl-next {
        right: 5px;
    }
}