/* Fixed top-left: Blog (Hugo) + language (EN | FR) as separate pills */

.cv-site-nav {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cv-nav-pill {
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

a.cv-nav-pill {
  color: #334960;
  text-decoration: none;
  font-weight: 600;
}

a.cv-nav-pill:hover {
  text-decoration: underline;
}

.cv-nav-lang {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 600;
}

.cv-nav-lang a {
  color: #334960;
  text-decoration: none;
  font-weight: 600;
  margin: 0 5px;
}

.cv-nav-lang a:hover {
  text-decoration: underline;
}

.cv-nav-lang .current {
  opacity: 0.7;
  cursor: default;
}

.cv-nav-lang .sep {
  opacity: 0.4;
  user-select: none;
}
