/* Post-only container + spacing */
.single-post .entry-header,
.single-post .entry-content,
.single-post .entry-footer,
.single-post .post-navigation {
  max-width: 780px;
  margin: 0 auto;
  padding: 1.25rem;
}

/* Title styling (bigger & bold) */
.single-post .entry-title {
  margin: 1rem 0 1.5rem;
  line-height: 1.2;
  font-size: 2.6rem;
  font-weight: 800;
}

/* Meta info */
.single-post .entry-meta {
  opacity: .8;
  font-size: .95rem;
  margin-bottom: 1rem;
}

/* Navigation */
.single-post .post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

/* Comfortable, readable body copy */
.single-post .entry-content {
  font-size: 1.125rem;   /* ~18px for easier reading */
  line-height: 1.8;
}

/* Paragraphs */
.single-post .entry-content p {
  margin: 1.1em 0;
}

/* Headings inside content */
.single-post .entry-content h1,
.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4,
.single-post .entry-content h5,
.single-post .entry-content h6 {
  font-weight: 700;
  line-height: 1.35;
  margin: 1.25em 0 0.6em;
}
.single-post .entry-content h1 { font-size: 2rem; }
.single-post .entry-content h2 { font-size: 1.85rem; }
.single-post .entry-content h3 { font-size: 1.6rem; }
.single-post .entry-content h4 { font-size: 1.35rem; }
.single-post .entry-content h5 { font-size: 1.2rem; }
.single-post .entry-content h6 { font-size: 1.05rem; font-weight: 600; }

/* Lists */
.single-post .entry-content ul,
.single-post .entry-content ol {
  margin: 1.1em 0 1.1em 1.5em;
  padding-left: 1em;
}
.single-post .entry-content ul { list-style: disc; }
.single-post .entry-content ol { list-style: decimal; }
.single-post .entry-content li { margin: 0.4em 0; }

/* Blockquotes */
.single-post .entry-content blockquote {
  border-left: 4px solid #e5e7eb;
  margin: 1.25em 0;
  padding: 0.75em 1em;
  color: #374151;
  background: #f9fafb;
}
.single-post .entry-content blockquote p { margin: 0.6em 0; }

/* Media */
.single-post .entry-content img,
.single-post .entry-content figure {
  max-width: 100%;
  height: auto;
}
.single-post .entry-content figure {
  margin: 1.25em 0;
  text-align: center;
}
.single-post .entry-content figcaption {
  font-size: 0.95rem;
  color: #6b7280;
  margin-top: 0.5em;
}

/* Links */
.single-post .entry-content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.single-post .entry-content a:hover {
  text-decoration-thickness: 2px;
}

/* Tables */
.single-post .entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25em 0;
}
.single-post .entry-content th,
.single-post .entry-content td {
  border: 1px solid #e5e7eb;
  padding: 0.6em 0.85em;
  text-align: left;
}
.single-post .entry-content thead th {
  background: #f3f4f6;
}

/* Code blocks */
.single-post .entry-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.98em;
  background: #f3f4f6;
  padding: 0.1em 0.3em;
  border-radius: 4px;
}
.single-post .entry-content pre {
  overflow: auto;
  padding: 1em;
  background: #111827;
  color: #f9fafb;
  border-radius: 8px;
  margin: 1.25em 0;
}
.single-post .entry-content pre code {
  background: transparent;
  padding: 0;
  color: inherit;
}
