/* Keep the first table column wide enough for names like ExecutionStateManager */
.content table th:first-child,
.content table td:first-child {
  white-space: nowrap;
  width: 34%;
  min-width: 16em;
}

.split {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin: 1.5em 0 2em;
}

.split--image-left {
  flex-direction: row-reverse;
}

.split__text {
  flex: 1 1 55%;
  min-width: 0;
}

.split__text h3 {
  margin-top: 0;
}

.split__text p {
  margin: 0;
}

.split__figure {
  flex: 0 1 40%;
  margin: 0;
  max-width: 40%;
}

.split__figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

@media (max-width: 700px) {
  .split,
  .split--image-left {
    flex-direction: column;
    align-items: stretch;
  }

  .split__figure {
    max-width: 100%;
    flex-basis: auto;
  }
}
