@charset "UTF-8";
/* variables */
:root {
  --gt-color-main: #e86195;
  --gt-color-sub: #a1a1a1;
  --gt-color-loader: #999999;
  --gt-color-error: #ff3860;
  --gt-color-hr: #E9E9E9;
  --gt-color-input: #000;
  --gt-color-input-placeholder: #999;
  --gt-color-input-border: rgba(0, 0, 0, 0.1);
  --gt-color-input-bg: #f6f6f6;
  --gt-color-comment-bg: #fef9f6;
  --gt-color-comment-adminbg: #fef9f6;
  --gt-color-comment-txt: #333333;
  --gt-color-link-active: #333333;
  --gt-color-btn: #ffffff;
  --gt-color-popbg: #ffffff;
  --gt-color-main-hover: rgb(244.9613259669, 186.0386740331, 208.7348066298);
  --gt-color-input-bg-hover: hsl(0, 0%, 146.4705882353%);
}

@media (prefers-color-scheme: dark) {
  :root {
    --gt-color-main: #e86195;
    --gt-color-sub: #5e5e5e;
    --gt-color-loader: #666666;
    --gt-color-error: #ff3860;
    --gt-color-hr: #161616;
    --gt-color-input: #fff;
    --gt-color-input-placeholder: #666;
    --gt-color-input-border: rgba(1, 1, 1, 0.1);
    --gt-color-input-bg: #292929;
    --gt-color-comment-bg: #292421;
    --gt-color-comment-adminbg: #292421;
    --gt-color-comment-txt: #cccccc;
    --gt-color-link-active: #cccccc;
    --gt-color-btn: #000000;
    --gt-color-popbg: #000000;
    --gt-color-main-hover: rgb(244.9613259669, 186.0386740331, 208.7348066298);
    --gt-color-input-bg-hover: rgb(66.5, 66.5, 66.5);
  }
}
/* functions & mixins */
/* variables - calculated */
/* styles */
.gt-container {
  box-sizing: border-box;
  font-size: 16px;
  /* loader */
  /* error */
  /* initing */
  /* no int */
  /* link */
  /* meta */
  /* popup */
  /* header */
  /* comments */
  /* comment */
}

.gt-container * {
  box-sizing: border-box;
}

.gt-container a {
  color: var(--gt-color-main);
}

.gt-container a:hover {
  color: var(--gt-color-main-hover);
  border-color: var(--gt-color-main-hover);
}

.gt-container a.is--active {
  color: var(--gt-color-link-active);
  cursor: default !important;
}

.gt-container a.is--active:hover {
  color: var(--gt-color-link-active);
}

.gt-container .hide {
  display: none !important;
}

.gt-container .gt-svg {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: sub;
}

.gt-container .gt-svg svg {
  width: 100%;
  height: 100%;
  fill: var(--gt-color-main);
}

.gt-container .gt-ico {
  display: inline-block;
}

.gt-container .gt-ico-text {
  margin-left: 0.3125em;
}

.gt-container .gt-ico-github {
  width: 100%;
  height: 100%;
}

.gt-container .gt-ico-github .gt-svg {
  width: 100%;
  height: 100%;
}

.gt-container .gt-ico-github svg {
  fill: inherit;
}

.gt-container .gt-spinner {
  position: relative;
}

.gt-container .gt-spinner::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 3px;
  width: 0.75em;
  height: 0.75em;
  margin-top: -0.1875em;
  margin-left: -0.375em;
  border-radius: 50%;
  border: 1px solid var(--gt-color-btn);
  border-top-color: var(--gt-color-main);
  animation: gt-kf-rotate 0.6s linear infinite;
}

.gt-container .gt-loader {
  position: relative;
  border: 1px solid var(--gt-color-loader);
  animation: ease gt-kf-rotate 1.5s infinite;
  display: inline-block;
  font-style: normal;
  width: 1.75em;
  height: 1.75em;
  line-height: 1.75em;
  border-radius: 50%;
}

.gt-container .gt-loader::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  margin-top: -0.1875em;
  margin-left: -0.1875em;
  width: 0.375em;
  height: 0.375em;
  background-color: var(--gt-color-loader);
  border-radius: 50%;
}

.gt-container .gt-avatar {
  display: inline-block;
  width: 3.125em;
  height: 3.125em;
}

@media (max-width: 479px) {
  .gt-container .gt-avatar {
    width: 2em;
    height: 2em;
  }
}
.gt-container .gt-avatar img {
  width: 100%;
  height: auto;
  border-radius: 3px;
}

.gt-container .gt-avatar-github {
  width: 3em;
  height: 3em;
  cursor: pointer;
}

@media (max-width: 479px) {
  .gt-container .gt-avatar-github {
    width: 1.875em;
    height: 1.875em;
  }
}
.gt-container .gt-btn {
  padding: 0.75em 1.25em;
  display: inline-block;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid var(--gt-color-main);
  border-radius: 5px;
  background-color: var(--gt-color-main);
  color: var(--gt-color-btn);
  outline: none;
  font-size: 0.75em;
}

.gt-container .gt-btn-text {
  font-weight: 400;
}

.gt-container .gt-btn-loading {
  position: relative;
  margin-left: 0.5em;
  display: inline-block;
  width: 0.75em;
  height: 1em;
  vertical-align: top;
}

.gt-container .gt-btn.is--disable {
  cursor: not-allowed;
  opacity: 0.5;
}

.gt-container .gt-btn-login {
  margin-right: 0;
}

.gt-container .gt-btn-preview {
  background-color: var(--gt-color-btn);
  color: var(--gt-color-main);
}

.gt-container .gt-btn-preview:hover {
  background-color: var(--gt-color-btn-hover);
  border-color: var(--gt-color-main-hover);
}

.gt-container .gt-btn-public:hover {
  background-color: var(--gt-color-main-hover);
  border-color: var(--gt-color-main-hover);
}

.gt-container .gt-error {
  text-align: center;
  margin: 0.625em;
  color: var(--gt-color-error);
}

.gt-container .gt-initing {
  padding: 1.25em 0;
  text-align: center;
}

