/* Homepage package-card alignment override.
   Keeps the three desktop cards visually level and mirrors the approved package-table order:
   offer -> standout action -> title -> price -> summary -> CTA -> tick list. */
.working-home .growth-package-signal {
  margin: 1px 0 7px;
  color: #9270b8;
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.035em;
}

@media (min-width: 761px) {
  .working-home .growth-packages-grid {
    align-items: stretch;
  }

  .working-home .growth-package-column {
    position: relative;
    grid-template-rows: 245px 1fr;
    height: 100%;
  }

  /* Make the three offers read as one left-to-right growth journey. */
  .working-home .growth-package-column:not(:last-child)::after {
    content: '→';
    position: absolute;
    z-index: 4;
    top: 112px;
    right: -24px;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    color: #9270b8;
    background: #f5f3f8;
    border-radius: 50%;
    font-size: 1.55rem;
    font-weight: 600;
    line-height: 1;
    pointer-events: none;
  }

  .working-home .growth-package-card {
    min-height: 245px;
    padding-bottom: 22px;
  }

  .working-home .growth-package-card h3 {
    display: flex;
    min-height: 68px;
    flex-direction: column;
    justify-content: center;
  }

  .working-home .growth-package-price {
    margin-top: 7px;
  }

  /* The CTA stays in the existing markup, but is visually positioned after
     the summary block so all three buttons and tick lists line up. */
  .working-home .growth-package-link {
    position: absolute;
    z-index: 2;
    top: 432px;
    left: 50%;
    width: calc(100% - 44px);
    max-width: 245px;
    margin: 0;
    transform: translateX(-50%);
  }

  .working-home .growth-package-link:hover {
    transform: translateX(-50%) translateY(-1px);
  }

  .working-home .growth-package-detail {
    display: grid;
    grid-template-rows: 165px auto;
    align-content: start;
    padding-top: 20px;
  }

  .working-home .growth-package-detail-heading {
    align-items: flex-start;
    min-height: 165px;
    margin-bottom: 0;
  }

  .working-home .growth-package-detail-heading > div {
    min-width: 0;
  }

  .working-home .growth-package-detail ul {
    align-self: start;
    margin-top: 55px;
  }
}

/* Narrow three-column widths need a little more vertical room for wrapping. */
@media (min-width: 761px) and (max-width: 900px) {
  .working-home .growth-package-column {
    grid-template-rows: 260px 1fr;
  }

  .working-home .growth-package-column:not(:last-child)::after {
    right: -18px;
    width: 20px;
    height: 20px;
    font-size: 1.15rem;
  }

  .working-home .growth-package-card {
    min-height: 260px;
  }

  .working-home .growth-package-card h3 {
    min-height: 82px;
  }

  .working-home .growth-package-detail {
    grid-template-rows: 205px auto;
  }

  .working-home .growth-package-detail-heading {
    min-height: 205px;
  }

  .working-home .growth-package-link {
    top: 487px;
  }
}

/* On mobile the cards stack, so let each card use its natural content height. */
@media (max-width: 760px) {
  .working-home .growth-package-column {
    position: relative;
  }

  .working-home .growth-package-signal {
    margin-top: 2px;
    font-size: 1.45rem;
  }
}
