/* K's Blocks: generic box layout -------------------------------------- */
/* Simple boxes use the same inner spacing as the basic icon box so a
 * one-line box has the same visual height and rhythm. */
.ks-box[class*="ks-box--simple-"] {
  padding: 1.9em 1.35em;
}

/* Front end: remove only the outer paragraph margins so the box padding is
 * what determines the visible top/bottom whitespace. Internal paragraphs
 * can still keep their normal spacing. */
.ks-box__content > :first-child {
  margin-top: 0 !important;
}

.ks-box__content > :last-child {
  margin-bottom: 0 !important;
}

/* Gutenberg wraps InnerBlocks in editor-only containers. Without this,
 * the theme's paragraph margins can make a one-line box look bottom-heavy. */
.editor-styles-wrapper .ks-box__content > .block-editor-inner-blocks,
.editor-styles-wrapper .ks-box__content > .block-editor-inner-blocks > .block-editor-block-list__layout {
  min-height: 0;
}

.editor-styles-wrapper .ks-box__content > .block-editor-inner-blocks > .block-editor-block-list__layout > :first-child {
  margin-top: 0 !important;
}

.editor-styles-wrapper .ks-box__content > .block-editor-inner-blocks > .block-editor-block-list__layout > :last-child {
  margin-bottom: 0 !important;
}
