.dp-card {
  @include border-radius("m-l");
  font-family: $primary-font;
  font-size: $font-size-m;
  font-weight: $pf-regular;
  border: 1px solid $dp-greyscale-250;
  transition: border 0.2s ease-in-out;

  &:hover {
    border: 1px solid $dp-sonic-secondary;
  }

  &, & * {
    box-sizing: border-box;
  }

  .dp-list {
    margin: 0;

    & > .dp-list__element {
      padding: 6px;
      border-bottom: 1px solid $dp-greyscale-250;

      &:last-child {
        border-bottom: 0;
      }
    }
  }
}
