/*
Theme Name: ManhNews Builder
Author: Manh Nguyen
Version: 3.0
*/

body{
margin:0;
font-family:Arial,sans-serif;
background:#f5f5f5;
}

.container{
width:1200px;
max-width:95%;
margin:auto;
}

.site-header{
background:#111;
padding:15px 0;
color:#fff;
}

.header-layout-left{
display:flex;
align-items:center;
justify-content:space-between;
gap:30px;
}

.header-layout-center{
display:flex;
flex-direction:column;
align-items:center;
gap:20px;
}

.header-layout-right{
display:flex;
align-items:center;
justify-content:space-between;
flex-direction:row-reverse;
gap:30px;
}

.logo img{
max-height:80px;
width:auto;
height:auto;
object-fit:contain;
}

.main-menu ul{
display:flex;
gap:20px;
list-style:none;
padding:0;
margin:0;
flex-wrap:wrap;
}

.main-menu a{
color:#fff;
text-decoration:none;
font-weight:bold;
}

.home-category{
margin:40px 0;
}

.section-title{
border-left:5px solid #0073ff;
padding-left:10px;
margin-bottom:20px;
}

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

.post-item{
background:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.post-item img{
width:100%;
height:200px;
object-fit:cover;
}

.post-item h3{
padding:15px;
font-size:20px;
line-height:1.5;
}

.post-item a{
text-decoration:none;
color:#222;
}

.site-footer{
background:#111;
color:#fff;
text-align:center;
padding:30px 0;
margin-top:50px;
}

@media(max-width:768px){

.header-layout-left,
.header-layout-right{
flex-direction:column;
text-align:center;
}

.main-menu ul{
justify-content:center;
}

}
