/* ====================================
BLOG HERO
==================================== */

.blog-hero{
    background:#ffffff;
    border-bottom:1px solid #e5e7eb;
    padding:80px 0;
    text-align:center;
}

.blog-hero .container{
    max-width:1200px;
}

.blog-hero .section-tag{
    display:inline-block;
    background:#214f99;
    color:#fff;
    padding:8px 16px;
    border-radius:6px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.blog-hero h1{
    font-size:56px;
    font-weight:800;
    line-height:1.2;
    color:#111827;
    margin-bottom:20px;
}

.blog-hero p{
    max-width:850px;
    margin:auto;
    color:#667085;
    font-size:18px;
    line-height:1.8;
}

/* ====================================
ARCHIVE
==================================== */

.blog-archive{
    background:#f5f7fa;
    padding:60px 0;
}

.blog-archive .container{
    max-width:1400px;
}

.blog-content{
    width:100%;
}

.blog-archive .container{
    max-width:1400px;
}

.no-posts-found{
    background:#fff;
    padding:60px;
    text-align:center;
    border:1px solid #e5e7eb;
    border-radius:12px;
}

.blog-sidebar{
    display:none;
}

/* ====================================
BLOG GRID
==================================== */

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* ====================================
BLOG CARD
==================================== */

.blog-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    overflow:hidden;

    transition:.3s;

    box-shadow:
    0 5px 15px rgba(0,0,0,.04);
}

.blog-card:hover{
    transform:translateY(-6px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.10);
}

.blog-card a{
    text-decoration:none;
    display:block;
}

.blog-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.blog-card-content{
    padding:25px;
}

.blog-date{
    display:inline-block;
    background:#eef4ff;
    color:#214f99;

    padding:6px 12px;

    border-radius:4px;

    font-size:12px;
    font-weight:700;

    margin-bottom:15px;
}

.blog-card h3{
    font-size:22px;
    color:#111827;
    line-height:1.4;
    margin-bottom:15px;
    min-height:92px;
}

.blog-card p{
    color:#667085;
    line-height:1.8;
    margin-bottom:20px;
    min-height:95px;
}

.blog-link,
.read-more{
    color:#214f99;
    font-weight:700;
    font-size:15px;
}

/* ====================================
FEATURED POST
==================================== */

.featured-post{
    background:#fff;
    border:1px solid #e5e7eb;

    border-radius:12px;

    overflow:hidden;

    margin-bottom:40px;
}

.featured-post-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
}

.featured-post img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.featured-post-content{
    padding:50px;
}

.featured-post-content h2{
    font-size:38px;
    line-height:1.3;
    color:#111827;
    margin-bottom:20px;
}

.featured-post-content p{
    color:#667085;
    line-height:1.8;
    margin-bottom:25px;
}

/* ====================================
PAGINATION
==================================== */

.archive-pagination{
    text-align:center;
    margin-top:50px;
}

.page-numbers{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:48px;
    height:48px;

    margin:0 4px;

    background:#fff;

    border:1px solid #dbe2ea;

    text-decoration:none;

    color:#111827;

    border-radius:6px;

    transition:.3s;
}

.page-numbers:hover{
    background:#214f99;
    color:#fff;
}

.page-numbers.current{
    background:#214f99;
    color:#fff;
}

/* ====================================
RESPONSIVE
==================================== */

@media(max-width:1200px){

    .blog-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .blog-hero{
        padding:60px 0;
    }

    .blog-hero h1{
        font-size:36px;
    }

    .blog-grid{
        grid-template-columns:1fr;
    }

    .blog-card h3{
        min-height:auto;
        font-size:20px;
    }

    .blog-card p{
        min-height:auto;
    }

    .featured-post-grid{
        grid-template-columns:1fr;
    }

}