.container{
    max-width:1400px;
    margin:auto;
    padding:0 15px;
}

.hero-grid{
    display:grid;
    grid-template-columns: 44% 30% 26%;
    border-radius:20px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.hero-image{
    position:relative;
}

.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.hero-cat{
    position:absolute;
    left:20px;
    bottom:20px;
    background:#3a2b18;
    color:#fff;
    padding:6px 12px;
    border-radius:8px;
    font-size:13px;
}

.hero-content{
    background:#8d0000;
    color:#fff;
    padding:40px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.hero-content h1{
    font-size:42px;
    line-height:1.3;
    margin-bottom:20px;
}

.hero-content a{
    color:#fff;
    text-decoration:none;
}

.hero-author{
    margin-top:25px;
    font-weight:700;
}

.hero-sidebar{
    background:#fff;
}

.side-post{
    display:flex;
    gap:12px;
    padding:15px;
    border-bottom:1px solid #eee;
}

.side-post img{
    width:90px;
    height:70px;
    object-fit:cover;
    border-radius:8px;
}

.side-content h4{
    font-size:16px;
    margin-bottom:6px;
}

.news-cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:25px;
}

.news-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 25px rgba(0,0,0,.07);
}

.news-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card-body{
    padding:20px;
}

.card-body h3{
    font-size:22px;
    line-height:1.5;
}

@media(max-width:991px){
    .hero-grid{
        grid-template-columns:1fr;
    }

    .news-cards{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:576px){
    .news-cards{
        grid-template-columns:1fr;
    }
}