/* Desktop-only hero compaction. Mobile keeps the centered cover composition. */
@media (min-width: 961px) {
  .hero-v2 {
    min-height: 640px;
    padding: 42px 0 44px;
  }

  .hero-v2::before {
    display: none;
  }

  .hero-v2-shell {
    grid-template-areas:
      "meta meta"
      "main dock";
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, .72fr);
    grid-template-rows: auto 1fr;
    gap: 32px 70px;
    min-height: 550px;
  }

  .hero-v2-meta {
    grid-area: meta;
  }

  .hero-v2-main {
    grid-area: main;
    align-self: center;
    justify-items: start;
    width: 100%;
    margin: 24px 0 10px;
    text-align: left;
  }

  .hero-v2-kicker {
    justify-content: flex-start;
    margin-bottom: 20px;
  }

  .hero-v2 h1 {
    max-width: 780px;
    font-size: clamp(3.8rem, 5.25vw, 5.85rem);
    line-height: .9;
    text-wrap: initial;
  }

  .hero-v2 h1 em {
    margin-top: 8px;
  }

  .hero-v2-main > p {
    max-width: 690px;
    margin: 24px 0 0;
  }

  .hero-v2-actions {
    justify-content: flex-start;
    margin-top: 25px;
  }

  .hero-v2-dock {
    grid-area: dock;
    align-self: center;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 390px;
    justify-self: end;
    border-radius: 22px;
  }

  .dock-intro,
  .dock-stat {
    min-height: 74px;
    padding: 14px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.11);
  }

  .dock-intro {
    min-height: 86px;
    padding-left: 22px;
    background: rgba(255,255,255,.035);
  }

  .dock-stat > span {
    min-width: 46px;
    font-size: 22px;
  }

  .dock-arrow {
    min-height: 50px;
  }

  .orbit-one {
    top: auto;
    bottom: -180px;
    left: -160px;
    width: 340px;
    height: 340px;
  }

  .orbit-two {
    top: -120px;
    right: -90px;
    width: 260px;
    height: 260px;
  }

  .suit-spade {
    top: auto;
    bottom: -30px;
    left: 2%;
    font-size: 120px;
  }

  .suit-diamond {
    right: 2%;
    bottom: 8%;
    font-size: 110px;
  }
}

@media (min-width: 1280px) and (max-height: 760px) {
  .hero-v2 {
    min-height: 560px;
    padding-block: 32px;
  }

  .hero-v2-shell {
    min-height: 480px;
  }

  .hero-v2 h1 {
    font-size: clamp(3.6rem, 4.8vw, 5rem);
  }

  .hero-v2-main > p {
    font-size: 1rem;
  }

  .dock-intro,
  .dock-stat {
    min-height: 66px;
  }
}
