/* Minimal typesetting for notes containing mathematical relationships. */
.post-page .markdown-body .thought-note__math,
.post-page .markdown-body .thought-note__equation {
  font-family: Times, "Times New Roman", Georgia, serif;
  font-variant-numeric: lining-nums;
}

.post-page .markdown-body .thought-note__math {
  white-space: nowrap;
}

.post-page .markdown-body .thought-note__math sup,
.post-page .markdown-body .thought-note__equation sup {
  font-size: 0.62em;
}

.post-page .markdown-body .thought-note__equation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.25rem;
  color: var(--heading);
  font-size: 1.28rem;
  letter-spacing: 0.025em;
  line-height: 1.35;
  white-space: nowrap;
}

.post-page .markdown-body .thought-note__equation--pair {
  gap: clamp(2.5rem, 9vw, 6rem);
}

.post-page .markdown-body .thought-note__equation b {
  color: var(--muted);
  font-size: 0.78em;
  font-weight: 400;
}

.post-page .markdown-body .thought-note__section-break {
  width: 4rem;
  height: 1px;
  margin: 3.6rem 0 2rem;
  border: 0;
  background: var(--line);
  opacity: 0.8;
}

@media (max-width: 767px) {
  .post-page .markdown-body .thought-note__equation {
    gap: 0.65rem;
    font-size: 1.05rem;
  }

  .post-page .markdown-body .thought-note__equation--pair {
    gap: 2.25rem;
  }
}
