table {

  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

table caption {
  font-size: 1.5em;
  margin: .5em 0 .75em;
}

table tr {
 
  border-bottom: 1px solid #756957;
  padding: .35em;
}

table tr:last-child {
 
  border-bottom: none
}

table th,
table td {
  padding: .625em;
  text-align: center;
}

table th {
  text-transform: uppercase;
  color: #756957 !important;
  font-family: var(--main-font);
  font-size: 15px;
  line-height: 25px;

}


@media screen and (max-width: 575.98px) {
  table {
    border: 0;
  }

  table caption {
    font-size: 1.3em;
  }
  
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  table tr {
    border-bottom: 2px solid #b3a795;
    display: block;
    margin-bottom: .625em;
  }
  
  table td {
   
    display: block;
    font-size: .8em;
    text-align: right;
  }
  
  table td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  table td:last-child {
    border-bottom: 0;
  }
  colgroup col {
    display: none;
  }
}