/* /src/styles/custom.css などに置く */
body {
  outline: 4px solid red; /* 表示確認用。すぐ気付く */
}

/* Docsサイドバーのテキスト折り返し */
docs-toc, .docs-toc {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

/* 1300px以上でdocs-tocに幅制約を追加 */
@media (min-width: 1300px) {
  .docs-toc {
    width: 15rem;
  }
}

.pinned-post::before {
  content: "📌 ";
}