/* Dropdown menu styles for navigation */
.masthead__menu-item {
  position: relative;
  display: inline-block;
}

.masthead__menu-parent {
  cursor: pointer;
  user-select: none;
}

.masthead__menu-parent::after {
  content: " ▼";
  font-size: 0.6em;
  opacity: 0.7;
}

.submenu {
  display: none;
  position: absolute;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  min-width: 220px;
  box-shadow: 0px 4px 12px 0px rgba(0,0,0,0.15);
  padding: 8px 0;
  z-index: 1000;
  top: calc(100% + 2px);
  left: 0;
  border-radius: 4px;
  list-style: none;
  margin: 0;
}

.masthead__menu-item:hover .submenu {
  display: block !important;
}

.submenu li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.submenu__link {
  color: #404040;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  font-size: 0.875em;
  line-height: 1.4;
  border-left: 3px solid transparent;
}

.submenu__link:hover {
  background-color: #f8f8f8;
  color: #57068C;
  border-left-color: #57068C;
  font-weight: 500;
}

.submenu__link.active {
  color: #57068C;
  font-weight: 600;
  border-left-color: #57068C;
}
