@charset "utf-8";
/* 새글 스킨 (latest) */
.basic_gall{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px 20px;
}

.basic_gall_li:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    position: relative;
    border: 0;
}


@media all and (max-width:768px){
    .basic_gall{
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows:  repeat(4, 1fr);
    }
    .basic_gall_li:nth-child(1){
        grid-column: 1 / 3;
        grid-row: 1 / 3;
    }
}


@media all and (max-width:480px){
    .basic_gall{
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows:  repeat(3, 1fr);
    }
    .basic_gall_li:nth-child(1){
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .basic_gall_li:nth-child(4),
    .basic_gall_li:nth-child(5){display:none;}
}