/**
 * Sitewide footer exit banner — full-width linked band back to homepage.
 */

.site-footer-exit-banner {
  width: 100%;
  margin: 0;
  padding: clamp(0.65rem, 1.6vw, 1rem) clamp(0.5rem, 2vw, 1.25rem) clamp(0.85rem, 2vw, 1.35rem);
  box-sizing: border-box;
  background: #05070c;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer-exit-banner__link,
.site-footer-exit-banner__link:is(:link, :visited, :hover, :focus, :focus-visible, :active) {
  display: block;
  width: min(100%, 1280px);
  margin-inline: auto;
  text-decoration: none !important;
  border-radius: 6px;
  overflow: hidden;
  outline: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.site-footer-exit-banner__link:hover,
.site-footer-exit-banner__link:focus-visible {
  opacity: 0.94;
  transform: translateY(-1px);
}

.site-footer-exit-banner__link:focus-visible {
  outline: 2px solid rgba(56, 189, 248, 0.55);
  outline-offset: 3px;
}

.site-footer-exit-banner__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
}

@media (prefers-reduced-motion: reduce) {
  .site-footer-exit-banner__link {
    transition: none;
  }

  .site-footer-exit-banner__link:hover,
  .site-footer-exit-banner__link:focus-visible {
    transform: none;
  }
}
