/* Hide the empty front-page title band produced by the base theme. */
body.home .site-main > article > .entry-header {
  display: none !important;
}

/* Break only the hero out of the readable content column; the remaining article stays constrained. */
body.home .entry-content {
  overflow: visible !important;
}

body.home .entry-content > .yks-hero {
  width: 100vw !important;
  max-width: none !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 9;
  margin: 0 0 3.5rem calc(50% - 50vw) !important;
  padding: clamp(4.5rem, 8vw, 8rem) max(1.5rem, calc((100vw - 1120px) / 2)) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background-position: center right !important;
  background-size: cover !important;
}

body.home .entry-content > .yks-hero > * {
  width: min(100%, 650px);
}

@media (max-width: 760px) {
  body.home .entry-content > .yks-hero {
    aspect-ratio: auto;
    min-height: 590px !important;
    margin-bottom: 2.5rem !important;
    padding: 3rem 1.25rem 16rem !important;
    background-position: 67% center !important;
  }
}
