.site-footer {
  color: var(--text);
}

.footer-cta {
  padding: 70px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-cta-inner {
  position: relative;
  z-index: 2;
}

.footer-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.footer-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.footer-cta-inner {
  display: grid;
  gap: 20px;
  justify-items: center;
  max-width: 640px;
}

.footer-cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-base {
  background: #12162d;
  padding: 18px 0 28px;
}

.footer-home-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-direction: row;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo {
  height: 18px;
  width: auto;
  display: block;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
}

.footer-link-hidden {
  display: none !important;
}

@media (max-width: 980px) {
  .footer-home-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
