/*
 * Homepage hero content position adjustment, 2026-07-30.
 *
 * This file intentionally changes only the vertical placement of the
 * homepage hero copy/action group. Existing imagery, typography, colors,
 * horizontal alignment, content and page-specific layouts remain untouched.
 */
.teas-page--home .teas-hero__content {
  justify-content: center !important;
  padding-block: 0 !important;
}

/*
 * Crisp variants use an absolutely positioned translucent backing panel.
 * Keep that panel centred with the copy instead of leaving it at the bottom.
 * On variants without this pseudo-element these declarations are inert.
 */
.teas-page--home .teas-hero__content::after {
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%) !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;
  }
}
