/**
 * Page Content Styles
 * 页面内容区域样式
 * 
 * @package Milestrong
 * @since 2.0.0
 */

/* 页面内容包装器 */
.page-content-wrapper {
    padding: 80px 0;
    background: #fff;
}

/* 容器 */
.page-content-wrapper .container {
    max-width: 1440px;
    margin: 0 auto;
}

/* 页面内容 */
.page-content {
    width: 100%;
}

/* 文章容器 */
.page-content article {
    margin-bottom: 40px;
}

/* 文章内容 */
.entry-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
}

.entry-content h1 {
    font-size: 36px;
}

.entry-content h2 {
    font-size: 30px;
}

.entry-content h3 {
    font-size: 24px;
}

.entry-content h4 {
    font-size: 20px;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.entry-content li {
    margin-bottom: 10px;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.entry-content a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-content a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.entry-content blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    border-left: 4px solid #667eea;
    background: #f8f9fa;
    font-style: italic;
    color: #5a6c7d;
}

.entry-content code {
    padding: 2px 6px;
    background: #f4f4f4;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.entry-content pre {
    padding: 20px;
    background: #2d2d2d;
    color: #f8f8f2;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

.entry-content pre code {
    padding: 0;
    background: none;
    color: inherit;
}

/* 分页链接 */
.page-links {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e8ecef;
    font-weight: 600;
}

.page-links a {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 5px;
    background: #667eea;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-links a:hover {
    background: #764ba2;
    transform: translateY(-2px);
}

/* 响应式设计 - 平板 */
@media screen and (max-width: 1024px) {
    .page-content-wrapper {
        padding: 60px 0;
    }
    
    .entry-content {
        font-size: 15px;
    }
    
    .entry-content h1 {
        font-size: 32px;
    }
    
    .entry-content h2 {
        font-size: 26px;
    }
    
    .entry-content h3 {
        font-size: 22px;
    }
}

/* 响应式设计 - 手机 */
@media screen and (max-width: 768px) {
    .page-content-wrapper {
        padding: 40px 0;
    }
    
    .page-content-wrapper .container {
        padding: 0 15px;
    }
    
    .entry-content {
        font-size: 14px;
    }
    
    .entry-content h1 {
        font-size: 28px;
    }
    
    .entry-content h2 {
        font-size: 24px;
    }
    
    .entry-content h3 {
        font-size: 20px;
    }
    
    .entry-content h4 {
        font-size: 18px;
    }
    
    .entry-content ul,
    .entry-content ol {
        padding-left: 20px;
    }
    
    .entry-content blockquote {
        padding: 15px 20px;
    }
}

@media screen and (max-width: 480px) {
    .page-content-wrapper {
        padding: 30px 0;
    }
    
    .entry-content h1 {
        font-size: 24px;
    }
    
    .entry-content h2 {
        font-size: 22px;
    }
    
    .entry-content h3 {
        font-size: 18px;
    }
}
