/* ============================
   Headings (H2–H6) for WP blocks
   ============================ */

:where(.entry-content, .wp-block-post-content, .single-content) h2,
:where(.entry-content, .wp-block-post-content, .single-content) h3,
:where(.entry-content, .wp-block-post-content, .single-content) h4,
:where(.entry-content, .wp-block-post-content, .single-content) h5,
:where(.entry-content, .wp-block-post-content, .single-content) h6 {
  color: var(--text-main);
  letter-spacing: 0.06em;
  line-height: 1.6;
  font-weight: 600;
  margin: 1.8em 0 0.8em;
}

/* H2 */
:where(.entry-content, .wp-block-post-content, .single-content) h2 {
  font-size: 22px;
  padding: 12px 14px;
  border-left: 4px solid rgba(182,154,119,0.75);
  background: rgba(197,170,134,0.10);
  border-radius: 10px;
}

/* H3 */
:where(.entry-content, .wp-block-post-content, .single-content) h3 {
  font-size: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(182,154,119,0.28);
}

/* H4 */
:where(.entry-content, .wp-block-post-content, .single-content) h4 {
  font-size: 18px;
  position: relative;
  padding-left: 18px;
  margin-top: 1.6em;
}
:where(.entry-content, .wp-block-post-content, .single-content) h4::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(182,154,119,0.75);
  position: absolute;
  left: 0;
  top: 0.62em;
}

/* H5 */
:where(.entry-content, .wp-block-post-content, .single-content) h5 {
  font-size: 16px;
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid rgba(227,216,202,0.95);
  background: rgba(253,251,248,0.85);
  border-radius: 999px;
  letter-spacing: 0.10em;
}

/* H6 */
:where(.entry-content, .wp-block-post-content, .single-content) h6 {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 600;
}

/* 見出し直後の段落 */
:where(.entry-content, .wp-block-post-content, .single-content) h2 + p,
:where(.entry-content, .wp-block-post-content, .single-content) h3 + p,
:where(.entry-content, .wp-block-post-content, .single-content) h4 + p,
:where(.entry-content, .wp-block-post-content, .single-content) h5 + p,
:where(.entry-content, .wp-block-post-content, .single-content) h6 + p {
  margin-top: 0.7em;
}

/* スマホ */
@media (max-width: 959px) {
  :where(.entry-content, .wp-block-post-content, .single-content) h2 { font-size: 20px; }
  :where(.entry-content, .wp-block-post-content, .single-content) h3 { font-size: 18px; }
  :where(.entry-content, .wp-block-post-content, .single-content) h4 { font-size: 17px; }
  :where(.entry-content, .wp-block-post-content, .single-content) h5 { font-size: 15px; }
  :where(.entry-content, .wp-block-post-content, .single-content) h6 { font-size: 14px; }
}
