@media (max-width: 768px) {
  .responsive-enabled.table tr {
    display: block;
    border-bottom: 1px solid #121212;
    margin-bottom: .5em;
    padding-bottom: .5em;
  }

  .responsive-enabled.table th {
    display: none;
  }

  .responsive-enabled.table td {
    display: block;
    border-bottom: none;
    padding: 0;
    margin: 0 0 .25em 0;
  }

  .responsive-enabled.table td {
    display: grid;
    grid-template-columns: min-content auto;
  }

  .responsive-enabled.table td:before {
    font-weight: bold;
    display: inline-block;
    margin-right: 1ch;
    color: #757575;
  }

  .responsive-enabled.table td:nth-child(1):before {
    content: 'Name: ';
  }

  .responsive-enabled.table td:nth-child(2):before {
    content: 'Action: ';
  }

  .responsive-enabled.table td:nth-child(3):before {
    content: 'Industry: ';
  }

  .responsive-enabled.table td:nth-child(4):before {
    content: 'Country: ';
  }
}