.gt-container .gt-initing-text {
  margin: 0.625em auto;
  font-size: 92%;
}

.gt-container .gt-no-init {
  padding: 1.25em 0;
  text-align: center;
}

.gt-container .gt-link {
  border-bottom: 1px dotted var(--gt-color-main);
}

.gt-container .gt-link-counts, .gt-container .gt-link-project {
  text-decoration: none;
}

.gt-container .gt-meta {
  margin: 1.25em 0;
  padding: 1em 0;
  position: relative;
  border-bottom: 1px solid var(--gt-color-hr);
  font-size: 1em;
  position: relative;
  z-index: 10;
}

.gt-container .gt-meta::before, .gt-container .gt-meta::after {
  content: " ";
  display: table;
}

.gt-container .gt-meta::after {
  clear: both;
}

.gt-container .gt-counts {
  margin: 0 0.625em 0 0;
}

.gt-container .gt-user {
  float: right;
  margin: 0;
  font-size: 92%;
}

.gt-container .gt-user-pic {
  width: 16px;
  height: 16px;
  vertical-align: top;
  margin-right: 0.5em;
}

.gt-container .gt-user-inner {
  display: inline-block;
  cursor: pointer;
}

.gt-container .gt-user .gt-ico {
  margin: 0 0 0 0.3125em;
}

.gt-container .gt-user .gt-ico svg {
  fill: inherit;
}

.gt-container .gt-user .is--poping .gt-ico svg {
  fill: var(--gt-color-main);
}

.gt-container .gt-version {
  color: var(--gt-color-sub);
  margin-left: 0.375em;
}

.gt-container .gt-copyright {
  margin: 0 0.9375em 0.5em;
  border-top: 1px solid var(--gt-color-hr);
  padding-top: 0.5em;
}

.gt-container .gt-popup {
  position: absolute;
  right: 0;
  top: 2.375em;
  background: var(--gt-color-popbg);
  display: inline-block;
  border: 1px solid var(--gt-color-hr);
  padding: 0.625em 0;
  font-size: 0.875em;
  letter-spacing: 0.5px;
}

.gt-container .gt-popup .gt-action {
  cursor: pointer;
  display: block;
  margin: 0.5em 0;
  padding: 0 1.125em;
  position: relative;
  text-decoration: none;
}

.gt-container .gt-popup .gt-action.is--active::before {
  content: "";
  width: 0.25em;
  height: 0.25em;
  background: var(--gt-color-main);
  position: absolute;
  left: 0.5em;
  top: 0.4375em;
}

.gt-container .gt-header {
  position: relative;
  display: flex;
}

.gt-container .gt-header-comment {
  flex: 1;
  margin-left: 1.25em;
}

@media (max-width: 479px) {
  .gt-container .gt-header-comment {
    margin-left: 0.875em;
  }
}
.gt-container .gt-header-textarea {
  color: var(--gt-color-input);
  padding: 0.75em;
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-height: 5.125em;
  max-height: 15em;
  border-radius: 5px;
  border: 1px solid var(--gt-color-input-border);
  font-size: 0.875em;
  word-wrap: break-word;
  resize: vertical;
  background-color: var(--gt-color-input-bg);
  outline: none;
  transition: all 0s ease;
}

.gt-container .gt-header-textarea:hover {
  background-color: var(--gt-color-input-bg-hover);
}

.gt-container .gt-header-textarea::placeholder {
  color: var(--gt-color-input-placeholder);
}

.gt-container .gt-header-preview {
  padding: 0.75em;
  border-radius: 5px;
  border: 1px solid var(--gt-color-input-border);
  background-color: var(--gt-color-input-bg);
}

.gt-container .gt-header-controls {
  position: relative;
  margin: 0.75em 0 0;
}

.gt-container .gt-header-controls::before, .gt-container .gt-header-controls::after {
  content: " ";
  display: table;
}

.gt-container .gt-header-controls::after {
  clear: both;
}

@media (max-width: 479px) {
  .gt-container .gt-header-controls {
    margin: 0;
  }
}
.gt-container .gt-header-controls-tip {
  font-size: 0.875em;
  color: var(--gt-color-main);
  text-decoration: none;
  vertical-align: sub;
}

@media (max-width: 479px) {
  .gt-container .gt-header-controls-tip {
    display: none;
  }
}
.gt-container .gt-header-controls .gt-btn {
  float: right;
  margin-left: 1.25em;
}

@media (max-width: 479px) {
  .gt-container .gt-header-controls .gt-btn {
    float: none;
    width: 100%;
    margin: 0.75em 0 0;
  }
}
.gt-container:after {
  content: "";
  position: fixed;
  bottom: 100%;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0;
}

.gt-container.gt-input-focused {
  position: relative;
}

.gt-container.gt-input-focused:after {
  content: "";
  position: fixed;
  bottom: 0%;
  left: 0;
  right: 0;
  top: 0;
  background: #000;
  opacity: 0.6;
  transition: opacity 0s, bottom 0s;
  z-index: 9999;
}

.gt-container.gt-input-focused .gt-header-comment {
  z-index: 10000;
}

.gt-container .gt-comments {
  padding-top: 1.25em;
}

.gt-container .gt-comments-null {
  text-align: center;
}

.gt-container .gt-comments-controls {
  margin: 1.25em 0;
  text-align: center;
}

.gt-container .gt-comment {
  position: relative;
  padding: 0.625em 0;
  display: flex;
}

.gt-container .gt-comment-content {
  flex: 1;
  margin-left: 1.25em;
  padding: 0.75em 1em;
  background-color: var(--gt-color-comment-bg);
  overflow: auto;
  transition: all ease 0s;
}

@media (max-width: 479px) {
  .gt-container .gt-comment-content {
    margin-left: 0.875em;
    padding: 0.625em 0.75em;
  }
}
.gt-container .gt-comment-header {
  margin-bottom: 0.5em;
  font-size: 0.875em;
  position: relative;
}

.gt-container .gt-comment-block-1 {
  float: right;
  height: 1.375em;
  width: 2em;
}

