/*
 Theme Name:  SimplePro 月光复刻
 Theme URI:   https://williamlong.info
 Description:  复刻Z-Blog SimplePro 月光博客极简风格
 Version:      1.0
 Author:       Custom
 Text Domain:  simplepro-moon
*/

/* 全局重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Microsoft Yahei", SimSun, sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    background: #fff;
}
a {
    color: #222;
    text-decoration: none;
}
a:hover {
    color: #0066cc;
    text-decoration: underline;
}
ul,li {
    list-style: none;
}
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 头部 */
.site-header {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}
.site-title {
    font-size: 28px;
    font-weight: normal;
}
.site-desc {
    color: #666;
    margin-top: 5px;
}

/* 主体布局：主内容 + 侧边栏 */
.main-wrap {
    display: flex;
    gap: 30px;
}
.primary {
    flex: 1;
}
.sidebar {
    width: 260px;
}

/* 文章列表项 */
.post-item {
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
}
.post-title {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: normal;
}
/* 作者/日期/分类 同行（你的核心需求） */
.post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #888;
    font-size: 13px;
    margin-bottom: 12px;
}
.post-meta span::after {
    content: "|";
    margin-left: 12px;
    color: #ccc;
}
.post-meta span:last-child::after {
    display: none;
}
.post-excerpt {
    color: #555;
}

/* 单篇文章页 */
.single-post .post-content {
    margin: 20px 0;
}
.single-post p {
    margin-bottom: 16px;
}

/* 分页 */
.pagination {
    margin: 40px 0;
    text-align: center;
}
.pagination a, .pagination span {
    padding: 6px 12px;
    border: 1px solid #eee;
    margin: 0 3px;
}
.pagination .current {
    background: #f5f5f5;
}

/* 侧边栏组件 */
.widget {
    margin-bottom: 30px;
}
.widget-title {
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
    margin-bottom: 12px;
}
.widget li {
    line-height: 2;
}

/* 页脚 */
.site-footer {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    text-align: center;
    color: #888;
    font-size: 13px;
}

/* 移动端自适应 */
@media (max-width: 768px) {
    .main-wrap {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
    }
    .post-meta {
        flex-wrap: wrap;
    }
}
/* 列表页右上角缩略图 */
.list-thumb {
    float: right; /* 右浮动 */
    margin: 0 0 10px 15px; /* 左下边距，和文字隔开 */
    width: 120px; /* 固定宽度，月光风格 */
    height: 120px;
    overflow: hidden; /* 裁切超出部分 */
}
.list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 不变形，裁切居中 */
    display: block;
}
/* 摘要清除浮动，避免错乱 */
.excerpt {
    overflow: hidden;
    line-height: 1.7;
}