/* DTV-PAGE06 Correction 03 — strict one-group-per-viewport containment. */
body.home [data-dtv-homepage="ux10"] .dtv-page06-slider__viewport{
  width:100%;
  overflow:hidden;
}

body.home [data-dtv-homepage="ux10"] .dtv-page06-slider__track{
  display:flex;
  width:100%;
  align-items:flex-start;
}

/*
 * A legacy content-aware rule applies min-width:0 to every G4 descendant.
 * Lock the flex basis as well as width/min-width so only one four-card group
 * can occupy the viewport at a time.
 */
body.home [data-dtv-homepage="ux10"] .dtv-page06-slider__track > .dtv-page06-slide{
  box-sizing:border-box;
  flex:0 0 100% !important;
  width:100% !important;
  min-width:100% !important;
  max-width:100% !important;
}

body.home [data-dtv-homepage="ux10"] .dtv-page06-slider--civic .dtv-page06-slide{
  grid-template-columns:repeat(2,minmax(0,1fr));
  grid-template-rows:repeat(2,auto);
}

body.home [data-dtv-homepage="ux10"] .dtv-page06-slider--news .dtv-page06-slide{
  grid-template-columns:repeat(4,minmax(0,1fr));
  grid-template-rows:1fr;
}

@media(max-width:767px){
  body.home [data-dtv-homepage="ux10"] .dtv-page06-slider--civic .dtv-page06-slide{
    grid-template-columns:1fr;
    grid-template-rows:none;
  }

  body.home [data-dtv-homepage="ux10"] .dtv-page06-slider--news .dtv-page06-slide{
    grid-template-columns:repeat(4,78vw);
  }
}

