.crwda-footer {
  margin-top: 56px;
  background: var(--surface-soft);
  border-top: 1px solid var(--border);
  color: var(--text);
}

.crwda-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  padding-top: 28px;
  padding-bottom: 28px;
}

.crwda-footer__brand {
  min-width: 0;
}

.crwda-footer__logo,
.crwda-footer__logoText {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.crwda-footer__logo .custom-logo {
  max-height: 52px;
  width: auto;
}

.crwda-footer__logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.crwda-footer__tagline {
  margin: 10px 0 0;
  max-width: 52ch;
  color: var(--muted);
}

.crwda-footer__nav {
  min-width: 0;
}

.crwda-footer__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.crwda-footer__menu a,
.crwda-footer__legal a {
  color: var(--text);
}

.crwda-footer__menu a:hover,
.crwda-footer__legal a:hover {
  color: var(--primary-700);
}

.crwda-footer__bottom {
  border-top: 1px solid var(--border);
}

.crwda-footer__bottomInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.crwda-footer__copy {
  color: var(--muted);
  font-size: 14px;
}

.crwda-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .crwda-footer__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .crwda-footer__menu {
    justify-content: flex-start;
  }

  .crwda-footer__bottomInner {
    flex-direction: column;
    align-items: flex-start;
  }
}