body{
font-family:Arial;
background:#f5f6fa;
margin:0;
}

.container{
max-width:900px;
margin:auto;
padding:50px 20px;
}

.article{
display:flex;
gap:20px;
padding:20px;
background:white;
border-radius:8px;
margin-bottom:20px;
text-decoration:none;
color:black;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.article img{
width:120px;
height:80px;
object-fit:cover;
border-radius:6px;
}

.article:hover{
transform:translateY(-3px);
}

.meta{
font-size:13px;
color:#666;
margin-top:5px;
}