
#bo_gallery_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    justify-content: space-between;
}
#bo_gallery_list.empty {
    display: flex;
    justify-content: center;
}
#bo_gallery_list > li:not(.empty_list) {
    border: 1px solid var(--gray100);
}
#bo_gallery_list > li .bo_wrap > .wrap_img {
    height: 20.625rem;
}
#bo_gallery_list > li .bo_wrap > .bo_detail {
    padding: 1.5rem;
}
#bo_gallery_list > li .bo_wrap > .bo_detail > p {
    margin-top: 1rem;
}
#bo_gallery_list > li .bo_wrap > .bo_detail > .bo_info > h3 {
    color: var(--gray400, #3A3A3A);
    font-family: var(--static---sub4);
    font-weight: 500;
    line-height: 130.769%;
    letter-spacing: -0.035rem;
    
}
#bo_gallery_list > li .bo_wrap > .bo_detail > p {
    margin-top: 1rem;
    color: var(--gray300, #3A3A3A);
    font-size: var(--static---caption4);
    font-weight: 400;
    line-height: 171.429%;
    letter-spacing: -0.0175rem;
}
.item-content.view > .item-header {
    padding-bottom: 2.125rem;
    border-bottom: 1px solid var(--gray300, #E3E3E3);
}

.item-content.view > .item-view img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    #bo_gallery_list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #bo_gallery_list {
        grid-template-columns: 1fr;
    }
}