/* Контейнер */
.hint {
  display: inline-block;
  position: relative;
}

/* Кнопка-иконка */
.hint__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;

  font: inherit;
  color: inherit;
}

/* Визуальная иконка (заглушка) */
.hint__icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(0,0,0,.35);
  font-weight: 600;
  line-height: 1;
}

/* Панель с текстом */
.hint__panel {
  margin-top: 12px;
  padding: 14px 16px;

  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 10px;

  max-width: 720px;
  color: #111;
}

/* Необязательно: “открыто” — можно усилить стиль */
.hint[data-open="true"] .hint__icon {
  border-color: rgba(0,0,0,.7);
}
