// reset-text
@mixin reset-text {
  font-family: $font-family-base;
  // We deliberately do NOT reset font-size or word-wrap.
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: $body-line-height;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
}

// Reset margin, padding and style of list.
@mixin reset-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

// Reset link's decoration and state colors.
@mixin reset-link {
  @include no-decoration;
  @include set-link-state-color(currentColor);
}
