.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-full,
.logo-mobile {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
}

.logo-mobile {
  display: none;
  height: 38px;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(171, 186, 210, 0.44);
  background: rgba(12, 19, 30, 0.9);
  font-size: 0.8rem;
  letter-spacing: 0.11em;
  line-height: 1;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: #d4deef;
}

.inline-link {
  color: #b9caeb;
  text-decoration: underline;
  text-decoration-color: rgba(185, 202, 235, 0.5);
  text-underline-offset: 3px;
}

.inline-link:hover {
  text-decoration-color: rgba(185, 202, 235, 0.85);
}

@media (max-width: 600px) {
  .logo-full {
    display: none;
  }

  .logo-mobile {
    display: block;
  }
}
