/* SVGs with only a viewBox collapse inside centered, shrink-to-fit image blocks.
 * Give SVG image blocks in Items a containing width; editor-set sizes still win.
 * Shared with the block editor so new images behave like the published page.
 */
.smb-items .wp-block-image:has(img[src$=".svg" i]) {
  display: block;
}

.smb-items .wp-block-image img[src$=".svg" i] {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
}
