/**
 * Article safety styles
 *
 * 記事本文まわりの float 崩れや回り込みを防ぐ保険用スタイル。
 *
 * 内容:
 * - entry-content の flow-root 化
 * - 記事後コンテンツの clear
 * - 前後ナビ・関連記事の回り込み防止
 * ver.1.0.0 2025.07.20
 * ver.1.0.1 2026.04.20 tea-layout.cssより分離
 * tea-layout.css から分離
 */
/*記事レイアウト全体の安全装置*/
.entry-content {
  display: flow-root;
}

.entry-after-content {
  clear: both;
  margin-top: 2rem;
}

.reading-navigation,
.related-articles {
  clear: both;
}