/* ============================
   HERO SECTION
============================ */

.hero-news{
    margin:40px 0;
}

.hero-card{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
}

.hero-image img{
    width:100%;
    height:450px;
    object-fit:cover;
}

.hero-content{
    padding:30px;
}

.hero-content h1{
    font-size:36px;
    margin-bottom:20px;
    line-height:1.3;
}

.hero-content h1 a{
    color:#111;
}

.hero-content h1 a:hover{
    color:#d6002a;
}

.hero-content p{
    color:#666;
    line-height:1.8;
}

/* ============================
   LATEST NEWS
============================ */

.latest-news{
    margin:50px 0;
}

.latest-news h2{
    font-size:32px;
    margin-bottom:25px;
}

.news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.news-card{
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 2px 12px rgba(0,0,0,.08);
    transition:.3s;
}

.news-card:hover{
    transform:translateY(-5px);
}

.news-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.news-card h3{
    font-size:20px;
    padding:15px;
}

.news-card h3 a{
    color:#111;
}

.news-card p{
    padding:0 15px 20px;
    color:#666;
}

/* ============================
   MOBILE
============================ */

@media(max-width:991px){

.hero-card{
    grid-template-columns:1fr;
}

.hero-image img{
    height:300px;
}

.news-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.news-grid{
    grid-template-columns:1fr;
}

.hero-content h1{
    font-size:28px;
}

}