.board {
    padding: 125px 0 120px;
}
.board .list {
    gap: 40px;
}
.board .list .item {
    width: calc(33.333% - 27px);
}
.board .list .item .thumb {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 73%;
    overflow: hidden;
    margin-bottom: 10px;
}
.board .list .item .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.board .list .item .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.board .more_btn:after {
    display: none;
}



.board .read {
    max-width: 880px;
    margin: 0 auto;
    padding-top: 40px;
    box-sizing: border-box;
}
.board .read .subject {
    font-size: 32px;
    font-weight: 700;
}
.board .read .cont img {
    max-width: 100%;
}







@media screen and (max-width: 1500px) {
}
@media screen and (max-width: 1440px) {
    .board .list {
        gap: 40px 20px;
    }
    .board .list .item {
        width: calc(33.333% - 14px);
    }
}
@media screen and (max-width: 1024px) {
    .board .list .item .title {
        font-size: 16px;
    }

    .board .read .subject {
        font-size: 24px;
    }
}
@media screen and (max-width: 768px) {
    .board {
        padding: 95px 0 70px;
    }

    
    .board .list .item {
        width: calc(50% - 10px);
    }


    .board .read {
        padding-top: 20px;
    }
    .board .read .subject {
        font-size: 20px;
    }
}
@media screen and (max-width: 480px) {
    .board .list .item {
        width: 100%;
    }
}
@media screen and (max-width: 380px) {
    
}