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

.footer-center {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.footer-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-badge {
  height: 32px;
  width: auto;
  object-fit: contain;
  /* Optional: make them white if needed, but keeping color for now */
  /* Prevent images from receiving focus */
  pointer-events: none;
  user-select: none;
}

/* Remove focus outline from footer badges (if they somehow get focus) */
.footer-badge:focus,
.footer-badge:focus-visible {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .footer-left, 
  .footer-center, 
  .footer-right {
    justify-self: center !important;
  }
  
  .footer-center {
    width: 100%;
  }
  
  .footer-links {
    flex-direction: row; /* Keep side by side on mobile if space allows, or wrap */
    flex-wrap: wrap;
  }
}

