/* artical page */

.article-search{
    margin-bottom:30px;
}

.article-search input{
    width:100%;
    padding:14px 18px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
}

.pdf-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
    gap:25px;
}

.pdf-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
    transition:0.3s;
}

.pdf-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.pdf-image-link{
    display:block;
}

.pdf-card img{
    width:100%;
    height:350px;
    object-fit:cover;
    display:block;
}

.pdf-card h3{
    padding:15px;
    margin:0;
    font-size:16px;
    text-align:center;
    word-break:break-word;
}

.pdf-download-btn{
    display:block;
    margin:0 15px 20px;
    padding:12px;
    text-align:center;
    text-decoration:none;
    background:#0073aa;
    color:#fff !important;
    border-radius:6px;
    transition:.3s;
}

.pdf-download-btn:hover{
    background:#005f8d;
}

@media (max-width:768px){

    .pdf-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .pdf-card img{
        height:250px;
    }
}

@media (max-width:480px){

    .pdf-grid{
        grid-template-columns:1fr;
    }

    .pdf-card img{
        height:300px;
    }
}




.product-pdf-card{
    width:200px;
    text-align: left !important;
}

.product-pdf-card img{
    width:100%;
    height:200px;
    object-fit:cover;
    border:1px solid #ddd;
    border-radius:8px;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
    transition:0.3s;
}

.product-pdf-card img:hover{
    transform:translateY(-3px);
}

.product-pdf-card .pdf-download-btn,
.product-pdf-card .button{
    display:block;
    width:100%;
    margin-top:12px;
    padding:10px;
    text-align:center;
    border-radius:6px;
}

.search-result-text{
    font-size:14px;
    color:#777;
    margin-top:10px;
    margin-bottom:20px;
}

.search-result-text strong{
    color:#000;
    font-weight:600;
}
h1.page-title.ast-archive-title {
    font-size: 40px;
}