/* 介護実務ノート サイトCSS（トップ・一覧・記事・固定ページ）
   2026年9月22日採用のデザイン「ジムチョーの事務室」（design/README.md の案3）。
   紺の帯のヘッダーと生成りの紙色。記事は2人の相談シーンで始まり、手順とつまずきに挿し絵の吹き出し、締めの対話はまとめのノート。
   見出しは黄色のマーカー線と挿し絵のアイコン。見出しだけ Zen Kaku Gothic New。
   色・書体の変数は tools/_shared/base.css と同じ値にする。本文の骨組み（sec・cutin 等）は build/decorate.pl が作る */
:root {
  --kjn-bg: #f6f0e6;
  --kjn-surface: #fffdf8;
  --kjn-bg-sub: #ece4d6;
  --kjn-text: #2b2723;
  --kjn-text-sub: #6b6259;
  --kjn-line: #ddd3c3;
  --kjn-ink: #2a1f1a;
  --kjn-accent: #1e3a5f;
  --kjn-accent-weak: #e4eaf2;
  --kjn-mina: #e3f0fb;
  --kjn-amount: #c2410c;
  --kjn-mark: #f7d55c;
  --kjn-font: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --kjn-font-head: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Sans", Meiryo, sans-serif;
  --kjn-radius: 14px;
  --kjn-shadow: 0 3px 12px rgba(74, 52, 26, .08);
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--kjn-font); color: var(--kjn-text); background: var(--kjn-bg); line-height: 1.95; font-size: 16px; }
a { color: var(--kjn-accent); }
.container { max-width: 840px; margin: 0 auto; padding: 0 16px; }
h1, h2, h3, .site-header__brand, .home-section__title, .archive__title, .tool-box__name { font-family: var(--kjn-font-head); }

