/* LumiCred - 底部栏样式 */
.lumicred-footer {
  margin-top: auto;
  border-top: 1px solid var(--gray-border);
  padding: 2rem 0;
  background: var(--white);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.footer-logo-img {
  display: block;
  height: 28px;
  width: auto;
  object-fit: contain;
}

.footer-copyright,
.footer-email {
  margin: 0;
  font-size: 0.875rem;
  color: var(--primary-medium);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .lumicred-footer {
    padding: 1.5rem 0;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
