/* =========================================================
   Mobile Footer
   Scoped mobile-only footer styles.
   ========================================================= */

.mobile-footer-logo-scroll {
  align-items: center;
  padding-bottom: var(--space-17);
}

/* .mobile-footer-site-logo img {
  width: 12.9375rem;
  max-width: 100%;
  height: auto;
  object-fit: contain;
} */

.mobile-footer-back-to-top {
  flex-shrink: 0;
}

.mobile-footer-widget-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-11);
  padding-bottom: var(--space-17);
}

.mobile-footer-widget-container .footer-widget {
  gap: var(--space-6);
  padding-top: var(--space-7);
  border-top: 0.0625rem solid var(--bs-primary-700);
}

.mobile-footer-widget-container .widgettitle {
  margin: 0;
  color: var(--bs-primary-300);
  font-size: var(--font-size-14);
  line-height: 1rem;
}

.mobile-footer-widget-container .footer-widget ul {
  gap: var(--space-4);
}

.mobile-footer-widget-container .footer-widget a,
.mobile-footer-social-link {
  color: var(--footer-link-color);
  font-size: var(--font-size-14);
  line-height: 1.25rem;
  text-decoration: none;
}

.mobile-footer-widget-container .footer-widget a:hover,
.mobile-footer-social-link:hover {
  color: var(--bs-primary-300);
}

.mobile-footer-contact {
  gap: var(--space-7);
}

.mobile-footer-social {
  gap: var(--space-6);
}

.mobile-footer-social-logos {
  gap: var(--space-5);
  flex-wrap: wrap;
}

.mobile-footer-social-logo {
  max-width: 7.5rem;
  max-height: 2rem;
  object-fit: contain;
}

.mobile-footer-social-links {
  gap: var(--space-5);
}

.mobile-footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  width: fit-content;
}

.mobile-footer-social-arrow {
  display: inline-flex;
  flex-shrink: 0;
  /* width: 1.25rem; */
  height: 1.25rem;
  color: currentColor;
  padding-right: var(--space-3);
}

.mobile-footer-social-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}

.mobile-footer-social-text {
  white-space: nowrap;
}

.mobile-footer-button-container {
  margin-top: 0;
  padding-top: var(--space-5);
}

.mobile-footer-button-container .btn {
  margin-top: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .mobile-footer-widget-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-footer-contact {
    grid-column: 1 / -1;
  }
}