/* Content Elements */
.post-content { /* Also used by .about-page__content */
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  color: var(--text-main);
  margin-top: 1.8em;
  margin-bottom: 0.8em;
  line-height: 1.3;
  font-weight: 600;
}

.post-content h1 { font-size: 2em; }
.post-content h2 { font-size: 1.7em; }
.post-content h3 { font-size: 1.4em; }
.post-content h4 { font-size: 1.2em; }


.post-content p {
  margin-top: 0;
  margin-bottom: 1.25em;
}

/* Ensure last p in a direct child div/section/article of post-content has no bottom margin */
.post-content div > p:last-child,
.post-content section > p:last-child,
.post-content article > p:last-child {
    margin-bottom: 0;
}

.post-content a {
  color: var(--text-link);
  text-decoration: underline;
  font-weight: 500;
}
.post-content a:hover {
  color: var(--primary-dark);
}

.post-content blockquote {
  margin: 1.25em 0;
  padding: 10px 20px;
  border-left: 4px solid var(--primary-color);
  background-color: var(--bg-secondary);
  color: var(--text-secondary);
  font-style: italic;
}
.post-content blockquote p {
  margin-bottom: 0;
}

.post-content ul,
.post-content ol {
  margin-top: 0;
  margin-bottom: 1.25em;
  padding-left: 25px;
}
.post-content li {
  margin-bottom: 0.4em;
}

.post-content code:not(pre code) { /* Inline code */
  background-color: var(--inline-code-bg);
  color: var(--inline-code-text);
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-size: 0.9em;
  font-family: "SF Mono", "Consolas", "Menlo", "Courier", monospace;
}

.post-content table {
  width: 100%;
  margin-bottom: 1.5em;
  border-collapse: collapse;
  border: 1px solid var(--border-color);
}
.post-content th,
.post-content td {
  border: 1px solid var(--border-color);
  padding: 8px 12px;
  text-align: left;
}
.post-content th {
  background-color: var(--bg-secondary);
  font-weight: 600;
  color: var(--text-main);
}

.post-content img { /* General images within content */
  max-width: 100%;
  height: auto;
  margin: 1.5em auto;
  display: block;
  border-radius: 4px;
}