.download-grid, .download-list{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

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

.columns-4{
grid-template-columns:repeat(4,1fr);
}

.download-card{
background:#fff;
border:1px solid #e5e5e5;
transition:.3s;
overflow:hidden;
}

.download-card:hover{
transform:translateY(-5px);
box-shadow:0 15px 30px rgba(0,0,0,.08);
}

.download-thumb img{
width:100%;
height:240px;
object-fit:cover;
display:block;
}

.download-content{
padding:25px;
}

.download-content h3{
font-size:23px;
font-weight:500;
margin:0 0 15px;
}

.download-excerpt{
font-size:14px;
line-height:1.8;
color:#555;
margin-bottom:20px;
}

.download-btn{
display:inline-flex;
align-items:center;
gap:8px;
font-weight:600;
text-decoration:none;
	transition:.3s;
}

.download-btn:hover{
transform:translateX(3px);
}
.download-pagination{
margin-top:50px;
text-align:center;
}

.download-pagination .page-numbers{

display:inline-flex;

justify-content:center;
align-items:center;

width:42px;
height:42px;

margin:0 4px;

border:1px solid #d9d9d9;

text-decoration:none;

transition:.3s;
}

.download-pagination .current{

background:#0f4aa3;
color:#fff;
border-color:#0f4aa3;
}

.download-pagination a:hover{

background:#0f4aa3;
color:#fff;

}
.download-cats{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:30px;
	    justify-content: center;
    margin-top: 30px;
}

.download-cats a{
    padding:10px 18px;
    border:1px solid #ddd;
    border-radius:30px;
    text-decoration:none;
    color:#333;
    transition:.3s;
}

.download-cats a:hover,
.download-cats a.active{
    background:#0d6efd;
    border-color:#0d6efd;
    color:#fff;
}

.download-cats span{
    opacity:.8;
}