.table--zebra-stripes tr:nth-child(even) {
  background-color: rgba( 0, 0, 0, 0.03 );
}

@media( width < 48em ) {

  .table--responsive-cards thead,
  .table--responsive-cards tr,
  .table--responsive-cards th,
  .table--responsive-cards td {
    background: initial;
    border: initial;
  }

  .table--responsive-cards table {
    border: none;	  
  }

  .table--responsive-cards thead {
    border: 0 !important;
    clip: rect( 0 0 0 0 ) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }

  .table--responsive-cards tbody,
  .table--responsive-cards tr {
    display: block;
  }
    
  .table--responsive-cards tr {
    margin-bottom: 1rem;
    border: 1px solid #eaeaea;
    border-radius: 6px;
  }
    
  .table--responsive-cards td {
    display: grid;
    gap: 0.5rem 0;
    width: 100%;
    border: none !important;
    word-break: break-word;
  }

  .table--responsive-cards td:not(:last-child) {
    padding-bottom: 0;
  }
  
  .table--responsive-cards td::before {
    content: attr( data-label );
    font-family: "Oswald Medium", "Oswald", Arial, sans-serif;
  }

}

@media ( 32em < width < 48em ) {

  .table--responsive-cards tr {
     display: grid;
     grid-template-columns: 1fr 1fr;
  }

}