/* ── SINGLE POST — Kvazar (dark) ── */
.post-layout { display: grid; grid-template-columns: 1fr 300px; gap: var(--space-12); align-items: start; }

.post-article__header { margin-bottom: var(--space-8); }
.post-meta { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; margin-bottom: var(--space-5); }
.post-meta__category { font-family: var(--font-mono); font-size: var(--text-xs); padding: 0.2rem 0.75rem; border: 1px solid var(--color-border-gold); border-radius: var(--radius-full); color: var(--color-gold); }
.post-meta__date, .post-meta__read-time { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--color-text-dim); }

.post-article__title { font-family: var(--font-display); font-size: clamp(var(--text-2xl), 4vw, var(--text-5xl)); font-weight: var(--font-weight-bold); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: var(--space-5); }
.post-article__lead { font-size: var(--text-lg); color: var(--color-text-muted); line-height: var(--leading-relaxed); margin-bottom: var(--space-8); }

.post-author { display: flex; align-items: center; gap: var(--space-4); }
.post-author__avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--color-gold), var(--color-azure)); flex-shrink: 0; }
.post-author__name { font-family: var(--font-display); font-weight: var(--font-weight-semi); display: block; }
.post-author__role { font-size: var(--text-sm); color: var(--color-text-muted); }

.post-article__cover { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: var(--space-10); aspect-ratio: 16/8; }
.post-article__cover--1 { background: var(--color-surface-2); }

.post-article__body { font-size: var(--text-lg); line-height: var(--leading-relaxed); color: var(--color-text); }
.post-article__body h2 { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: var(--font-weight-bold); margin-top: var(--space-10); margin-bottom: var(--space-4); line-height: var(--leading-snug); }
.post-article__body p { margin-bottom: var(--space-5); color: var(--color-text-muted); }
.post-article__body code { font-family: var(--font-mono); font-size: 0.9em; background: var(--color-surface); padding: 0.15em 0.4em; border-radius: var(--radius-sm); color: var(--color-gold); }

.post-blockquote {
  border-left: 2px solid var(--color-gold);
  padding: var(--space-5) var(--space-6);
  background: var(--color-surface);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  margin-block: var(--space-8);
}

.post-tags { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-10); }
.post-share { display: flex; align-items: center; gap: var(--space-4); margin-top: var(--space-8); padding-top: var(--space-8); border-top: 1px solid var(--color-border); font-size: var(--text-sm); color: var(--color-text-muted); }
.share-btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--color-border); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: var(--text-xs); transition: all var(--transition-fast); }
.share-btn:hover { border-color: var(--color-gold); color: var(--color-gold); }

.related-posts { margin-top: var(--space-12); }
.related-posts__title { font-family: var(--font-display); font-size: var(--text-xl); font-weight: var(--font-weight-bold); margin-bottom: var(--space-6); }
.related-posts__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
.post-card--sm .post-card__thumb { aspect-ratio: 16/9; }
.post-card--sm .post-card__title { font-size: var(--text-base); }

@media (max-width: 1024px) { .post-layout { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .related-posts__grid { grid-template-columns: 1fr; } }
