.peitho-slide {
  width: 1280px;
  height: 720px;
  box-sizing: border-box;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  grid-template-rows: auto minmax(0, 1fr);
  column-gap: 48px;
  row-gap: 40px;
  padding: 56px 64px;
  background: #0b0f14;
  color: #d7e0ea;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}

.walkthrough h1 {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  color: #e6edf3;
}

.walkthrough h1 .slot-title::before {
  content: "// ";
  color: #5eead4;
}

.code-pane {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #1f2a36;
  background: #10161d;
}

.slot-code {
  display: block;
  margin: 0;
  padding: 28px 32px;
  font-size: 22px;
  line-height: 1.6;
  color: #d7e0ea;
}

.notes-pane {
  min-width: 0;
  overflow: hidden;
  margin: 0;
}

.slot-body {
  font-size: 22px;
  line-height: 1.65;
  color: #8b98a5;
}

.slot-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.slot-body li {
  margin: 0 0 22px;
  padding-left: 26px;
  position: relative;
}

.slot-body li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: #5eead4;
}

.slot-body code {
  color: #d7e0ea;
}

.slot-code .hl-comment {
  color: #565f89;
}

.slot-code .hl-string {
  color: #9ece6a;
}

.slot-code .hl-keyword,
.slot-code .hl-storage {
  color: #bb9af7;
}

.slot-code .hl-constant {
  color: #ff9e64;
}

.slot-code .hl-function {
  color: #7aa2f7;
}

.slot-code .hl-type {
  color: #2ac3de;
}

[data-slide-key="payoff"] .slot-code { background: #0d2822; }