/*==================================================
SOFTONIX SOFTWARE ARCHIVE
==================================================*/

.st-archive{
    padding:40px 0 70px;
    background:#f5f7fb;
    min-height:100vh;
}

.st-container{
    max-width:1350px;
    margin:auto;
    padding:0 20px;
}

/*==================================
Archive Header
==================================*/

.st-archive-header{
    text-align:center;
    margin-bottom:45px;
}

.st-archive-header h1{
    font-size:42px;
    font-weight:800;
    color:#111827;
    margin:0 0 12px;
    line-height:1.2;
}

.st-archive-header p{
    font-size:18px;
    color:#6b7280;
    margin:0;
}

/*==================================
Software Grid
==================================*/

.st-software-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:28px;
}

/*==================================
Card
==================================*/

.st-card{
    background:#fff;
    border-radius:18px;
    padding:26px;
    box-shadow:0 12px 35px rgba(15,23,42,.08);
    transition:.35s ease;
    text-align:center;
    border:1px solid #edf2f7;
    overflow:hidden;
}

.st-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 50px rgba(37,99,235,.18);
}

/*==================================
Logo
==================================*/

.st-card img{
    width:84px;
    height:84px;
    object-fit:contain;
    margin:auto;
    display:block;
    margin-bottom:18px;
}

/*==================================
Title
==================================*/

.st-card h3{
    font-size:20px;
    font-weight:700;
    color:#111827;
    line-height:1.4;
    margin:0 0 15px;
    min-height:56px;
}

.st-card a{
    text-decoration:none;
}

/*==================================
Version
==================================*/

.st-version{
    display:inline-block;
    padding:7px 14px;
    border-radius:30px;
    background:#eef5ff;
    color:#2563eb;
    font-size:14px;
    font-weight:600;
    margin-bottom:12px;
}

/*==================================
License
==================================*/

.st-license{
    font-size:15px;
    color:#4b5563;
    margin-bottom:22px;
}

/*==================================
Button
==================================*/

.st-download-btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:100%;
    padding:13px 22px;
    border-radius:12px;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
    font-size:15px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.st-download-btn:hover{
    background:linear-gradient(135deg,#1d4ed8,#1e40af);
    color:#fff;
}

/*==================================
Pagination
==================================*/

.st-pagination{
    margin-top:55px;
    display:flex;
    justify-content:center;
}

.st-pagination .page-numbers{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:44px;
    height:44px;
    margin:0 6px;
    border-radius:10px;
    background:#fff;
    color:#374151;
    text-decoration:none;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
    transition:.25s;
    font-weight:600;
}

.st-pagination .current{
    background:#2563eb;
    color:#fff;
}

.st-pagination .page-numbers:hover{
    background:#2563eb;
    color:#fff;
}

/*==================================
Responsive
==================================*/

@media(max-width:1200px){

    .st-software-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:900px){

    .st-software-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:600px){

    .st-archive{
        padding:30px 0 50px;
    }

    .st-archive-header h1{
        font-size:32px;
    }

    .st-software-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

    .st-card{
        padding:22px;
    }

}