/* Stack wide comparison tables into labelled cards on small screens. */
@media screen and (max-width: 44.984375em) {
  .md-typeset table:not([class]) {
    display: block;
    border: none;
    font-size: 0.7rem;
  }

  .md-typeset table:not([class]) thead {
    display: none;
  }

  .md-typeset table:not([class]) tbody,
  .md-typeset table:not([class]) tr,
  .md-typeset table:not([class]) td {
    display: block;
    width: auto;
  }

  .md-typeset table:not([class]) tr {
    border: 0.05rem solid var(--md-typeset-table-color);
    border-radius: 0.1rem;
    margin-bottom: 0.8rem;
    padding: 0.4rem 0.6rem;
  }

  .md-typeset table:not([class]) td {
    border: none;
    padding: 0.3rem 0;
  }

  .md-typeset table:not([class]) td[data-label]::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.1rem;
    font-size: 0.64rem;
    font-weight: 700;
    color: var(--md-default-fg-color--light);
  }

  .md-typeset table:not([class]) td:empty {
    display: none;
  }
}
