/* Cross-scope overrides for the Create-campaign wizard modal header. The title/subtitle
   are rendered inside SmModal, so a consuming page's scoped CSS can't reach them — these
   rules live in a global stylesheet keyed off the `campaign-create` class SmModal receives
   via CssClass. */
.campaign-create .sm-modal__title {
    font-size: var(--sm-font-size-2xl);
    font-weight: var(--sm-font-weight-700);
}

.campaign-create .sm-modal__subtitle {
    font-size: var(--sm-font-size-md);
    color: var(--sm-color-content-secondary);
}

/* Single scroll region: the modal body stops scrolling and hands its height
   to the wizard layout, whose content pane is the only scroller (step nav and
   footer stay fixed). */
.campaign-create .sm-modal__body {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
