/* Prefer natural word boundaries in headings, with a fallback for long tokens. */
.md-typeset :is(h1, h2, h3) {
  overflow-wrap: break-word;
  word-break: keep-all;
}

/* Preserve diagram label readability without widening the page itself. */
.md-typeset .diagram-scroll-hint {
  display: none;
}

.md-typeset .editorial-diagram-scroll {
  background: #fafafa;
  border: 0.05rem solid var(--md-default-fg-color--lightest);
  border-radius: 0.4rem;
  margin: 0.5rem 0 2rem;
  padding: 0.5rem;
}

.md-typeset .editorial-diagram-scroll:focus-visible {
  outline: 0.15rem solid var(--md-accent-fg-color);
  outline-offset: 0.1rem;
}

.md-typeset .editorial-diagram-scroll img {
  display: block;
  height: auto;
  margin: 0;
  width: 100%;
}

@media screen and (max-width: 44.984375em) {
  .md-typeset .diagram-scroll-hint {
    color: var(--md-default-fg-color--light);
    display: block;
    font-size: 0.75rem;
    margin: 0.5rem 0 0.25rem;
  }

  .md-typeset .editorial-diagram-scroll {
    -webkit-overflow-scrolling: touch;
    margin-inline: -0.4rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 0.4rem 0.4rem 0.65rem;
    scrollbar-gutter: stable;
  }

  .md-typeset .editorial-diagram-scroll img {
    max-width: none;
    min-width: 48rem;
  }
}
