/* Keep every homepage poster fully visible, regardless of its original ratio. */
#home-carousel {
  background: #121114;
  aspect-ratio: 16 / 9 !important;
}

#home-carousel .home-slide {
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #121114;
}

#home-carousel .home-slide::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: -24px;
  background: var(--poster-background) center / cover no-repeat;
  filter: blur(18px) brightness(.62);
  opacity: .75;
}

#home-carousel .home-slide img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  position: relative;
  z-index: 1;
}
