Hi,
I’m trying to figure out how to have an accordion initially set at a given width, but when you click on it to show the dropdown it also expands horizontally while it opens
Screenshot below as a visualization of what I’m trying to accomplish:

My hope was I could modify the existing CSS controls to get it to work, something along the lines of…
$el {
width: 40em;
}
$el [aria-expanded*=“true”] {
width: 70em;
}
And while the first part worked (setting the initial size), the second part (getting it to change sizes on click) not so much.
Any help on this would be greatly appreciated!