.content-table {
  table,
  th {
    text-align: left;
  }

  // overwrites for exceptions in accordion/body-copy for this component
  @include viewport--l('inversed') {
    span.text--alternative {
      display: block;
    }

    .body-copy ol,
    .body-copy ul,
    ul.list--checks {
      margin: 20px 0;
    }
  }

  @include viewport--l {
    ul,
    ol {
      margin: 20px 0;
    }
  }

  .body-copy li + li,
  .list--checks li + li {
    margin-top: 5px;
  }

  // main header with colored background
  th {
    border-right-width: 1px;
    border-right-style: solid;
    padding: 15px 25px;

    &:nth-child(2) {
      border-top-left-radius: 8px;
    }

    &:last-child {
      border-right: none;
      border-top-right-radius: 8px;
    }
  }

  // rows
  tbody tr {
    > * {
      padding: 20px 25px;
    }

    &:first-of-type th {
      border-top-left-radius: 8px;
    }

    &:last-of-type th {
      border-bottom-left-radius: 8px;
    }
  }

  // content cells
  td {
    border-right-width: 1px;
    border-right-style: solid;

    p {
      @include font-style('body--m');
    }

    &:last-child {
      border-right: none;
    }
  }
}
