/*
 * Titanium homepage hero position correction.
 * Keeps the existing visual system and moves the title/action group away
 * from the bottom edge at both desktop and mobile breakpoints.
 */
.teas-page--home .teas-hero__content {
  justify-content: center !important;
  padding-block: 0 !important;
}

@media screen and (min-width: 821px) {
  .teas-page--home .teas-hero__content {
    top: 14px !important;
  }
}

@media screen and (max-width: 820px) {
  .teas-page--home .teas-hero__content {
    top: -14px !important;
  }
}
