.archive-section {
    direction: rtl;
    margin: 0px auto;
    padding:10px;
background:#fff;
 border-radius: 5px;
}


.hp-pagination {
    margin: 40px 0 10px 0;
    text-align: center;
}

.hp-nav-links {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #fff;
    color: #555;
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid #eee;
    font-size: 15px;
    font-weight: bold;
    transition: all 0.3s ease;
}

/* حالت هاور روی شماره‌ها */
.page-numbers:not(.dots):not(.current):hover {
    background: #f9f9f9;
    border-color: #ff4b2b;
    color: #ff4b2b;
    transform: translateY(-3px);
}

/* صفحه فعلی */
.page-numbers.current {
    background: #ff4b2b;
    color: #fff;
    border-color: #ff4b2b;
    box-shadow: 0 5px 15px rgba(255, 75, 43, 0.3);
}

/* دکمه‌های قبلی و بعدی */
.page-numbers.prev, .page-numbers.next {
    width: auto;
    padding: 0 20px;
    font-size: 13px;
}

/* بخش سه نقطه */
.page-numbers.dots {
    border: none;
    background: transparent;
    cursor: default;
}

/* ریسپانسیو برای موبایل‌های خیلی کوچک */
@media (max-width: 480px) {
    .page-numbers {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }
    .page-numbers.prev, .page-numbers.next {
        padding: 0 12px;
    }
}