.table {
  width: 100%;
  min-width: 800px;
}
.table__row {
  display: flex;
  justify-content: space-between;
}
.table__item {
  padding: 1rem;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 20%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
  word-break: break-all;
}
.table__item--collapse {
  flex-basis: 40%;
}
.table__item a {
  text-decoration: none;
  font-weight: 400;
}
.table__item a:hover {
  text-decoration: underline;
}
.table__item:last-child {
  border-right: none;
}
.table__item--heading {
  font-size: 2.5rem;
  text-transform: uppercase;
}
.table-container {
  overflow-x: auto;
  overflow-y: hidden;
}

