.kb-footer {
  display: block;
  width: 100%;
  padding: 4.75rem 1rem 2.75rem;
  background: linear-gradient(180deg, #22110d 0%, #140a07 100%);
}

.kb-footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: min(100% - 2rem, 56rem);
  margin: 0 auto;
  text-align: center;
}

.kb-footer__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.kb-footer__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 1.9rem;
  text-decoration: none;
}

.kb-footer__brand-icon {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-brand-red, #d62300);
  font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.kb-footer__brand-text {
  margin-top: 0.1rem;
  font-family: var(--font-display, 'Titan One', cursive);
  font-size: clamp(1.1rem, 1.05rem + 0.3vw, 1.25rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-brand-red, #d62300);
}

.kb-footer__nav {
  display: block;
  margin-bottom: 1.95rem;
}

.kb-footer__app-link {
  display: inline-block;
  font-family: var(--font-body, 'Open Sans', sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  transition: color 220ms ease;
}

.kb-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 0 2.5rem;
  padding: 0;
  list-style: none;
}

.kb-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  background-color: rgba(255, 255, 255, 0.12);
  transition: transform 220ms ease, background-color 220ms ease;
}

.kb-footer__social-link .material-symbols-outlined {
  font-size: 1.15rem;
  line-height: 1;
}

.kb-footer__disclaimer {
  max-width: 34rem;
  margin: 0;
  font-family: var(--font-body, 'Open Sans', sans-serif);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
}

.kb-footer__app-link:hover,
.kb-footer__app-link:focus-visible {
  color: rgba(255, 255, 255, 1);
}

.kb-footer__social-link:hover,
.kb-footer__social-link:focus-visible {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.2);
}

.kb-footer__brand:focus-visible,
.kb-footer__app-link:focus-visible,
.kb-footer__social-link:focus-visible {
  outline: 2px solid #0066cc;
  outline-offset: 3px;
}

@media (min-width: 640px) {
  .kb-footer {
    padding-top: 5.75rem;
    padding-bottom: 3rem;
  }

  .kb-footer__brand {
    margin-bottom: 2.2rem;
  }

  .kb-footer__nav {
    margin-bottom: 2.15rem;
  }

  .kb-footer__social {
    gap: 1rem;
    margin-bottom: 2.85rem;
  }

  .kb-footer__social-link {
    width: 2.9rem;
    height: 2.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kb-footer__app-link,
  .kb-footer__social-link {
    transition-duration: 0.01ms !important;
  }

  .kb-footer__social-link:hover,
  .kb-footer__social-link:focus-visible {
    transform: none;
  }
}