

/*------------------------------
    Hero Section
------------------------------*/

.blog-hero-section {
  padding: 120px 0 55px ;
  background: #fff;
}

.blog-page-title {
  font-size: 35px;
  font-weight: 700;
  color: #222;
  margin-bottom: 18px;
  line-height: 1.3;
}

.blog-page-subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 25px;
  color: #666;
}
/*==================================================
                BLOG SECTION
==================================================*/

.blog-section{
    margin-top:-10px;
    background:#fff;
}


/*==================================================
                BLOG CARD
==================================================*/

.blog-card{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:10px;
    overflow:hidden;
    margin-bottom:40px;
    transition:all .3s ease;
    box-shadow:0 2px 8px rgba(44, 43, 43, 0.05);
}

.blog-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}


/*==================================================
                BLOG IMAGE
==================================================*/

.blog-image{
    width:100%;
    height:300px;
    object-fit:fill;
    display:block;
}


/*==================================================
                BLOG CONTENT
==================================================*/

.blog-content{
    padding:22px; 
}

.blog-date{
    color:#777;
    font-size:14px;
    margin-bottom:12px;
}

.blog-date i{
    color:#007bff;
    margin-right:5px;
}

.blog-title{
    font-size:20px;
    font-weight:600;
    color:#222;
    line-height:1.4;
    margin-bottom:15px;
    height: 50px;
}

.blog-description{
    font-size:14px;
    color:#666;
    line-height:23px;
    margin-bottom:20px;
}

.blog-read-btn{
    display:inline-block;
    color:#007bff;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
    font-size: 16px;
}

.blog-read-btn:hover{
    color:#0056b3;
    text-decoration:none;
}

.blog-read-btn i{
    margin-left:5px;
    transition:.3s;
}

.blog-read-btn:hover i{
    margin-left:10px;
}


/*==================================================
                PAGINATION
==================================================*/

.blog-pagination{
    margin-top:-10px;
    margin-bottom:20px;
}

.blog-pagination button{
    width:42px;
    height:42px;
    margin:25px 4px;
    border:none;
    border-radius:5px;
    background:#f1f3f5;
    color:#333;
    font-weight:600;
    transition:.3s;
}

.blog-pagination button:hover{
    background:#007bff;
    color:#fff;
}

.blog-pagination button.active{
    background:#007bff;
    color:#fff;
}

.blog-pagination button:disabled{
    opacity:.5;
    cursor:not-allowed;
}


/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:991px){

.blog-image{
    height:220px;
}

.blog-title{
    font-size:22px;
}

}


@media(max-width:767px){

.blog-card{
    margin-bottom:30px;
}

.blog-image{
    height:210px;
}

.blog-content{
    padding:20px;
}

.blog-title{
    font-size:20px;
}

.blog-description{
    font-size:14px;
    line-height:24px;
}

}


@media(max-width:575px){

.blog-image{
    height:190px;
}

.blog-pagination button{
    width:38px;
    height:38px;
    font-size:14px;
}

}