.gt-container .gt-comment-block-2 {
  float: right;
  height: 1.375em;
  width: 4em;
}

.gt-container .gt-comment-username {
  font-weight: 500;
  color: var(--gt-color-main);
  text-decoration: none;
}

.gt-container .gt-comment-username:hover {
  text-decoration: underline;
}

.gt-container .gt-comment-text {
  margin-left: 0.5em;
  color: var(--gt-color-sub);
}

.gt-container .gt-comment-date {
  margin-left: 0.5em;
  color: var(--gt-color-sub);
}

.gt-container .gt-comment-like, .gt-container .gt-comment-edit, .gt-container .gt-comment-reply {
  position: absolute;
  height: 1.375em;
}

.gt-container .gt-comment-like:hover, .gt-container .gt-comment-edit:hover, .gt-container .gt-comment-reply:hover {
  cursor: pointer;
}

.gt-container .gt-comment-like {
  top: 0;
  right: 2em;
}

.gt-container .gt-comment-edit, .gt-container .gt-comment-reply {
  top: 0;
  right: 0;
}

.gt-container .gt-comment-body {
  color: var(--gt-color-comment-txt) !important;
}

.gt-container .gt-comment-body .email-hidden-toggle a {
  display: inline-block;
  height: 12px;
  padding: 0 9px;
  font-size: 12px;
  font-weight: 600;
  line-height: 6px;
  color: #444d56;
  text-decoration: none;
  vertical-align: middle;
  background: #dfe2e5;
  border-radius: 1px;
}

.gt-container .gt-comment-body .email-hidden-toggle a:hover {
  background-color: #c6cbd1;
}

.gt-container .gt-comment-body .email-hidden-reply {
  display: none;
  white-space: pre-wrap;
}

.gt-container .gt-comment-body .email-hidden-reply .email-signature-reply {
  padding: 0 15px;
  margin: 15px 0;
  color: #586069;
  border-left: 4px solid #dfe2e5;
}

.gt-container .gt-comment-body .email-hidden-reply.expanded {
  display: block;
}

.gt-container .gt-comment-admin .gt-comment-content {
  background-color: var(--gt-color-comment-adminbg);
}

@-webkit-keyframes gt-kf-rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-moz-keyframes gt-kf-rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-ms-keyframes gt-kf-rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-o-keyframes gt-kf-rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes gt-kf-rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (prefers-color-scheme: dark) {
  .gt-ico-github {
    filter: invert(1);
  }
}
:root {
  --minima-brand-color: #828282;
  --minima-brand-color-light: #e8e8e8;
  --minima-brand-color-dark: rgb(66.25, 66.25, 66.25);
  --minima-site-title-color: rgb(66.25, 66.25, 66.25);
  --minima-heading-color: #665e7b;
  --minima-text-color: #665e7b;
  --minima-background-color: #fefbf1;
  --minima-code-background-color: #eeeeff;
  --minima-link-base-color: #db3168;
  --minima-link-visited-color: rgb(163.0123966942, 28.4876033058, 72.0103305785);
  --minima-link-hover-color: #665e7b;
  --minima-border-color-01: #e8e8e8;
  --minima-border-color-02: rgb(219.25, 219.25, 219.25);
  --minima-border-color-03: rgb(66.25, 66.25, 66.25);
  --minima-table-text-color: #665e7b;
  --minima-table-zebra-color: rgb(247.3, 247.3, 247.3);
  --minima-table-header-bg-color: rgb(239.65, 239.65, 239.65);
  --minima-table-header-border: rgb(224.35, 224.35, 224.35);
  --minima-table-border-color: #e8e8e8;
}

.highlight .err {
  color: #e3d2d2;
  background-color: #a61717;
}

.highlight .c {
  color: #9c9996;
}

.highlight .cm {
  color: #9c9996;
}

.highlight .cp {
  color: #9c9996;
}

.highlight .c1 {
  color: #9c9996;
}

.highlight .cs {
  color: #9c9996;
  font-style: italic;
}

.highlight .gd {
  color: #e25050;
}

.highlight .gd .x {
  color: #e25050;
}

.highlight .ge {
  font-style: italic;
}

.highlight .gh {
  color: #999999;
}

.highlight .gi {
  color: #3f993f;
}

.highlight .gi .x {
  color: #3f993f;
}

.highlight .go {
  color: #888888;
}

.highlight .gp {
  color: #555555;
}

.highlight .gr {
  color: #aa0000;
}

.highlight .gs {
  font-weight: bold;
}

.highlight .gt {
  color: #aa0000;
}

.highlight .gu {
  color: #aaaaaa;
}

.highlight .k {
  color: #cf222e;
}

.highlight .kc {
  color: #cf222e;
}

.highlight .kd {
  color: #cf222e;
}

.highlight .kp {
  color: #cf222e;
}

.highlight .kr {
  color: #cf222e;
}

.highlight .kt {
  color: #445588;
}

.highlight .n {
  color: #111111;
}

.highlight .na {
  color: #097e39;
}

.highlight .nb {
  color: #cf222e;
}

.highlight .bp {
  color: #999999;
}

.highlight .nc {
  color: #097e39;
}

.highlight .ne {
  color: #990000;
}

.highlight .nf {
  color: #2c7d74;
}

.highlight .ni {
  color: #097e39;
}

.highlight .nn {
  color: #097e39;
}

.highlight .no {
  color: #a61154;
}

.highlight .nt {
  color: #b81e63;
}

.highlight .nv {
  color: #752a75;
}

.highlight .vc {
  color: #752a75;
}

.highlight .vg {
  color: #752a75;
}

.highlight .vi {
  color: #752a75;
}

.highlight .o {
  color: #0842a0;
}

.highlight .ow {
  color: #0842a0;
}

.highlight .m {
  color: #005a99;
}

.highlight .mf {
  color: #005a99;
}

.highlight .mh {
  color: #005a99;
}

.highlight .mi {
  color: #005a99;
}

.highlight .il {
  color: #005a99;
}

.highlight .mo {
  color: #005a99;
}

.highlight .s {
  color: #914d08;
}

