/*  */
.tablepress > :where(tbody) > tr > * {
  color: var(--ast-global-color-3) !important;
}

.tablepress > :where(thead, tfoot) > tr > * {
    background-color: var(--ast-global-color-1) !important;
    color: var(--ast-global-color-2) !important;
}

.tablepress > :not(caption) > * > * {
    padding: 1.2em var(--gap-m) !important;
    font-family: var(--mainfont);
    font-size: 1.15rem !important;
}

.tablepress * {
  border: none !important;
}

.tablepress
  > :where(tbody.row-striping)
  > :nth-child(odd of :where(:not(.child, .dtrg-group)))
  > * {
  background-color: unset !important;
}
.tablepress
  > :where(tbody.row-striping)
  > :nth-child(even of :where(:not(.child, .dtrg-group)))
  > * {
  background-color: color-mix(in srgb, var(--ast-global-color-1) 20%, transparent) !important;
}


