@media screen and (max-width: 500px) {
  .blog-root {
    padding: 10px;
  }
}
.blog-root table th {
  padding: 5px;
  border-bottom: 1px solid var(--txtFg);
}
.blog-root table td {
  text-align: center;
}
.blog-root table {
  border-left: 1px solid var(--txtFg);
  border-right: 1px solid var(--txtFg);
  border-collapse: collapse;
}
.blog-root .light {
  background: white;
}
.blog-root .light * {
  color: black;
}
.blog-root .highlight code {
  display: flex;
  flex-direction: column;
  overflow-x: auto;
  position: relative;
  width: 100%;
  word-break: normal;
}
.blog-root .datemark {
  font-size: 0.8em;
  color: var(--datemarkFg);
  margin: 0;
}
.blog-root .datemarkers {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.blog-root .codeWrapper {
  position: relative;
}
.blog-root .copyBtn {
  opacity: 0.2;
  position: absolute;
  top: 0;
  right: 0;
  width: 2em;
  aspect-ratio: 2/3;
  padding: 1%;
  border-radius: 30%;
  max-width: 20px;
}
.blog-root .copyBtn:hover {
  opacity: 1;
  transition: 100ms;
  background: var(--bg);
}
.blog-root .slug {
  margin-left: 0.5em;
  width: 1em;
  height: 1em;
  display: inline-block;
}
.blog-root .slug, .blog-root .slug:visited {
  color: #5d5d5d;
}
.blog-root .slug:hover {
  color: #8d8d8d;
}
.blog-root .slug:hover::after {
  display: none;
  transition: 100ms;
}
.blog-root .activeSlug, .blog-root .activeSlug:visited {
  color: var(--visetedLink);
}
.blog-root .content blockquote {
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
  padding: 5px 5px 5px 20px;
  background-color: var(--infoFg);
}
.blog-root .content blockquote::before {
  content: "";
  background-color: var(--quoteMargin);
  width: 5px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
.blog-root .content h1,
.blog-root .content h2,
.blog-root .content h3 {
  display: flex;
  flex-direction: row;
  align-items: baseline;
}