/* Block: cta-banner — scoped */

.ctab {
  text-align: center;
  max-width: 1100px;
  margin-inline: auto;
  padding-block: var(--sp-300);
}

.ctab .eyebrow { color: var(--surface-fg-muted); }

.ctab__heading {
  font-size: var(--fs-900);
  margin-bottom: var(--sp-500);
  margin-top: var(--sp-200);
  max-width: 22ch;
  margin-inline: auto;
}

/* Red bar sits BEHIND the text and overlaps the descender area, giving a
 * branded marker-pen effect. `isolation: isolate` keeps z-index:-1 contained
 * to this element so it doesn't disappear behind the page. */
.ctab__underline {
  position: relative;
  display: inline-block;
  isolation: isolate;
}
.ctab__underline::after {
  content: "";
  position: absolute;
  left: -0.05em;
  right: -0.05em;
  bottom: 0.08em;
  height: 0.18em;
  background: var(--color-red);
  border-radius: 1px;
  z-index: -1;
}

.ctab__ctas { justify-content: center; }