.highlight .s1 {
  color: #914d08;
}

.highlight .s2 {
  color: #914d08;
}

.highlight .sb {
  color: #914d08;
}

.highlight .sc {
  color: #914d08;
}

.highlight .sd {
  color: #914d08;
}

.highlight .se {
  color: #914d08;
}

.highlight .sh {
  color: #914d08;
}

.highlight .si {
  color: #914d08;
}

.highlight .sr {
  color: #009926;
}

.highlight .ss {
  color: #0842a0;
}

.highlight .sx {
  color: #914d08;
}

.highlight .w {
  color: #bbbbbb;
}

.highlight .lineno, .highlight .gl {
  color: #9c9996;
}

@media (prefers-color-scheme: dark) {
  :root {
    --minima-brand-color: #929292;
    --minima-brand-color-light: rgb(158.75, 158.75, 158.75);
    --minima-brand-color-dark: rgb(36.35, 36.35, 36.35);
    --minima-site-title-color: rgb(158.75, 158.75, 158.75);
    --minima-heading-color: #ac94b1;
    --minima-text-color: #ac94b1;
    --minima-background-color: #0e0b01;
    --minima-code-background-color: #271b20;
    --minima-link-base-color: #de446f;
    --minima-link-visited-color: rgb(194.48, 34.32, 79.04);
    --minima-link-hover-color: #ac94b1;
    --minima-border-color-01: rgb(36.35, 36.35, 36.35);
    --minima-border-color-02: rgb(158.75, 158.75, 158.75);
    --minima-border-color-03: #929292;
    --minima-table-text-color: #ac94b1;
    --minima-table-zebra-color: rgb(33.04, 25.96, 2.36);
    --minima-table-header-bg-color: rgb(61.6, 48.4, 4.4);
    --minima-table-header-border: rgb(85.4, 67.1, 6.1);
    --minima-table-border-color: rgb(36.35, 36.35, 36.35);
  }
  .highlight .err {
    color: #e3d2d2;
    background-color: #8c2121;
  }
  .highlight .c {
    color: #8a8a8a;
  }
  .highlight .c1 {
    color: #8a8a8a;
  }
  .highlight .cm {
    color: #8a8a8a;
  }
  .highlight .cp {
    color: #8a8a8a;
  }
  .highlight .cs {
    color: #8a8a8a;
    font-style: italic;
  }
  .highlight .gd {
    color: #d85a5a;
  }
  .highlight .gd .x {
    color: #d85a5a;
  }
  .highlight .ge {
    font-style: italic;
  }
  .highlight .gh {
    color: #999999;
  }
  .highlight .gi {
    color: #4ec64e;
  }
  .highlight .gi .x {
    color: #4ec64e;
  }
  .highlight .go {
    color: #888888;
  }
  .highlight .gp {
    color: #555555;
  }
  .highlight .gr {
    color: #f07178;
  }
  .highlight .gs {
    font-weight: bold;
  }
  .highlight .gt {
    color: #f07178;
  }
  .highlight .gu {
    color: #aaaaaa;
  }
  .highlight .k {
    color: #d85a7b;
  }
  .highlight .kc {
    color: #d85a7b;
  }
  .highlight .kd {
    color: #d85a7b;
  }
  .highlight .kp {
    color: #d85a7b;
  }
  .highlight .kr {
    color: #d85a7b;
  }
  .highlight .kt {
    color: #ffcb6b;
  }
  .highlight .n {
    color: #c7d1d8;
  }
  .highlight .na {
    color: #11a69f;
  }
  .highlight .nb {
    color: #d85a7b;
  }
  .highlight .bp {
    color: #999999;
  }
  .highlight .nc {
    color: #11a69f;
  }
  .highlight .ne {
    color: #990000;
  }
  .highlight .nf {
    color: #5ab780;
  }
  .highlight .ni {
    color: #11a69f;
  }
  .highlight .nn {
    color: #11a69f;
  }
  .highlight .no {
    color: #9d99e6;
  }
  .highlight .nt {
    color: #de3581;
  }
  .highlight .nv {
    color: #9680b1;
  }
  .highlight .vc {
    color: #9680b1;
  }
  .highlight .vg {
    color: #9680b1;
  }
  .highlight .vi {
    color: #9680b1;
  }
  .highlight .o {
    color: #bcd890;
  }
  .highlight .ow {
    color: #bcd890;
  }
  .highlight .m {
    color: #9d99e6;
  }
  .highlight .mf {
    color: #9d99e6;
  }
  .highlight .mh {
    color: #9d99e6;
  }
  .highlight .mi {
    color: #9d99e6;
  }
  .highlight .il {
    color: #9d99e6;
  }
  .highlight .mo {
    color: #9d99e6;
  }
  .highlight .s {
    color: #baa94a;
  }
  .highlight .s1 {
    color: #baa94a;
  }
  .highlight .s2 {
    color: #baa94a;
  }
  .highlight .sb {
    color: #baa94a;
  }
  .highlight .sc {
    color: #baa94a;
  }
  .highlight .sd {
    color: #baa94a;
  }
  .highlight .se {
    color: #baa94a;
  }
  .highlight .sh {
    color: #baa94a;
  }
  .highlight .si {
    color: #baa94a;
  }
  .highlight .sr {
    color: #009926;
  }
  .highlight .ss {
    color: #3c90f5;
  }
  .highlight .sx {
    color: #baa94a;
  }
  .highlight .w {
    color: #eeffff;
  }
  .highlight .lineno, .highlight .gl {
    color: #8a8a8a;
  }
}
:root {
  --kbd-color: #333333;
  --kbd-background-color: #f7f7f7;
  --kbd-border-color: #cccccc;
  --hr-background-color: #ffc2d5;
  --search-color: #883e6b;
  --search-focus-color: #db5568;
  --search-border-color: #ff92a5;
  --search-background-color: #fff;
  --lineno-color: #bbb;
  --lineno-background-color: #eeeef0;
  --details-background-color: #fef0f1;
  --local-link-color: #fca25e;
  --selection-color: #ffffff;
  --selection-background-color: #ffa2a5;
  --target-background-color: #fcc3f6;
  --hr-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path style="fill:%23ffc2d5" d="m 3.8525389,1.6289069 q 1.189453,0 1.8691405,1.3769532 0.2460938,0.5449218 0.2578125,0.8320313 h 0.017578 Q 6.2021481,2.8886725 6.7412106,2.2617194 7.3740231,1.6289069 8.1650393,1.6289069 q 1.224609,0 1.9628907,1.3125 0.1875,0.4863282 0.1875,0.9140625 0,1.4648438 -1.2187507,2.7949219 L 5.9970701,10.371093 H 5.9619138 L 2.6689452,6.333985 Q 1.6845701,5.1328132 1.6845701,3.8554694 q 0,-1.2363281 1.1660158,-1.9628906 0.4921874,-0.2636719 1.001953,-0.2636719 z"/></svg>');
  --summary-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path d="M 1,5 6,10 11,5" style="fill:none;stroke:%23665e7b;stroke-width:1.5px;stroke-linecap:round;stroke-linejoin:round"/></svg>');
  --summary-image-brand: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path d="M 1,5 6,10 11,5" style="fill:none;stroke:%23828282;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round"/></svg>');
}

