/* Main site footer (dark section) */

.footer {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: rgba(19, 15, 23, 1);
}

.footer .footer-nav {
  position: static;
  max-height: none;
  z-index: auto;
  background: transparent;
}

.footer-legal,
.compliance-footer-nav {
  position: static;
  max-height: none;
  width: 100%;
  z-index: auto;
  background: transparent;
}

.footer .container-footer {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 7.5%;
  text-align: left;
  color: white;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
}

.footer #footer-logo {
  display: block;
  width: 70px;
  height: auto;
  margin: 0;
}

.footer-copyright {
  margin: 0;
}

.footer-copyright p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 32px 56px;
  flex: 1;
  min-width: 0;
  width: auto;
  margin: 0;
  padding: 0;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 100px;
}

.footer-nav-col--wide {
  min-width: 160px;
}

.footer-nav-heading {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
  font-weight: 600;
}

.footer-link {
  color: white;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

/* Login / sign-up: fine print inside the content panel only */
.panel-legal {
  font-family: "AnekLight", sans-serif;
  width: 100%;
  text-align: center;
  margin-top: 28px;
  padding-bottom: 4px;
  font-size: 13px;
  line-height: 1.6;
}

.panel-legal a {
  color: #333;
  text-decoration: underline;
}

.panel-legal .bullet,
.panel-legal__sep {
  margin: 0 3px;
  color: #999;
}

.panel-legal__copy {
  font-size: 11px;
  color: #999;
  text-align: center;
  margin: 8px 0 0;
}

/* Compliance policy pages */
.compliance-footer {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid #e4e4e4;
  font-size: 14px;
  color: #666;
}

.compliance-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-bottom: 16px;
  justify-content: center;
}

.compliance-footer-nav a {
  color: #444;
  text-decoration: none;
  white-space: nowrap;
}

.compliance-footer-nav a:hover {
  text-decoration: underline;
}

.compliance-footer-meta {
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .footer .container-footer {
    flex-direction: column;
    align-items: center;
    gap: 36px;
    text-align: center;
    padding: 40px 24px;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-nav {
    justify-content: center;
    width: 100%;
    gap: 28px 40px;
  }

  .footer-nav-col,
  .footer-nav-links {
    align-items: center;
  }
}
