/*
 * OCFai CSS contract
 * AI_RULE: define only classes matching OCFAI_ALLOWED_PREFIXES in this file.
 * AI_RULE: shared UI patterns must use their canonical component CSS instead of local variants.
 * OCFAI_ROLE: component
 * OCFAI_ALLOWED_PREFIXES: mk-cta-band
 */
/* Component: mk_cta_band */
.mk-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--mk-layout-gap-wide);
}

@media (max-width: 991.98px) {
  .mk-cta-band {
    grid-template-columns: 1fr;
  }
}
