@charset "utf-8";

/* 이벤트 스킨 (pic_event) */
.pic_event_grid{display: flex; flex-wrap: wrap; gap: 20px;}
.pic_event_item{display: block; width: calc(50% - 10px); border-radius: 28px; overflow: hidden;}
.pic_event_item img{width: 100%; height: 100%; object-fit: cover; transition: 0.4s all;}
.pic_event_item:hover img{transform: scale(1.04);}
.pic_event_empty{display: flex; align-items: center; justify-content: center; width: 100%; height: 222px; color: #999; font-size: 16px;}

@media all and (max-width: 768px){
    .pic_event_item{width: 100%;}
}
