*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Montserrat,sans-serif;
background:#fff;
color:#222;
}

.container{
max-width:1200px;
margin:auto;
padding:20px;
}

.top-header{
background:#001341;
padding:15px 0;
}

.top-header .container{
display:flex;
align-items:center;
justify-content:space-between;
}

.logo img{
height:60px;
}

nav{
display:flex;
gap:20px;
}

nav a{
color:#fff;
text-decoration:none;
font-weight:600;
}

#featured-news{
margin-top:30px;
margin-bottom:40px;
}

.featured-card{
display:block;
text-decoration:none;
color:#222;
}

.featured-card img{
width:100%;
height:600px;
object-fit:cover;
border-radius:10px;
}

.featured-card h1{
font-size:42px;
line-height:1.1;
margin-top:20px;
}

.featured-card p{
margin-top:15px;
font-size:18px;
color:#666;
}

.news-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-bottom:50px;
}

.news-card{
border:1px solid #eee;
border-radius:8px;
overflow:hidden;
background:#fff;
transition:.3s;
}

.news-card:hover{
transform:translateY(-4px);
}

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

.news-content{
padding:15px;
}

.news-content h3{
font-size:20px;
line-height:1.3;
margin-bottom:10px;
}

.news-content p{
color:#666;
font-size:15px;
}

@media(max-width:900px){

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

.featured-card img{
height:350px;
}

.featured-card h1{
font-size:30px;
}

}

@media(max-width:600px){

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

nav{
display:none;
}

.featured-card img{
height:250px;
}

.featured-card h1{
font-size:24px;
}

}