/* Homepage hero: crop top 15% and reduce section height proportionally */
.hero--home__video {
  overflow: hidden;
  height: calc(66.40625vw * 2 / 3 * 0.85);
}

.hero--home__video img {
  width: 66.40625vw;
  height: calc(66.40625vw * 2 / 3);
  max-width: none;
  object-fit: cover;
  object-position: center bottom;
}

@media (max-width: 1024px) {
  .hero--home__video {
    height: calc(100vw * 2 / 3 * 0.85);
  }

  .hero--home__video img {
    width: 100vw;
    height: calc(100vw * 2 / 3);
  }
}

@media (max-width: 992px) {
  .hero--home__video {
    height: calc(100vw * 2 / 3 * 0.85);
  }

  .hero--home__video img {
    width: 100%;
    height: calc(100vw * 2 / 3);
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
  }
}

@media (max-width: 580px) {
  .hero--home__video {
    height: calc(330px * 0.85);
  }

  .hero--home__video img {
    width: auto;
    height: 330px;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
