table {
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

table tr {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
}

@media screen and (max-width: 768px) {
  table {
    border: 0;
  }

  table tr {
    display: block;
    margin-block: 5px;
  }
  table tr:nth-of-type(1) {
    display: none;
  }

  table td {
    display: block;
    text-align: left;
    border-bottom: 1px solid;
  }

  table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
    width: 50%;
  }

  table td:last-child {
    border-bottom: 0;
  }
}
