/* =========================
   BLOG PAGE
========================= */

.blog-page{

    padding:80px 0;

    background:#f5f5f5;
}

.blog-header{

    text-align:center;

    margin-bottom:60px;
}

.blog-header h1{

    font-size:48px;

    font-weight:800;

    margin-bottom:15px;
}

.blog-header p{

    color:#666;

    font-size:18px;
}

.blog-grid{

    display:grid;

    grid-template-columns:repeat(3, 1fr);

    gap:30px;
}

.blog-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    transition:0.3s;

    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.blog-card:hover{

    transform:translateY(-8px);
}

.blog-card img{

    width:100%;

    height:250px;

    object-fit:cover;
}

.blog-content{

    padding:25px;
}

.blog-date{

    font-size:14px;

    color:#ff6600;

    font-weight:600;
}

.blog-content h3{

    font-size:24px;

    margin:15px 0;
}

.blog-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:20px;
}

.blog-btn{

    display:inline-block;

    padding:12px 24px;

    background:#ff6600;

    color:#fff;

    border-radius:30px;

    text-decoration:none;

    font-weight:600;
}