/**
 * AI摘要区域样式 - 与图片风格一致
 */

/* AI摘要容器 */
.ai-summary-container {
    background-color: #f8fafc;
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 15px;
    border: 1px solid #eaeff4;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.ai-summary-container:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* AI摘要图标和标题 */
.ai-summary-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 600;
    color: #7c8aaa;
    font-size: 14px;
}

.ai-summary-header i {
    margin-right: 6px;
    font-size: 16px;
    color: #7c8aaa;
}

/* AI摘要内容 */
.ai-summary-content {
    color: #8e9aac;
    line-height: 1.6;
    font-size: 14px;
    text-align: justify;
}

/* 暗黑模式适配 */
[data-theme="dark"] .ai-summary-container {
    background-color: #2d3748;
    border-color: #4a5568;
}

[data-theme="dark"] .ai-summary-header {
    color: #a0aec0;
}

[data-theme="dark"] .ai-summary-content {
    color: #a0aec0;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .ai-summary-container {
        padding: 12px 15px;
    }
    
    .ai-summary-header {
        font-size: 13px;
    }
    
    .ai-summary-content {
        font-size: 13px;
    }
}

/* 保留旧的类名以兼容 */
.post-summary {
    background-color: #f8fafc;
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 15px;
    border: 1px solid #eaeff4;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.post-summary:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.summary-icon {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 600;
    color: #7c8aaa;
    font-size: 14px;
}

.summary-icon i {
    margin-right: 6px;
    font-size: 16px;
    color: #7c8aaa;
}

.summary-content {
    color: #8e9aac;
    line-height: 1.6;
    font-size: 14px;
    text-align: justify;
} 