/*
 * Border radius and border width.
 *
 * Mirrors the Figma "Border radius" and "Border width" variable groups.
 * Both are fixed: they carry the same value in the four responsive modes.
 *
 * The Figma "Border width" group holds `xs` alone, so the maquette binds *radius* variables to the
 * stroke weights it cannot express: `Border radius/ld` (2) on the card and searchbar strokes,
 * `Border radius/sm` (4) on the home page call-out. That is a modelling shortcut in the file, not a
 * rule of the system — the widths below are declared as widths and the stylesheets use them, so a
 * change of radius never changes a stroke. A `Border width/sm` is to be requested from the designer.
 */

:root {
    /* "Border radius/ld" in Figma — kept under its Figma name to stay traceable. */
    --mo-radius-ld: 2px;
    --mo-radius-sm: 4px;
    --mo-radius-md: 8px;
    --mo-radius-lg: 16px;
    --mo-radius-round: 1000px;

    --mo-border-width-xs: 2px;
    /* No Figma counterpart yet; measured on the "dernière visio" call-out (4402:1303). */
    --mo-border-width-sm: 4px;
}