/* ヘッダー。紺の帯 */
.site-header { background: var(--kjn-accent); color: #fff; }
.site-header__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 24px; padding: 12px 16px; }
.site-header__brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.3rem; color: #fff; text-decoration: none; letter-spacing: .03em; }
.brand__icon { width: 36px; height: auto; }
.site-nav ul { display: flex; flex-wrap: wrap; gap: 2px 16px; list-style: none; margin: 0; padding: 0; font-size: .9rem; }
.site-nav a { color: rgba(255, 255, 255, .82); text-decoration: none; padding: 4px 2px; border-bottom: 3px solid transparent; }
.site-nav a:hover, .site-nav a.is-current { color: #fff; border-bottom-color: var(--kjn-mark); }
.preview-banner { background: #fde047; color: #1a1a1a; font-size: .85rem; text-align: center; padding: 6px 12px; }

/* トップの写真（site.json の hero_image）。ヘッダー直下に横いっぱいの帯、文字は写真の上のカード。狭い画面では写真の下にカードを重ねる */
/* 写真は職員の顔が真ん中にあるので、広い画面では写真を 120% 幅にして右へ流し（顔が右寄りになる）、カードは左端に細めに置いて顔と重ねない */
.hero-band { position: relative; height: clamp(400px, 43vw, 540px); background: var(--kjn-accent); overflow: hidden; }
.hero-band__photo { position: absolute; left: 0; top: 0; width: 120%; max-width: none; height: 100%; object-fit: cover; object-position: 0 25%; }
.hero-band__inner { position: absolute; inset: 0; display: flex; align-items: center; }
.hero-band__card { max-width: 400px; background: rgba(255, 253, 248, .94); border-radius: 18px; padding: 22px 26px; box-shadow: 0 6px 24px rgba(42, 31, 26, .18); }
.hero-band__card .hero__title { font-size: 1.6rem; margin: 0 0 10px; }
.hero-band__card .hero__lead { font-size: .93rem; margin: 0 0 16px; }
@media (max-width: 800px) {
  .hero-band { height: auto; background: transparent; overflow: visible; }
  .hero-band__photo { position: static; display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-position: 60% 42%; }
  .hero-band__inner { position: static; display: block; }
  .hero-band__card { max-width: none; position: relative; margin: -36px 0 0; }
  .hero-band__card .hero__title { font-size: 1.7rem; }
}
/* 写真が無いときのヒーロー。本文幅の中に文字と2人の絵 */
.hero { padding: 36px 0 28px; border-bottom: 2px dashed var(--kjn-line); }
.hero--kv { display: flex; align-items: center; gap: 28px; }
.hero__text { flex: 1 1 auto; min-width: 0; }
.hero__chars { flex: 0 0 auto; display: flex; align-items: flex-end; gap: 14px; margin: 0; }
.hero__char { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.hero__char img { width: 132px; height: 132px; object-fit: cover; object-position: top; border-radius: 22px; border: 2px solid var(--kjn-ink); background: #fff; display: block; }
.hero__char-name { font-size: .78rem; font-weight: 700; color: var(--kjn-accent); }
.hero__title { font-size: 1.85rem; line-height: 1.35; margin: 0 0 12px; color: var(--kjn-accent); }
.hero__lead { margin: 0 0 20px; color: var(--kjn-text-sub); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; }
.home-section { padding: 30px 0 8px; }
.home-section__title { font-size: 1.25rem; margin: 0 0 14px; display: inline-block; background: linear-gradient(transparent 62%, var(--kjn-mark) 62%); padding: 0 6px; }
.home-section__lead { margin: -6px 0 14px; color: var(--kjn-text-sub); font-size: .95rem; }
.home-section__more { margin: 12px 0 0; font-size: .9rem; }
/* 記事の登場人物（トップ） */
.people { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 14px; }
.person { display: flex; gap: 14px; align-items: flex-start; background: var(--kjn-surface); border: 2px solid var(--kjn-line); border-radius: var(--kjn-radius); padding: 14px 16px; }
.person__img { flex: 0 0 auto; width: 84px; height: 84px; border-radius: 16px; object-fit: cover; object-position: top; border: 2px solid var(--kjn-ink); background: #fff; }
.person__text { min-width: 0; }
.person__name { margin: 0 0 2px; font-weight: 700; font-family: var(--kjn-font-head); color: var(--kjn-accent); font-size: 1.05rem; }
.person__label { margin: 0 0 8px; font-size: .78rem; font-weight: 700; color: var(--kjn-accent); }
.person__label::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--kjn-mark); margin-right: 6px; vertical-align: 1px; }
.person__profile { margin: 0 0 8px; font-size: .9rem; line-height: 1.75; }
.person__desc { margin: 0; font-size: .88rem; color: var(--kjn-text-sub); line-height: 1.7; }

/* カード */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 14px; }
.card { position: relative; border: 2px solid var(--kjn-line); border-radius: var(--kjn-radius); padding: 16px 18px; background: var(--kjn-surface); }
/* リンク付きのカードは全体が押せる（見出しのリンクをカード全体に広げる）。カーソルを置くと浮き上がる */
.card--link .card__title a::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.card--link { cursor: pointer; transition: border-color .15s, box-shadow .15s, transform .15s; }
.card--link:hover { border-color: var(--kjn-accent); box-shadow: var(--kjn-shadow); transform: translateY(-2px); }
.card--link:hover .card__title a { text-decoration: underline; }
.card--link:focus-within { border-color: var(--kjn-accent); }
.card--icon { display: grid; grid-template-columns: 60px 1fr; column-gap: 14px; }
.card__icon { grid-row: 1 / span 4; width: 60px; height: 60px; object-fit: contain; padding: 6px 4px; background: var(--kjn-bg-sub); border-radius: 50%; align-self: start; }
.card__title { font-size: 1rem; margin: 0 0 6px; line-height: 1.45; }
.card__title a { text-decoration: none; }
.card__title a:hover { text-decoration: underline; }
.card__desc { font-size: .88rem; color: var(--kjn-text-sub); margin: 0; }
.card__count, .card__soon { font-size: .82rem; color: var(--kjn-text-sub); margin: 8px 0 0; }
.card--planned { background: var(--kjn-bg-sub); border-style: dashed; }
.card--planned .card__title { color: var(--kjn-text-sub); }
.card--planned .card__icon { background: var(--kjn-surface); opacity: .6; }

/* ボタン */
.btn { display: inline-block; background: var(--kjn-accent); color: #fff; text-decoration: none; padding: 10px 22px; border-radius: 999px; font-size: .95rem; font-weight: 700; }
.btn:hover { opacity: .9; }
.btn--ghost { background: var(--kjn-surface); color: var(--kjn-accent); border: 2px solid var(--kjn-accent); }

/* 一覧 */
.crumbs { font-size: .82rem; color: var(--kjn-text-sub); margin: 14px 0 6px; }
.crumbs a { color: var(--kjn-text-sub); }
.archive { padding: 4px 0 30px; }
.archive__head { margin: 6px 0 18px; }
.archive__head--kv { display: flex; align-items: center; gap: 20px; }
.archive__head-text { flex: 1 1 auto; min-width: 0; }
.archive__kv { flex: 0 0 150px; margin: 0; }
.archive__kv img { width: 100%; height: auto; display: block; }
.archive__title { font-size: 1.6rem; margin: 0 0 6px; line-height: 1.35; }
.archive__desc { color: var(--kjn-text-sub); margin: 0 0 4px; }
.archive__count { font-size: .85rem; color: var(--kjn-text-sub); margin: 0; }
.archive__note { font-size: .85rem; color: var(--kjn-text-sub); margin: 18px 0 0; }
.post-list { list-style: none; margin: 0; padding: 0; }
.post-list__item { padding: 14px 0; border-bottom: 2px dashed var(--kjn-line); }
.post-list__title { font-weight: 500; text-decoration: none; line-height: 1.5; }
.post-list__title:hover { text-decoration: underline; }
.post-list__meta { font-size: .82rem; color: var(--kjn-text-sub); margin: 4px 0; }
.post-list__cat { display: inline-block; background: var(--kjn-accent); color: #fff; padding: 0 10px; border-radius: 999px; margin-right: 8px; }
.post-list__excerpt { font-size: .9rem; color: var(--kjn-text-sub); margin: 0; }
.empty { color: var(--kjn-text-sub); }

/* 記事 */
.post { padding: 4px 0 40px; }
.post__head { margin: 6px 0 20px; padding-bottom: 14px; border-bottom: 2px dashed var(--kjn-line); }
.post__cat { font-size: .85rem; margin: 0 0 8px; }
.post__cat a { display: inline-block; background: var(--kjn-accent); color: #fff; padding: 1px 12px; border-radius: 999px; text-decoration: none; }
.post__title { font-size: 1.7rem; line-height: 1.45; margin: 0 0 8px; color: var(--kjn-accent); }
.post__meta { font-size: .85rem; color: var(--kjn-text-sub); margin: 0; }
.draft-flag { display: inline-block; background: #fde047; font-size: .82rem; padding: 2px 8px; margin: 8px 0 0; }
.toc { background: var(--kjn-surface); border: 2px solid var(--kjn-line); border-radius: var(--kjn-radius); padding: 14px 20px; margin: 0 0 26px; font-size: .92rem; }
.toc__title { margin: 0 0 6px; font-weight: 700; }
.toc ol { margin: 0; padding-left: 1.4em; }
.toc a { text-decoration: none; }
.toc a:hover { text-decoration: underline; }

/* 章見出し。文字の下に黄色いマーカー線、左にアイコン */
.post__body h2 { font-size: 1.35rem; line-height: 1.5; margin: 2.8em 0 1.1em; padding: 0; display: flex; align-items: center; gap: 12px; color: var(--kjn-ink); }
.sec:first-child h2 { margin-top: .6em; }
.h2__icon { flex: 0 0 auto; width: 44px; height: 33px; }
.h2__text { background: linear-gradient(transparent 62%, var(--kjn-mark) 62%); padding: 0 6px; }
.post__body h3 { font-size: 1.1rem; margin: 1.8em 0 .6em; padding-left: 14px; border-left: 5px solid var(--kjn-accent); line-height: 1.4; }
.post__body h4 { font-size: 1rem; margin: 1.4em 0 .5em; }
.post__body p { margin: 0 0 1.3em; }
.post__body ul, .post__body ol { margin: 0 0 1.3em; padding-left: 1.5em; }
.post__body li { margin: .3em 0; }
.post__body blockquote { margin: 0 0 1.3em; padding: 12px 18px; background: var(--kjn-surface); border: 2px solid var(--kjn-line); border-left: 6px solid var(--kjn-amount); border-radius: 10px; font-variant-numeric: tabular-nums; }
.post__body blockquote p { margin: 0; }
.post__body code { background: var(--kjn-bg-sub); padding: 1px 5px; border-radius: 4px; font-size: .92em; }
.table-wrap { margin: 0 0 1.5em; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-wrap table { border-collapse: separate; border-spacing: 0; width: 100%; font-size: .92rem; line-height: 1.6; font-variant-numeric: tabular-nums; background: var(--kjn-surface); border: 2px solid var(--kjn-line); border-radius: 12px; overflow: hidden; }
.table-wrap th, .table-wrap td { border: 0; border-bottom: 1px solid var(--kjn-line); padding: 9px 12px; vertical-align: top; text-align: left; }
.table-wrap tbody tr:last-child td { border-bottom: 0; }
.table-wrap thead th { background: var(--kjn-accent); color: #fff; font-weight: 500; white-space: nowrap; }
.table-wrap tbody tr:nth-child(even) td { background: #f9f4ea; }
.post__disclaimer { font-size: .82rem; color: var(--kjn-text-sub); border-top: 1px solid var(--kjn-line); padding-top: 12px; margin: 28px 0 0; }

/* 挿し絵の吹き出し（build/decorate.pl の cutin）。手順はジムチョーがホワイトボードを、つまずきはミナが注意の書類を見せる。人物は対話と同じ側 */
.cutin { display: flex; align-items: flex-start; gap: 10px; margin: 0 0 1.5em; }
.cutin--a { flex-direction: row-reverse; }
.cutin__who { flex: 0 0 auto; width: 104px; display: flex; flex-direction: column; align-items: center; }
.cutin__char { width: 96px; height: 96px; border-radius: 18px; object-fit: cover; object-position: top; border: 2px solid var(--kjn-ink); background: #fff; display: block; }
.cutin__name { font-size: .72rem; line-height: 1.2; font-weight: 700; color: var(--kjn-text-sub); margin-top: 5px; white-space: nowrap; }
.cutin__bubble { position: relative; display: block; background: #fff; border: 2px solid var(--kjn-ink); border-radius: 16px; padding: 10px 14px; }
.cutin__pic { display: block; width: 220px; max-width: 100%; height: auto; }
.cutin__bubble::before, .cutin__bubble::after { content: ""; position: absolute; top: 26px; width: 0; height: 0; border: 9px solid transparent; }
.cutin--q .cutin__bubble::before { left: -20px; border-right-color: var(--kjn-ink); }
.cutin--q .cutin__bubble::after { left: -16px; border-right-color: #fff; }
.cutin--a .cutin__bubble::before { right: -20px; border-left-color: var(--kjn-ink); }
.cutin--a .cutin__bubble::after { right: -16px; border-left-color: #fff; }
.cutin--solo { justify-content: center; }

/* 章の種類ごとの見せ方 */
.post__body ul.pitfalls { list-style: none; padding: 0; display: grid; gap: 10px; }
.post__body ul.pitfalls li { margin: 0; background: var(--kjn-surface); border: 2px solid var(--kjn-line); border-radius: 10px; padding: 10px 16px 10px 44px; position: relative; }
.post__body ul.pitfalls li::before { content: ""; position: absolute; left: 14px; top: 16px; width: 16px; height: 16px; background: var(--kjn-mark); transform: rotate(-6deg); box-shadow: 1px 1px 0 var(--kjn-line); }
.post__body ul.pitfalls ul { margin-top: .4em; }
.post__body ul.sources { font-size: .88rem; background: var(--kjn-bg-sub); border-radius: 10px; padding: 14px 16px 14px 34px; }
.post__body ul.sources li { margin: .35em 0; }
.post__body ul.sources a { color: var(--kjn-text-sub); }

/* 関連ツール・案件・関連記事 */
.tool-box { border: 2px solid var(--kjn-accent); border-radius: var(--kjn-radius); padding: 16px 18px; margin: 28px 0 0; background: var(--kjn-surface); }
.tool-box__label { font-size: .8rem; color: var(--kjn-accent); font-weight: 700; margin: 0 0 4px; letter-spacing: .05em; }
.tool-box__name { font-size: 1.08rem; font-weight: 700; margin: 0 0 4px; }
.tool-box__name a { text-decoration: none; }
.tool-box__desc { font-size: .9rem; color: var(--kjn-text-sub); margin: 0 0 12px; }
.tool-box--planned { border-color: var(--kjn-line); background: var(--kjn-bg-sub); }
.cta { border: 2px solid var(--kjn-line); border-left: 6px solid var(--kjn-amount); border-radius: 10px; padding: 14px 18px; margin: 0 0 1.3em; background: var(--kjn-surface); }
.cta__lead { margin: 0 0 10px; font-weight: 500; }
.cta__btn { display: inline-block; background: var(--kjn-amount); color: #fff; text-decoration: none; padding: 9px 22px; border-radius: 999px; font-weight: 700; }
.cta__note { font-size: .82rem; color: var(--kjn-text-sub); margin: 8px 0 0; }
.cta--empty { background: var(--kjn-bg-sub); font-size: .88rem; }
.related { margin: 28px 0 0; }
.related__title { font-size: 1.05rem; margin: 0 0 8px; }
.related ul { margin: 0; padding-left: 1.3em; }
.related li { margin: 4px 0; }

/* 対話（記事の @ミナ / @ジムチョー の行）。漫画の吹き出しに寄せて輪郭線をつける。ミナは左に水色、ジムチョーは右に紺の薄い色 */
.talk { margin: 0 0 1.6em; }
.talk__line { display: flex; align-items: flex-start; gap: 10px; margin: 0 0 16px; }
.talk__line--a { flex-direction: row-reverse; }
.talk__who { flex: 0 0 auto; width: 66px; display: flex; flex-direction: column; align-items: center; }
.talk__avatar { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; object-position: top; background: #fff; border: 2px solid var(--kjn-ink); display: block; }
.talk__avatar--text { display: flex; align-items: center; justify-content: center; font-size: 1.15rem; font-weight: 700; color: var(--kjn-accent); background: var(--kjn-accent-weak); }
.talk__name { font-size: .68rem; line-height: 1.2; color: var(--kjn-text-sub); font-weight: 700; margin-top: 4px; text-align: center; white-space: nowrap; }
.talk__text { position: relative; flex: 0 1 auto; min-width: 0; max-width: min(82%, 640px); margin: 0; padding: 11px 16px; border-radius: 16px; line-height: 1.8; background: var(--kjn-mina); border: 2px solid var(--kjn-ink); }
.talk__line--a .talk__text { background: var(--kjn-accent-weak); }
.talk__text::before, .talk__text::after { content: ""; position: absolute; top: 18px; width: 0; height: 0; border: 9px solid transparent; }
.talk__line--q .talk__text::before { left: -20px; border-right-color: var(--kjn-ink); }
.talk__line--q .talk__text::after { left: -16px; border-right-color: var(--kjn-mina); }
.talk__line--a .talk__text::before { right: -20px; border-left-color: var(--kjn-ink); }
.talk__line--a .talk__text::after { right: -16px; border-left-color: var(--kjn-accent-weak); }
/* 記事冒頭の相談シーン。胸から上の絵を大きく */
.talk--opening { background: var(--kjn-surface); border: 2px solid var(--kjn-ink); border-radius: 18px; padding: 20px 20px 4px; margin: 0 0 1.8em; box-shadow: var(--kjn-shadow); }
.talk--opening .talk__who { width: 104px; }
.talk--opening .talk__avatar { width: 96px; height: 96px; border-radius: 18px; object-position: top; }
.talk--opening .talk__name { font-size: .78rem; }
.talk--opening .talk__text { font-size: 1.02rem; top: 8px; }
/* 締めの対話はノートの罫線の上に */
.talk--note { position: relative; background: repeating-linear-gradient(var(--kjn-surface) 0 33px, var(--kjn-line) 33px 34px); border: 2px solid var(--kjn-line); border-radius: var(--kjn-radius); padding: 44px 18px 6px; margin: 1.4em 0 1.8em; }
.talk--note::before { content: "まとめ"; position: absolute; left: 16px; top: 10px; font-family: var(--kjn-font-head); font-weight: 700; font-size: .85rem; color: var(--kjn-accent); background: var(--kjn-mark); padding: 0 10px; border-radius: 4px; }
.talk--note::after { content: ""; position: absolute; right: 14px; top: 6px; width: 40px; height: 30px; background: url(/assets/illustrations/notebook.svg) no-repeat center / contain; }
.talk--note .talk__text { background: var(--kjn-surface); }
.talk--note .talk__line--q .talk__text::after { border-right-color: var(--kjn-surface); }
.talk--note .talk__line--a .talk__text::after { border-left-color: var(--kjn-surface); }
@media (max-width: 600px) {
  .talk__line { gap: 8px; margin-bottom: 12px; }
  .talk__who { width: auto; min-width: 48px; }
  .talk__avatar { width: 44px; height: 44px; }
  .talk__text { max-width: calc(100% - 64px); padding: 9px 13px; }
  .talk--opening { padding: 14px 12px 2px; }
  .talk--opening .talk__who { width: 72px; }
  .talk--opening .talk__avatar { width: 66px; height: 66px; border-radius: 14px; }
  .talk--opening .talk__text { font-size: .98rem; max-width: calc(100% - 80px); }
}

/* 登場人物のイラスト（運営者情報。{{character:名前}}） */
.char { margin: 0 0 1.2em; }
.char img { width: 200px; max-width: 45%; height: auto; display: block; border: 2px solid var(--kjn-line); border-radius: var(--kjn-radius); background: #fff; }
.char figcaption { font-size: .85rem; color: var(--kjn-text-sub); margin-top: 4px; }

.form-embed iframe { width: 100%; min-height: 1100px; border: 0; }
.form-embed--empty { background: var(--kjn-bg-sub); padding: 14px; }
mark { background: #fde047; padding: 0 2px; }

/* フッター。ヘッダーと同じ紺 */
.site-footer { margin-top: 34px; padding: 28px 0 34px; font-size: .85rem; color: #c9d3df; background: var(--kjn-accent); }
.site-footer__tagline { margin: 0 0 8px; font-weight: 500; color: #fff; }
.site-footer__note { margin: 0 0 12px; }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 4px 18px; list-style: none; margin: 0 0 12px; padding: 0; }
.site-footer__links a { color: #fff; }
.site-footer__copy { margin: 0; }

@media (max-width: 600px) {
  body { font-size: 15px; }
  .hero { padding: 26px 0 20px; }
  .hero--kv { flex-direction: column; align-items: stretch; gap: 16px; }
  .hero-band__photo { aspect-ratio: 4 / 3; object-position: 62% 45%; }
  .hero-band__card { padding: 18px 18px 16px; margin-top: -28px; }
  .hero-band__card .hero__title { font-size: 1.4rem; }
  .hero__chars { justify-content: center; }
  .hero__char img { width: 104px; height: 104px; border-radius: 18px; }
  .hero__title { font-size: 1.45rem; }
  .post__title { font-size: 1.4rem; }
  .archive__title { font-size: 1.35rem; }
  .archive__head--kv { gap: 12px; }
  .archive__kv { flex-basis: 96px; }
  .post__body h2 { font-size: 1.15rem; gap: 10px; }
  .h2__icon { width: 36px; height: 27px; }
  .cutin { gap: 8px; }
  .cutin__who { width: 72px; }
  .cutin__char { width: 66px; height: 66px; border-radius: 14px; }
  .cutin__pic { width: 170px; }
  .cutin__bubble { padding: 8px 10px; }
  .cutin__bubble::before, .cutin__bubble::after { top: 20px; }
  .site-header__inner { padding: 10px 16px; }
}
@media print {
  .site-header, .site-footer, .toc, .related, .tool-box, .cta, .crumbs, .preview-banner, .cutin, .hero__chars, .hero-band__photo, .archive__kv { display: none !important; }
  .hero-band__inner { position: static; }
  body { font-size: 12pt; background: #fff; }
  a { color: inherit; text-decoration: none; }
}
