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



/* custom_paging 페이징 관련 (story_visual)*/
/* paging */
.paging_wrap{text-align:center; box-sizing:border-box; margin-top: 60px;}
ul.paging{display: flex; justify-content: center; gap:10px;}
ul.paging li{display:block; width:40px; height:40px; vertical-align:middle;}
ul.paging li a{display:flex; align-items: center; justify-content: center; width: 100%; height: 100%; font-size:14px; color:#222; font-weight: 700;  }
ul.paging li.on a{background:#DB5C42; border-radius:5px; 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;}
ul.paging li{display:block; margin:0 2px; width:30px; height:30px;}
ul.paging li a{display:flex; align-items: center; justify-content: center; width: 100%; height: 100%; font-size:13px; color:#222; line-height:28px; font-weight: 700;}


}