/* 段落・見出し・リスト内の“インライン”画像に適用（ブロック画像<figure>は対象外） */
.the-content p > img,
.wp-block-paragraph img,
.wp-block-heading img,
.wp-block-list li img {
    display: inline-block;
    height: 1.6em; /* 文字サイズの1.6倍 */
    width: auto !important; /* 幅は自動（アスペクト比維持） */
    vertical-align: middle;
}

:where(.the-content) :where(p, h1, h2, h3, h4, h5, h6, li) img {
    display: inline-block;
    height: 1.6em; /* 文字サイズの1.6倍 */
    width: auto !important; /* アスペクト比維持 */
    vertical-align: middle;
}

/* 念のため、ブロック画像系は除外（figure内の画像は対象外） */
figure.wp-block-image img,
figure.wp-block-gallery img,
figure.wp-block-media-text img {
    height: auto;
    width: auto;
    vertical-align: baseline;
}
