/* ===== shiori.css ===== */

.shiori-legend-section { background: var(--paper); padding: 32px 0; }
.shiori-grid-section   { background: var(--bg); }

/* 記事本文の組版 */
.shiori-single-body {
  font-size: 14px;
  line-height: 2.5;
  letter-spacing: .04em;
}
.shiori-single-body h2 {
  font-size: 18px;
  margin: 2.4em 0 .8em;
}
.shiori-single-body p {
  margin-bottom: 1.6em;
}

.shiori-related { background: var(--paper); }

/* カード hover */
.shiori-card {
  transition: opacity .3s ease;
}
.shiori-card:hover { opacity: .75; }

/* ページネーション */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--sub);
}
.nav-links a { color: var(--ink); text-decoration: none; }
.nav-links .current {
  color: var(--ink);
  font-family: var(--serif);
}
