.editor-context-help {
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin: 0 18px 14px;
  padding: 10px 12px;
  border: 1px solid #dce8e2;
  border-radius: 10px;
  background: #f5faf7;
  color: #40504a;
}

.editor-context-help[hidden] {
  display: none;
}

.editor-context-help svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #438466;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.editor-context-help p {
  min-width: 0;
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}

.editor-context-help b {
  color: #263d33;
}

.editor-context-help button {
  min-height: 32px;
  padding: 5px 9px;
  border: 1px solid #bdd5c9;
  border-radius: 8px;
  background: #fff;
  color: #286347;
  font: 700 12px/1.2 Manrope, sans-serif;
  white-space: nowrap;
  cursor: pointer;
}

.editor-context-help button:hover {
  border-color: #79ad94;
  background: #edf7f1;
}

.editor-context-help button:focus-visible {
  outline: 3px solid rgba(58, 139, 98, .24);
  outline-offset: 2px;
}

.text-editor-tab-panel > .editor-context-help,
.word-editor-tab-panel > .editor-context-help,
.table-task-settings-body > .editor-context-help,
.multiple-choice-editor-body > .editor-context-help {
  margin-inline: 0;
}

.live-guess-editor-panel [data-lg-panel="editor"] > .editor-context-help {
  margin: 12px 16px 0;
}

@media (max-width: 800px) {
  .editor-context-help {
    grid-template-columns: 20px minmax(0, 1fr);
    margin-inline: 12px;
  }

  .editor-context-help button {
    grid-column: 2;
    justify-self: start;
    min-height: 40px;
  }
}
