.sub-head-title {
    padding-bottom:5rem;
}

/**/
.promo-movie {
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom:6.4rem;
}
.promo-movie li {}
.promo-movie .movie {
    border-radius:20px;
    overflow:hidden;
    height:280px;
    margin-bottom:2rem;
}
.promo-movie .movie iframe {
    width:100%;
    height:320px;
}
.promo-movie .cat {
    color: #066CB0;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 2.4rem; /* 160% */
    text-transform: capitalize;
}
.promo-movie .subject {
    color: #000;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 28.8px */
    text-transform: capitalize;
    align-self: stretch;
}


/**/
.gallery-board {
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 40px;
    margin-bottom:8rem;
}
.gallery-board .gallery-item {
    display:block;
    margin-bottom:20px;
}
.gallery-board .gallery-item .gallery-img {
    height:280px;
}
.gallery-board .gallery-item .gallery-img .img {
    width:100%;
    height:100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position:center;
    /* background-color:rgba(240,240,240, 0.3); */
    background-color:#000;
    border-radius:1.5rem;
    border:1px solid #eee;
}
.gallery-board .gallery-item .gallery-info {
    padding:2rem 0 0 0;
}
.gallery-board .gallery-item .gallery-info .category {
    color: #066CB0;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 2.4rem; /* 171.429% */
    text-transform: capitalize;
}
.gallery-board .gallery-item .gallery-info .title {
    color: #000;
    font-family: Pretendard, sans-serif;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 28.8px */
    text-transform: capitalize;
}
.gallery-board .gallery-item .gallery-info .date {
    color: #787878;
    font-family: Pretendard, sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 300;
    line-height: 2.4rem; /* 160% */
    text-transform: capitalize;
}

/**/
.bbs-view-body img {
    max-width:100%;
    height:auto;
}



@media (max-width:1200px){
    .gallery-board {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width:767px){
    .promo-movie {
        grid-template-columns: repeat(2, 1fr);
    }
    .promo-movie .movie {
        height:200px;
    }
    .gallery-board {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .gallery-board .gallery-item .gallery-img {
        height:200px;
    }
}
@media (max-width:424px){

}

