.topa-ft-wrap {
  width: 100%;
  margin-top: 20px;
  background: var(--topa-page-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.topa-ft-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 40px;
  gap: 32px;
}

.topa-ft-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  flex-shrink: 0;
}

.topa-ft-logo img {
  height: 28px;
  width: auto;
  display: block;
}

.topa-ft-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: auto;
  align-items: flex-end;
}

.topa-ft-nav,
.topa-ft-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .topa-ft-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .topa-ft-links {
    margin-left: 0;
    align-items: flex-start;
    width: 100%;
  }

  .topa-ft-nav,
  .topa-ft-legal {
    justify-content: flex-start;
    width: 100%;
  }
}
