/**
 * Quiet typography for LIVE single blog posts (article column only).
 * Hooked at serve time onto body.single-post / main.mt_blog-single.
 * Content measure only - chrome, nav, and lead widgets are untouched.
 * Font: Assistant, already loaded by the theme. No extra webfonts.
 */

.mt_blog-single .entry-content {
  max-width: 65ch;
  color: #1a1a2e;
  font-family: Assistant, sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
}

.mt_blog-single .entry-content p,
.mt_blog-single .entry-content li {
  color: #1a1a2e;
  font-size: 1.125rem;
  line-height: 1.7;
}

.mt_blog-single .entry-content p {
  margin-bottom: 1.5em;
}

.mt_blog-single .entry-title,
.mt_blog-single .entry-content h1,
.mt_blog-single .entry-content h2,
.mt_blog-single .entry-content h3 {
  color: #1a1a2e;
  font-family: Assistant, sans-serif;
  text-wrap: balance;
  letter-spacing: -0.02em;
}

.mt_blog-single .entry-content h2 {
  border-bottom: none;
  padding-bottom: 0;
  scroll-margin-top: 1.2rem;
}

.mt_blog-single .entry-content img,
.mt_blog-single .post-thumbnail img {
  border-radius: 10px;
}

.mt_blog-single .entry-content a:not(.more-link):not(.vt_btn):not(.wp-block-button__link) {
  color: #1a1a2e;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-thickness: 1px;
  border-bottom: none;
}

.mt_blog-single .entry-content a:not(.more-link):not(.vt_btn):not(.wp-block-button__link):hover {
  color: #111118;
  border-bottom: none;
}

/**
 * Sidebar TOC for long single posts (4+ H2s), injected at serve time as #mt-blog-toc.
 * Sits under the lead form in aside#secondary. Title and hero stay clean.
 * Quiet Assistant, one column, no numbers. Hidden at max-width 900px.
 * Do not move the form.
 */
#mt-blog-toc {
  margin: 1.35rem 0 0;
  padding: 0;
  color: #3a3a3a;
  font-family: Assistant, sans-serif;
  font-size: 0.82rem;
  line-height: 1.4;
  max-height: calc(100vh - 22rem);
  overflow: auto;
}

#mt-blog-toc .mt-blog-toc-label {
  display: block;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: #3a3a3a;
  margin: 0 0 0.65rem;
}

#mt-blog-toc ol {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
  border-inline-start: 1px solid #d9d9d9;
}

#mt-blog-toc li {
  margin: 0;
  padding-inline-start: 0.85rem;
}

#mt-blog-toc a {
  text-decoration: none;
  color: #3a3a3a;
}

#mt-blog-toc a:hover {
  color: #141414;
  text-decoration: underline;
}

@media (max-width: 900px) {
  #mt-blog-toc {
    display: none;
  }
}
