/* 
* 커스텀 페이징 전용 CSS
* admin/lib/function.php - custom_paging() 함수 사용시 적용됨
*/



/* custom_paging 페이징 관련 (story_visual)*/
/* paging */
.paging_wrap{text-align:center; box-sizing:border-box; margin-top: 80px;}
ul.paging{display: flex; justify-content: center; gap:5px;}
ul.paging li{display:block; width:30px; height:30px; border-radius: 5px; overflow: hidden;}
ul.paging li a{display:flex; align-items: center; justify-content: center; width: 100%; height: 100%; font-size:16px; color:#999; font-weight: 700;}
ul.paging li.on a{background:#02416C; color: #fff;}




@media screen and (max-width:767px) {
.paging_wrap{text-align:center; box-sizing:border-box; margin-top: 20px;}
ul.paging{display: flex; justify-content: center; gap:5px;}
ul.paging li{display:block; width:25px; height:25px;}
ul.paging li a{display:flex; align-items: center; justify-content: center; width: 100%; height: 100%; font-size:12px; color:#999; font-weight: 700;}
}