/* Shared site navigation — edit links only in /js/site-nav.js */

nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: #666;
  margin-bottom: 60px;
  flex-wrap: wrap;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: inherit;
}

nav a:hover {
  color: #000;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  padding: 10px;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 20;
}

.nav-dropdown a {
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: #4b5563;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: #f3f4f6;
  color: #111827;
}

.nav-item:hover .nav-dropdown {
  display: flex;
}
