/**
 * Category Archive Styles
 * Projective Conseil Child Theme
 */

/* =============================================
   CATEGORY ARCHIVE LAYOUT
   ============================================= */
.category-archive {
    background: #fff;
    min-height: 60vh;
}

/* =============================================
   CATEGORY HEADER
   ============================================= */
.category-header {
    background: #006D77;
    padding: 180px 20px 130px;
    text-align: center;
}

.category-header-inner {
    max-width: 800px;
    margin: 0 auto;
}

.category-label {
    display: inline-block;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #E9C46A;
    border: 1px solid #E9C46A;
    padding: 8px 20px;
    margin-bottom: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-label:hover {
    color: #fff;
    border-color: #fff;
}

.category-header h1 {
    font-family: 'Syne', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.category-description {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 20px 0 0;
    line-height: 1.6;
}

/* =============================================
   GRID SECTION SPACING
   ============================================= */
.category-archive .projective-grid-section {
    padding-top: 60px;
}

/* =============================================
   PAGINATION
   ============================================= */
.category-pagination {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 60px;
    text-align: center;
}

.category-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.category-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1A1A1A;
    background: #fff;
    border: 1px solid #e0e0e0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.category-pagination .page-numbers:hover {
    border-color: #006D77;
    color: #006D77;
}

.category-pagination .page-numbers.current {
    background: #006D77;
    border-color: #006D77;
    color: #fff;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
    .category-header {
        padding: 150px 20px 80px;
    }

    .category-header h1 {
        font-size: 1.8rem;
    }

    .category-description {
        font-size: 1rem;
    }

    .category-archive .projective-grid-section {
        padding-top: 40px;
    }
}