/* Shared mobile navigation for Dorothea subpages */
.dorothea-hamburger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-left: auto;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.dorothea-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: #0D2B5E;
  transition: transform .18s ease, opacity .18s ease;
}
.dorothea-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.dorothea-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.dorothea-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.dorothea-mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 9998;
  padding: 8px 20px 16px;
  background: #fff;
  border-bottom: 1px solid rgba(15, 23, 42, .12);
  box-shadow: 0 12px 24px rgba(15, 23, 42, .08);
}
.dorothea-mobile-menu.open { display: flex; flex-direction: column; }
.dorothea-mobile-menu a {
  display: block;
  padding: 13px 4px;
  color: #0D2B5E;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.25;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}
.dorothea-mobile-menu a:last-child { border-bottom: 0; }

@media (max-width: 860px) {
  nav .nav-links { display: none !important; }
  nav .dorothea-hamburger { display: flex !important; }
}
@media (min-width: 861px) {
  .dorothea-mobile-menu { display: none !important; }
}
