.board_cont {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 50px 0;
}

.page_title_sect .title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.page_title_sect .sub_title {
    font-size: 15px;
    color: #5E5E5E;
}

.category_sect {
    width: 100%;
    border-bottom: 1px solid #E1E1E1;
    display: flex;
    align-items: center;
    gap: 14px;
    overflow-x: auto;
}

.category_sect .category_item {
    font-size: 18px;
    padding: 4px 8px 12px;
    display: block;
    text-align: center;
    color: #5E5E5E;
    white-space: nowrap;
}

.category_sect .category_item.active {
    color: var(--main-color);
    border-bottom: 2px solid var(--main-color);
    font-weight: 700;
}

.list_cnt_wrap {
    font-size: 15px;
    margin-bottom: 12px;
}

.list_cnt_wrap .cnt {
    color: #5E5E5E;
}

.board_list {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 16px;
}

.board_list li:not(.empty_wrap) {
    width: calc((100% - 48px)/4);
}

.board_list .board_item {
    display: block;
}

.board_item .thumbnail_area {
    margin-bottom: 10px;
    display: flex;
    width: 100%;
    aspect-ratio: 1/1;
}

.board_item .category_label {
    padding: 2px 6px;
    font-size: 13px;
    margin-bottom: 6px;
}


.board_item .item_title {
    color: #222222;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}

.board_item .dttm {
    color: #5E5E5E;
    font-size: 13px;
}

.empty_wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    width: 100%;
    padding: 150px 0;
}

.empty_wrap .empty_title {
    font-size: 14px;
    color: #5E5E5E;
}

.pagination {
    margin-top: 18px;
}

@media screen and (max-width:1023px) {
    .board_cont {
        padding: 30px 0;
        gap: 24px;
    }

    .page_title_sect .title {
        font-size: 20px;
    }

    .page_title_sect .sub_title {
        font-size: 13px;
    }

    .category_sect .category_item {
        font-size: 16px;
    }

    .list_cnt_wrap {
        font-size: 12px;
    }

    .board_list {
        gap: 24px 16px;
    }

    .board_list li:not(.empty_wrap) {
        width: calc((100% - 16px)/2);
    }
}

@media screen and (max-width:767px) {
    .board_list {
        gap: 16px;
    }

    .board_list li:not(.empty_wrap) {
        width: 100%;
    }

    .board_item .item_title {
        font-size: 14px;
    }
}