How to make description text in the accordion span the full width of the accordion?

To make description text in accordion span fullwidth of accordion, you can edit Accordion Block > Choose Design > Description.

Change Width to 100%

Or you can use this code to Website Tools > Custom CSS.

div.accordion-item__description {
    max-width: 100% !important;
}

image