/*
 * Styles for the Custom CTA Bricks Element
 */

/* Root element styling */
.brxe-cta-custom {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-left:20px;
  padding-right:20px;
}

/* Heading styling */
.brxe-cta-custom .cta-heading {
  color: var(--color-primary);
  font-family: var(--font-primary);
}

/* Content paragraph styling */
.brxe-cta-custom .cta-content {
  color: var(--color-primary);
}

/* This adds the space above the button */
.brxe-cta-custom .cta-button-wrapper {
  margin-top: 20px;
 display: inline-block;
  padding: 12px 25px;
  background: var(--color-primary);
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

