
.column__wrapper:where(.astro-U6B6XVAD) {
    width: 120px;
    transition: all .3s ease-in-out
}

.column__wrapper:where(.astro-U6B6XVAD).open {
    width: 480px
}

.column__title:where(.astro-U6B6XVAD) {
    width: 120px;
    transition: width .3s ease-in-out, visibility .3s ease-in-out
}

.column__wrapper:where(.astro-U6B6XVAD).open .column__title:where(.astro-U6B6XVAD) {
    width: 0;
    visibility: hidden
}

.column__content:where(.astro-U6B6XVAD) {
    visibility: hidden;
    width: 0;
    transition: width .3s ease-in-out, visibility .3s ease-in-out;
    overflow: hidden
}

.column__wrapper:where(.astro-U6B6XVAD).open .column__content:where(.astro-U6B6XVAD) {
    visibility: visible;
    width: 480px
}
