/* Mobile menu — Company row: navigate + expand submenu */
.mobile-company-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #f8f9fc;
}

.mobile-company-link {
  flex: 1;
  border-bottom: none !important;
}

.mobile-company-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  flex-shrink: 0;
  padding: 0;
  border: none;
  border-left: 1px solid #f0f0f0;
  background: transparent;
  color: #0d1b4b;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-company-toggle:hover,
.mobile-company-toggle:focus-visible {
  background: rgba(26, 35, 126, 0.06);
  color: #1a237e;
  outline: none;
}
