.root {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-16);
}

.label {
    font-family: var(--font-decorative);
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-xxl);
    color: var(--color-text-primary);
}

.singleList {
    display: flex;
    flex-direction: column;
}

.multiList {
    display: flex;
    gap: var(--spacing-12);
}

.multiList > * {
    flex: 1 1 0;
    min-width: 0;
}

/* orientation="vertical": always stack full-width rows at natural height (narrow drawers / many
   options). Container-driven, so it does not depend on the viewport breakpoint below. */
.multiList.vertical {
    flex-direction: column;
}

.multiList.vertical > * {
    flex: 0 0 auto;
}

/* Two-up plans collide at phone widths — stack them full-width instead (horizontal mode only). */
@media screen and (width <= 480px) {
    .multiList:not(.vertical) {
        flex-direction: column;
    }
}
