/* ftm/callout */
.ftm-callout {
  padding: 28px 32px;
  background: var(--ftm-navy);
  color: #fff;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 24px 0;
}
.ftm-callout::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ftm-rainbow);
}
.ftm-callout p {
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
  color: #fff;
}
.ftm-callout__mark {
  font-family: 'Prequel', 'Playfair Display', Georgia, serif;
  font-size: 36px;
  line-height: 0.6;
  color: rgba(255,255,255,0.35);
  display: inline-block;
  margin-right: 8px;
  vertical-align: -6px;
}
