.kc-home-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:3rem;
  max-width:1120px;
  margin:1rem auto 0;
}

.kc-home-cell{
  position:relative;
  aspect-ratio:16/9;
  overflow:hidden;
  background:#e9e9e9;
}

.kc-home-cell img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0 !important;
  transition:opacity 1.2s ease !important;
  will-change:opacity;
}

.kc-home-cell img.active{
  opacity:1 !important;
}

/* Visible image */
.kc-home-cell img.active {
  opacity: 1;
}