.blog-page { padding: 120px 24px 80px; max-width: 1100px; margin: 0 auto; }
.blog-page h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 12px; }
.blog-page .subtitle { color: #71717a; margin-bottom: 40px; }
.blog-filters { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.blog-filters a { padding: 8px 18px; border-radius: 8px; font-size: 13px; font-weight: 600; color: #a1a1aa; background: #18181b; border: 1px solid #27272a; transition: all 0.2s; }
.blog-filters a:hover, .blog-filters a.active { color: #fff; border-color: #ef4444; background: rgba(220,38,38,0.1); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { border-radius: 16px; background: #18181b; border: 1px solid #27272a; overflow: hidden; transition: all 0.3s; }
.blog-card:hover { border-color: rgba(185,28,28,0.5); transform: translateY(-4px); }
.blog-card > img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 20px; }
.blog-card .cat { display: inline-block; padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 600; color: #f87171; background: rgba(220,38,38,0.1); margin-bottom: 10px; text-transform: uppercase; }
.blog-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card .meta { color: #71717a; font-size: 12px; display: flex; align-items: center; gap: 6px; }
.blog-author { display: inline-flex; align-items: center; gap: 6px; }
.blog-author-img { width: 20px; height: 20px; border-radius: 50%; object-fit: cover; }
.blog-author-placeholder { width: 20px; height: 20px; border-radius: 50%; background: linear-gradient(135deg, #dc2626, #991b1b); display: inline-flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 9px; }
.blog-card-placeholder { width: 100%; height: 200px; background: linear-gradient(135deg, #27272a, #18181b); display: flex; align-items: center; justify-content: center; color: #3f3f46; font-size: 48px; }
.pager { display: flex; justify-content: center; margin-top: 40px; }
.pager .pagination { display: flex; gap: 6px; list-style: none; padding: 0; }
.pager .page-item .page-link { padding: 8px 14px; border-radius: 8px; font-size: 14px; color: #a1a1aa; background: #18181b; border: 1px solid #27272a; text-decoration: none; transition: all 0.2s; }
.pager .page-item .page-link:hover { color: #fff; background: #27272a; border-color: #3f3f46; }
.pager .page-item.active .page-link { color: #fff; border-color: #ef4444; background: rgba(220,38,38,0.15); }
.pager .page-item.disabled .page-link { color: #3f3f46; background: #0f0f0f; }
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } }
