/* 페이징 전체 컨테이너 */
.paging_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 10px; /* 화살표와 숫자 사이 간격 */
}

/* 화살표 이미지 스타일 */
.paging_wrap a img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

/* 숫자 리스트 스타일 */
.pager_nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px; /* 숫자 간 간격 */
}

.pager_nav li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

/* 현재 페이지 강조 */
.pager_nav li a.on {
    background-color: #333;
    border-color: #333;
    color: #fff;
    font-weight: bold;
}

/* 호버 효과 */
.pager_nav li a:hover:not(.on) {
    background-color: #f9f9f9;
}

/* 모바일 대응 (768px 이하) */
@media screen and (max-width: 768px) {
    .paging_wrap {
        gap: 5px;
    }

    .pager_nav li a {
        width: 30px; /* 모바일에서 조금 더 작게 */
        height: 30px;
        font-size: 13px;
    }

    .paging_wrap a img {
        width: 20px;
        height: 20px;
    }
}