/* ─────────────────────────────────────────────────────────────────────────
   c-segmented — a horizontal layout wrapper around gtd_radio_group. The radio
   dot/glow + a11y come from _checks.css; this ONLY re-lays the options into a
   wrapping row. gtd_radio_group emits:
     fieldset.c-field.c-fieldset > legend.c-field__label
       + div.c-field__option > label.c-radio__label > input.c-radio
   Keep the legend on its own line; flow the options horizontally. No inline
   style (strict CSP); no restyling of the radio control itself.
   ───────────────────────────────────────────────────────────────────────── */

.c-segmented .c-fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-3);
}

/* The legend (decision label) keeps its own full-width line above the options. */
.c-segmented .c-field__label {
  flex: 1 0 100%;
}

.c-segmented .c-field__option {
  display: inline-flex;
}
