/*
Theme Name: SEO20
Version: 2.0
Author: NewStructure
*/
* {
  margin:0; padding:0; box-sizing:border-box;
}
body{
  font-family:"Microsoft YaHei",sans-serif;
  background:#f7f6f2; color:#333; line-height:1.7;
}
a{ color:#b49a67; text-decoration:none; }
a:hover{ color:#8c7446; }

/* 容器 */
.wrap{
  max-width:1080px; margin:0 auto; padding:0 14px;
}

/* 顶部 */
.top-bar{
  background:#b49a67; color:#fff; padding:22px 0; text-align:center;
}
.top-bar h1{ font-size:22px; font-weight:500; }

/* 导航 */
.nav-list{
  background:#967c52; margin-bottom:20px;
}
.nav-list ul{
  display:flex; justify-content:center; flex-wrap:wrap; list-style:none;
}
.nav-list a{
  color:#fff; padding:12px 18px; display:inline-block;
}

/* 主栏 + 侧边 */
.main-wrap{
  display:flex; gap:20px; margin-bottom:30px;
}
@media(max-width:900px){
  .main-wrap{ flex-direction:column; }
}

/* 主内容 */
.article-box{
  flex:1;
}

/* 文章卡片（竖图布局，和之前完全不同） */
.post-item{
  background:#fff; border-radius:6px; margin-bottom:16px; overflow:hidden;
}
.post-thumb img{
  width:100%; height:220px; object-fit:cover;
}
.post-info{
  padding:16px;
}
.post-title{
  font-size:17px; margin-bottom:8px;
}
.post-meta{
  font-size:12px; color:#888; margin-bottom:10px;
}
.post-desc{
  font-size:14px; color:#555; line-height:1.7;
}

/* 分页 */
.page-nav{
  display:flex; justify-content:center; gap:8px; margin:30px 0;
}
.page-nav a,.page-nav span{
  padding:8px 14px; background:#fff; border:1px solid #eee; border-radius:4px;
}
.page-nav .current{
  background:#b49a67; color:#fff; border-color:#b49a67;
}

/* 猜你喜欢 4列 */
.recommend-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:14px;
}
@media(max-width:768px){
  .recommend-grid{ grid-template-columns:repeat(2,1fr); }
}
.rec-item{
  background:#fff; border-radius:6px; overflow:hidden;
}
.rec-thumb{
  height:120px;
}
.rec-thumb img{
  width:100%; height:100%; object-fit:cover;
}
.rec-title{
  padding:10px; font-size:14px; line-height:1.4;
}

/* 侧边 */
.side-box{
  width:280px;
}
.widget{
  background:#fff; padding:18px; border-radius:6px; margin-bottom:16px;
}
.widget h4{
  font-size:16px; margin-bottom:14px; color:#967c52;
}
.widget ul{
  list-style:none;
}
.widget li{
  padding:7px 0; border-bottom:1px dashed #eee;
}

/* 相关文章文字版 */
.related-posts a{
  display:block; padding:9px 0; border-bottom:1px dashed #eee; font-size:15px;
}

/* 内容页 */
.single-post{
  background:#fff; padding:25px; border-radius:6px;
}
.single-post h1{
  font-size:22px; text-align:center; margin-bottom:20px;
}
.single-content{
  font-size:16px; line-height:1.9;
}

/* 底部 */
.footer{
  background:#fff; padding:30px 0; text-align:center; border-top:1px solid #eee;
  font-size:14px; color:#666; line-height:1.8;
}