/* Your custom styles */
.limitted-text d-block {
    display: inline-block; /* make the span element respect the max-width */
    max-width: 180ch; /* set the maximum width to 25 characters */
    overflow: hidden; /* hide the overflowing text */
    white-space: nowrap; /* prevent the text from wrapping to a new line */
    text-overflow: ellipsis; /* optionally, add an ellipsis to indicate truncation */
}