
/* A photographic band behind the Care Circle header, from HER OWN Care Circle
   artwork (the hidden .cc-hero img): plum vase, coffee mug and knit throw, cropped
   past the phone whose screen text is unreadable small.
   Same recipe as the other pages: source cut to the slot's own 2.88:1 so `cover`
   barely crops, both-edge mask, and NO `overflow:hidden` (a BFC stops the last
   child's bottom margin collapsing and silently adds height). */
#ccxSec .ccx-head{ position:relative; }
#ccxSec .ccx-head > *{ position:relative; z-index:1; }
#ccxSec .ccx-band{
  display:block;
  position:absolute; top:0; right:0; bottom:0;
  width:min(38%,420px);
  background-image:url("assets/img/img-88ccb77b0161.webp");
  background-size:cover;
  background-position:center center;
  z-index:0;
  pointer-events:none;
  -webkit-mask-image:linear-gradient(to right, transparent 0%, rgba(0,0,0,.5) 32%, rgba(0,0,0,.92) 72%, transparent 100%);
  mask-image:linear-gradient(to right, transparent 0%, rgba(0,0,0,.5) 32%, rgba(0,0,0,.92) 72%, transparent 100%);
  opacity:.88;
}
@media (max-width:1100px){ #ccxSec .ccx-band{ width:32%; opacity:.42; } }
@media (max-width:620px){ #ccxSec .ccx-band{ display:none; } }
