/* =========================
   BLOG PAGE
========================= */

.blog-hero{
    height:500px;

    background:
    linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
    url('./images/story.jpg');

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    position:relative;
}

.blog-content{
    position:relative;
    z-index:2;

    max-width:800px;

    padding:20px;
}

.blog-tag{
    color:#d8b16c;

    letter-spacing:4px;

    margin-bottom:20px;

    font-size:14px;
}

.blog-content h1{
    color:white;

    font-size:68px;

    margin-bottom:25px;
}

.blog-content p{
    color:#eee;

    font-size:20px;

    line-height:1.8;
}

/* BLOGS */

.blogs-section{
    padding:100px 8%;

    background:#f7f2ea;
}

.section-title{
    text-align:center;

    font-size:52px;

    margin-bottom:70px;

    color:#111;
}

.blog-grid{
    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:35px;
}

.blog-card{
    background:white;

    border-radius:24px;

    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition:.4s;
}

.blog-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.15);
}

.blog-card img{
    width:100%;
    height:260px;

    object-fit:cover;
}

.blog-card-content{
    padding:30px;
}

.blog-card-content span{
    color:#d8b16c;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;
}

.blog-card-content h3{
    font-size:28px;

    margin:18px 0;

    line-height:1.4;

    color:#111;
}

.blog-card-content p{
    color:#666;

    line-height:1.8;

    margin-bottom:25px;
}

.blog-card-content a{
    color:#111;

    text-decoration:none;

    font-weight:700;

    transition:.3s;
}

.blog-card-content a:hover{
    color:#d8b16c;
}

/* MOBILE */

@media(max-width:768px){

    .blog-content h1{
        font-size:42px;
    }

    .blog-content p{
        font-size:16px;
    }

    .blogs-section{
        padding:70px 20px;
    }

    .section-title{
        font-size:36px;
    }

    .blog-grid{
        grid-template-columns:1fr;
    }

}