/* ===== SECTION: Blog Category - Start ===== */
.blog-category-section {
    padding-bottom: 100px;
}

.blog-category-section .h2 {
    margin-bottom: 20px;
}

.blog-category-section .category-description {
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--dark-gray);
}

/* Posts Grid */
.blog-category-section .auto-cols {
    margin-bottom: 60px;
}

/* No Posts Message */
.blog-category-section .no-posts-message {
    padding: 60px 20px;
}

/* Pagination - Start */
.blog-category-section .pagination-wrapper {
    display: flex;
    justify-content: center;
}

.blog-category-section .pagination {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-category-section .pagination a,
.blog-category-section .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-small);
    font-weight: 500;
    color: var(--black);
    transition: all 0.3s ease;
}

.blog-category-section .pagination a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--primary-match);
}

.blog-category-section .pagination a:hover svg path {
    stroke: var(--primary-match);
}

.blog-category-section .pagination span.current {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--primary-match);
    cursor: default;
}

.blog-category-section .pagination .dots {
    border: none;
    background: transparent;
    cursor: default;
}

.blog-category-section .pagination svg path {
    stroke: var(--black);
    transition: all 0.3s ease;
}

.blog-category-section .page-nav svg {
    width: 10px;
    height: 11px;
}
/* Pagination - End */

/* Adaptive 1680px */
@media (max-width: 1680px) {
    .blog-category-section {
        padding-bottom: 75px;
    }
}

/* Adaptive 1279px */
@media (max-width: 1279px) {
    .blog-category-section {
        padding-bottom: 50px;
    }
    
    .blog-category-section .category-description {
        margin-bottom: 40px;
    }
    
    .blog-category-section .auto-cols {
        margin-bottom: 40px;
    }
        .blog-category-section .pagination {
        gap: 5px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .blog-category-section .pagination a,
    .blog-category-section .pagination span {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
    }
    .blog-category-section .pagination svg {
        width: 14px;
        height: 14px;
    }
    
    .blog-category-section .page-nav svg {
        width: 8px;
        height: 9px;
    }
}
/* ===== SECTION: Blog Category - End ===== */