/*=========================================
    BLOG PAGE
=========================================*/

.blog-page{
    background:#f8fafc;
    padding:70px 0 90px;
}

/*=========================================
    SECTION TITLE
=========================================*/

.section-title{
    text-align:center;
    max-width:750px;
    margin:0 auto 60px;
}

.section-title span{
    display:inline-block;
    padding:8px 18px;
    background:#EAF4FB;
    color:#094C80;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.section-title h2{
    font-size:46px;
    color:#1F2937;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.2;
}

.section-title p{
    color:#64748B;
    font-size:17px;
    line-height:1.8;
}

/*=========================================
    BLOG GRID
=========================================*/

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/*=========================================
    BLOG CARD
=========================================*/

.blog-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    display:flex;
    flex-direction:column;
    height:100%;
}

.blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(9,76,128,.18);
}

/*=========================================
    IMAGE
=========================================*/

.blog-image{
    display:block;
    overflow:hidden;
}

.blog-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.5s;
}

.blog-card:hover .blog-image img{
    transform:scale(1.08);
}

/*=========================================
    CONTENT
=========================================*/

.blog-content{
    padding:28px;
    display:flex;
    flex-direction:column;
    flex:1;
}

/*=========================================
    META
=========================================*/

.blog-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
    gap:10px;
}

.blog-category{
    background:#EAF4FB;
    color:#094C80;
    padding:7px 15px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
}

.blog-date{
    color:#64748B;
    font-size:14px;
}

/*=========================================
    TITLE
=========================================*/

.blog-title{
    font-size:24px;
    margin-bottom:15px;
    line-height:1.4;
}

.blog-title a{
    color:#1F2937;
    text-decoration:none;
    transition:.3s;
}

.blog-title a:hover{
    color:#094C80;
}

/*=========================================
    EXCERPT
=========================================*/

.blog-excerpt{
    color:#64748B;
    line-height:1.8;
    margin-bottom:30px;
    flex:1;
}

/*=========================================
    READ MORE
=========================================*/

.read-more{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#094C80;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.read-more:hover{
    color:#00AEEF;
}

.read-more i{
    transition:.3s;
}

.read-more:hover i{
    transform:translateX(5px);
}

/*=========================================
    PAGINATION
=========================================*/

.blog-pagination{
    margin-top:70px;
}

.blog-pagination ul{
    display:flex;
    justify-content:center;
    gap:12px;
    list-style:none;
    padding:0;
}

.blog-pagination li{
    list-style:none;
}

.blog-pagination a,
.blog-pagination span{
    display:flex;
    justify-content:center;
    align-items:center;
    width:46px;
    height:46px;
    border-radius:12px;
    text-decoration:none;
    background:#fff;
    color:#094C80;
    font-weight:600;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.blog-pagination a:hover{
    background:#094C80;
    color:#fff;
}

.blog-pagination .current{
    background:#094C80;
    color:#fff;
}

/*=========================================
    NO POSTS
=========================================*/

.no-posts{
    grid-column:1/-1;
    text-align:center;
    padding:80px 20px;
    background:#fff;
    border-radius:18px;
}

.no-posts h3{
    color:#1F2937;
    margin-bottom:15px;
}

/*=========================================
    RESPONSIVE
=========================================*/

@media(max-width:992px){

.blog-grid{
    grid-template-columns:repeat(2,1fr);
}

.section-title h2{
    font-size:38px;
}

}

@media(max-width:768px){

.blog-page{
    padding:50px 0 70px;
}

.blog-grid{
    grid-template-columns:1fr;
}

.section-title{
    margin-bottom:40px;
}

.section-title h2{
    font-size:30px;
}

.blog-title{
    font-size:22px;
}

.blog-content{
    padding:22px;
}

.blog-meta{
    flex-direction:column;
    align-items:flex-start;
}

}

@media(max-width:480px){

.blog-image img{
    height:210px;
}

.section-title h2{
    font-size:26px;
}

.blog-pagination ul{
    flex-wrap:wrap;
}

}

.section-title::after{
    content:"";
    width:80px;
    height:4px;
    background:#094C80;
    display:block;
    margin:25px auto 0;
    border-radius:10px;
}