/* Hide the second cell (Table of Contents) */
/*.layout-section > .layout-cell:nth-child(2) {
  display: none;
}*/
.layout-cell:has(span[style*="--color: var(--teal"]) {
  display: none;
}
.layout-section {
  display: grid;
  grid-template-columns: 1fr !important;
  width: 100%;
}

.layout-section > .layout-cell:nth-child(1) {
  width: 100%;
  justify-self: stretch;
}
/* Make the remaining column full width */
.layout-section {
  --columns: 1fr;
}