/* Employer proof points must never inherit the compact homepage process grid. */
@media (min-width: 981px) {
  .hero--home:has(.stat-card) {
    display: block;
    min-height: 650px;
    padding-bottom: 48px;
  }

  .hero--home:has(.stat-card) .hero__copy { max-width: 610px; }

  .hero--home:has(.stat-card) .hero__stack {
    position: absolute;
    top: 210px;
    right: 38px;
    bottom: auto;
    left: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: min(338px, calc(100% - 76px));
    max-width: none;
    gap: 12px;
    margin: 0;
  }

  .hero--home:has(.stat-card) .stat-card {
    min-height: 0;
    padding: 18px 20px;
  }
}

.hero--home:has(.stat-card) .stat-card strong,
.hero--home:has(.stat-card) .stat-card span {
  overflow-wrap: normal;
  word-break: normal;
}

@media (max-width: 980px) {
  .hero--home:has(.stat-card) .hero__stack {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    width: auto;
    max-width: none;
    margin-top: 24px;
  }
}
