Help needed styling Payment Installment text with NARRATIVE theme

I am looking to style the payment installment text on my product pages to reflect the overall format of my page. As of now the text is left aligned, is slightly too close to the purchase buttons, and is sized slightly larger than needed. I would simply like to style this text to be center aligned, have a bottom margin of 1 rem, and be sized at 1.4rem with a line-spacing value slightly lower than what it is presently. I have tried a myriad of things in the theme.SCSS file to target this text / markup and cannot seem to break through and style it, or even target the right element for that matter. It looks like it might be styled with an inline element or something? I am looking for help in how to edit my code so I can make these simple format changes to the text. Any help would be greatly appreciated, as of now there seems to be no support for this with the Narrative theme and I am sure I am not the only one encountering this. Image attached for reference.

@styleparadise

yes, please share store url

@styleparadise

sorry i missed your store URL

can you try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss.liquid->paste below code at the bottom of the file.
.shopify-installments {
    margin-bottom: 1rem !important;
    text-align: center !important;
    font-size: 1.4rem !important;
}