/* Shared return-home control across the site. */
.sst-home-link:is(.sst-footer-home, .back-home) {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  gap: 0;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid #102a5659;
  border-radius: 999px;
  background: transparent;
  color: #112e63;
  font: 600 14px/1.4 Inter, Arial, sans-serif;
  letter-spacing: -.01em;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color .2s, border-color .2s, transform .16s;
}
.sst-home-link .sst-footer-home-icon {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: #c94b0a;
  color: #fff;
}
.sst-home-link .sst-footer-home-icon svg { width: 21px; height: 21px; transition: transform .24s; }
@media (hover: hover) {
  .sst-home-link:is(.sst-footer-home, .back-home):hover { background: #102a560a; border-color: #102a56; text-decoration: none; }
  .sst-home-link:hover svg { transform: translate(2px, -2px); }
}
.sst-home-link:active { transform: scale(.97); }
.sst-home-link:is(.sst-footer-home, .back-home):focus-visible { outline: 3px solid #112e63; outline-offset: 5px; }
@media (max-width: 760px) {
  .auth-navigation { flex-wrap: wrap; padding-bottom: 16px; }
  .auth-navigation .sst-home-link.back-home { margin: 16px 0 0 auto; }
}
@media (prefers-reduced-motion: reduce) {
  .sst-home-link:is(.sst-footer-home, .back-home), .sst-home-link .sst-footer-home-icon svg { transition: none; }
}
