.internal-guide {
  display: grid;
  gap: 28px;
}

.internal-guide-step {
  display: grid;
  gap: 10px;
}

.internal-guide-editbar {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #121212;
  border-bottom: 4px solid #ffd400;
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(18, 18, 18, .16);
}

.internal-guide-editbar button {
  min-height: 40px;
  border: 2px solid #121212;
  border-radius: 0;
  padding: 9px 18px;
  font: inherit;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  cursor: pointer;
  color: #fff;
  background: #121212;
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}

.internal-guide-editbar button:hover {
  border-color: #ffd400;
  color: #121212;
  background: #ffd400;
}

.internal-guide-editbar button:disabled {
  cursor: not-allowed;
  opacity: .55;
}

.internal-guide-editbar span {
  font-size: 14px;
  color: #47545f;
}

.internal-guide-editor {
  width: 100%;
  min-height: 84px;
  border: 1px solid #cbd3d9;
  border-radius: 6px;
  padding: 10px 12px;
  font: inherit;
  line-height: 1.5;
}

.internal-guide-step h2 {
  margin-bottom: 0;
}

.internal-guide-figure {
  margin: 0;
}

.internal-guide-shot {
  position: relative;
  display: inline-block;
  max-width: 100%;
  line-height: 0;
}

.internal-guide-shot img {
  display: block;
  max-width: 100%;
  height: auto;
}

.internal-guide-marker {
  position: absolute;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 4px solid #ffd400;
  border-radius: 50%;
  background: rgba(255, 212, 0, .22);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, .22), 0 0 20px rgba(255, 212, 0, .85);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.internal-guide-marker::after {
  content: "";
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(255, 212, 0, .62);
  border-radius: 50%;
}