@media (prefers-color-scheme: dark) {
  :root {
    --kbd-color: #cccccc;
    --kbd-background-color: #080808;
    --kbd-border-color: #333333;
    --hr-background-color: #8a2d4c;
    --search-color: #902436;
    --search-focus-color: #c177a3;
    --search-border-color: #862333;
    --search-background-color: #000;
    --lineno-color: #777;
    --lineno-background-color: #202020;
    --details-background-color: #200b15;
    --local-link-color: #fca25e;
    --selection-color: #000000;
    --selection-background-color: #be7090;
    --target-background-color: #901680;
    --hr-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path style="fill:%238a2d4c" d="m 3.8525389,1.6289069 q 1.189453,0 1.8691405,1.3769532 0.2460938,0.5449218 0.2578125,0.8320313 h 0.017578 Q 6.2021481,2.8886725 6.7412106,2.2617194 7.3740231,1.6289069 8.1650393,1.6289069 q 1.224609,0 1.9628907,1.3125 0.1875,0.4863282 0.1875,0.9140625 0,1.4648438 -1.2187507,2.7949219 L 5.9970701,10.371093 H 5.9619138 L 2.6689452,6.333985 Q 1.6845701,5.1328132 1.6845701,3.8554694 q 0,-1.2363281 1.1660158,-1.9628906 0.4921874,-0.2636719 1.001953,-0.2636719 z"/></svg>');
    --summary-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path d="M 1,5 6,10 11,5" style="fill:none;stroke:%23ac94b1;stroke-width:1.5px;stroke-linecap:round;stroke-linejoin:round"/></svg>');
    --summary-image-brand: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path d="M 1,5 6,10 11,5" style="fill:none;stroke:%23929292;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round"/></svg>');
  }
}
@media (prefers-color-scheme: dark) {
  .dark-adaptive {
    filter: invert(1) hue-rotate(180deg);
  }
}
::selection {
  color: var(--selection-color);
  background-color: var(--selection-background-color);
}

kbd {
  margin: 0px 0.1em;
  padding: 0.1em 0.6em;
  border-radius: 3px;
  border: 1px solid var(--kbd-border-color);
  color: var(--kbd-color);
  line-height: 1.4;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  display: inline-block;
  position: relative;
  top: -2px;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.2), inset 0px 0px 0px 2px #ffffff;
  background-color: var(--kbd-background-color);
  -moz-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px #ffffff inset;
  -webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2), 0 0 0 2px #ffffff inset;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  text-shadow: 0 1px 0 #fff;
}

ul.pager {
  text-align: center;
  list-style: none;
}

ul.pager li {
  display: inline;
  padding: 5px;
}
ul.pager li.selected a {
  font-weight: bold;
}

a[rel~=external]::after {
  content: "↗︎";
  display: inline-block;
  background-color: var(--minima-link-base-color);
  width: 0.7em;
  --image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path d="M6 1h5v5L8.86 3.85 4.7 8 4 7.3l4.15-4.16L6 1Z M2 3h2v1H2v6h6V8h1v2a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1Z" /></svg>');
  mask-image: var(--image);
  -webkit-mask-image: var(--image);
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: left 25%;
  -webkit-mask-position: left 25%;
}
a[rel~=external]:visited::after {
  background-color: var(--minima-link-visited-color);
}
a[rel~=external]:hover::after {
  background-color: var(--minima-link-hover-color);
}

a:local-link {
  color: var(--local-link-color);
}

