/**
 * Rich text — generic prose block, optional full-width image band.
 *
 * Structural only: section spacing, a max-width container for the prose,
 * and (when field_image is set) an image band that intentionally breaks out
 * to the full width of the component root rather than staying inside the
 * prose container.
 */
.mk3-sdc--rich-text {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.mk3-sdc--rich-text .mk3-sdc__inner {
  max-width: 50rem; /* comfortable prose measure */
  margin: 0 auto;
  padding-left: clamp(1.25rem, 4vw, 3rem);
  padding-right: clamp(1.25rem, 4vw, 3rem);
}

/* iframes (map embeds) pasted into html_text: keep them from overflowing
   the prose container on narrow viewports without touching their own
   inline styles. */
.mk3-sdc--rich-text .mk3-sdc__inner iframe {
  max-width: 100%;
}

.mk3-sdc__image-band {
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.mk3-sdc__image-band img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .mk3-sdc--rich-text .mk3-sdc__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
