.outline h4 {
  background-color: var(--bg--color--bg-neutral-dark);
  padding: 0.5rem 1rem;
}
.outline h4:not(:first-child) {
  margin-top: 2rem;
}
.outline h4 ~ *:not(h4) {
  margin-top: 1rem;
  margin-left: 1rem;
}
.outline :is(.wp-block-table) table {
  width: auto;
  border: none;
}
.outline :is(.wp-block-table) table tr {
  display: table-row;
  padding: 0;
  border: none;
}
.outline :is(.wp-block-table) table :is(th, td) {
  display: table-cell;
  padding: 0 0 .25em;
  border: none;
}
.outline :is(.wp-block-table) table :is(th, td):not(:last-child) {
  padding-right: 1rem;
  margin-right: auto;
}
@media (max-width: 768px) {
  .outline {
    font-size: .875rem;
  }
}

.history :is(.wp-block-table) table {
  display: block;
  width: auto;
  border: none;
}
.history :is(.wp-block-table) table tr {
  display: flex;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 2.5rem;
  padding-left: 1.5rem;
  position: relative;
  border: none;
}
.history :is(.wp-block-table) table tr:not(:last-child)::before {
  content: '';
  position: absolute;
  top: .8em;
  bottom: -.8em;
  left: 3.5px;
  display: block;
  border-left: 1px solid var(--bg--color--button-disable);
}
.history :is(.wp-block-table) table tr::after {
  content: '';
  position: absolute;
  top: calc(.8em - 4px);
  left: 0;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--bg--color--brand);
}
.history :is(.wp-block-table) table :is(th, td) {
  display: block;
  padding: 0;
  border: none;
}
.history :is(.wp-block-table) table th {
  flex: 0 0 8rem;
}
@media (max-width: 768px) {
  .history {
    font-size: .875rem;
  }
  .history :is(.wp-block-table) table tr {
    flex-direction: column;
    row-gap: .5rem;
    padding-bottom: 1.25rem;
  }
  .history :is(.wp-block-table) table th {
    flex: 1 1 auto;
  }
}
