
/* Managed pricing card centring + CTA button repair */
.managed-pricing-grid,
.managed-page-pricing .pricing-grid {
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(260px, 1fr)) !important;
  justify-content: center !important;
  align-items: stretch !important;
}

.managed-page-pricing .pricing-card {
  min-height: 260px !important;
}

/* Public CTA button repair */
.cta-section {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 2rem !important;
}

.cta-section > .btn,
.cta-section .btn.primary,
.cta-section a.btn {
  width: auto !important;
  min-width: 210px !important;
  max-width: 260px !important;
  min-height: 64px !important;
  padding: 1rem 1.6rem !important;
  border-radius: 999px !important;
  white-space: normal !important;
  text-align: center !important;
  line-height: 1.25 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  justify-self: end !important;
}

@media (max-width: 980px) {
  .managed-pricing-grid,
  .managed-page-pricing .pricing-grid {
    grid-template-columns: 1fr !important;
    max-width: 620px !important;
  }

  .cta-section {
    grid-template-columns: 1fr !important;
  }

  .cta-section > .btn,
  .cta-section .btn.primary,
  .cta-section a.btn {
    justify-self: start !important;
    max-width: none !important;
  }
}
