.blog-two-col{
    display: flex;
    gap: 20px;
}
.blog-three-col{
    display: flex;
    gap: 20px; 
}
.blog-two-col .blog-box{
    width: 50%;
    margin-bottom: 40px;
    overflow: hidden;
}
.blog-three-col .blog-box{
    width: 33.3333%;
    margin-bottom: 40px;
}
.blog-box .blog-img{
    max-width: 100%;
    max-height: auto;
    margin-bottom: 16px;
}
 .blog-box .blog-img img{
  width: 100%;
  height: 100%;
}
.blog-list-section .container{
    padding-top: 20px;
}
 .blog-box .blog-date span{
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #424141;
    margin-bottom: 8px;
}
 .blog-box .blog-title h2{
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #151515;
    margin-bottom: 8px;
}
.pagination{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.pagination button{
background: transparent;
border: none;
font-style: normal;
font-weight: 600;
font-size: 14px;
line-height: 17px;
text-align: center;
color: #151515;
width: 32px;
height: 32px;
display: flex;
align-items: center;
cursor: pointer;
text-align: center;
justify-content: center;
}
.pagination .active-pagination{
    background: #540C6F;
border-radius: 4px;
color: #fff;
}
@media(max-width:991px){
    .blog-two-col,  .blog-three-col{
  flex-direction: column;
    }
    .blog-two-col .blog-box,    .blog-three-col .blog-box {
        width: 100%;
    }
}
