/* Typography for post content */

.post__content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
}

.post__content h1,
.post__content h2,
.post__content h3,
.post__content h4,
.post__content h5,
.post__content h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.post__content h1 { font-size: 1.75rem; }
.post__content h2 { font-size: 1.5rem; }
.post__content h3 { font-size: 1.25rem; }
.post__content h4 { font-size: 1.1rem; }

.post__content p {
  margin-bottom: 1.25rem;
}

.post__content a {
  color: var(--color-accent);
  text-decoration: underline;
}

.post__content a:hover {
  text-decoration: none;
}

.post__content ul,
.post__content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.75rem;
}

.post__content li {
  margin-bottom: 0.35rem;
}

.post__content blockquote {
  border-left: 4px solid var(--color-border);
  padding-left: 1rem;
  color: var(--color-muted);
  margin: 1.5rem 0;
  font-style: italic;
}

.post__content code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: #f3f4f6;
  padding: 0.15em 0.4em;
  border-radius: 3px;
  color: #d63384;
}

.post__content pre {
  margin: 1.5rem 0;
  border-radius: 6px;
  overflow-x: auto;
}

.post__content pre code {
  background: none;
  padding: 0;
  font-size: 0.875rem;
  color: inherit;
}

.post__content hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 2rem 0;
}

.post__content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.post__content th,
.post__content td {
  border: 1px solid var(--color-border);
  padding: 0.5rem 0.75rem;
  text-align: left;
}

.post__content th {
  background: #f9fafb;
  font-weight: 600;
}

.post__content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 1rem 0;
}
