/* ==========================================================================
   UNIVERSAL ARCHIVE PAGE STYLING (FINAL VERSION)
   ========================================================================== */

/* --- 1. Main Page Container (THE FIX for Padding) --- */
.archive-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px; /* Sides par 20px ka gap add karega */
}

/* --- 2. Archive Header (THE FIX for Centering) --- */
.archive-header {
    text-align: center; /* Title aur description ko center karega */
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.archive-title {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px;
}

.archive-description {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- 3. Grid Layout --- */
/* The .universal-apps-grid class from homepage-apk.css will be used here. */
/* No extra grid styling is needed in this file. */


/* --- 4. Pagination Styling --- */
.pagination {
    margin-top: 50px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}
.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.nav-links .page-numbers {
    padding: 10px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
}
.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
    background-color: #2563eb;
    color: #fff;
    border-color: #2563eb;
}