/* Matches the shared NomiFix navigation logo used across the main site. */
.website-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.nav-inner {
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font: inherit;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: linear-gradient(135deg, #F5A623, #E0900D);
  display: grid;
  place-items: center;
}

.logo .logo-icon {
  width: 22px;
  height: 22px;
  border-radius: 0;
  object-fit: contain;
  filter: invert(1);
}

.logo-text {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.5px;
}

.logo-text span {
  color: #F5A623;
}

.result .result-home {
  width: 100%;
  max-width: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 11px auto 0;
  padding: 11px 15px;
  color: #d6deea;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 9px;
  font: 700 12px 'Outfit', sans-serif;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.result .result-home:hover {
  color: #f5a623;
  border-color: rgba(245, 166, 35, .4);
  background: rgba(245, 166, 35, .06);
}

@media (max-width: 600px) {
  .nav-inner {
    height: 64px;
  }

  .logo {
    font: inherit;
  }

  .logo .logo-icon {
    width: 22px;
    height: 22px;
  }
}
