/**
 SASS files that don't get compiled into CSS. Do not put element selectors in here.
 Every file not starting with '_' should import this file if you want to use functions and mixins.
 */
/**
 * SASS variables
 *
 These are only used in the properties and abstract SASS files.
 */
/**
 Breakpoints and columns
 */
/**
 Text
 */
/**
Fill in the header styles, only write the properties you want to override.
 */
/**
 Form
 */
/**
  Buttons
 */
/**
 Breakpoints

 @param {Keyword} $breakpoint - The breakpoint name of the minimum width. Can be any of the names in the $breakpoint variable
 */
/**
  Custom column size.
  Especially handy inside other columns.

  @param {Number|string} $size - the size in columns or 'expand'/'shrink'.
  @param {number} $total - the total size in columns. Ignored when size is 'expand'/'shrink'
 */
/**
  Custom offset size.
  Especially handy inside other columns.

  @param {Number|string} $size - the size of the offset.
  @param {number} $total - the total size in columns.
  @param {string} - the side from the offset.
 */
ul.menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
ul.menu a {
  text-underline-offset: 6px;
}
ul.menu li > span {
  cursor: pointer;
  transition: var(--transition);
}
ul.menu li > span:hover, ul.menu li > span:focus-visible {
  color: var(--anchor-color);
}

ul.menu [class*=icon-] {
  margin-right: 8px;
}

.navigation > .menu {
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.navigation > .menu > li > a {
  text-decoration: none;
}
.navigation > .menu a {
  font-weight: var(--font-weight-bold);
}
.navigation > .menu li:not(.menu-item--active-trail) a {
  text-decoration: none;
}
.navigation > .menu .menu-item--expanded .menu a {
  text-transform: lowercase;
}

/**
Dropdown menu
 */
.menu-item--expanded {
  position: relative;
  z-index: 1;
}
.menu-item--expanded > .menu {
  display: none;
  position: absolute;
  z-index: 1;
  min-width: var(--dropdown-menu-min-width);
  margin: 0;
  padding: var(--dropdown-menu-padding);
  background-color: var(--primary-dark-color);
  --anchor-color: var(--white);
  row-gap: 8px;
  flex-direction: column;
  white-space: nowrap;
}
.menu-item--expanded > .menu a {
  padding: 2px 0;
  display: inline-block;
}
.menu-item--expanded:hover > .menu {
  display: flex;
}

.menu .icon-drop {
  font-size: 0.5rem;
  color: var(--anchor-color);
}
