Dawn theme collapsible content in 2 columns

Hello everyone! I’m using dawn theme and want to use Collapsible content section. But I wanna make it in 2 columns. I understand that I need to use code for it, but don’t know what code exactly. I tried to put some code

.collapsible-content__grid–reverse {
flex-direction: column-reverse;
}

in custom css only for this section, but new collapsible rows are added not to the second column, but just under others. Maybe someone can help me to make it look like this?

@Ksu10005 For this you need to find the parent div class or id and add

class-name-you-want-to-use {display:grid;place-items:center;grid-gap:2em;gridtemplate-columns:repeat(2, 1fr);}

Hello,

Try inputting the following into the custom css of that section:

.collapsible-content__wrapper {
column-count: 2;
grid-column-gap: 0em;
}

Increasing the “em” will increase the gap between the two columns.