/* Blog layout — two-column with sidebar */
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 32px; max-width: 1300px; margin: 0 auto; }
.blog-post-detail { min-width: 0; }

/* Post meta */
.post-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; flex-wrap: wrap; }
.post-date { background: var(--brand-accent, #22a2c4); color: #fff; padding: 4px 14px; border-radius: 6px; font-size: 13px; font-weight: 600; }
.post-category { background: rgba(255,255,255,0.08); color: var(--text-mid, #9db4c8); padding: 4px 12px; border-radius: 6px; font-size: 13px; }
.post-author { color: var(--text-light, #5e7a90); font-size: 13px; }

/* Post content */
.blog-post-detail h1 { font-size: 28px; color: var(--text-dark, #e8edf2); margin-bottom: 20px; }
.post-featured-img { width: 100%; height: auto; border-radius: 12px; margin-bottom: 24px; }
.post-content { color: var(--text-mid, #9db4c8); line-height: 1.85; font-size: 15px; }
.post-content h2 { font-size: 20px; color: var(--text-dark, #e8edf2); margin: 28px 0 12px; }
.post-content h3 { font-size: 17px; color: var(--text-dark, #e8edf2); margin: 20px 0 10px; }
.post-content p { margin-bottom: 14px; }
.post-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 16px 0; }
.post-content ul, .post-content ol { padding-left: 20px; margin-bottom: 14px; }
.post-content li { margin-bottom: 6px; }
.post-content a { color: var(--brand-accent, #22a2c4); }
.post-content code { background: rgba(34,162,196,0.15); color: var(--brand-accent, #22a2c4); padding: 2px 6px; border-radius: 4px; font-size: 13px; }
.post-content pre { background: #080e17; color: #e2e8f0; padding: 16px; border-radius: 8px; overflow-x: auto; margin: 16px 0; border: 1px solid rgba(255,255,255,0.08); }
.post-content pre code { background: none; padding: 0; color: inherit; }

/* Sidebar */
.blog-sidebar { position: sticky; top: 24px; align-self: start; }
.sidebar-section { background: var(--bg-card, #132031); border-radius: 14px; padding: 20px; box-shadow: 0 1px 4px rgba(0,0,0,.3); margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.06); }
.sidebar-section h3 { font-size: 16px; color: var(--text-dark, #e8edf2); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--brand-accent, #22a2c4); }
.sidebar-list { list-style: none; padding: 0; margin: 0; }
.sidebar-list li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a { color: var(--text-mid, #9db4c8); font-size: 14px; text-decoration: none; transition: color .2s; }
.sidebar-list a:hover { color: var(--brand-accent, #22a2c4); }

/* Blog listing cards */
.blog-listing-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.blog-list-card { display: grid; grid-template-columns: 200px 1fr; gap: 20px; background: var(--bg-card, #132031); border-radius: 14px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,.3); border: 1px solid rgba(255,255,255,0.06); transition: box-shadow .2s; }
.blog-list-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.4); }
.blog-list-card img { width: 100%; height: 100%; object-fit: cover; min-height: 140px; }
.blog-list-card .card-body { padding: 20px; display: flex; flex-direction: column; justify-content: center; }
.blog-list-card h3 { font-size: 18px; color: var(--text-dark, #e8edf2); margin-bottom: 8px; }
.blog-list-card h3 a { color: inherit; text-decoration: none; }
.blog-list-card h3 a:hover { color: var(--brand-accent, #22a2c4); }
.blog-list-card .card-meta { font-size: 12px; color: var(--text-light, #5e7a90); margin-bottom: 8px; }
.blog-list-card .card-excerpt { font-size: 14px; color: var(--text-mid, #9db4c8); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.no-image .blog-list-card { grid-template-columns: 1fr; }

/* Category filter pills */
.category-pills { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.category-pill { padding: 6px 16px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); background: var(--bg-card, #132031); color: var(--text-mid, #9db4c8); font-size: 13px; cursor: pointer; transition: all .2s; text-decoration: none; }
.category-pill:hover, .category-pill.active { background: var(--brand-accent, #22a2c4); color: #fff; border-color: var(--brand-accent, #22a2c4); }

@media (max-width: 1024px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
}
@media (max-width: 600px) {
  .blog-list-card { grid-template-columns: 1fr; }
  .blog-list-card img { height: 180px; }
}
