/* -------------------------------------------------------------------------- */
/* file: wp-content/themes/YOUR_THEME/assets/css/style-cta.css                 */
/* -------------------------------------------------------------------------- */
.nf-cta {
  padding: 3rem 1.5rem; /* mobile first */
}
.nf-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center; /* horizontal center */
  justify-content: center; /* vertical center (within the section’s flow) */
  text-align: center;
  gap: 2rem;
  /* keep it consistent with your inner container approach */
  margin: 0 auto;
  max-width: 44.75rem;
  position: relative;
}
/* Typography hooks (keep light so your global styles can win) */
.top__heading.cta-heading h2 {
  margin: 0;
}
.nf-cta__text {
  margin: 0;
  max-width: 60ch;
}
.nf-cta__button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.nf-cta__button .btn {
	border-color: var(--Primary-Director-Black, #252525);
}
/* Desktop and up */
@media (min-width: 568px) {
  .nf-cta {
    padding: 6rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .nf-section.nf-cta .nf-flourish--a {
    left: -7rem;
    top: 54%;
    transform: translateY(-46%);
  }
  .nf-section.nf-cta .nf-flourish--b {
    right: -4.375rem;
    top: 50%;
    transform: translateY(-50%);
  }
}