/* Optional, click-to-play examples. The converter itself loads none of this. */
.af-walkthrough {
  scroll-margin-top: 100px;
}
.af-walkthrough-media {
  width: 100%;
  max-width: 760px;
  margin: 24px 0 0;
}
.af-walkthrough-media video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border, var(--lp-line, #d4ddda));
  border-radius: 12px;
  background: #faf9f5;
}
.af-walkthrough-media video:focus-visible,
.af-walkthrough-play:focus-visible,
.af-walkthrough-transcript summary:focus-visible {
  outline: 2px solid var(--primary, var(--lp-action, #c74311));
  outline-offset: 4px;
}
.af-walkthrough-player { position: relative; }
.af-walkthrough-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 24px);
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  background: #171817;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 4px 20px #17181724;
}
.af-walkthrough-play[hidden] { display: none; }
.af-walkthrough-play span { color: #ff7b45; font-size: 12px; }
.af-walkthrough-play:hover { background: #30332f; }
.af-walkthrough-media figcaption {
  margin-top: 12px;
  color: var(--muted, var(--lp-muted, #606963));
  font-size: 12px;
  line-height: 1.65;
}
.af-walkthrough-transcript {
  max-width: 760px;
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.7;
}
.af-walkthrough-transcript summary {
  width: fit-content;
  padding: 6px 0;
  cursor: pointer;
}
.af-walkthrough-transcript ol {
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--muted, var(--lp-muted, #606963));
}
.af-walkthrough-transcript li + li {
  margin-top: 8px;
}
@media (max-width: 520px) {
  .af-walkthrough-media { margin-top: 18px; }
}
