
/* Her own kitchen artwork as a soft band behind the My Kitchen header — the
   utensil pot, board and basil, cropped clear of the baked-in wordmark and
   strapline so no text sits behind text.
   HEIGHT IS UNCHANGED (146px): the band is absolutely positioned inside a header
   whose height is set by its own children.
   NO `overflow:hidden` — it would create a block formatting context and stop the
   last child's bottom margin collapsing, which silently adds 6px. */
#mkxSec .mkx-head{ position:relative; }
#mkxSec .mkx-head > *{ position:relative; z-index:1; }
#mkxSec .mkx-band{
  display:block;
  position:absolute; top:0; right:0; bottom:0;
  width:min(38%,420px);
  background-image:url("assets/img/img-7cdfd2b357a0.webp");
  background-size:cover;
  background-position:center 42%;
  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){
  #mkxSec .mkx-band{ width:32%; opacity:.42; }
}
@media (max-width:620px){
  #mkxSec .mkx-band{ display:none; }
}
