.sublote-site-footer {
  position: relative;
  z-index: 10;
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 12px;
  color: var(--text-muted, #94a3b8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

html[data-theme="light"] .sublote-site-footer {
  border-top-color: rgba(15, 23, 42, 0.08);
}

.sublote-site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.sublote-site-footer-nav {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  align-items: center;
  gap: 14px;
  margin: 0;
}

.sublote-site-footer-nav a {
  color: var(--text-muted, #94a3b8);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

.sublote-site-footer-nav a:hover {
  color: var(--primary, #60a5fa);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sublote-site-footer-tagline {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  color: var(--text-muted, #94a3b8);
}

.sublote-site-footer-brand {
  flex: 0 0 auto;
  margin: 0;
  text-align: right;
  line-height: 1.4;
  white-space: nowrap;
}

.sublote-site-footer-brand a {
  color: var(--text-muted, #94a3b8);
  text-decoration: none;
  font-size: 12px;
}

.sublote-site-footer-brand a:hover {
  color: var(--primary, #60a5fa);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ecosystem-page > .sublote-site-footer {
  margin-top: auto;
}

@media (max-width: 900px) {
  .sublote-site-footer {
    padding: 8px 12px;
    font-size: 11px;
  }

  .sublote-site-footer-inner {
    gap: 10px 12px;
  }

  .sublote-site-footer-nav {
    gap: 10px;
  }

  .sublote-site-footer-brand a {
    font-size: 11px;
  }
}

@media (max-width: 640px) {
  .sublote-site-footer-inner {
    gap: 8px;
  }

  .sublote-site-footer-nav {
    gap: 8px;
  }

  .sublote-site-footer-tagline {
    font-size: 10px;
  }
}
