/* =====================================
   Hero Card
===================================== */

.hero-card img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:14px;
    margin-bottom:20px;
}

.hero-card h2{
    font-size:42px;
    line-height:1.15;
    margin:18px 0;
    font-weight:800;
}

.hero-card p{
    font-size:18px;
    line-height:1.8;
    color:#555;
}

/* =====================================
   Category Badge
===================================== */

.news-category{
    display:inline-block;
    background:var(--accent);
    color:#fff;
    padding:6px 12px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    margin-bottom:15px;
}

/* =====================================
   Sidebar Cards
===================================== */

.small-card{
    padding:24px 0;
    border-bottom:1px solid var(--border);
}

.small-card:last-child{
    border-bottom:none;
}

.small-card h4{
    font-size:21px;
    line-height:1.45;
    font-weight:700;
}

.small-card a:hover{
    color:var(--accent);
}