/* ============================================================================
 * wysiwyg.css — rich-text container styles
 *
 * Ported verbatim from web/app/themes/maju-agency/resources/css/app.css:82-128.
 * Link this whenever a section renders a `.wysiwyg` block (40 usages across the
 * catalog). Section stylesheets style the container's size/color; this file
 * styles the arbitrary HTML inside it.
 * ========================================================================== */

.wysiwyg > :last-child { margin-bottom: 0; }

.wysiwyg p { margin: 0; }

.wysiwyg--checklist ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wysiwyg--checklist li {
  position: relative;
  min-height: 24px;
  margin: 0;
  padding-left: 32px;
  color: var(--color-heading, #101828);
  font-family: var(--font-sans, ui-sans-serif, system-ui, sans-serif);
  font-size: var(--fs-base, 16px);
  font-weight: 500;
  line-height: 150%;
}

.wysiwyg--checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 9999px;
  background: var(--color-accent-strong, #1570EF);
}

.wysiwyg--checklist li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  transform: rotate(-45deg);
}

.wysiwyg--checklist p { margin: 0; }
