.zp-sectionHeader {
  display: grid;
  gap: 16px;
  padding-left: 12px;
  padding-right: 12px;
  margin: 0 0 var(--space-7);
  position: relative;
}

.zp-sectionHeader.is-center {
  justify-items: center;
  text-align: center;
}

.zp-sectionHeader .zp-kicker {
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  color: var(--zp-crimson);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(242, 92, 60, 0.15);
  border: 1px solid rgba(242, 92, 60, 0.3);
}

.zp-sectionHeader .zp-h2 {
  margin: 0;
  color: var(--zp-bone);
  letter-spacing: -0.03em;
}

.zp-sectionHeader__p {
  margin: 0;
  color: var(--zp-muted);
  font-size: 1.08rem;
  max-width: 64ch;
}

.zp-sectionHeader__rule {
  height: 3px;
  width: 80px;
  background: linear-gradient(120deg, rgba(242, 92, 60, 0.95), rgba(247, 165, 69, 0.8));
  margin-top: 12px;
  border-radius: 999px;
}

.zp-sectionHeader.is-center .zp-sectionHeader__rule {
  width: 110px;
}