hr {
  border: 0;
  height: 2px;
  width: 50%;
  position: relative;
  overflow: visible;
  background-image: linear-gradient(to right, color-mix(in srgb, var(--hr-background-color) 0%, transparent), color-mix(in srgb, var(--hr-background-color) 100%, transparent), color-mix(in srgb, var(--hr-background-color) 0%, transparent));
}
hr::before {
  content: var(--hr-image);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

:target:not(#gitalk-container), ::target-text {
  background-color: var(--target-background-color);
}

.line-block {
  margin-bottom: 15px;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  text-align: center;
}
.embed-container iframe, .embed-container object, .embed-container embed {
  border: 0;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  translate: -50% 0;
}

.qed:not(.qed-span) {
  float: right;
}
.qed.qed-last {
  margin-top: -3em;
}

.qed-wrapper.qed-span {
  display: block;
  text-align: right;
}

.search-form {
  width: 100%;
  position: relative;
  display: flex;
  padding-bottom: 30px;
}

.search-text {
  width: 100%;
  border: 1px solid var(--search-border-color);
  border-right: none;
  padding: 5px;
  height: 20px;
  border-radius: 5px 0 0 5px;
  outline: none;
  color: var(--search-color);
  background-color: var(--search-background-color);
}
.search-text:focus {
  color: var(--search-focus-color);
}

.search-submit {
  width: 90px;
  height: 32px;
  border: 1px solid var(--search-border-color);
  background: var(--search-border-color);
  text-align: center;
  color: var(--search-background-color);
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 16px;
}

.rouge-table {
  border: none;
  margin: 0px 0px 15px 0px;
  overflow-x: auto;
  display: block;
  width: 100%;
}
.rouge-table tbody {
  border: none;
}
.rouge-table tbody tr {
  background: none !important;
  border: none;
}
.rouge-table tbody tr td {
  padding: 8px 12px;
  border: none;
}
.rouge-table tbody tr td pre {
  border: none;
  padding: 0;
  margin: 0;
}

.rouge-gutter {
  position: sticky;
  left: 0;
  color: var(--lineno-color);
  text-align: right;
  background: var(--lineno-background-color);
  width: 1px;
  user-select: none;
}
.rouge-gutter pre {
  background: transparent;
}

.highlight {
  width: 100%;
  tab-size: 4;
}
.highlight.language-ruby {
  tab-size: 2;
}

.katex-display-table {
  display: flex;
  gap: 1em;
  align-items: last baseline;
  margin: 1em 0;
}
.katex-display-table .katex-display-numbered {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}
.katex-display-table .katex-display {
  margin: 0;
}

.katex-display {
  overflow-x: auto;
  overflow-y: hidden;
}

.post-image {
  float: right;
  padding-left: 12px;
  padding-bottom: 6px;
  width: 64px;
}

.rss-subscribe {
  text-align: right;
}

.mastodon-heading {
  font-size: 1.75rem;
}

.mastodon-date {
  font-size: 14px;
  color: var(--minima-brand-color);
}

.mastodon-post-content {
  min-height: 100px;
  margin-bottom: 6px;
}

.mastodon-image {
  float: right;
  padding-left: 12px;
  padding-bottom: 6px;
  height: 100%;
  max-height: 100px;
}

.mastodon-subscribe {
  text-align: right;
}

.update-info {
  text-align: right;
  font-size: 10px;
  color: var(--minima-brand-color);
}

.post-navi {
  display: flex;
}

.post-navi-date {
  font-size: 0.8em;
  color: var(--minima-brand-color);
}

.post-navi-item {
  padding: 0 2.2em;
  width: 50%;
  position: relative;
}
.post-navi-item.navi-prev {
  text-align: left;
}
.post-navi-item.navi-prev::before {
  left: 0;
  content: "<";
}
.post-navi-item.navi-next {
  text-align: right;
}
.post-navi-item.navi-next::before {
  right: 0;
  content: ">";
}
.post-navi-item::before {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  font-size: 2.5em;
  color: var(--minima-brand-color-light);
}

summary {
  list-style: none;
  cursor: pointer;
  text-align: justify;
}
summary::after {
  content: var(--summary-image-brand);
  width: 1em;
  float: right;
  margin-left: 0.75em;
}
details[open] > summary::after {
  transform: rotate(180deg);
}

.e-content details {
  padding: 8px;
  background-color: var(--details-background-color);
}
.e-content details[open] {
  padding: 8px 8px 0px;
}

.e-content summary::after {
  content: var(--summary-image);
}

.post-meta dl > dt {
  display: inline-block;
  font-weight: bold;
  padding-right: 1em;
}
.post-meta dl > dd {
  display: inline;
}
.post-meta dl > dd::after {
  display: block;
  content: "";
}

.e-content p, .e-content ol, .e-content ul, .e-content dl, .e-content h1, .e-content h2, .e-content h3, .e-content h4, .e-content h5, .e-content h6, .mastodon-post-content p, .mastodon-post-content ol, .mastodon-post-content ul, .mastodon-post-content dl, .mastodon-post-content h1, .mastodon-post-content h2, .mastodon-post-content h3, .mastodon-post-content h4, .mastodon-post-content h5, .mastodon-post-content h6, .post-list-item p, .post-list-item ol, .post-list-item ul, .post-list-item dl, .post-list-item h1, .post-list-item h2, .post-list-item h3, .post-list-item h4, .post-list-item h5, .post-list-item h6, .post-header p, .post-header ol, .post-header ul, .post-header dl, .post-header h1, .post-header h2, .post-header h3, .post-header h4, .post-header h5, .post-header h6, .footer-col p, .footer-col ol, .footer-col ul, .footer-col dl, .footer-col h1, .footer-col h2, .footer-col h3, .footer-col h4, .footer-col h5, .footer-col h6 {
  text-align: justify;
}

.e-content p {
  text-indent: 2em;
}
.e-content p.no-indent {
  text-indent: 0;
}

.no-indent p, #footnotes p, .post-list-item p, .post-header p, .footer-col p, .post-list-item p {
  text-indent: 0;
}

