Callout module adding border to text

hi im trying to add border to the text of the callout module i know i can add padding to the image and also the whole module but i just want to add padding the the text it self not the whole module
ass you can see in this picture im trying to align the text and images under i need to add a border size 50px to right and left side of the text is it possible?

and also i checked there is no option in the module it self that does this so i thought maybe a css code can do it

I think you need to use CSS to add border

.fl-callout-content {
border-left: 5px solid #000;
border-right: 5px solid #000;
padding-left: 5px;

}

thank you so much did exactly what i needed