/* GOLDEN INK — Blog */
.blog-hero { padding: 140px 0 60px; background: var(--surface); border-bottom: 1px solid var(--border); }
.blog-hero__inner { display: flex; justify-content: space-between; align-items: flex-end; max-width: var(--container); margin-inline: auto; padding-inline: var(--container-pad); gap: 2rem; flex-wrap: wrap; }

/* Featured Post */
.featured-post { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: var(--container); margin-inline: auto; padding-inline: var(--container-pad); margin-bottom: 4rem; }
.featured-post__image { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 16/9; }
.featured-post__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease); }
.featured-post:hover .featured-post__image img { transform: scale(1.03); }
.featured-post__content { display: flex; flex-direction: column; justify-content: center; }
.featured-post__cat { display: inline-block; font-size: 11px; color: var(--gold); border: 1px solid var(--gold); padding: 4px 12px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; width: fit-content; }
.featured-post__title { font-family: var(--font-heading); font-size: clamp(var(--text-xl), 3vw, var(--text-3xl)); margin-bottom: 1rem; }
.featured-post__title a { color: var(--white); text-decoration: none; transition: color var(--fast) var(--ease); }
.featured-post__title a:hover { color: var(--gold); }
.featured-post__excerpt { font-size: var(--text-sm); color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
.featured-post__meta { font-size: var(--text-xs); color: var(--muted); display: flex; gap: 1rem; flex-wrap: wrap; }

/* Post Cards Grid */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: var(--container); margin-inline: auto; padding-inline: var(--container-pad); }
.post-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: border-color var(--fast) var(--ease); }
.post-card:hover { border-color: var(--border-hover); }
.post-card__image { aspect-ratio: 16/9; overflow: hidden; }
.post-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease); }
.post-card:hover .post-card__image img { transform: scale(1.03); }
.post-card__body { padding: 1.5rem; }
.post-card__cat { font-size: 10px; color: var(--gold); border: 1px solid var(--border); padding: 3px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.1em; }
.post-card__title { font-family: var(--font-heading); font-size: var(--text-lg); margin: 0.75rem 0 0.5rem; }
.post-card__title a { color: var(--white); text-decoration: none; }
.post-card:hover .post-card__title a { color: var(--gold); }
.post-card__excerpt { font-size: var(--text-xs); color: var(--muted); line-height: 1.6; margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.post-card__meta { font-size: 11px; color: var(--muted); border-top: 1px solid var(--border); padding-top: 0.75rem; display: flex; justify-content: space-between; }
.post-card__read { font-size: var(--text-xs); color: var(--gold); text-decoration: none; }

/* Blog Post Layout */
.post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; max-width: var(--container); margin-inline: auto; padding-inline: var(--container-pad); }
.post-article { min-width: 0; }
.post-article h2 { font-size: var(--text-2xl); margin: 2.5rem 0 1rem; color: var(--white); }
.post-article h3 { font-size: var(--text-xl); margin: 2rem 0 0.75rem; color: var(--white); }
.post-article p { font-size: var(--text-base); color: var(--muted); line-height: 1.9; margin-bottom: 1.25rem; }
.post-article ul, .post-article ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-article li { font-size: var(--text-sm); color: var(--muted); line-height: 1.8; margin-bottom: 0.5rem; }
.post-article blockquote { border-left: 3px solid var(--gold); padding: 1rem 1.5rem; margin: 1.5rem 0; background: var(--surface); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.post-article blockquote p { color: var(--white); font-style: italic; margin: 0; }
.post-article figure { margin: 2rem 0; border-radius: var(--radius-md); overflow: hidden; }
.post-article figure img { width: 100%; display: block; }
.post-article figcaption { font-size: var(--text-xs); color: var(--muted); text-align: center; padding: 0.75rem; background: var(--surface); }

/* Sidebar */
.post-sidebar { position: relative; }
.sidebar-box { position: sticky; top: 100px; }
.sidebar-toc { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.5rem; margin-bottom: 1.5rem; }
.sidebar-toc__title { font-size: var(--text-xs); color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.sidebar-toc a { display: block; font-size: var(--text-xs); color: var(--muted); padding: 6px 0; border-left: 2px solid transparent; padding-left: 12px; text-decoration: none; transition: all var(--fast) var(--ease); }
.sidebar-toc a:hover, .sidebar-toc a.active { color: var(--gold); border-left-color: var(--gold); }
.sidebar-toc a.toc-h3 { padding-left: 24px; font-size: 11px; }
.sidebar-cta { background: var(--surface); border: 1px solid var(--gold); border-radius: var(--radius-md); padding: 1.5rem; text-align: center; margin-bottom: 1.5rem; }
.sidebar-cta h3 { font-size: var(--text-base); margin-bottom: 0.75rem; }
.sidebar-cta p { font-size: var(--text-xs); color: var(--muted); margin-bottom: 1rem; }
.sidebar-author { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.5rem; text-align: center; }
.sidebar-author img { width: 64px; height: 64px; border-radius: 50%; margin-bottom: 0.75rem; object-fit: cover; }
.sidebar-author__name { font-family: var(--font-heading); font-size: var(--text-base); }
.sidebar-author__title { font-size: 11px; color: var(--gold); }
.sidebar-author__bio { font-size: var(--text-xs); color: var(--muted); margin-top: 0.5rem; }

/* Reading Progress */
#reading-progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--gold-dark, #9e7e2e), var(--gold), var(--gold-light, #e8d48b)); z-index: 10000; width: 0; transition: width 100ms linear; box-shadow: 0 0 8px rgba(201,168,76,0.4); }

/* Share Buttons */
.share-bar { display: flex; gap: 0.75rem; padding: 1.5rem 0; border-top: 1px solid var(--border); margin-top: 3rem; }
.share-btn { font-size: var(--text-xs); padding: 8px 16px; border: 1px solid var(--border); border-radius: 100px; color: var(--muted); cursor: pointer; transition: all var(--fast) var(--ease); text-decoration: none; }
.share-btn:hover { border-color: var(--gold); color: var(--gold); }

/* Related Posts */
.related-posts { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.related-posts h2 { font-size: var(--text-2xl); margin-bottom: 2rem; text-align: center; }
.related-posts .blog-grid { padding-inline: 0; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 0.5rem; padding: 3rem 0; }
.pagination a, .pagination span { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: var(--text-sm); color: var(--muted); text-decoration: none; transition: all var(--fast) var(--ease); }
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination .active { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* Responsive */
@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } .post-layout { grid-template-columns: 1fr; } .post-sidebar { display: none; } }
@media (max-width: 768px) { .featured-post { grid-template-columns: 1fr; } .blog-grid { grid-template-columns: 1fr; } .blog-hero__inner { flex-direction: column; } }
