*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: "Segoe UI", sans-serif;
}

body{
    background:#fff;
    color:#222;
}


.blog-hero{
    height:60vh;
    background:url("images/blog_event.png") center/cover no-repeat;
    position:relative;
}

.blog-hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

.hero-text{
    position:relative;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding-left:8%;
    color:#fff;
}

.hero-text h1{
    font-size:48px;
    margin-bottom:8px;
}

.hero-text p{
    font-size:18px;
}


.blog-grid{
    padding:70px 8%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:45px;

}


.blog-item{
    text-decoration:none;
    color:#222;
}

.blog-item img{
    width:100%;
    height:230px;
    object-fit:cover;
    transition:0.4s ease;
    border-radius:20px;
}

.blog-item:hover img{
    transform:scale(1.04);
}

.blog-category{
    font-size:14px;
    color:#b36a5e;
    margin:15px 0 6px;
    font-weight:600;
}

.blog-item h3{
    font-size:20px;
    line-height:1.4;
}


@media(max-width:768px){
    .blog-hero{
        height:45vh;
    }

    .hero-text h1{
        font-size:32px;
    }

    .blog-item img{
        height:200px;
    }
}
