/* Mobile site navigation – toggle button and slide-down panel */

@media (max-width: 767px) {
  .ee-site-nav__links {
    display: none !important;
  }
}

.ee-mobile-nav__toggle[aria-expanded="true"] .ee-mobile-nav__icon--open {
  display: none;
}

.ee-mobile-nav__toggle[aria-expanded="false"] .ee-mobile-nav__icon--close,
.ee-mobile-nav__icon--close[hidden],
.ee-mobile-nav__icon--open[hidden] {
  display: none !important;
}

.ee-mobile-nav__toggle[aria-expanded="true"] .ee-mobile-nav__icon--close:not([hidden]) {
  display: inline-flex;
}

.ee-mobile-nav__toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.ee-mobile-nav__toggle:focus {
  outline: none;
}

.ee-mobile-nav__toggle:focus-visible {
  outline: 2px solid #006874;
  outline-offset: 2px;
}

.ee-mobile-nav {
  position: fixed;
  top: 5rem;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 49;
}

.ee-mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.ee-mobile-nav__panel {
  position: relative;
  max-height: calc(100vh - 5rem);
  overflow-y: auto;
  background: var(--color-surface-container-lowest, #fafdfd);
  border-bottom: 1px solid var(--color-subtle, rgba(0, 0, 0, 0.08));
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  padding: 0.5rem 0 1rem;
}

.dark .ee-mobile-nav__panel {
  background: var(--color-inverse-surface, #1a1c1e);
}

.ee-mobile-nav__section-trigger,
.ee-mobile-nav__top-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: inherit;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.ee-mobile-nav__section-trigger:hover,
.ee-mobile-nav__top-link:hover {
  background: rgba(0, 104, 116, 0.06);
}

.ee-mobile-nav__section--active .ee-mobile-nav__section-trigger,
.ee-mobile-nav__top-link--active {
  color: #006874;
  box-shadow: inset 3px 0 0 #006874;
}

.ee-mobile-nav__chevron {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.ee-mobile-nav__section-trigger[aria-expanded="true"] .ee-mobile-nav__chevron {
  transform: rotate(180deg);
}

.ee-mobile-nav__section-items {
  padding: 0 0 0.5rem;
}

.ee-mobile-nav__link {
  display: block;
  padding: 0.625rem 1.25rem 0.625rem 2rem;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
}

.ee-mobile-nav__link:hover {
  background: rgba(0, 104, 116, 0.06);
  color: #006874;
}

.ee-mobile-nav__link--active {
  color: #006874;
  font-weight: 600;
}

.ee-mobile-nav__separator {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 0.25rem 1.25rem 0.25rem 2rem;
}

body.ee-mobile-nav-open {
  overflow: hidden;
}

@media (min-width: 768px) {
  .ee-mobile-nav,
  .ee-mobile-nav__toggle {
    display: none !important;
  }
}
