@mixin remove-native-list-styles {
  padding-left: 0;
  list-style: none;
}

@mixin make-ruled-list($spacing: $line-height-base) {
  > * {
    @include consume-margins();
    padding-top: $spacing;
    padding-bottom: $spacing;
  }

  > * + * {
    border-top: $ruled-list-border;
  }
}
