/* Blog Post Styles */

.post-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.post-back,
.post-play {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.1s;
}

.post-back:hover {
  color: var(--accent-cyan);
}

.post-play {
  color: var(--accent-cyan);
  opacity: 0.7;
}

.post-play:hover {
  opacity: 1;
}

/* Post header */
.post-header {
  margin-bottom: 40px;
}

.post-label {
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.post-title {
  font-family: 'VT323', monospace;
  font-size: 3rem;
  font-weight: 400;
  color: var(--accent-cyan);
  letter-spacing: 2px;
  line-height: 1.1;
}

/* Post body - markdown content */
.post-body {
  max-width: 640px;
  margin-bottom: 80px;
}

.post-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.post-body h2 {
  font-family: 'VT323', monospace;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent-cyan);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}

.post-body h3 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  margin-top: 32px;
  margin-bottom: 12px;
}

.post-body ul,
.post-body ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.post-body li {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.post-body li strong {
  color: var(--accent-cyan);
  font-weight: 500;
}

.post-body a {
  color: var(--accent-cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 255, 204, 0.3);
  transition: border-color 0.1s;
}

.post-body a:hover {
  border-bottom-color: var(--accent-cyan);
}

.post-body code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  background: rgba(0, 255, 204, 0.06);
  color: var(--accent-cyan);
  padding: 2px 6px;
  border-radius: 2px;
}

.post-body pre {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 2px;
  padding: 16px;
  margin-bottom: 20px;
  overflow-x: auto;
}

.post-body pre code {
  background: none;
  padding: 0;
  font-size: 12px;
  color: var(--text-primary);
}

.post-body blockquote {
  border-left: 2px solid var(--accent-cyan);
  padding-left: 16px;
  margin: 20px 0;
  color: var(--text-secondary);
  font-style: italic;
}

.post-body hr {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 40px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .post-title {
    font-size: 2rem;
  }

  .post-nav {
    margin-bottom: 32px;
  }

  .post-body p {
    font-size: 13px;
  }
}
