.post-view {
  padding-top: 4rem;
  padding-bottom: 8rem;
  max-width: 720px;
  margin: 0 auto;
}

.reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--gradient-primary);
  width: 0%;
  z-index: 2000;
  transition: width 0.1s ease-out;
}

.post-header {
  margin-bottom: 3rem;
}

.category-capsule {
  display: inline-block;
  background: var(--bg-200);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--primary-100);
  letter-spacing: 1px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
}

.post-title {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -1px;
}

.post-author-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-dp {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  color: var(--text-100);
}

.post-date-read {
  font-size: 0.85rem;
  color: var(--text-300);
  display: flex;
  gap: 0.5rem;
}

/* Body Content */
.post-body {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-200);
}

.post-body img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 2.5rem 0;
}

.post-body p {
  margin-bottom: 1.75rem;
}

.post-body h2 {
  font-size: 2rem;
  margin: 3rem 0 1.5rem;
}

.post-body h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.post-body blockquote {
  border-left: 4px solid var(--primary-100);
  padding: 1.5rem 2rem;
  background: var(--bg-200);
  border-radius: 0 12px 12px 0;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-100);
}

/* Syntax Highlighting overrides */
.highlight {
  background: #161B22 !important;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 0.95rem;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: auto;
}

/* Image 2 specific footer nav */
.post-footer {
  margin-top: 5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 3rem;
}
