.bbs_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 30px;
}
.bbs_list.content {
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 100px;
}
.item_box {
    width: 100%;
}
.item_name {
    margin-bottom: 12px;
}
.bbs_btm {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.date {
    font-size: var(--ft16);
    color: var(--gray-500);
}

.item_img img {
    transition: transform .4s ease;
}

.item_box:hover .item_img img {
    transform: scale(1.05);
}
@media all and (max-width: 1600px) {
    .bbs_list.content {
        gap: 60px 80px;
    }
}

@media all and (max-width: 1400px) {
    .bbs_list.content {
        grid-template-columns: repeat(3, 1fr);
    }
    .bbs_list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media all and (max-width: 1024px) {
    .bbs_list.content {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
    }
}

@media all and (max-width: 768px) {
    .bbs_list {
        gap: 32px 12px;
    }
    .bbs_list.content {
        gap: 32px 12px;
    }
    .item_profile {
        display: none;
    }
    .date {
        font-size: var(--ft14);
    }

    .label_list {
        display: none;
    }
}