.luds-footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
  grid-column: 1 / -1;
  justify-self: center;
  align-self: center;
  place-self: center;
  margin: 22px auto 0 !important;
  text-align: center;
  float: none;
  clear: both;
}

.luds-footer-logo__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 8px 14px 8px 10px;
  border: 1px solid rgba(255, 224, 174, .18);
  border-radius: 999px;
  color: #ffe8c7;
  text-decoration: none;
  font: 800 13px/1.1 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: .08em;
  background:
    radial-gradient(circle at 24px 18px, rgba(255, 224, 174, .22), transparent 30px),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  box-shadow: 0 14px 42px rgba(0, 0, 0, .24);
  overflow: hidden;
  transform: translateZ(0);
  margin-inline: auto;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.luds-footer-logo__link::after {
  content: "";
  position: absolute;
  inset: -40% -80%;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,.22), transparent 62%);
  transform: translateX(-42%);
  opacity: .55;
  animation: ludsFooterLogoShine 6.5s ease-in-out infinite;
  pointer-events: none;
}

.luds-footer-logo__link:hover,
.luds-footer-logo__link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 224, 174, .34);
  box-shadow: 0 18px 52px rgba(0, 0, 0, .32);
}

.luds-footer-logo__link:focus-visible {
  outline: 2px solid rgba(255, 224, 174, .72);
  outline-offset: 4px;
}

.luds-footer-logo__icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,.18), 0 8px 22px rgba(0,0,0,.28);
}

.luds-footer-logo__text {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

@keyframes ludsFooterLogoShine {
  0%, 58%, 100% { transform: translateX(-42%); }
  72% { transform: translateX(42%); }
}

@media (prefers-reduced-motion: reduce) {
  .luds-footer-logo__link::after {
    animation: none;
    opacity: .22;
  }
}
