$menu-item-color ?= $text
$menu-item-radius ?= $radius-small
$menu-item-hover-color ?= $text-strong
$menu-item-hover-background-color ?= $background
$menu-item-active-color ?= $link-invert
$menu-item-active-background-color ?= $link

$menu-list-border-left ?= 1px solid $border

$menu-label-color ?= $text-light

.menu
  font-size $size-normal
  // Sizes
  &.is-small
    font-size $size-small
  &.is-medium
    font-size $size-medium
  &.is-large
    font-size $size-large

.menu-list
  line-height 1.25
  a
    border-radius $menu-item-radius
    color $menu-item-color
    display block
    padding 0.5em 0.75em
    &:hover
      background-color $menu-item-hover-background-color
      color $menu-item-hover-color
    // Modifiers
    &.is-active
      background-color $menu-item-active-background-color
      color $menu-item-active-color
  li
    ul
      border-left 1px solid $menu-list-border-left
      margin 0.75em
      padding-left 0.75em

.menu-label
  color $menu-label-color
  font-size 0.75em
  letter-spacing 0.1em
  text-transform uppercase
  &:not(:first-child)
    margin-top 1em
  &:not(:last-child)
    margin-bottom 1em
