/* ==========================================================================
   Homepage specific rules
   ========================================================================== */
.homepage__heroCarousel:not(.isEditMode) {
  height: clamp(650px, calc(100vh - ((11vh + 55px) + 64px)), calc(100vh - ((11vh + 55px) + 64px)));
  position: relative;
  /* 100% viewport height - ((search bar height) + main menu height) */
}
@media (max-width: 1009px) {
  .homepage__heroCarousel:not(.isEditMode) {
    height: clamp(360px, calc(100vh - ((11vh + 55px) + 120px)), calc(100vh - ((11vh + 55px) + 120px)));
    /* 100% viewport height - ((search bar height) + main menu height) */
  }
}
@media (max-width: 750px) {
  .mt-stage {
    height: calc(100% - 60px);
  }
  .homepage__heroCarousel:not(.isEditMode) {
    height: clamp(360px, calc(100% - (10vh + 40px)), calc(100% - (10vh + 40px)));
    /* 100% parent height - (search bar height) */
  }
}