figure img, figure svg {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
figure img + figcaption, figure svg + figcaption {
  text-align: center;
}
figure blockquote + figcaption {
  text-align: right;
}

html {
  font-size: 16px;
}

/**
 * Reset some basic elements
 */
body, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, hr,
dl, dd, ol, ul, figure {
  margin: 0;
  padding: 0;
}

/**
 * Basic styling
 */
body {
  font: 400 16px/1.5 "Noto Sans", "Noto Sans CJK SC", sans-serif, "Times New Roman", 宋体;
  color: var(--minima-text-color);
  background-color: var(--minima-background-color);
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "kern" 1;
  -moz-font-feature-settings: "kern" 1;
  -o-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  overflow-wrap: break-word;
}

/**
 * Set `margin-bottom` to maintain vertical rhythm
 */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
ul, ol, dl, figure,
div.highlight,
figure.highlight {
  margin-bottom: 15px;
}

hr {
  margin-top: 30px;
  margin-bottom: 30px;
}

/**
 * `main` element
 */
main {
  display: block; /* Default value of `display` of `main` element is 'inline' in IE 11. */
}

/**
 * Images
 */
img {
  max-width: 100%;
  vertical-align: middle;
}

/**
 * Figures
 */
figure > img {
  display: block;
}

figcaption {
  font-size: 14px;
}

/**
 * Lists
 */
ul, ol {
  margin-left: 30px;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

/**
 * Headings
 */
h1, h2, h3, h4, h5, h6 {
  color: var(--minima-heading-color);
  font-weight: 500;
}

/**
 * Links
 */
a {
  color: var(--minima-link-base-color);
  text-decoration: none;
}
a:visited {
  color: var(--minima-link-visited-color);
}
a:hover {
  color: var(--minima-link-hover-color);
  text-decoration: underline var(--minima-brand-color);
  text-underline-offset: 3px;
}
.social-media-list a:hover, .pagination a:hover {
  text-decoration: none;
}
.social-media-list a:hover .username, .pagination a:hover .username {
  text-decoration: underline;
}

/**
 * Blockquotes
 */
blockquote {
  color: var(--minima-brand-color);
  border-left: 4px solid var(--minima-border-color-01);
  padding-left: 15px;
  font-size: 1.05rem;
  font-style: italic;
}
blockquote > :last-child {
  margin-bottom: 0;
}
blockquote i, blockquote em {
  font-style: normal;
}

/**
 * Code formatting
 */
pre,
code {
  font-family: monospace;
  background-color: var(--minima-code-background-color);
}
@media screen and (max-width: 600px) {
  pre,
  code {
    font-family: monospace;
  }
}

pre {
  padding: 8px 12px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--minima-heading-color);
  overflow-x: auto;
}
pre > code {
  display: inline-block;
  width: 100%;
}

div.highlight, figure.highlight {
  border: 1px solid var(--minima-border-color-01);
  border-radius: 3px;
}
div.highlight pre, figure.highlight pre {
  margin: 0;
}
div.highlight table, div.highlight tbody, div.highlight th, div.highlight tr, div.highlight td, figure.highlight table, figure.highlight tbody, figure.highlight th, figure.highlight tr, figure.highlight td {
  margin: 0;
  padding: 0;
  border: 0;
}

figure.highlight > pre {
  padding: 5px 0 0;
}
figure.highlight td.gutter {
  border-right: 1px solid var(--minima-border-color-01);
}
figure.highlight td.code {
  width: 100%;
}

code.highlighter-rouge {
  padding: 1px 5px;
  font-size: 14px;
  border: 1px solid var(--minima-border-color-01);
  border-radius: 3px;
}

/**
 * Wrapper
 */
.wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 600px) {
  .wrapper {
    padding-right: 18px;
    padding-left: 18px;
  }
}

/**
 * Clearfix
 */
.wrapper:after {
  content: "";
  display: table;
  clear: both;
}

/**
 * Icons
 */
.orange {
  color: #f66a0a;
}

.grey {
  color: #828282;
}

.svg-icon {
  width: 1.25em;
  height: 1.25em;
  display: inline-block;
  fill: currentColor;
  vertical-align: text-bottom;
  overflow: visible;
}

/**
 * Tables
 */
table {
  margin-bottom: 30px;
  width: 100%;
  text-align: left;
  color: var(--minima-table-text-color);
  border-collapse: collapse;
  border: 1px solid var(--minima-table-border-color);
}
table tr:nth-child(even) {
  background-color: var(--minima-table-zebra-color);
}
table th, table td {
  padding: 10px 15px;
}
table th {
  background-color: var(--minima-table-header-bg-color);
  border: 1px solid var(--minima-table-header-border);
}
table td {
  border: 1px solid var(--minima-table-border-color);
}
@media screen and (max-width: 800px) {
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}

/**
 * Site header
 */
.site-header {
  position: relative;
  width: 100%;
  min-height: 55.95px;
  line-height: 54px;
  background-color: var(--minima-background-color);
  border-top: 5px solid var(--minima-border-color-03);
  border-bottom: 1px solid var(--minima-border-color-01);
}

.site-title {
  font-size: 1.625rem;
  font-weight: 300;
  letter-spacing: -1px;
  margin-bottom: 0;
  float: left;
}
@media screen and (max-width: 600px) {
  .site-title {
    padding-right: 45px;
  }
}
.site-title, .site-title:visited {
  color: var(--minima-site-title-color);
}

.site-nav {
  float: right;
  border: none;
  background-color: inherit;
}
.site-nav label[for=nav-trigger], .site-nav #nav-trigger {
  display: none;
}
.site-nav .nav-item {
  color: var(--minima-text-color);
}
.site-nav .nav-item:not(:last-child) {
  margin-right: 15px;
}
@media screen and (max-width: 600px) {
  .site-nav {
    position: absolute;
    top: 9px;
    right: 18px;
    background-color: var(--minima-background-color);
    border: 1px solid var(--minima-border-color-01);
    border-radius: 5px;
    text-align: right;
  }
  .site-nav label[for=nav-trigger] {
    display: block;
    float: right;
    width: 36px;
    height: 36px;
    cursor: pointer;
  }
  .site-nav .menu-icon {
    float: right;
    width: 36px;
    height: 26px;
    line-height: 0;
    padding-top: 18px;
    text-align: center;
  }
  .site-nav .menu-icon::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
  }
  .site-nav .menu-icon > svg path {
    fill: var(--minima-border-color-03);
  }
  .site-nav #nav-trigger ~ label[for=nav-trigger] .menu-icon::before {
    content: "\f0c9";
    font-size: 1.25em;
  }
  .site-nav #nav-trigger ~ .nav-items {
    clear: both;
    display: none;
  }
  .site-nav #nav-trigger:checked ~ label[for=nav-trigger] .menu-icon::before {
    content: "\f00d";
    font-size: 1.5em;
  }
  .site-nav #nav-trigger:checked ~ .nav-items {
    display: block;
    padding-bottom: 5px;
  }
  .site-nav #nav-trigger:checked ~ .nav-items .nav-item {
    margin-left: 20px;
    padding: 5px 10px;
  }
  .site-nav .nav-item {
    display: block;
    padding: 5px 0;
    color: var(--minima-text-color);
    line-height: 1.5;
  }
}

/**
 * Site footer
 */
.site-footer {
  border-top: 1px solid var(--minima-border-color-01);
  padding: 30px 0;
}

