.sub-head-title {
    padding-bottom:5rem;
}

/**/
.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:120% auto;
    background-repeat: no-repeat;
    background-position:center;
    background-color:rgba(240,240,240, 0.3);
    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 .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:767px){

    .gallery-board {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-board .gallery-item .gallery-img {
        height:180px;
    }

}
@media (max-width:424px){
    .gallery-board .gallery-item .gallery-img {
        height:120px;
    }
}