/*
==================================================
ABM Toolkit
Product & News Style
==================================================
*/
/*
==================================================
Silicon Toolkit Product Card
Industrial B2B Style
==================================================
*/


/* Product Grid
--------------------------------------------------*/
.stk-products.stk-columns-4{

    display:grid !important;

    grid-template-columns:repeat(4,minmax(0,1fr)) !important;

    gap:30px;

    margin:60px 0;

}


/* Tablet */

@media (max-width:1200px){

.stk-products.stk-columns-4{
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
}

}

@media (max-width:991px){

.stk-products.stk-columns-4{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
}

}

@media(max-width:767px){

.stk-products.stk-columns-4{

    display:grid !important;

    grid-template-columns:1fr !important;

    width:100% !important;

}

.stk-product-card{

    width:100% !important;

}

}

.stk-product-card{

    background:#fff;

    border:1px solid #e5e5e5;

    padding:20px;

    transition:.3s ease;

}



/* Image */

.stk-product-image{

    display:flex;

    align-items:center;

    justify-content:center;

    height:210px;

}



.stk-product-image img{

    width:100%;

    height:100%;

    object-fit:contain;

}



/* Divider */

.stk-divider{

    width:100%;

    height:1px;

    background:#d8d8d8;

    margin:5px 0;

}





/* Product Title */

.stk-product-title{

    margin:0;

    min-height:35px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;


    font-family:Poppins,Arial,sans-serif;

    font-size:14px;

    font-weight:500;

    line-height:1.3;

}


.stk-product-title a{

    color:#333;

    text-decoration:none;

    text-align:center;

}


.stk-product-title a:hover{

    color:#0066cc;

}





/* Button Center */

.stk-product-footer{

    margin-top:15px;

    text-align:center;

}



.stk-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;


    background:#0066cc;

    color:#fff !important;


    padding:10px 22px;


    font-family:Poppins,Arial,sans-serif;

    font-size:14px;

    font-weight:400;


    text-decoration:none !important;


}



.stk-button:hover{

    background:#004c99;

}
/*
==================================================
Pagination Style
==================================================
*/

.stk-pagination{

    margin:40px 0;

    text-align:center;

}


.stk-pagination .page-numbers{

    display:inline-flex;

    align-items:center;

    justify-content:center;


    min-width:38px;

    height:38px;


    margin:0 4px;


    border:1px solid #ddd;


    color:#555;


    font-family:Poppins,Arial,sans-serif;

    font-size:14px;

    font-weight:400;


    text-decoration:none;


    transition:.3s;

}



/* Current Page */

.stk-pagination .current{

    background:#333;

    color:#fff;


    border-color:#333;

}



/* Hover */

.stk-pagination a:hover{

    background:#0066cc;

    color:#fff;

    border-color:#0066cc;

}



/* Previous Next */

.stk-pagination .prev,
.stk-pagination .next{


    padding:0 18px;


    width:auto;


}






/* ========================================
   News List
======================================== */

.stk-news-list{
    display:flex;
    flex-direction:column;
    gap:30px;
    margin:40px 0;
}

.stk-news-card{
    display:flex;
    align-items:stretch;
    gap:35px;
    background:#fff;
    border:1px solid #e8ecef;
    border-radius:12px;
    overflow:hidden;

    box-shadow:0 6px 18px rgba(0,0,0,.05);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

    will-change:transform;
}

.stk-news-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.stk-news-image{
    width:320px;
    align-self:stretch;
    overflow:hidden;
    display:flex;
}

.stk-news-image img{
    flex:1;
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

    transition:transform .4s ease;
    will-change:transform;
}

.stk-news-card:hover .stk-news-image img{
    transform:scale(1.03);
}

.stk-news-content{
    flex:1;
    padding:30px;
    display:flex;
    flex-direction:column;
}

.stk-news-date{
    color:#1059ac;
    font-size:13px;
    font-weight:600;
    margin-bottom:10px;
    text-transform:uppercase;
    letter-spacing:.6px;
}

.stk-news-title{
    margin:0 0 12px;
    font-size:22px;
    font-weight:600;
    line-height:1.4;
}

.stk-news-title a{
    color:#1d2b36;
    text-decoration:none;
    transition:.3s;
}

.stk-news-title a:hover{
    color:#1059ac;
}

.stk-news-excerpt{
    color:#666;
    line-height:1.8;
    font-size:15px;
    flex:1;
    margin-bottom:25px;
}

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

@media(max-width:991px){

.stk-news-card{
    flex-direction:column;
}

.stk-news-image{
    width:100%;
    height:260px;
}

}

@media(max-width:576px){

.stk-news-content{
    padding:20px;
}

.stk-news-title{
    font-size:22px;
}

}

/* ========================================
   Empty State
======================================== */

.stk-empty{
    width:100%;
    padding:60px 20px;
    text-align:center;
    background:#f8f9fa;
    border:1px dashed #d8d8d8;
    border-radius:10px;
    color:#666;
    font-size:16px;
}

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

.stk-button{
    background:#1059ac;
}
.stk-button:hover{
    background:#0b4688;
}

.stk-button:focus{
    outline:none;
    box-shadow:0 0 0 3px rgba(12,141,125,.18);
}



/* ========================================
   General Typography
======================================== */

.stk-products,
.stk-news-list{

    font-family:Poppins,Arial,sans-serif;

}

.stk-products *,

.stk-news-list *{

    box-sizing:border-box;

}

/* ========================================
   Links
======================================== */

.stk-products a,

.stk-news-list a{

    transition:.3s;

}

/* ========================================
   Utility
======================================== */

.stk-hidden{

    display:none;

}

.stk-text-center{

    text-align:center;

}

.stk-mt-20{

    margin-top:20px;

}

.stk-mb-20{

    margin-bottom:20px;

}

/* ========================================
   Future Modules
   (FAQ / Downloads / Applications)
======================================== */

.stk-card{

    background:#fff;

    border-radius:10px;

    border:1px solid #e8ecef;

    box-shadow:0 8px 20px rgba(0,0,0,.04);

    transition:.3s;

}

.stk-card:hover{

    box-shadow:0 18px 40px rgba(0,0,0,.10);

}

.stk-section-title{

    font-size:30px;

    font-weight:700;

    color:#1d2b36;

    margin-bottom:20px;

}

.stk-section-desc{

    color:#666;

    line-height:1.8;

    font-size:16px;

    max-width:760px;

}
.stk-news-card .stk-button{

    align-self:flex-start;

    width:auto;

}