.footer-heading {
  font-size: 1.125rem;
  margin-bottom: 15px;
}

.feed-subscribe .svg-icon {
  padding: 5px 5px 2px 0;
}

.contact-list,
.social-media-list,
.pagination {
  list-style: none;
  margin-left: 0;
}

.footer-col-wrapper,
.social-links {
  font-size: 0.9375rem;
  color: var(--minima-brand-color);
}

.footer-col {
  margin-bottom: 15px;
}

.footer-col-1,
.footer-col-2 {
  width: calc(50% - 30px / 2);
}

.footer-col-3 {
  width: calc(100% - 30px / 2);
}

@media screen and (min-width: 800px) {
  .footer-col-1 {
    width: calc(35% - 30px / 2);
  }
  .footer-col-2 {
    width: calc(20% - 30px / 2);
  }
  .footer-col-3 {
    width: calc(45% - 30px / 2);
  }
}
@media screen and (min-width: 600px) {
  .footer-col-wrapper {
    display: flex;
  }
  .footer-col {
    width: calc(100% - 30px / 2);
    padding: 0 15px;
  }
  .footer-col:first-child {
    padding-right: 15px;
    padding-left: 0;
  }
  .footer-col:last-child {
    padding-right: 0;
    padding-left: 15px;
  }
}
/**
 * Page content
 */
.page-content {
  padding: 30px 0;
  flex: 1 0 auto;
}

.page-heading {
  font-size: 2rem;
}

.post-list-heading {
  font-size: 1.75rem;
}

.post-list {
  margin-left: 0;
  list-style: none;
}
.post-list > li {
  margin-bottom: 30px;
}

.post-meta {
  font-size: 14px;
  color: var(--minima-brand-color);
}

.post-link {
  display: block;
  font-size: 1.5rem;
}

/**
 * Posts
 */
.post-header {
  margin-bottom: 30px;
  padding-bottom: 18px;
  text-align: center;
  border-bottom: 1px solid var(--minima-border-color-01);
}

.post-meta .bullet-divider {
  padding-inline: 15px;
}
.post-meta .meta-label {
  font-weight: 600;
}
.post-meta .force-inline {
  display: inline;
}
.post-meta .force-inline::before {
  content: "•";
  padding-inline: 5px;
}
.post-meta .post-authors {
  margin-top: 3px;
}

.post-title,
.post-content h1 {
  margin-bottom: 10px;
  font-size: 2.625rem;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.15;
}
@media screen and (min-width: 800px) {
  .post-title,
  .post-content h1 {
    font-size: 2.625rem;
  }
}

.post-content {
  margin-bottom: 30px;
}
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  margin-top: 30px;
}
.post-content h2 {
  font-size: 1.75rem;
}
@media screen and (min-width: 800px) {
  .post-content h2 {
    font-size: 2rem;
  }
}
.post-content h3 {
  font-size: 1.375rem;
}
@media screen and (min-width: 800px) {
  .post-content h3 {
    font-size: 1.625rem;
  }
}
.post-content h4 {
  font-size: 1.25rem;
}
.post-content h5 {
  font-size: 1.125rem;
}
.post-content h6 {
  font-size: 1.0625rem;
}

.comments-disabled-message {
  text-align: center;
  font-weight: 300;
}

.social-media-list, .pagination {
  display: table;
  margin: 0 auto;
}
.social-media-list li, .pagination li {
  float: left;
  min-width: 45px;
  min-height: 45px;
  text-align: center;
  margin: 5px 10px 5px 0;
}
.social-media-list li:last-of-type, .pagination li:last-of-type {
  margin-right: 0;
}
.social-media-list li a, .pagination li a {
  display: block;
  padding: 10px 12px;
  border: 1px solid var(--minima-border-color-01);
}
.social-media-list li a:hover, .pagination li a:hover {
  border-color: var(--minima-border-color-02);
}

/**
 * Pagination navbar
 */
.pagination {
  margin-bottom: 30px;
}
.pagination li a, .pagination li div {
  min-width: 41px;
  text-align: center;
  box-sizing: border-box;
}
.pagination li div {
  display: block;
  padding: 7.5px;
  border: 1px solid transparent;
}
.pagination li div.pager-edge {
  color: var(--minima-border-color-01);
  border: 1px dashed;
}

/**
 * Task-lists
 */
.task-list {
  margin-left: 0;
  padding-left: 18px;
}

.task-list-item {
  list-style-type: none;
}
.task-list-item-checkbox {
  position: relative;
  margin-right: 9px;
  margin-left: -15px;
  appearance: none;
  border: 8px solid var(--minima-border-color-01);
  vertical-align: text-top;
  z-index: -1;
}
.task-list-item-checkbox::after {
  position: absolute;
  top: -8px;
  left: -3px;
  width: 4px;
  height: 10px;
  content: "";
  border: solid transparent;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.task-list-item-checkbox:checked::after {
  border-color: var(--minima-border-color-03);
}

/**
 * Grid helpers
 */
@media screen and (min-width: 800px) {
  .one-half {
    width: calc(50% - 30px / 2);
  }
}
.site-header {
  z-index: 1;
}

hr {
  margin: 30px auto;
}

blockquote {
  font-style: initial;
  font-size: inherit;
  letter-spacing: initial;
}
blockquote i, blockquote em {
  font-style: italic;
}

pre.highlight {
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 0;
}

dfn {
  font-style: normal;
  font-weight: bold;
}

pre, code {
  font-size: inherit;
}

.footer-col-1, .footer-col-2, .footer-col-3 {
  width: calc(100% - 30px / 2);
}

details {
  margin-bottom: 15px;
}

details[open] > summary {
  margin-bottom: 15px;
}

.post-meta details {
  margin-bottom: 0px;
}

.post-meta time {
  display: block;
  margin-bottom: 15px;
  text-align: left;
}

dl {
  margin-left: 30px;
}

.embed-container {
  margin-bottom: 15px;
}

table {
  margin-bottom: 15px;
  width: fit-content;
  text-align: initial;
  overflow-x: auto;
  position: relative;
  left: 50%;
  translate: -50%;
}