I’m looking to make both FAQ CTAs on the same line rather than stacked on top of each other so they look like this:
This can be done with the following CSS:
.HitchhikerFaqAccordion-ctasWrapper {
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly
}