/* 极简奶油色系主题 */
:root {
    --cream-primary: #f5f0e6;
    --cream-secondary: #f8f4e9;
    --cream-accent: #e3d8c5;
    --text-dark: #333333;
    --text-light: #666666;
    --line-color: rgba(0,0,0,0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: var(--cream-primary);
    color: var(--text-dark);
    line-height: 1.5;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

/* 极简头部 */
header {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--line-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    letter-spacing: 1px;
    font-weight: 400;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.8rem;
}

nav ul li a {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* 主要内容区 */
.main-content {
    padding: 2.5rem 0;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.8rem;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

/* 极简文章列表 */
.article-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.article-card {
    border-bottom: 1px solid var(--line-color);
    padding-bottom: 1.5rem;
}

.article-card:last-child {
    border-bottom: none;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.card-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    gap: 1rem;
}

/* 文章详情 */
.article-detail {
    max-width: 700px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 2.5rem;
}

.article-title {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.article-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.article-content {
    line-height: 1.7;
}

.article-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination a {
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--line-color);
}

/* 友情链接 */
.friend-links {
    margin: 3rem 0;
}

.friend-links-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.friend-links-container a {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--line-color);
}

/* 极简页脚 */
footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--line-color);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* 响应式 */
@media (min-width: 768px) {
    .article-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .article-card {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .card-title {
        font-size: 1.4rem;
    }
}