@charset "utf-8";

/* 새글 스킨 (latest) */
.gallery1 {
    text-align: center;
}
.gallery1 ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-column-gap: 2px;
    grid-row-gap: 2px;
}
.gallery1 li {
    display: inline-block;
    position: relative;
}
.gallery1 .latest-title {
    text-align: center;
    margin-bottom: 50px;
}
.gallery1 li .img-full {
    position: relative;
}
.gallery1 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;
}

.gallery1 li .cont {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 20px;
    opacity: 0;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
}
.gallery1 li .cont:hover {
    opacity: 1;
}
.gallery1 li:hover .cont,
.gallery1 li:hover .cont * {
    -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;
}
.gallery1 li:hover .cont * {
    color: #FFF;
}
.gallery1 li .cont a {}
.gallery1 li .cont strong {
    display: block;
    font-weight: 500;
    font-size: 1.6em;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 23px;
    line-height: 23px;
    white-space: nowrap;
}
.gallery1 li .cont .datetime {
    display: block;
    font-weight: 500;
    color: #979797;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-wrap:break-word;
    line-height: 1.5em;
    height: 1.5em;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.gallery1 .read-more {
    display: inline-block;
    line-height: 58px !important;
    height: 60px !important;
    text-align: center;
    min-width: 230px;
    padding: 0 20px;
    border-radius: 0 !important;
    background-color: #FFF !important;
    color: #4466e2 !important;
    border: 1px solid #4466e2 !important;
    cursor: pointer;
    -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;
    font-size: 1.3em;
    margin-top: 6%;
}
.gallery1 .read-more:hover {
    background-color: #4466e2 !important;
    color: #FFF !important;
}
@media (max-width: 800px) {
    .gallery1 ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
    }
}