.blog{
    padding:60px 0;
    background:#f8faf9;
}

.blog-title{
    text-align:center;
    font-size:36px;
    font-weight:800;
    margin-bottom:40px;
}

.blog-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    height:100%;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.blog-card:hover{
    transform:translateY(-5px);
}

.blog__thumb img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.blog-card h3{
    font-size:18px;
    font-weight:700;
    padding:15px;
    margin:0;
    min-height:70px;
}

.blog-card p{
    padding:0 15px;
    font-size:14px;
    line-height:1.6;
    color:#666;
    min-height:70px;
}

.blog-card a{
    display:block;
    margin:15px;
    padding:10px;
    text-align:center;
    background:#158a4e;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-weight:600;
}

.blog-card a:hover{
    background:#0d6a3a;
}

.page-btn{
    display:inline-block;
    width:40px;
    height:40px;
    line-height:40px;
    border-radius:10px;
    text-decoration:none;
    background:#fff;
    color:#333;
    margin:0 3px;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.page-btn.active{
    background:#158a4e;
    color:#fff;
}