/**
 * CTA Callout block — contained, square, flat box in two styles. Self-contained.
 * dark-cta uses the theme's .has-primary-background-color (near-black fill + cream
 * text + auto-inverted button); light-quote uses .has-light-background-color
 * (alabaster) with a 1px primary hairline. Tokens: primary #1B1612, alabaster #F7F5EA.
 */
.jixaw-callout {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 0;
}
.jixaw-callout--quote {
  border: 1px solid #1b1612;
}
/* Collapse the body's first/last margins so the padding controls the box. */
.jixaw-callout__body > :first-child {
  margin-top: 0;
}
.jixaw-callout__body > :last-child {
  margin-bottom: 0;
}
.jixaw-callout .wp-block-button {
  margin-top: 1.5rem;
  margin-bottom: 0;
  /* Button centered with the (centered) body text — the anchor is inline-block,
     so text-align centers it. Scoped to the button wrapper, not the whole box,
     so left-aligned body copy in the quote variant is unaffected. */
  text-align: center;
}
