@charset "utf-8";

.roro_gallery {display:flex;flex-wrap:wrap;}
.roro_gallery li {aspect-ratio: 1 / 1;width:20%;}
.roro_gallery li :where(.gallery-item-img, a) {display:block;width:100%;height:100%;}
.roro_gallery li a {position:relative;}
.roro_gallery li a::before {content:'크게보기';width:100%;height:100%;background:rgba(0,0,0,0.5);justify-content:center;align-items:center;color:#fff;position:absolute;top:0;left:0;font-size:18px;font-weight:500;display:none;}
.roro_gallery li a img {object-fit: cover;width:100%;height:100%;}
.roro_gallery li a:hover::before {width:100%;height:100%;display:flex;}

@media all and (max-width:768px) {
    .roro_gallery li {width:25%;}
    
}

@media all and (max-width:360px) {
    .roro_gallery li {width:50%;}
    
}