.nav-item--has-children {
  position: relative;
}

.dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 0.35rem);
  z-index: 140;
  min-width: 280px;
  padding: 0.85rem;
  border: 1px solid rgba(47, 86, 120, 0.12);
  border-radius: 18px;
  background: #fffdf9;
  box-shadow: 0 22px 42px rgba(23, 37, 56, 0.16);
}

.dropdown[hidden] {
  display: none;
}

.dropdown__list {
  display: grid;
  gap: 0.16rem;
}

.dropdown__list a {
  display: block;
  padding: 0.62rem 0.72rem;
  border-radius: 12px;
  color: var(--heading);
  font-size: 0.94rem;
  font-weight: 600;
}

.dropdown__list a:hover,
.dropdown__list a:focus-visible {
  background: rgba(47, 86, 120, 0.08);
}
