div.page-title,
h1.page-title{
  position: sticky;
  top: 70px;
  background-color: rgba(255,255,255,.96);
  margin-top: 10px;
  border-bottom: solid 1px #ccc;
  width: 100%;
}
th.sticky{
  position: sticky;
  top: 126px;
}
.page-nav{
  position: sticky;
  top: 119px;
  background-color: rgba(255,255,255,.96);
  margin-top: 127px;
}
.page-delimiter::before {
  display: inline-block;
  content: "***";
  font-size: 30px;
  line-height: 65px;
  height: 30px;
  letter-spacing: .2em;
  text-align: center;
}

ol.numeric {
  counter-reset: item;
}
ol.numeric li {
  display: block;
}
ol.numeric li:before {
  content: counters(item, ".") ". ";
  counter-increment: item;
}
ol.numeric ol {
  padding-left: 20px;
  counter-reset: item;
}

pre{
  background-color:#333;
  color:#f9f9f9;
  border-radius:3px;
  padding: 8px;
}

/* EditorJS module overrides */
.ce-block__content,
.ce-toolbar__content {
    max-width: 100%;
    margin-left: 48px;
}
#xdialogs > div{
  position: fixed;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  border: 1px solid #999;
  border-radius: 12px;
  opacity: .9;
  padding: 20px;
}
.modal-draggable {
  width: iclamp(400px, 50%, 800px);
	background: #f9fdff;
	border: 2px solid #999;
	border-radius: 8px;
	position: absolute;
	left: calc(50vw - 200px);
	top: 200px;
	cursor: grab;
  padding: 20px;
}
.profile-img-container {
  width: 200px;
  aspect-ratio: 1 / 1;
  border: 1px solid #888;
  border-radius: 8px;
  overflow: hidden;
  justify-content: top;
  display: flex;
  align-items: center;
}

.profile-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
