.article-body {
  max-width: 100%;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.split-section > aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1200px) {
  .split-section {
    flex-direction: row;
    align-items: flex-start;
  }

  .split-section > * {
    flex: 1;
    min-width: 0;
  }

  .split-section > aside {
    position: sticky;
    top: 5rem;
  }
}

.code-block:not([data-ready]) {
  display: none;
}

.code-block {
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  overflow: hidden;
}

.code-block__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.1rem 0.5rem;
  background: #e6e6f3;
}

.code-block__copy {
  border: none;
  background: none;
  font-size: 13px;
  color: #0d1117;
}

.code-block__copy svg {
  width: 16px;
}

.code-block__copy :hover {
  color: #1d2735;
}

.code-block__header--title {
  font-size: 13px;
  font-weight: 500;
  color: #0d1117;
  flex: 1;
  min-width: 0;
}

.code-block__lang-select {
  border: none;
  border-radius: 5px;
  background: #0d1118;
  font-size: 13px;
  font-weight: 500;
  color: #bfbfd8;
}

.code-block__toolbar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.code-block__body {
  padding: 0;
  position: relative;
}

.code-block__body pre {
  all: unset;
  white-space: pre;
  overflow-x: auto;
  font-size: 0.85rem;
  font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  line-height: 1.5;
}

.code-block__body pre.is-hidden {
  display: none;
}

.table-block {
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  overflow: hidden;
  font-size: 13px;
}

.table-block__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.1rem 0.5rem;
  background: #e6e6f3;
}

.table-block__header--title {
  font-size: 13px;
  font-weight: 500;
  color: #0d1117;
  flex: 1;
  min-width: 0;
}

.table-block__body {
  background: #f3f3f7;
  padding: 4px 12px;
}

.table-block__body tr td,
.table-block__body tr th {
  padding: 8px;
}

.table-block__body tr td:first-child,
.table-block__body tr th:first-child {
  padding-left: 0;
}

.table-block__body tr td:last-child,
.table-block__body tr th:last-child {
  padding-right: 0;
}


.table-block__column-bold {
  font-weight: 700;
}

.table-block__column-badge {
  padding: 4px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-weight: 500;
}