.dm-horizontalRule {
  width: 100%;
  border: 0;
  height: var(--horizontalRuleHeight);
  margin: 0.5rem 0;
  background: var(--brandColor);
}


.dm-horizontalRule--articleDetail {
  display: none;
}

@media (min-width: 768px) {
  .dm-horizontalRule--articleDetail {
    display: block;
    background: var(--grey);
    height: 2px;
  }
}