/* Unfold sets `.formset .select2 { min-width: 240px }` for inline tabular
   formsets. Below the `lg` breakpoint the same row also reserves space for
   the field's data-label, so the 240px minimum no longer fits and the row
   overflows the viewport instead of stacking label above field. */
@media (max-width: 63.9375rem) {
    .formset .select2 {
        min-width: 0;
    }

    .formset td.field-tabular {
        flex-direction: column;
        align-items: stretch;
    }
}
