/* Blog Styles */
.blog-header { padding: 60px 0 40px; background: linear-gradient(180deg, #f7fafc 0%, #fff 100%); }
.blog-header h1 { font-size: 48px; font-weight: 700; margin-bottom: 16px; color: #1a202c; }
.blog-header p { font-size: 20px; color: #718096; max-width: 600px; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 32px; padding: 60px 0; }

.blog-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; overflow: hidden; transition: all 0.3s ease; text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; background: linear-gradient(135deg, #667eea, #764ba2); display: flex; align-items: center; justify-content: center; font-size: 64px; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-category { display: inline-block; padding: 4px 12px; background: rgba(102,126,234,0.1); color: #667eea; border-radius: 20px; font-size: 12px; font-weight: 600; text-transform: uppercase; margin-bottom: 12px; width: fit-content; }
.blog-card-title { font-size: 22px; font-weight: 700; margin-bottom: 12px; line-height: 1.3; color: #1a202c; }
.blog-card-excerpt { color: #718096; line-height: 1.6; margin-bottom: 16px; flex: 1; }
.blog-card-meta { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #a0aec0; padding-top: 16px; border-top: 1px solid #e2e8f0; }

/* Article Styles */
.article-hero { padding: 80px 0 40px; background: linear-gradient(180deg, #f7fafc 0%, #fff 100%); }
.article-hero h1 { font-size: 44px; font-weight: 700; line-height: 1.2; margin-bottom: 20px; color: #1a202c; max-width: 800px; }
.article-meta { display: flex; gap: 24px; color: #718096; font-size: 15px; margin-bottom: 24px; flex-wrap: wrap; }
.article-meta span { display: flex; align-items: center; gap: 6px; }

.article-content { max-width: 800px; padding: 40px 0 80px; }
.article-content h2 { font-size: 30px; font-weight: 700; margin: 48px 0 20px; color: #1a202c; }
.article-content h3 { font-size: 22px; font-weight: 600; margin: 32px 0 16px; color: #1a202c; }
.article-content p { font-size: 18px; line-height: 1.8; color: #4a5568; margin-bottom: 24px; }
.article-content ul, .article-content ol { margin: 0 0 24px 24px; }
.article-content li { font-size: 18px; line-height: 1.8; color: #4a5568; margin-bottom: 8px; }
.article-content blockquote { border-left: 4px solid #667eea; padding: 16px 24px; background: #f7fafc; margin: 24px 0; border-radius: 0 12px 12px 0; }
.article-content blockquote p { color: #4a5568; font-style: italic; margin-bottom: 0; }
.article-content a { color: #667eea; text-decoration: underline; }
.article-content img { max-width: 100%; border-radius: 12px; margin: 24px 0; }

.article-cta { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); border-radius: 16px; padding: 40px; color: #fff; text-align: center; margin: 48px 0; }
.article-cta h3 { font-size: 28px; margin-bottom: 12px; }
.article-cta p { opacity: 0.9; margin-bottom: 24px; font-size: 18px; }
.article-cta a { display: inline-block; padding: 14px 32px; background: #fff; color: #667eea; border-radius: 12px; font-weight: 600; text-decoration: none; transition: all 0.3s; }
.article-cta a:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }

.related-posts { padding: 60px 0; border-top: 1px solid #e2e8f0; }
.related-posts h2 { font-size: 30px; font-weight: 700; margin-bottom: 32px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

@media (max-width: 768px) {
    .blog-header h1 { font-size: 32px; }
    .blog-grid { grid-template-columns: 1fr; }
    .article-hero h1 { font-size: 30px; }
    .article-content h2 { font-size: 24px; }
    .article-content p, .article-content li { font-size: 16px; }
}
