/* Centered eyebrow + gradient heading + paragraph intro block, reused at
   the top of each homepage section below the hero.
   components/section-intro.html */
.section-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
}

/* Flex column items with align-items: center size to max-content by
   default and won't wrap — force the text blocks (not the pill badge) to
   fill the column so they wrap normally. */
.section-intro__heading,
.section-intro__paragraph {
  width: 100%;
}

.section-intro__heading {
  margin: 1.25rem 0 0;
  font-weight: var(--hp-fw-extrabold);
  font-family: var(--font-family-base);
  font-size: 2.625rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.section-intro__heading-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.section-intro__gradient {
  background: var(--gradient-brand);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.section-intro__paragraph {
  margin: 1.25rem 0 0;
  max-width: 620px;
  font-size: 1.0625rem;
  line-height: 1.625;
  color: var(--hp-text-body);
}

@media (max-width: 576px) {
  .section-intro__heading {
    font-size: 1.75rem;
  }

  .section-intro__heading-icon {
    width: 24px;
    height: 24px;
  }

  .section-intro__paragraph {
    font-size: 0.9375rem;
  }
}
