.main-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.layout-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 10px;
}

.content-area {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.content-area {
    flex: 1;
    min-width: 0;
}


@media (max-width: 768px) {
    .main-container {
        padding: 15px 10px;
        max-width: 100%;
    }
    
    .content-area {
        width: 100%;
    }
    
}


/* 顶部标题 */
.page-header {
    text-align: center;
    margin-bottom: 20px;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-description {
    color: var(--text-muted);
}

/* 卡片本体 */
.simple-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.simple-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 缩略图 */
.card-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

/* 卡片内容 */
.card-content {
    padding: 25px;
}

.card-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.card-meta i {
    margin-right: 4px;
    vertical-align: middle;
}

.category a {
    color: var(--text-muted);
}

.category a:hover {
    color: var(--accent);
}

.card-title {
    margin: 0 0 15px 0;
    font-size: 1rem;
    line-height: 1.3;
}

.card-title a {
    color: var(--text-main);
    text-decoration: none;
}

.card-title a:hover {
    color: var(--accent);
}

.card-excerpt {
    color: #5d6d7e;
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* 卡片底部 */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f1f1;
    padding-top: 20px;
    font-size: 0.9rem;
}

.read-more a {
    font-weight: 600;
    color: var(--accent);
}

.footer-right {
    color: var(--text-muted);
}

/* 分页 */
.pagination-simple {
    text-align: center;
    margin-top: 40px;
}

.pagination-simple ol {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination-simple li a {
    padding: 10px 20px;
    background: #fff;
    border-radius: 30px;
    text-decoration: none;
    color: var(--text-main);
    box-shadow: var(--shadow);
    font-size: 0.9rem;
}

.pagination-simple li.current a {
    background: var(--accent);
    color: #fff;
}