/* Brentwood Row Style — one-click Shadow + Border Radius toggles for the
   Kadence Row Layout (kadence/rowlayout), so authors don't set the geeky
   Box Shadow / Border Radius (+ Overflow Hidden) controls by hand.

   The two toggles are independent: a row can have Shadow only (0 radius),
   Radius only, or both.

   Values mirror the agreed Brentwood standard:
     - Shadow: 0 2px 4px rgba(0,0,0,.08)   (#000 @ 8% opacity, blur 4, y-offset 2)
     - Radius: 8px on all corners, with overflow hidden so inner columns/images
       are clipped to the rounded corners (Kadence's "Overflow Hidden").

   Both the editor canvas and the front-end save markup put the row's outer
   wrapper class .kb-row-layout-wrap on the SAME element our toggle classes land
   on, so these direct selectors work in both contexts (one file, no separate
   editor stylesheet needed). */

.bw-row-shadow {
	box-shadow: 0 2px 4px rgba( 0, 0, 0, 0.08 );
}

.bw-row-radius {
	border-radius: 8px;
	overflow: hidden;
}
