/* Homepage recovery shortcut. */
body.page-index .home-recovery-banner {
  background: var(--u4-charcoal);
  color: #fff;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--u4-border);
}
body.page-index .home-recovery-content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
body.page-index .home-recovery-icon {
  flex: 0 0 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--u4-green);
  color: #fff;
  font-size: 1.65rem;
}
body.page-index .home-recovery-copy {
  flex: 1;
}
body.page-index .home-recovery-copy h2 {
  color: #fff;
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
  margin: 0 0 .35rem;
}
body.page-index .home-recovery-copy p {
  color: rgba(255,255,255,.8);
  margin: 0;
  font-size: .95rem;
}
body.page-index .home-recovery-content > .btn {
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  body.page-index .home-recovery-content {
    flex-wrap: wrap;
    gap: 1rem;
  }
  body.page-index .home-recovery-content > .btn {
    width: 100%;
  }
}
