/* Fixed bar — switch between profile views and return home */
body.has-profile-switcher {
  padding-top: 52px;
}

.profile-switcher {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 10px 18px;
  background: rgba(251, 247, 239, 0.98);
  border-bottom: 2px solid #c9baa4;
  font-family: "Lora", Georgia, serif;
  font-size: 13px;
  box-shadow: 0 4px 16px rgba(55, 45, 30, 0.1);
  backdrop-filter: blur(8px);
}

.profile-switcher-home {
  color: #2f5367;
  text-decoration: none;
  font-style: italic;
  white-space: nowrap;
}

.profile-switcher-home:hover {
  text-decoration: underline;
}

.profile-switcher-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 14px;
  font-weight: 600;
  color: #232421;
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.profile-switcher-sibling {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1.5px solid #2f5367;
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.95);
  color: #2f5367;
  text-decoration: none;
  font-style: italic;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.profile-switcher-sibling:hover {
  background: #2f5367;
  color: #fffaf0;
}

@media (max-width: 560px) {
  .profile-switcher-title {
    order: 3;
    width: 100%;
    flex: none;
  }
}
