body{
font-family:system-ui;
margin:0;
background:#fafafa;
}

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

.site-header{
background:#111;
padding:16px;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
max-width:1100px;
margin:auto;
}

.logo{
display:flex;
align-items:center;
gap:10px;
text-decoration:none;
color:white;
font-weight:bold;
}

.site-logo{
height:40px;
width:auto;
}

.menu a{
color:white;
margin-left:20px;
text-decoration:none;
}

.hero{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
margin-bottom:40px;
}

.hero-image{
width:100%;
border-radius:8px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:20px;
}

.card{
background:white;
border-radius:8px;
overflow:hidden;
box-shadow:0 2px 6px rgba(0,0,0,0.05);
}

.card-image{
width:100%;
height:200px;
object-fit:cover;
}

.card-content{
padding:16px;
}

.article{
max-width:750px;
margin:auto;
background:white;
padding:30px;
}

.article-image{
width:100%;
margin:20px 0;
border-radius:6px;
}

.meta{
color:#777;
font-size:14px;
}

.tag{
background:#eee;
padding:4px 8px;
margin-right:6px;
border-radius:4px;
font-size:12px;
}

.site-footer{
text-align:center;
padding:40px;
color:#666;
}