section.table > .margin {
  margin-block: 5rem;
}
section.table .table-header,
section.table .table-column {
  -ms-grid-columns: 25% 15% 30% 1fr;
  grid-template-columns: 25% 15% 30% 1fr;
}
@container main (min-width: 48rem) and (max-width: 64rem) {
  section.table .table-header,
  section.table .table-column {
    -ms-grid-columns: 20% 15% 30% 1fr;
    grid-template-columns: 20% 15% 30% 1fr;
  }
}
section.table .table-header *,
section.table .table-column * {
  padding: 0.625rem;
}
section.table .table-header * + *,
section.table .table-column * + * {
  border-left: 1px solid var(--teal);
  padding-left: 1.25rem;
}
section.table .table-header {
  border-block: 1px solid var(--teal);
}
section.table .table-header * {
  padding-block: 0.9375rem;
}
section.table .table-column *:not(:last-child) {
  -ms-hyphens: auto;
      hyphens: auto;
}
section.table .table-column * + * {
  border-left: 1px solid var(--teal);
}
@container main (max-width: 47.9375rem) {
  section.table .table-column * {
    padding: 0;
    border: 0;
  }
  section.table .table-column *:first-child {
    font: var(--h4-font);
  }
}
section.table .table-column:nth-child(odd) {
  background: var(--grey);
}
@container main (max-width: 47.9375rem) {
  section.table .table-column {
    padding: 1.25rem;
    margin-left: -1.25rem;
    width: calc(100% + 2.5rem);
    max-width: calc(100% + 2.5rem);
  }
}
@container main (max-width: 47.9375rem) {
  section.table .table-header {
    display: none;
  }
  section.table .table-column {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
}