.header-title .div_h1 {
    font-size: unset;
    margin: 0;
    padding-top: 10px;
    width: 56%;
}
@media (max-width: 767px) {
    .header-title .div_h1 {
        width: 96%;
        margin: auto;
    }
}
/* Пагинация блога */
.pagination {
    display: flex;
    justify-content: center;
    margin: 40px 0 20px;
    padding: 0;
    list-style: none;
    gap: 5px;
    flex-wrap: wrap;
}

.page-item {
    display: inline-block;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: #262626;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.page-link:hover {
    background: #0680c9;
    border-color: #0680c9;
    color: #fff;
}

.page-item.active .page-link {
    background: #0680c9;
    border-color: #0680c9;
    color: #fff;
    cursor: default;
}

.page-item.disabled .page-link {
    background: #f5f5f5;
    border-color: #e0e0e0;
    color: #999;
    cursor: not-allowed;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .page-link {
        min-width: 35px;
        height: 35px;
        padding: 0 8px;
        font-size: 13px;
    }
    
    .pagination {
        margin: 30px 0 15px;
        gap: 3px;
    }
}