/* Blog Post Layout - Extracted from inline styles (was duplicated in 30 blog-post files) */
.blog-post-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
@media (max-width: 992px) { .blog-post-layout { grid-template-columns: 1fr; } }
.article-header { margin-bottom: 36px; }
.article-header .category-badge { display: inline-block; padding: 5px 14px; background: var(--primary); color: #fff; font-size: 0.78rem; font-weight: 600; border-radius: var(--radius-full); margin-bottom: 16px; }
.article-header h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 20px; line-height: 1.25; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; padding: 20px 0; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.article-meta .author-info { display: flex; align-items: center; gap: 12px; }
.article-meta .author-avatar-md { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 0.9rem; }
.article-meta .author-name { font-weight: 600; color: var(--gray-800); font-size: 0.95rem; }
.article-meta .author-role { font-size: 0.82rem; color: var(--gray-500); }
.article-meta .meta-item { font-size: 0.88rem; color: var(--gray-500); display: flex; align-items: center; gap: 6px; }
.article-content { font-size: 1.05rem; line-height: 1.85; color: var(--gray-700); }
.article-content h2 { font-size: 1.5rem; margin: 36px 0 16px; padding-bottom: 8px; border-bottom: 2px solid var(--primary-100); }
.article-content h3 { font-size: 1.25rem; margin: 28px 0 12px; color: var(--primary-dark); }
.article-content p { margin-bottom: 18px; color: var(--gray-700); }
.article-content ul, .article-content ol { margin: 16px 0; padding-left: 24px; }
.article-content li { margin-bottom: 8px; list-style: disc; color: var(--gray-700); }
.article-content ol li { list-style: decimal; }
.article-content strong { color: var(--gray-900); }
.article-content blockquote { border-left: 4px solid var(--primary); margin: 24px 0; padding: 16px 24px; background: var(--primary-50); border-radius: 0 var(--radius-md) var(--radius-md) 0; font-style: italic; }
.article-content blockquote p { margin: 0; color: var(--gray-700); }
.article-content .featured-image { width: 100%; height: 320px; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 32px; }
.article-content .featured-image img { width: 100%; height: 100%; object-fit: cover; }
.share-buttons { display: flex; align-items: center; gap: 12px; margin: 32px 0; padding: 20px 0; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.share-buttons span { font-weight: 600; font-size: 0.95rem; color: var(--gray-700); }
.share-btn { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; transition: all var(--transition-base); }
.share-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.share-btn.whatsapp { background: #25D366; }
.share-btn.linkedin { background: #0A66C2; }
.share-btn.twitter { background: #1DA1F2; }
.sidebar { position: sticky; top: 92px; }
.sidebar-widget { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px; }
.sidebar-widget h4 { font-size: 1.05rem; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--primary-100); position: relative; }
.sidebar-widget h4::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 40px; height: 2px; background: var(--primary); }
.search-widget { position: relative; }
.search-widget input { width: 100%; padding: 12px 44px 12px 16px; border: 1px solid var(--gray-200); border-radius: var(--radius-md); font-size: 0.92rem; outline: none; background: var(--gray-50); transition: all var(--transition-fast); }
.search-widget input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-100); }
.search-widget button { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: var(--radius-sm); background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; }
.popular-post { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--gray-100); transition: all var(--transition-fast); }
.popular-post:last-child { border-bottom: none; }
.popular-post:hover { padding-left: 4px; }
.popular-post .post-thumb { width: 64px; height: 64px; border-radius: var(--radius-sm); flex-shrink: 0; overflow: hidden; }
.popular-post .post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.popular-post h5 { font-size: 0.88rem; line-height: 1.4; margin-bottom: 4px; }
.popular-post h5 a:hover { color: var(--primary); }
.popular-post .post-date { font-size: 0.78rem; color: var(--gray-400); }
.category-list a { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--gray-100); font-size: 0.92rem; color: var(--gray-600); transition: all var(--transition-fast); }
.category-list a:last-child { border-bottom: none; }
.category-list a:hover { color: var(--primary); padding-left: 4px; }
.category-list .count { background: var(--gray-100); padding: 2px 10px; border-radius: var(--radius-full); font-size: 0.78rem; font-weight: 600; transition: all var(--transition-fast); }
.category-list a:hover .count { background: var(--primary); color: #fff; }
.sidebar-newsletter input { width: 100%; padding: 11px 14px; border: 1px solid var(--gray-200); border-radius: var(--radius-md); font-size: 0.9rem; margin-bottom: 10px; outline: none; transition: border-color var(--transition-fast); }
.sidebar-newsletter input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-100); }
.sidebar-newsletter .btn { width: 100%; }
.tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.related-posts { padding: var(--section-padding); }
.related-post-card { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); overflow: hidden; transition: all var(--transition-base); }
.related-post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: var(--primary-200); }
.related-post-image { height: 180px; overflow: hidden; }
.related-post-image img { width: 100%; height: 100%; object-fit: cover; }
.related-post-content { padding: 20px; }
.related-post-content .category-sm { display: inline-block; padding: 3px 10px; background: var(--primary-50); color: var(--primary); font-size: 0.75rem; font-weight: 600; border-radius: var(--radius-full); margin-bottom: 10px; }
.related-post-content h4 { font-size: 1rem; margin-bottom: 8px; line-height: 1.4; }
.related-post-content h4 a:hover { color: var(--primary); }
.related-post-content .meta { font-size: 0.8rem; color: var(--gray-400); }
