/* Red Border — the standard Brentwood section border: a solid edge in the
   brand red (palette colour 1). Enabled per-section via the Kadence Column's
   "Red Border" toggle (see bw-redborder-editor.js + bw-redborder.php).

   Defaults match the agreed standard: right side, 4px, solid, palette colour 1.
   Per-section overrides arrive as CSS vars on the inner wrapper:
     --bw-rb-width  = border thickness (default 4px)
     --bw-rb-color  = border colour    (default --global-palette1) */

.bw-redborder {
	border-style: solid;
	border-color: var( --bw-rb-color, var( --global-palette1, #c8272c ) );
	/* No border by default; the per-side rule below switches the chosen edge on. */
	border-width: 0;
}

.bw-redborder--right  { border-right-width:  var( --bw-rb-width, 4px ); }
.bw-redborder--left   { border-left-width:   var( --bw-rb-width, 4px ); }
.bw-redborder--top    { border-top-width:    var( --bw-rb-width, 4px ); }
.bw-redborder--bottom { border-bottom-width: var( --bw-rb-width, 4px ); }
.bw-redborder--all    { border-width:        var( --bw-rb-width, 4px ); }
