/* Home control — same metrics as EN/RU, sits to their left. */
.top-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 2rem;
  height: 2rem;
  padding: 0;
  line-height: 0;
  border-radius: 4px;
  border: 1px solid rgba(232, 184, 48, 0.35);
  background: rgba(232, 184, 48, 0.08);
  color: rgba(232, 184, 48, 0.95);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

.home-link__icon {
  width: 1rem;
  height: 1rem;
  display: block;
}

.home-link:hover {
  color: #38bdf8;
  border-color: rgba(56, 189, 248, 0.5);
  background: rgba(56, 189, 248, 0.12);
  text-decoration: none;
  transform: translateY(-1px);
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.28));
}

.home-link:focus-visible {
  outline: 2px solid rgba(56, 189, 248, 0.55);
  outline-offset: 2px;
}

.top-nav .lang button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 2rem;
  min-width: 2rem;
  padding: 0 12px;
  line-height: 1;
  border-radius: 4px;
}
