.blog-page{
    background:#050505;
    color:#fff;
    min-height:100vh;
}

/* HERO */

.blog-hero{
    height:70vh;
    background:url('https://images.unsplash.com/photo-1499750310107-5fef28a66643?q=80&w=2070') center/cover;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.blog-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.78);
}

.blog-hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    max-width:900px;
    padding:20px;
}

.blog-hero-content span{
    color:#febe00;
    letter-spacing:6px;
    text-transform:uppercase;
    font-size:14px;
}

.blog-hero-content h1{
    font-size:100px;
    margin:20px 0;
    font-family:'Anton',sans-serif;
    line-height:1;
}

.blog-hero-content p{
    font-size:20px;
    line-height:1.8;
    color:#d1d1d1;
}

/* BLOG SECTION */

.blog-section{
    padding:100px 8%;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.blog-card{
    background:#111111;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:28px;
    overflow:hidden;
    transition:0.4s ease;
}

.blog-card:hover{
    transform:translateY(-10px);
    border-color:#febe00;
}

.blog-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.blog-content{
    padding:35px;
}

.blog-content span{
    color:#febe00;
    font-size:12px;
    letter-spacing:4px;
    text-transform:uppercase;
}

.blog-content h3{
    font-size:30px;
    margin:18px 0;
    line-height:1.3;
    font-family:'Bevan',serif;
}

.blog-content p{
    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:25px;
}

.blog-content a{
    display:inline-block;
    padding:14px 30px;
    background:#febe00;
    color:#000;
    border-radius:999px;
    font-weight:700;
    text-decoration:none;
    transition:0.3s ease;
}

.blog-content a:hover{
    transform:scale(1.05);
}

/* MOBILE */

@media(max-width:991px){

    .blog-grid{
        grid-template-columns:1fr;
    }

    .blog-hero-content h1{
        font-size:60px;
    }

    .blog-content h3{
        font-size:24px;
    }

}

@media(max-width:600px){

    .blog-hero{
        height:60vh;
    }

    .blog-hero-content h1{
        font-size:48px;
    }

    .blog-hero-content p{
        font-size:16px;
    }

    .blog-card img{
        height:220px;
    }

    .blog-content{
        padding:25px;
    }

}