/*
Theme Name: 我的自定义主题
Theme URI: https://example.com/my-custom-theme
Author: 你的名字
Author URI: https://your-website.com
Description: 这是一个基于 WordPress 的自定义主题，用于展示个人博客或企业网站。
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-theme
Tags: 自定义, 响应式, 博客, 企业
*/

 /* 文章列表样式 */
.blog-posts {
    margin: 2rem 0;
}

.blog-post {
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.post-categories {
    font-size: 0.875rem;
    text-transform: uppercase;
}

.post-categories a {
    color: #666;
    text-decoration: none;
}

.post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.post-title a:hover {
    color: #0073aa;
}

.post-meta {
    display: flex;
    gap: 1rem;
}

.read-more {
    color: #0073aa;
    font-weight: 500;
}

/* 分页样式 */
.nav-links {
    margin: 2rem 0;
    text-align: center;
}

.nav-links a, .nav-links span {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
}

.nav-links .current {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

.nav-links a:hover {
    background: #f5f5f5;
}