.nav .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: none;
  white-space: nowrap;
  margin-right: 36px;
}

.nav .brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav .brand span {
  color: var(--ink);
}

.nav-links {
  min-width: 0;
  gap: clamp(14px, 1.5vw, 26px);
}

.nav .settings-link {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: none;
  font-size: 22px;
  line-height: 1;
}

.nav .notification-link {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: none;
}

.notification-bell,
.settings-gear {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-brand,
.footer-info {
  display: grid;
  gap: 3px;
}

.footer-brand strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

.footer-brand img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.footer-info {
  text-align: right;
}

.footer-info small {
  color: var(--muted);
}

@media (max-width: 800px) {
  .nav .brand {
    margin-right: 20px;
  }

  .footer-info {
    text-align: left;
  }

  .footer {
    flex-direction: column;
    gap: 14px;
  }
}
