:root {
  --body-bg-color: #f5f7f9;
  --content-bg-color: #fff;
  --card-bg-color: #f5f5f5;
  --text-color: #555;
  --selection-bg: #262a30;
  --selection-color: #eee;
  --blockquote-color: #666;
  --link-color: #555;
  --link-hover-color: #222;
  --brand-color: #fff;
  --brand-hover-color: #fff;
  --table-row-odd-bg-color: #f9f9f9;
  --table-row-hover-bg-color: #f5f5f5;
  --menu-item-bg-color: #f5f5f5;
  --theme-color: #f8fafc;
  --btn-default-bg: #fff;
  --btn-default-color: #555;
  --btn-default-border-color: #555;
  --btn-default-hover-bg: #222;
  --btn-default-hover-color: #fff;
  --btn-default-hover-border-color: #222;
  --highlight-background: #f3f3f3;
  --highlight-foreground: #444;
  --highlight-gutter-background: #e1e1e1;
  --highlight-gutter-foreground: #555;
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root {
    --body-bg-color: #282828;
    --content-bg-color: #333;
    --card-bg-color: #555;
    --text-color: #ccc;
    --selection-bg: #bbb;
    --selection-color: #333;
    --blockquote-color: #bbb;
    --link-color: #ccc;
    --link-hover-color: #eee;
    --brand-color: #ddd;
    --brand-hover-color: #ddd;
    --table-row-odd-bg-color: #282828;
    --table-row-hover-bg-color: #363636;
    --menu-item-bg-color: #555;
    --theme-color: #0b1120;
    --btn-default-bg: #222;
    --btn-default-color: #ccc;
    --btn-default-border-color: #555;
    --btn-default-hover-bg: #666;
    --btn-default-hover-color: #ccc;
    --btn-default-hover-border-color: #666;
    --highlight-background: #1c1b1b;
    --highlight-foreground: #fff;
    --highlight-gutter-background: #323131;
    --highlight-gutter-foreground: #e8e8e8;
    color-scheme: dark;
  }
  img {
    opacity: 0.75;
  }
  img:hover {
    opacity: 0.9;
  }
  iframe {
    color-scheme: light;
  }
}
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
a {
  background: transparent;
}
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}
button,
input {
/* 1 */
  overflow: visible;
}
button,
select {
/* 1 */
  text-transform: none;
}
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type='checkbox'],
[type='radio'] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}
[type='search'] {
  outline-offset: -2px; /* 2 */
  -webkit-appearance: textfield; /* 1 */
}
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  font: inherit; /* 2 */
  -webkit-appearance: button; /* 1 */
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
::selection {
  background: var(--selection-bg);
  color: var(--selection-color);
}
html,
body {
  height: 100%;
}
body {
  background: var(--body-bg-color);
  box-sizing: border-box;
  color: var(--text-color);
  font-family: Lato, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 1em;
  line-height: 2;
  min-height: 100%;
  position: relative;
  transition: padding 0.2s ease-in-out;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Lato, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-weight: bold;
  line-height: 1.5;
  margin: 30px 0 15px;
}
h1 {
  font-size: 1.5em;
}
h2 {
  font-size: 1.375em;
}
h3 {
  font-size: 1.25em;
}
h4 {
  font-size: 1.125em;
}
h5 {
  font-size: 1em;
}
h6 {
  font-size: 0.875em;
}
a {
  border-bottom: 1px solid #999;
  color: var(--link-color);
  cursor: pointer;
  outline: 0;
  text-decoration: none;
  overflow-wrap: break-word;
}
a:hover {
  border-bottom-color: var(--link-hover-color);
  color: var(--link-hover-color);
}
iframe,
img,
video,
embed {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
hr {
  background-image: repeating-linear-gradient(-45deg, #ddd, #ddd 4px, transparent 4px, transparent 8px);
  border: 0;
  height: 3px;
  margin: 40px 0;
}
blockquote {
  border-left: 4px solid #ddd;
  color: var(--blockquote-color);
  margin: 0;
  padding: 0 15px;
}
blockquote cite::before {
  content: '-';
  padding: 0 5px;
}
dt {
  font-weight: bold;
}
dd {
  margin: 0;
  padding: 0;
}
.table-container {
  overflow: auto;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 0.875em;
  margin: 0 0 20px;
  width: 100%;
}
tbody tr:nth-of-type(odd) {
  background: var(--table-row-odd-bg-color);
}
tbody tr:hover {
  background: var(--table-row-hover-bg-color);
}
caption,
th,
td {
  padding: 8px;
}
th,
td {
  border: 1px solid #ddd;
  border-bottom: 3px solid #ddd;
}
th {
  font-weight: 700;
  padding-bottom: 10px;
}
td {
  border-bottom-width: 1px;
}
.btn {
  background: var(--btn-default-bg);
  border: 2px solid var(--btn-default-border-color);
  border-radius: 2px;
  color: var(--btn-default-color);
  display: inline-block;
  font-size: 0.875em;
  line-height: 2;
  padding: 0 20px;
  transition: background-color 0.2s ease-in-out;
}
.btn:hover {
  background: var(--btn-default-hover-bg);
  border-color: var(--btn-default-hover-border-color);
  color: var(--btn-default-hover-color);
}
.btn + .btn {
  margin: 0 0 8px 8px;
}
.btn .fa-fw {
  text-align: left;
  width: 1.285714285714286em;
}
.toggle {
  line-height: 0;
}
.toggle .toggle-line {
  background: #fff;
  display: block;
  height: 2px;
  left: 0;
  position: relative;
  top: 0;
  transition: 0.4s;
  transition-property: left, opacity, top, transform, width;
  width: 100%;
}
.toggle .toggle-line:first-child {
  margin-top: 1px;
}
.toggle .toggle-line:not(:first-child) {
  margin-top: 4px;
}
.toggle.toggle-arrow :first-child {
  left: 50%;
  top: 2px;
  transform: rotate(45deg);
  width: 50%;
}
.toggle.toggle-arrow :last-child {
  left: 50%;
  top: -2px;
  transform: rotate(-45deg);
  width: 50%;
}
.toggle.toggle-close :nth-child(2) {
  opacity: 0;
}
.toggle.toggle-close :first-child {
  top: 6px;
  transform: rotate(45deg);
}
.toggle.toggle-close :last-child {
  top: -6px;
  transform: rotate(-45deg);
}
pre code.hljs {
  display: block;
  overflow-x: auto;
  padding: 1em
}
code.hljs {
  padding: 3px 5px
}
/*!
  Theme: Default
  Description: Original highlight.js style
  Author: (c) Ivan Sagalaev <maniac@softwaremaniacs.org>
  Maintainer: @highlightjs/core-team
  Website: https://highlightjs.org/
  License: see project LICENSE
  Touched: 2021
*/
/*
This is left on purpose making default.css the single file that can be lifted
as-is from the repository directly without the need for a build step

Typically this "required" baseline CSS is added by `makestuff.js` during build.
*/
pre code.hljs {
  display: block;
  overflow-x: auto;
  padding: 1em
}
code.hljs {
  padding: 3px 5px
}
/* end baseline CSS */
.hljs {
  background: #F3F3F3;
  color: #444
}
/* Base color: saturation 0; */
.hljs-subst {
  /* default */
  
}
/* purposely ignored */
.hljs-formula,
.hljs-attr,
.hljs-property,
.hljs-params {
  
}
.hljs-comment {
  color: #697070
}
.hljs-tag,
.hljs-punctuation {
  color: #444a
}
.hljs-tag .hljs-name,
.hljs-tag .hljs-attr {
  color: #444
}
.hljs-keyword,
.hljs-attribute,
.hljs-selector-tag,
.hljs-meta .hljs-keyword,
.hljs-doctag,
.hljs-name {
  font-weight: bold
}
/* User color: hue: 0 */
.hljs-type,
.hljs-string,
.hljs-number,
.hljs-selector-id,
.hljs-selector-class,
.hljs-quote,
.hljs-template-tag,
.hljs-deletion {
  color: #880000
}
.hljs-title,
.hljs-section {
  color: #880000;
  font-weight: bold
}
.hljs-regexp,
.hljs-symbol,
.hljs-variable,
.hljs-template-variable,
.hljs-link,
.hljs-selector-attr,
.hljs-operator,
.hljs-selector-pseudo {
  color: #ab5656
}
/* Language color: hue: 90; */
.hljs-literal {
  color: #695
}
.hljs-built_in,
.hljs-bullet,
.hljs-code,
.hljs-addition {
  color: #397300
}
/* Meta color: hue: 200 */
.hljs-meta {
  color: #1f7199
}
.hljs-meta .hljs-string {
  color: #38a
}
/* Misc effects */
.hljs-emphasis {
  font-style: italic
}
.hljs-strong {
  font-weight: bold
}
@media (prefers-color-scheme: dark) {
pre code.hljs {
  display: block;
  overflow-x: auto;
  padding: 1em
}
code.hljs {
  padding: 3px 5px
}
/*!
  Theme: StackOverflow Dark
  Description: Dark theme as used on stackoverflow.com
  Author: stackoverflow.com
  Maintainer: @Hirse
  Website: https://github.com/StackExchange/Stacks
  License: MIT
  Updated: 2021-05-15

  Updated for @stackoverflow/stacks v0.64.0
  Code Blocks: /blob/v0.64.0/lib/css/components/_stacks-code-blocks.less
  Colors: /blob/v0.64.0/lib/css/exports/_stacks-constants-colors.less
*/
.hljs {
  /* var(--highlight-color) */
  color: #ffffff;
  /* var(--highlight-bg) */
  background: #1c1b1b
}
.hljs-subst {
  /* var(--highlight-color) */
  color: #ffffff
}
.hljs-comment {
  /* var(--highlight-comment) */
  color: #999999
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-meta .hljs-keyword,
.hljs-doctag,
.hljs-section {
  /* var(--highlight-keyword) */
  color: #88aece
}
.hljs-attr {
  /* var(--highlight-attribute); */
  color: #88aece
}
.hljs-attribute {
  /* var(--highlight-symbol) */
  color: #c59bc1
}
.hljs-name,
.hljs-type,
.hljs-number,
.hljs-selector-id,
.hljs-quote,
.hljs-template-tag {
  /* var(--highlight-namespace) */
  color: #f08d49
}
.hljs-selector-class {
  /* var(--highlight-keyword) */
  color: #88aece
}
.hljs-string,
.hljs-regexp,
.hljs-symbol,
.hljs-variable,
.hljs-template-variable,
.hljs-link,
.hljs-selector-attr {
  /* var(--highlight-variable) */
  color: #b5bd68
}
.hljs-meta,
.hljs-selector-pseudo {
  /* var(--highlight-keyword) */
  color: #88aece
}
.hljs-built_in,
.hljs-title,
.hljs-literal {
  /* var(--highlight-literal) */
  color: #f08d49
}
.hljs-bullet,
.hljs-code {
  /* var(--highlight-punctuation) */
  color: #cccccc
}
.hljs-meta .hljs-string {
  /* var(--highlight-variable) */
  color: #b5bd68
}
.hljs-deletion {
  /* var(--highlight-deletion) */
  color: #de7176
}
.hljs-addition {
  /* var(--highlight-addition) */
  color: #76c490
}
.hljs-emphasis {
  font-style: italic
}
.hljs-strong {
  font-weight: bold
}
.hljs-formula,
.hljs-operator,
.hljs-params,
.hljs-property,
.hljs-punctuation,
.hljs-tag {
  /* purposely ignored */
  
}
}
.highlight:hover .copy-btn,
.code-container:hover .copy-btn {
  opacity: 1;
}
.code-container {
  position: relative;
}
.code-lang {
  font-size: 40px;
  line-height: 1;
  opacity: 0.1;
  pointer-events: none;
  position: absolute;
  right: 5px;
}
.copy-btn {
  color: #333;
  cursor: pointer;
  line-height: 1.6;
  opacity: 0;
  padding: 2px 6px;
  position: absolute;
  transition: opacity 0.2s ease-in-out;
  background: #fff;
  border: 0;
  font-size: 0.8125em;
  right: 0;
  top: 0;
}
code,
kbd,
figure.highlight,
pre {
  background: var(--highlight-background);
  color: var(--highlight-foreground);
}
figure.highlight,
pre {
  line-height: 1.6;
  margin: 0 auto 20px;
}
figure.highlight figcaption,
pre .caption {
  background: var(--highlight-gutter-background);
  color: var(--highlight-foreground);
  display: flow-root;
  font-size: 0.875em;
  line-height: 1.2;
  padding: 0.5em;
}
figure.highlight figcaption a,
pre .caption a {
  color: var(--highlight-foreground);
  float: right;
}
figure.highlight figcaption a:hover,
pre .caption a:hover {
  border-bottom-color: var(--highlight-foreground);
}
pre,
code {
  font-family: consolas, Menlo, monospace, 'PingFang SC', 'Microsoft YaHei';
}
code {
  border-radius: 3px;
  font-size: 0.875em;
  padding: 2px 4px;
  overflow-wrap: break-word;
}
kbd {
  border: 2px solid #ccc;
  border-radius: 0.2em;
  box-shadow: 0.1em 0.1em 0.2em rgba(0,0,0,0.1);
  font-family: inherit;
  padding: 0.1em 0.3em;
  white-space: nowrap;
}
figure.highlight {
  overflow: auto;
  position: relative;
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  figure.highlight {
    color-scheme: dark;
  }
}
figure.highlight pre {
  border: 0;
  margin: 0;
  padding: 10px 0;
}
figure.highlight table {
  border: 0;
  margin: 0;
  width: auto;
}
figure.highlight td {
  border: 0;
  padding: 0;
}
figure.highlight .gutter {
  -webkit-user-select: none;
  user-select: none;
}
figure.highlight .gutter pre {
  background: var(--highlight-gutter-background);
  color: var(--highlight-gutter-foreground);
  padding-left: 10px;
  padding-right: 10px;
  text-align: right;
}
figure.highlight .code pre {
  padding-left: 10px;
  width: 100%;
}
figure.highlight .marked {
  background: rgba(0,0,0,0.3);
}
pre .caption {
  margin-bottom: 10px;
}
.gist table {
  width: auto;
}
.gist table td {
  border: 0;
}
pre {
  overflow: auto;
  padding: 10px;
}
pre code {
  background: none;
  padding: 0;
  text-shadow: none;
}
.blockquote-center {
  border-left: 0;
  margin: 40px 0;
  padding: 0;
  position: relative;
  text-align: center;
}
.blockquote-center::before,
.blockquote-center::after {
  left: 0;
  line-height: 1;
  opacity: 0.6;
  position: absolute;
  width: 100%;
}
.blockquote-center::before {
  border-top: 1px solid #ccc;
  text-align: left;
  top: -20px;
  content: '\f10d';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
}
.blockquote-center::after {
  border-bottom: 1px solid #ccc;
  bottom: -20px;
  text-align: right;
  content: '\f10e';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
}
.blockquote-center p,
.blockquote-center div {
  text-align: center;
}
.group-picture {
  margin-bottom: 20px;
}
.group-picture .group-picture-row {
  display: flex;
  gap: 3px;
  margin-bottom: 3px;
}
.group-picture .group-picture-column {
  flex: 1;
}
.group-picture .group-picture-column img {
  height: 100%;
  margin: 0;
  object-fit: cover;
  width: 100%;
}
.post-body .label {
  color: #555;
  padding: 0 2px;
}
.post-body .label.default {
  background: #f0f0f0;
}
.post-body .label.primary {
  background: #efe6f7;
}
.post-body .label.info {
  background: #e5f2f8;
}
.post-body .label.success {
  background: #e7f4e9;
}
.post-body .label.warning {
  background: #fcf6e1;
}
.post-body .label.danger {
  background: #fae8eb;
}
.post-body .link-grid {
  display: grid;
  grid-gap: 1.5rem;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  margin-bottom: 20px;
  padding: 1rem;
}
.post-body .link-grid .link-grid-container {
  border: solid #ddd;
  box-shadow: 1rem 1rem 0.5rem rgba(0,0,0,0.5);
  min-height: 5rem;
  min-width: 0;
  padding: 0.5rem;
  position: relative;
  transition: background 0.3s;
}
.post-body .link-grid .link-grid-container:hover {
  animation: next-shake 0.5s;
  background: var(--card-bg-color);
}
.post-body .link-grid .link-grid-container:active {
  box-shadow: 0.5rem 0.5rem 0.25rem rgba(0,0,0,0.5);
  transform: translate(0.2rem, 0.2rem);
}
.post-body .link-grid .link-grid-container .link-grid-image {
  border: 1px solid #ddd;
  border-radius: 50%;
  box-sizing: border-box;
  height: 5rem;
  padding: 3px;
  position: absolute;
  width: 5rem;
}
.post-body .link-grid .link-grid-container p {
  margin: 0 1rem 0 6rem;
}
.post-body .link-grid .link-grid-container p:first-of-type {
  font-size: 1.2em;
}
.post-body .link-grid .link-grid-container p:last-of-type {
  font-size: 0.8em;
  line-height: 1.3rem;
  opacity: 0.7;
}
.post-body .link-grid .link-grid-container a {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@keyframes next-shake {
  0% {
    transform: translate(1pt, 1pt) rotate(0deg);
  }
  10% {
    transform: translate(-1pt, -2pt) rotate(-1deg);
  }
  20% {
    transform: translate(-3pt, 0pt) rotate(1deg);
  }
  30% {
    transform: translate(3pt, 2pt) rotate(0deg);
  }
  40% {
    transform: translate(1pt, -1pt) rotate(1deg);
  }
  50% {
    transform: translate(-1pt, 2pt) rotate(-1deg);
  }
  60% {
    transform: translate(-3pt, 1pt) rotate(0deg);
  }
  70% {
    transform: translate(3pt, 1pt) rotate(-1deg);
  }
  80% {
    transform: translate(-1pt, -1pt) rotate(1deg);
  }
  90% {
    transform: translate(1pt, 2pt) rotate(0deg);
  }
  100% {
    transform: translate(1pt, -2pt) rotate(-1deg);
  }
}
.post-body .note {
  border-radius: 3px;
  margin-bottom: 20px;
  padding: 1em;
  position: relative;
  border: 1px solid #eee;
  border-left-width: 5px;
}
.post-body .note summary {
  cursor: pointer;
  outline: 0;
}
.post-body .note summary p {
  display: inline;
}
.post-body .note h2,
.post-body .note h3,
.post-body .note h4,
.post-body .note h5,
.post-body .note h6 {
  border-bottom: initial;
  margin: 0;
  padding-top: 0;
}
.post-body .note :first-child {
  margin-top: 0;
}
.post-body .note :last-child {
  margin-bottom: 0;
}
.post-body .note.default {
  border-left-color: #777;
}
.post-body .note.default h2,
.post-body .note.default h3,
.post-body .note.default h4,
.post-body .note.default h5,
.post-body .note.default h6 {
  color: #777;
}
.post-body .note.primary {
  border-left-color: #6f42c1;
}
.post-body .note.primary h2,
.post-body .note.primary h3,
.post-body .note.primary h4,
.post-body .note.primary h5,
.post-body .note.primary h6 {
  color: #6f42c1;
}
.post-body .note.info {
  border-left-color: #428bca;
}
.post-body .note.info h2,
.post-body .note.info h3,
.post-body .note.info h4,
.post-body .note.info h5,
.post-body .note.info h6 {
  color: #428bca;
}
.post-body .note.success {
  border-left-color: #5cb85c;
}
.post-body .note.success h2,
.post-body .note.success h3,
.post-body .note.success h4,
.post-body .note.success h5,
.post-body .note.success h6 {
  color: #5cb85c;
}
.post-body .note.warning {
  border-left-color: #f0ad4e;
}
.post-body .note.warning h2,
.post-body .note.warning h3,
.post-body .note.warning h4,
.post-body .note.warning h5,
.post-body .note.warning h6 {
  color: #f0ad4e;
}
.post-body .note.danger {
  border-left-color: #d9534f;
}
.post-body .note.danger h2,
.post-body .note.danger h3,
.post-body .note.danger h4,
.post-body .note.danger h5,
.post-body .note.danger h6 {
  color: #d9534f;
}
.post-body .tabs {
  margin-bottom: 20px;
}
.post-body .tabs,
.tabs-comment {
  padding-top: 10px;
}
.post-body .tabs ul.nav-tabs,
.tabs-comment ul.nav-tabs {
  background: var(--content-bg-color);
  display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 5;
}
@media (max-width: 413px) {
  .post-body .tabs ul.nav-tabs,
  .tabs-comment ul.nav-tabs {
    display: block;
    margin-bottom: 5px;
  }
}
.post-body .tabs ul.nav-tabs li.tab,
.tabs-comment ul.nav-tabs li.tab {
  border-bottom: 1px solid #ddd;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-radius: 0 0 0 0;
  border-top: 3px solid transparent;
  flex-grow: 1;
  list-style-type: none;
}
@media (max-width: 413px) {
  .post-body .tabs ul.nav-tabs li.tab,
  .tabs-comment ul.nav-tabs li.tab {
    border-bottom: 1px solid transparent;
    border-left: 3px solid transparent;
    border-right: 1px solid transparent;
    border-top: 1px solid transparent;
  }
}
@media (max-width: 413px) {
  .post-body .tabs ul.nav-tabs li.tab,
  .tabs-comment ul.nav-tabs li.tab {
    border-radius: 0;
  }
}
.post-body .tabs ul.nav-tabs li.tab a,
.tabs-comment ul.nav-tabs li.tab a {
  border-bottom: initial;
  display: block;
  line-height: 1.8;
  padding: 0.25em 0.75em;
  text-align: center;
  transition: all 0.2s ease-out;
}
.post-body .tabs ul.nav-tabs li.tab a i[class^='fa'],
.tabs-comment ul.nav-tabs li.tab a i[class^='fa'] {
  width: 1.285714285714286em;
}
.post-body .tabs ul.nav-tabs li.tab.active,
.tabs-comment ul.nav-tabs li.tab.active {
  border-bottom-color: transparent;
  border-left-color: #ddd;
  border-right-color: #ddd;
  border-top-color: #fc6423;
}
@media (max-width: 413px) {
  .post-body .tabs ul.nav-tabs li.tab.active,
  .tabs-comment ul.nav-tabs li.tab.active {
    border-bottom-color: #ddd;
    border-left-color: #fc6423;
    border-right-color: #ddd;
    border-top-color: #ddd;
  }
}
.post-body .tabs ul.nav-tabs li.tab.active a,
.tabs-comment ul.nav-tabs li.tab.active a {
  cursor: default;
}
.post-body .tabs .tab-content,
.tabs-comment .tab-content {
  border: 1px solid #ddd;
  border-radius: 0 0 0 0;
  border-top-color: transparent;
}
@media (max-width: 413px) {
  .post-body .tabs .tab-content,
  .tabs-comment .tab-content {
    border-radius: 0;
    border-top-color: #ddd;
  }
}
.post-body .tabs .tab-content .tab-pane,
.tabs-comment .tab-content .tab-pane {
  padding: 20px 20px 0;
}
.post-body .tabs .tab-content .tab-pane:not(.active),
.tabs-comment .tab-content .tab-pane:not(.active) {
  display: none;
}
.pagination .prev,
.pagination .next,
.pagination .page-number,
.pagination .space {
  display: inline-block;
  margin: -1px 10px 0;
  padding: 0 10px;
}
@media (max-width: 767px) {
  .pagination .prev,
  .pagination .next,
  .pagination .page-number,
  .pagination .space {
    margin: 0 5px;
  }
}
.pagination .page-number.current {
  background: #ccc;
  border-color: #ccc;
  color: var(--content-bg-color);
}
.pagination {
  border-top: 1px solid #eee;
  margin: 120px 0 0;
  text-align: center;
}
.pagination .prev,
.pagination .next,
.pagination .page-number {
  border-bottom: 0;
  border-top: 1px solid #eee;
  transition: border-color 0.2s ease-in-out;
}
.pagination .prev:hover,
.pagination .next:hover,
.pagination .page-number:hover {
  border-top-color: var(--link-hover-color);
}
@media (max-width: 767px) {
  .pagination {
    border-top: 0;
  }
  .pagination .prev,
  .pagination .next,
  .pagination .page-number {
    border-bottom: 1px solid #eee;
    border-top: 0;
  }
  .pagination .prev:hover,
  .pagination .next:hover,
  .pagination .page-number:hover {
    border-bottom-color: var(--link-hover-color);
  }
}
.pagination .space {
  margin: 0;
  padding: 0;
}
.comments {
  margin-top: 60px;
  overflow: hidden;
}
.comment-button-group {
  display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  justify-content: center;
  margin: 1em 0;
}
.comment-button-group .comment-button {
  margin: 0.1em 0.2em;
}
.comment-button-group .comment-button.active {
  background: var(--btn-default-hover-bg);
  border-color: var(--btn-default-hover-border-color);
  color: var(--btn-default-hover-color);
}
.comment-position {
  display: none;
}
.comment-position.active {
  display: block;
}
.tabs-comment {
  margin-top: 4em;
  padding-top: 0;
}
.tabs-comment .comments {
  margin-top: 0;
  padding-top: 0;
}
.headband {
  background: var(--theme-color);
  height: 3px;
}
@media (max-width: 991px) {
  .headband {
    display: none;
  }
}
.site-brand-container {
  display: flex;
  flex-shrink: 0;
  padding: 0 10px;
}
.use-motion .column,
.use-motion .site-brand-container .toggle {
  opacity: 0;
}
.site-meta {
  flex-grow: 1;
  text-align: center;
}
@media (max-width: 767px) {
  .site-meta {
    text-align: center;
  }
}
.custom-logo-image {
  margin-top: 20px;
}
@media (max-width: 991px) {
  .custom-logo-image {
    display: none;
  }
}
.brand {
  border-bottom: 0;
  color: var(--brand-color);
  display: inline-block;
  padding: 0;
}
.brand:hover {
  color: var(--brand-hover-color);
}
.site-title {
  font-family: Lato, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 1.375em;
  font-weight: normal;
  line-height: 1.5;
  margin: 0;
}
.site-subtitle {
  color: #ddd;
  font-size: 0.8125em;
  margin: 10px 10px 0;
}
.use-motion .site-title,
.use-motion .site-subtitle,
.use-motion .custom-logo-image {
  opacity: 0;
  position: relative;
  top: -10px;
}
.site-nav-toggle,
.site-nav-right {
  display: none;
}
@media (max-width: 767px) {
  .site-nav-toggle,
  .site-nav-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.site-nav-toggle .toggle,
.site-nav-right .toggle {
  color: var(--text-color);
  padding: 10px;
  width: 22px;
}
.site-nav-toggle .toggle .toggle-line,
.site-nav-right .toggle .toggle-line {
  background: var(--text-color);
  border-radius: 1px;
}
@media (max-width: 767px) {
  .site-nav {
    --scroll-height: 0;
    height: 0;
    overflow: hidden;
    transition: 0.2s ease-in-out;
    transition-property: height, visibility;
    visibility: hidden;
  }
  body:not(.site-nav-on) .site-nav .animated {
    animation: none;
  }
  body.site-nav-on .site-nav {
    height: var(--scroll-height);
    visibility: unset;
  }
}
.menu {
  margin: 0;
  padding: 1em 0;
  text-align: center;
}
.menu-item {
  display: inline-block;
  list-style: none;
  margin: 0 10px;
}
@media (max-width: 767px) {
  .menu-item {
    display: block;
    margin-top: 10px;
  }
  .menu-item.menu-item-search {
    display: none;
  }
}
.menu-item a {
  border-bottom: 0;
  display: block;
  font-size: 0.8125em;
  transition: border-color 0.2s ease-in-out;
}
.menu-item a:hover,
.menu-item a.menu-item-active {
  background: var(--menu-item-bg-color);
}
.menu-item i[class^='fa'] {
  margin-right: 8px;
}
.menu-item .badge {
  background: #ccc;
  border-radius: 10px;
  color: var(--content-bg-color);
  font-weight: bold;
  line-height: 1;
  margin-left: 0.35em;
  padding: 2px 5px;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}
.use-motion .menu-item {
  visibility: hidden;
}
@media (max-width: 991px) {
  .sidebar {
    left: -320px;
  }
  .sidebar-active .sidebar {
    left: 0;
  }
  .sidebar {
    background: #222;
    bottom: 0;
    max-height: 100vh;
    overflow-y: auto;
    position: fixed;
    top: 0;
    transition: 0.2s ease-out;
    transition-property: left, right;
    width: 320px;
    z-index: 20;
  }
  .sidebar a {
    border-bottom-color: #555;
    color: #999;
  }
  .sidebar a:hover {
    border-bottom-color: #eee;
    color: #eee;
  }
  .links-of-author:not(:first-child) {
    margin-top: 15px;
  }
  .links-of-author a {
    border-bottom-color: #555;
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 10px;
    vertical-align: middle;
  }
  .links-of-author a::before {
    background: #59b9f2;
    display: inline-block;
    margin-right: 3px;
    transform: translateY(-2px);
    border-radius: 50%;
    content: ' ';
    height: 4px;
    width: 4px;
  }
  .links-of-blogroll-item {
    padding: 0 5px;
  }
  .popular-posts .popular-posts-item .popular-posts-link:hover {
    background: none;
  }
  .sidebar-dimmer {
    background: #000;
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: visibility 0.4s, opacity 0.4s;
    visibility: hidden;
    width: 100%;
    z-index: 10;
  }
  .sidebar-active .sidebar-dimmer {
    opacity: 0.7;
    visibility: visible;
  }
}
.sidebar-inner {
  color: #999;
  padding: 18px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sidebar-toggle {
  bottom: 61px;
  height: 16px;
  padding: 5px;
  width: 16px;
  background: #222;
  cursor: pointer;
  opacity: 0.6;
  position: fixed;
  z-index: 30;
  left: 30px;
}
@media (max-width: 991px) {
  .sidebar-toggle {
    left: 20px;
  }
}
.sidebar-toggle:hover {
  opacity: 0.8;
}
@media (max-width: 991px) {
  .sidebar-toggle {
    opacity: 0.8;
  }
}
.sidebar-toggle:hover .toggle-line {
  background: #fc6423;
}
@media (any-hover: hover) {
  body:not(.sidebar-active) .sidebar-toggle:hover :first-child {
    left: 50%;
    top: 2px;
    transform: rotate(45deg);
    width: 50%;
  }
  body:not(.sidebar-active) .sidebar-toggle:hover :last-child {
    left: 50%;
    top: -2px;
    transform: rotate(-45deg);
    width: 50%;
  }
}
.sidebar-active .sidebar-toggle :nth-child(2) {
  opacity: 0;
}
.sidebar-active .sidebar-toggle :first-child {
  top: 6px;
  transform: rotate(45deg);
}
.sidebar-active .sidebar-toggle :last-child {
  top: -6px;
  transform: rotate(-45deg);
}
.sidebar-nav {
  font-size: 0.875em;
  height: 0;
  margin: 0;
  overflow: hidden;
  padding-left: 0;
  pointer-events: none;
  transition: 0.2s ease-in-out;
  transition-property: height, visibility;
  visibility: hidden;
}
.sidebar-nav-active .sidebar-nav {
  height: calc(2em + 1px);
  pointer-events: unset;
  visibility: unset;
}
.sidebar-nav li {
  border-bottom: 1px solid transparent;
  color: var(--text-color);
  cursor: pointer;
  display: inline-block;
  transition: 0.2s ease-in-out;
  transition-property: border-bottom-color, color;
}
.sidebar-nav li.sidebar-nav-overview {
  margin-left: 10px;
}
.sidebar-nav li:hover {
  color: #fc6423;
}
.sidebar-toc-active .sidebar-nav-toc,
.sidebar-overview-active .sidebar-nav-overview {
  border-bottom-color: #fc6423;
  color: #fc6423;
  transition-delay: 0.2s;
}
.sidebar-toc-active .sidebar-nav-toc:hover,
.sidebar-overview-active .sidebar-nav-overview:hover {
  color: #fc6423;
}
.sidebar-panel-container {
  align-items: start;
  display: grid;
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
  padding-top: 0;
  transition: padding-top 0.2s ease-in-out;
}
.sidebar-nav-active .sidebar-panel-container {
  padding-top: 20px;
}
.sidebar-panel {
  animation: deactivate-sidebar-panel 0.2s ease-in-out;
  grid-area: 1/1;
  height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(0);
  transition: 0.2s ease-in-out;
  transition-delay: 0s;
  transition-property: opacity, transform, visibility;
  visibility: hidden;
}
.sidebar-nav-active .sidebar-panel,
.sidebar-overview-active .sidebar-panel.post-toc-wrap {
  transform: translateY(-20px);
}
.sidebar-overview-active:not(.sidebar-nav-active) .sidebar-panel.post-toc-wrap {
  transition-delay: 0s, 0.2s, 0s;
}
.sidebar-overview-active .sidebar-panel.site-overview-wrap,
.sidebar-toc-active .sidebar-panel.post-toc-wrap {
  animation-name: activate-sidebar-panel;
  height: auto;
  opacity: 1;
  pointer-events: unset;
  transform: translateY(0);
  transition-delay: 0.2s, 0.2s, 0s;
  visibility: unset;
}
.sidebar-panel.site-overview-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  justify-content: flex-start;
}
@keyframes deactivate-sidebar-panel {
  from {
    height: var(--inactive-panel-height, 0);
  }
  to {
    height: var(--active-panel-height, 0);
  }
}
@keyframes activate-sidebar-panel {
  from {
    height: var(--inactive-panel-height, auto);
  }
  to {
    height: var(--active-panel-height, auto);
  }
}
.post-toc {
  font-size: 0.875em;
}
.post-toc ol {
  list-style: none;
  margin: 0;
  padding: 0 2px 0 10px;
  text-align: left;
}
.post-toc ol > :last-child {
  margin-bottom: 5px;
}
.post-toc ol > ol {
  padding-left: 0;
}
.post-toc ol a {
  transition: all 0.2s ease-in-out;
}
.post-toc .nav-item {
  line-height: 1.8;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.post-toc .nav .nav-child {
  --height: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition-property: height, opacity, visibility;
  transition: 0.2s ease-in-out;
  visibility: hidden;
}
.post-toc .nav .active > .nav-child {
  height: var(--height, auto);
  opacity: 1;
  visibility: unset;
}
.post-toc .nav .active > a {
  border-bottom-color: #fc6423;
  color: #fc6423;
}
.post-toc .nav .active-current > a {
  color: #fc6423;
}
.post-toc .nav .active-current > a:hover {
  color: #fc6423;
}
.site-author-image {
  border: 1px solid #eee;
  max-width: 120px;
  padding: 2px;
}
.site-author-name {
  color: var(--text-color);
  font-weight: 600;
  margin: 0;
}
.site-description {
  color: #999;
  font-size: 0.8125em;
  margin-top: 0;
}
.site-state {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 1.4;
}
.site-state-item {
  padding: 0 15px;
}
.site-state-item a {
  border-bottom: 0;
  display: block;
}
.site-state-item-count {
  display: block;
  font-size: 1em;
  font-weight: 600;
}
.site-state-item-name {
  color: #999;
  font-size: 0.8125em;
}
.sidebar .sidebar-button:not(:first-child) {
  margin-top: 15px;
}
.sidebar .sidebar-button button {
  background: transparent;
  color: #fc6423;
  cursor: pointer;
  line-height: 2;
  padding: 0 15px;
  border: 1px solid #fc6423;
  border-radius: 4px;
}
.sidebar .sidebar-button button:hover {
  background: #fc6423;
  color: #fff;
}
.sidebar .sidebar-button button i[class^='fa'] {
  margin-right: 5px;
}
.links-of-author a {
  font-size: 0.8125em;
}
.links-of-author i[class^='fa'] {
  margin-right: 2px;
}
.cc-license .cc-opacity {
  border-bottom: 0;
  opacity: 0.7;
}
.cc-license .cc-opacity:hover {
  opacity: 0.9;
}
.cc-license img {
  display: inline-block;
}
.links-of-blogroll {
  font-size: 0.8125em;
}
.links-of-blogroll-title {
  font-size: 0.875em;
  font-weight: 600;
}
.links-of-blogroll-list {
  list-style: none;
  gap: 5px;
  margin: 5px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
}
.links-of-blogroll-item {
  max-width: 100%;
}
.links-of-blogroll-item a {
  box-sizing: border-box;
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.footer {
  color: #999;
  font-size: 0.875em;
  padding: 20px 0;
  transition: 0.2s ease-in-out;
  transition-property: left, right;
}
.footer.footer-fixed {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
}
.footer-inner {
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  width: calc(100% - 20px);
}
@media (max-width: 767px) {
  .footer-inner {
    width: auto;
  }
}
@media (min-width: 1200px) {
  .footer-inner {
    width: 1160px;
  }
}
@media (min-width: 1600px) {
  .footer-inner {
    width: 73%;
  }
}
.use-motion .footer {
  opacity: 0;
}
.languages {
  display: inline-block;
  font-size: 1.125em;
  position: relative;
}
.languages .lang-select-label span {
  margin: 0 0.5em;
}
.languages .lang-select {
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.with-love {
  color: #808080;
  display: inline-block;
  margin: 0 5px;
}
@keyframes icon-animate {
  0%, 100% {
    transform: scale(1);
  }
  10%, 30% {
    transform: scale(0.9);
  }
  20%, 40%, 60%, 80% {
    transform: scale(1.1);
  }
  50%, 70% {
    transform: scale(1.1);
  }
}
.back-to-top {
  font-size: 12px;
  margin: 8px -10px -20px;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.back-to-top span {
  margin-right: 8px;
}
.back-to-top .fa {
  text-align: center;
  width: 26px;
}
.back-to-top.back-to-top-on {
  cursor: pointer;
  opacity: 0.6;
}
.back-to-top.back-to-top-on:hover {
  opacity: 0.8;
}
.rtl.post-body p,
.rtl.post-body a,
.rtl.post-body h1,
.rtl.post-body h2,
.rtl.post-body h3,
.rtl.post-body h4,
.rtl.post-body h5,
.rtl.post-body h6,
.rtl.post-body li,
.rtl.post-body ul,
.rtl.post-body ol {
  direction: rtl;
  font-family: UKIJ Ekran;
}
.rtl.post-title {
  font-family: UKIJ Ekran;
}
.post-button {
  margin-top: 40px;
  text-align: center;
}
.use-motion .post-block,
.use-motion .pagination,
.use-motion .comments {
  visibility: hidden;
}
.use-motion .post-header {
  visibility: hidden;
}
.use-motion .post-body {
  visibility: hidden;
}
.use-motion .collection-header {
  visibility: hidden;
}
.posts-collapse .post-content {
  margin-bottom: 35px;
  margin-left: 35px;
  position: relative;
}
@media (max-width: 767px) {
  .posts-collapse .post-content {
    margin-left: 0;
    margin-right: 0;
  }
}
.posts-collapse .post-content .collection-title {
  font-size: 1.125em;
  position: relative;
}
.posts-collapse .post-content .collection-title::before {
  background: #999;
  border: 1px solid #fff;
  margin-left: -6px;
  margin-top: -4px;
  position: absolute;
  top: 50%;
  border-radius: 50%;
  content: ' ';
  height: 10px;
  width: 10px;
}
.posts-collapse .post-content .collection-year {
  font-size: 1.5em;
  font-weight: bold;
  margin: 60px 0;
  position: relative;
}
.posts-collapse .post-content .collection-year .collection-year-count {
  font-size: 0.75em;
  background: #ccc;
  border-radius: 10px;
  color: var(--content-bg-color);
  font-weight: bold;
  line-height: 1;
  margin-left: 0.35em;
  padding: 2px 5px;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}
.posts-collapse .post-content .collection-year::before {
  background: #bbb;
  margin-left: -4px;
  margin-top: -4px;
  position: absolute;
  top: 50%;
  border-radius: 50%;
  content: ' ';
  height: 8px;
  width: 8px;
}
.posts-collapse .post-content .collection-header {
  display: block;
  margin-left: 20px;
}
.posts-collapse .post-content .collection-header small {
  color: #bbb;
  margin-left: 5px;
}
.posts-collapse .post-content .post-header {
  border-bottom: 1px dashed #ccc;
  margin: 30px 2px 0;
  padding-left: 15px;
  position: relative;
  transition: border 0.2s ease-in-out;
}
.posts-collapse .post-content .post-header::before {
  background: #bbb;
  border: 1px solid #fff;
  left: -6px;
  position: absolute;
  top: 0.75em;
  transition: background 0.2s ease-in-out;
  border-radius: 50%;
  content: ' ';
  height: 6px;
  width: 6px;
}
.posts-collapse .post-content .post-header:hover {
  border-bottom-color: #666;
}
.posts-collapse .post-content .post-header:hover::before {
  background: #222;
}
.posts-collapse .post-content .post-meta-container {
  display: inline;
  font-size: 0.75em;
  margin-right: 10px;
}
.posts-collapse .post-content .post-title {
  display: inline;
}
.posts-collapse .post-content .post-title a {
  border-bottom: 0;
  color: var(--link-color);
}
.posts-collapse .post-content .post-title .fa {
  font-size: 0.875em;
  margin-left: 5px;
}
.posts-collapse .post-content::before {
  background: #f5f5f5;
  content: ' ';
  height: 100%;
  margin-left: -2px;
  position: absolute;
  top: 1.25em;
  width: 4px;
}
.post-body {
  font-family: Lato, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  overflow-wrap: break-word;
}
@media (min-width: 1200px) {
  .post-body {
    font-size: 1.125em;
  }
}
@media (min-width: 992px) {
  .post-body {
    text-align: justify;
  }
}
@media (max-width: 991px) {
  .post-body {
    text-align: justify;
  }
}
.post-body h1 .header-anchor,
.post-body h2 .header-anchor,
.post-body h3 .header-anchor,
.post-body h4 .header-anchor,
.post-body h5 .header-anchor,
.post-body h6 .header-anchor,
.post-body h1 .headerlink,
.post-body h2 .headerlink,
.post-body h3 .headerlink,
.post-body h4 .headerlink,
.post-body h5 .headerlink,
.post-body h6 .headerlink {
  border-bottom-style: none;
  color: inherit;
  float: right;
  font-size: 0.875em;
  margin-left: 10px;
  opacity: 0;
}
.post-body h1 .header-anchor::before,
.post-body h2 .header-anchor::before,
.post-body h3 .header-anchor::before,
.post-body h4 .header-anchor::before,
.post-body h5 .header-anchor::before,
.post-body h6 .header-anchor::before,
.post-body h1 .headerlink::before,
.post-body h2 .headerlink::before,
.post-body h3 .headerlink::before,
.post-body h4 .headerlink::before,
.post-body h5 .headerlink::before,
.post-body h6 .headerlink::before {
  content: '\f0c1';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
}
.post-body h1:hover .header-anchor,
.post-body h2:hover .header-anchor,
.post-body h3:hover .header-anchor,
.post-body h4:hover .header-anchor,
.post-body h5:hover .header-anchor,
.post-body h6:hover .header-anchor,
.post-body h1:hover .headerlink,
.post-body h2:hover .headerlink,
.post-body h3:hover .headerlink,
.post-body h4:hover .headerlink,
.post-body h5:hover .headerlink,
.post-body h6:hover .headerlink {
  opacity: 0.5;
}
.post-body h1:hover .header-anchor:hover,
.post-body h2:hover .header-anchor:hover,
.post-body h3:hover .header-anchor:hover,
.post-body h4:hover .header-anchor:hover,
.post-body h5:hover .header-anchor:hover,
.post-body h6:hover .header-anchor:hover,
.post-body h1:hover .headerlink:hover,
.post-body h2:hover .headerlink:hover,
.post-body h3:hover .headerlink:hover,
.post-body h4:hover .headerlink:hover,
.post-body h5:hover .headerlink:hover,
.post-body h6:hover .headerlink:hover {
  opacity: 1;
}
.post-body .exturl .fa {
  font-size: 0.875em;
  margin-left: 4px;
}
.post-body figure:not(.highlight) {
  margin: 0 auto 20px;
}
.post-body figure:not(.highlight) figcaption {
  color: #999;
  font-size: 0.875em;
  font-weight: bold;
  line-height: 1;
  margin: -15px auto 15px;
  text-align: center;
}
.post-body iframe,
.post-body img,
.post-body video,
.post-body embed {
  margin-bottom: 20px;
}
.post-body .video-container {
  height: 0;
  margin-bottom: 20px;
  overflow: hidden;
  padding-top: 75%;
  position: relative;
  width: 100%;
}
.post-body .video-container iframe,
.post-body .video-container object,
.post-body .video-container embed {
  height: 100%;
  left: 0;
  margin: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.post-gallery {
  display: flex;
  min-height: 200px;
}
.post-gallery .post-gallery-image {
  flex: 1;
}
.post-gallery .post-gallery-image:not(:first-child) {
  clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%);
  margin-left: -20px;
}
.post-gallery .post-gallery-image:not(:last-child) {
  margin-right: -20px;
}
.post-gallery .post-gallery-image img {
  height: 100%;
  object-fit: cover;
  opacity: 1;
  width: 100%;
}
.posts-expand .post-gallery {
  margin-bottom: 60px;
}
.posts-collapse .post-gallery {
  margin: 15px 0;
}
.posts-expand .post-header {
  font-size: 1.125em;
  margin-bottom: 60px;
  text-align: center;
}
.posts-expand .post-title {
  font-size: 1.5em;
  font-weight: normal;
  margin: initial;
  overflow-wrap: break-word;
}
.posts-expand .post-title-link {
  border-bottom: 0;
  color: var(--link-color);
  display: inline-block;
  max-width: 100%;
  position: relative;
}
.posts-expand .post-title-link::before {
  background: var(--link-color);
  bottom: 0;
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transition: transform 0.2s ease-in-out;
  width: 100%;
}
.posts-expand .post-title-link:hover::before {
  transform: scaleX(1);
}
.posts-expand .post-title-link .fa {
  font-size: 0.875em;
  margin-left: 5px;
}
.post-sticky-flag {
  display: inline-block;
  margin-right: 8px;
  transform: rotate(30deg);
}
.posts-expand .post-meta-container {
  color: #999;
  font-family: Lato, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 0.75em;
  margin-top: 3px;
}
.posts-expand .post-meta-container .post-description {
  font-size: 0.875em;
  margin-top: 2px;
}
.posts-expand .post-meta-container time {
  border-bottom: 1px dashed #999;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
:not(.post-meta-break) + .post-meta-item::before {
  content: '|';
  margin: 0 0.5em;
}
.post-meta-item-icon {
  margin-right: 3px;
}
@media (max-width: 991px) {
  .post-meta-item-text {
    display: none;
  }
}
.post-meta-break {
  flex-basis: 100%;
  height: 0;
}
.post-nav {
  border-top: 1px solid #eee;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-top: 1em;
  padding: 10px 5px 0;
}
.post-nav-item {
  flex: 1;
}
.post-nav-item a {
  border-bottom: 0;
  display: block;
  font-size: 0.875em;
  line-height: 1.6;
}
.post-nav-item a:active {
  top: 2px;
}
.post-nav-item .fa {
  font-size: 0.75em;
}
.post-nav-item:first-child .fa {
  margin-right: 5px;
}
.post-nav-item:last-child {
  text-align: right;
}
.post-nav-item:last-child .fa {
  margin-left: 5px;
}
.post-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.post-eof {
  background: #ccc;
  height: 1px;
  margin: 80px auto 60px;
  width: 8%;
}
.post-block:last-of-type .post-eof {
  display: none;
}
.post-tags {
  margin-top: 40px;
  text-align: center;
}
.post-tags a {
  display: inline-block;
  font-size: 0.8125em;
}
.post-tags a:not(:last-child) {
  margin-right: 10px;
}
.social-like {
  border-top: 1px solid #eee;
  font-size: 0.875em;
  margin-top: 1em;
  padding-top: 1em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.social-like a {
  border-bottom: none;
}
.reward-container {
  margin: 1em 0 0;
  padding: 1em 0;
  text-align: center;
}
.reward-container button {
  background: transparent;
  color: #fc6423;
  cursor: pointer;
  line-height: 2;
  padding: 0 15px;
  border: 2px solid #fc6423;
  border-radius: 2px;
  outline: 0;
  vertical-align: text-top;
}
.reward-container button:hover {
  background: #fc6423;
  color: #fff;
}
.post-reward {
  display: none;
  padding-top: 20px;
}
.post-reward.active {
  display: block;
}
.post-reward div {
  display: inline-block;
}
.post-reward div span {
  display: block;
}
.post-reward img {
  display: inline-block;
  margin: 0.8em 2em 0;
  max-width: 100%;
  width: 180px;
}
@keyframes next-roll {
  from {
    transform: rotateZ(30deg);
  }
  to {
    transform: rotateZ(-30deg);
  }
}
.category-all-page .category-all-title {
  text-align: center;
}
.category-all-page .category-all {
  margin-top: 20px;
}
.category-all-page .category-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.category-all-page .category-list-item {
  margin: 5px 10px;
}
.category-all-page .category-list-count {
  font-size: 0.75em;
  background: #ccc;
  border-radius: 10px;
  color: var(--content-bg-color);
  font-weight: bold;
  line-height: 1;
  margin-left: 0.35em;
  padding: 2px 5px;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}
.category-all-page .category-list-child {
  padding-left: 10px;
}
.event-list hr {
  background: #222;
  margin: 20px 0 45px;
}
.event-list hr::after {
  background: #222;
  color: #fff;
  content: 'NOW';
  display: inline-block;
  font-weight: bold;
  padding: 0 5px;
}
.event-list .event {
  --event-background: #222;
  --event-foreground: #bbb;
  --event-title: #fff;
  background: var(--event-background);
  padding: 15px;
}
.event-list .event .event-summary {
  border-bottom: 0;
  color: var(--event-title);
  margin: 0;
  padding: 0 0 0 35px;
  position: relative;
}
.event-list .event .event-summary::before {
  animation: dot-flash 1s alternate infinite ease-in-out;
  background: var(--event-title);
  left: 0;
  margin-top: -6px;
  position: absolute;
  top: 50%;
  border-radius: 50%;
  content: ' ';
  height: 12px;
  width: 12px;
}
.event-list .event:nth-of-type(odd) .event-summary::before {
  animation-delay: 0.5s;
}
.event-list .event:not(:last-child) {
  margin-bottom: 20px;
}
.event-list .event .event-relative-time {
  color: var(--event-foreground);
  display: inline-block;
  font-size: 12px;
  font-weight: normal;
  padding-left: 12px;
}
.event-list .event .event-details {
  color: var(--event-foreground);
  display: block;
  line-height: 18px;
  padding: 6px 0 6px 35px;
}
.event-list .event .event-details::before {
  color: var(--event-foreground);
  display: inline-block;
  margin-right: 9px;
  width: 14px;
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
}
.event-list .event .event-details.event-location::before {
  content: '\f041';
}
.event-list .event .event-details.event-duration::before {
  content: '\f017';
}
.event-list .event .event-details.event-description::before {
  content: '\f024';
}
.event-list .event-past {
  --event-background: #f5f5f5;
  --event-foreground: #999;
  --event-title: #222;
}
@keyframes dot-flash {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
ul.breadcrumb {
  font-size: 0.75em;
  list-style: none;
  margin: 1em 0;
  padding: 0 2em;
  text-align: center;
}
ul.breadcrumb li {
  display: inline;
}
ul.breadcrumb li:not(:first-child)::before {
  content: '/\00a0';
  font-weight: normal;
  padding: 0.5em;
}
ul.breadcrumb li:last-child {
  font-weight: bold;
}
.tag-cloud {
  text-align: center;
}
.tag-cloud a {
  display: inline-block;
  margin: 10px;
}
.tag-cloud-0 {
  border-bottom-color: #aaa;
  color: #aaa;
}
.tag-cloud-1 {
  border-bottom-color: #9a9a9a;
  color: #9a9a9a;
}
.tag-cloud-2 {
  border-bottom-color: #8b8b8b;
  color: #8b8b8b;
}
.tag-cloud-3 {
  border-bottom-color: #7c7c7c;
  color: #7c7c7c;
}
.tag-cloud-4 {
  border-bottom-color: #6c6c6c;
  color: #6c6c6c;
}
.tag-cloud-5 {
  border-bottom-color: #5d5d5d;
  color: #5d5d5d;
}
.tag-cloud-6 {
  border-bottom-color: #4e4e4e;
  color: #4e4e4e;
}
.tag-cloud-7 {
  border-bottom-color: #3e3e3e;
  color: #3e3e3e;
}
.tag-cloud-8 {
  border-bottom-color: #2f2f2f;
  color: #2f2f2f;
}
.tag-cloud-9 {
  border-bottom-color: #202020;
  color: #202020;
}
.tag-cloud-10 {
  border-bottom-color: #111;
  color: #111;
}
@media (prefers-color-scheme: dark) {
  .tag-cloud-0 {
    border-bottom-color: #555;
    color: #555;
  }
  .tag-cloud-1 {
    border-bottom-color: #646464;
    color: #646464;
  }
  .tag-cloud-2 {
    border-bottom-color: #737373;
    color: #737373;
  }
  .tag-cloud-3 {
    border-bottom-color: #828282;
    color: #828282;
  }
  .tag-cloud-4 {
    border-bottom-color: #929292;
    color: #929292;
  }
  .tag-cloud-5 {
    border-bottom-color: #a1a1a1;
    color: #a1a1a1;
  }
  .tag-cloud-6 {
    border-bottom-color: #b0b0b0;
    color: #b0b0b0;
  }
  .tag-cloud-7 {
    border-bottom-color: #c0c0c0;
    color: #c0c0c0;
  }
  .tag-cloud-8 {
    border-bottom-color: #cfcfcf;
    color: #cfcfcf;
  }
  .tag-cloud-9 {
    border-bottom-color: #dedede;
    color: #dedede;
  }
  .tag-cloud-10 {
    border-bottom-color: #eee;
    color: #eee;
  }
}
.search-active {
  overflow: hidden;
  margin-right: var(--dialog-scrollgutter, 0);
}
.search-pop-overlay {
  background: rgba(0,0,0,0);
  display: flex;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  transition: visibility 0.4s, background 0.4s;
  visibility: hidden;
  width: 100%;
  z-index: 40;
}
.search-active .search-pop-overlay {
  background: rgba(0,0,0,0.3);
  visibility: visible;
}
.search-popup {
  background: var(--card-bg-color);
  border-radius: 5px;
  height: 80%;
  margin: auto;
  transform: scale(0);
  transition: transform 0.4s;
  width: 700px;
}
.search-active .search-popup {
  transform: scale(1);
}
@media (max-width: 767px) {
  .search-popup {
    border-radius: 0;
    height: 100%;
    width: 100%;
  }
}
.search-popup .search-icon,
.search-popup .popup-btn-close {
  color: #999;
  font-size: 18px;
  padding: 0 10px;
}
.search-popup .popup-btn-close {
  cursor: pointer;
}
.search-popup .popup-btn-close:hover .fa {
  color: #222;
}
.search-popup .search-header {
  background: #eee;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  display: flex;
  padding: 5px;
}
@media (prefers-color-scheme: dark) {
  .search-popup .search-header {
    background: #666;
  }
}
.search-popup input.search-input {
  background: transparent;
  border: 0;
  outline: 0;
  width: 100%;
}
.search-popup input.search-input::-webkit-search-cancel-button {
  display: none;
}
.search-popup .search-result-container {
  display: flex;
  flex-direction: column;
  height: calc(100% - 55px);
  overflow: auto;
  padding: 5px 25px;
}
.search-popup .search-result-container hr {
  flex-shrink: 0;
  margin: 5px 0 10px;
}
.search-popup .search-result-container hr:first-child {
  display: none;
}
.search-popup .search-result-list {
  margin: 0 5px;
  padding: 0;
}
.search-popup a.search-result-title {
  font-weight: bold;
}
.search-popup p.search-result {
  border-bottom: 1px dashed #ccc;
  margin: 0 0 10px;
  padding: 5px 0;
}
.search-popup .search-input-container {
  flex-grow: 1;
  padding: 2px;
}
.search-popup .search-result-icon {
  color: #ccc;
  margin: auto;
}
mark.search-keyword {
  background: transparent;
  border-bottom: 1px dashed #ff2a2a;
  color: #ff2a2a;
  font-weight: bold;
}
.use-motion .animated {
  animation-fill-mode: none;
  visibility: inherit;
}
.use-motion .sidebar .animated {
  animation-fill-mode: both;
}
header.header {
  background: var(--content-bg-color);
  border-radius: initial;
  box-shadow: initial;
}
@media (max-width: 991px) {
  header.header {
    border-radius: initial;
  }
}
.main {
  align-items: stretch;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: calc(100% - 20px);
}
@media (max-width: 767px) {
  .main {
    width: auto;
  }
}
@media (min-width: 1200px) {
  .main {
    width: 1160px;
  }
}
@media (min-width: 1600px) {
  .main {
    width: 73%;
  }
}
@media (max-width: 991px) {
  .main {
    display: block;
    width: auto;
  }
}
.main-inner {
  border-radius: initial;
  box-sizing: border-box;
  width: calc(100% - 252px);
}
@media (max-width: 991px) {
  .main-inner {
    border-radius: initial;
    width: 100%;
  }
}
.footer-inner {
  padding-left: 252px;
}
@media (max-width: 991px) {
  .footer-inner {
    padding-left: 0;
    padding-right: 0;
    width: auto;
  }
}
.column {
  width: 240px;
}
@media (max-width: 991px) {
  .column {
    width: auto;
  }
}
.site-brand-container {
  background: var(--theme-color);
}
@media (max-width: 991px) {
  .site-nav-on .site-brand-container {
    box-shadow: 0 0 16px rgba(0,0,0,0.5);
  }
}
.site-meta {
  padding: 20px 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .site-nav-toggle,
  .site-nav-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.site-nav-toggle .toggle,
.site-nav-right .toggle {
  color: #fff;
}
.site-nav-toggle .toggle .toggle-line,
.site-nav-right .toggle .toggle-line {
  background: #fff;
}
@media (min-width: 768px) and (max-width: 991px) {
  .site-nav {
    --scroll-height: 0;
    height: 0;
    overflow: hidden;
    transition: 0.2s ease-in-out;
    transition-property: height, visibility;
    visibility: hidden;
  }
  body:not(.site-nav-on) .site-nav .animated {
    animation: none;
  }
  body.site-nav-on .site-nav {
    height: var(--scroll-height);
    visibility: unset;
  }
}
.menu .menu-item {
  display: block;
  margin: 0;
}
.menu .menu-item a {
  padding: 5px 20px;
  position: relative;
  transition-property: background-color;
  display: flex;
  align-items: center;
}
.menu .menu-item a .badge {
  margin-left: auto;
}
@media (max-width: 991px) {
  .menu .menu-item.menu-item-search {
    display: none;
  }
}
.main-menu .menu-item-active::after {
  background: #bbb;
  border-radius: 50%;
  content: ' ';
  height: 6px;
  margin-top: -3px;
  position: absolute;
  right: 15px;
  top: 50%;
  width: 6px;
}
.sub-menu {
  margin: 0;
  padding: 6px 0;
}
.sub-menu .menu-item {
  display: inline-block;
}
.sub-menu .menu-item a {
  background: transparent;
  margin: 5px 10px;
  padding: initial;
}
.sub-menu .menu-item a:hover {
  background: transparent;
  color: #fc6423;
}
.sub-menu .menu-item-active {
  border-bottom-color: #fc6423;
  color: #fc6423;
}
.sub-menu .menu-item-active:hover {
  border-bottom-color: #fc6423;
}
@media (min-width: 992px) {
  .sidebar {
    position: sticky;
    top: 12px;
  }
  .sidebar-toggle {
    display: none;
  }
  .sidebar-inner {
    background: var(--content-bg-color);
    border-radius: initial;
    box-shadow: initial;
    box-sizing: border-box;
    color: var(--text-color);
    margin-top: 12px;
    max-height: calc(100vh - 24px);
  }
  .site-state-item {
    padding: 0 10px;
  }
  .sidebar .sidebar-button {
    border-bottom: 1px dotted #ccc;
    border-top: 1px dotted #ccc;
  }
  .sidebar .sidebar-button button {
    border: 0;
    color: #fc6423;
    display: block;
    width: 100%;
  }
  .sidebar .sidebar-button button:hover {
    background: none;
    border: 0;
    color: #e34603;
  }
  .links-of-author {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .links-of-author-item {
    margin: 5px 0 0;
    width: 50%;
  }
  .links-of-author-item a {
    border-bottom: 0;
    border-radius: 4px;
    display: block;
    padding: 0 5px;
    box-sizing: border-box;
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .links-of-author-item a:hover {
    background: var(--body-bg-color);
  }
  .links-of-blogroll-item a {
    padding: 0 5px;
  }
  .back-to-top {
    background: var(--body-bg-color);
    margin: -4px -10px -18px;
    transition-property: bottom, margin-top;
  }
  .back-to-top.back-to-top-on {
    margin-top: 16px;
  }
}
.main-inner {
  background: var(--content-bg-color);
  box-shadow: initial;
  padding: 40px;
}
@media (max-width: 991px) {
  .main-inner {
    padding: 20px;
  }
}
.sub-menu {
  border-bottom: 1px solid #ddd;
}
.post-block:first-of-type {
  padding-top: 40px;
}
@media (max-width: 767px) {
  .pagination {
    margin-bottom: 10px;
  }
}
/* ================================================================
   Wisteria Blog — AI workflow editorial theme
   NexT Pisces theme override
   ================================================================ */
:root {
  --wt-topbar-height: 64px;
  --wt-primary: #2563eb;
  --wt-primary-hover: #1d4ed8;
  --wt-accent: #7c3aed;
  --wt-accent-soft: rgba(124,58,237,0.12);
  --wt-primary-soft: rgba(37,99,235,0.14);
  --wt-primary-light: rgba(37,99,235,0.08);
  --wt-primary-shadow: rgba(37,99,235,0.18);
  --wt-text: #0f172a;
  --wt-body-text: #334155;
  --wt-muted: #64748b;
  --wt-menu-text: #475569;
  --wt-border: #dbe3ee;
  --wt-bg: #fff;
  --wt-surface: #fff;
  --wt-sidebar-bg: #f8fafc;
  --wt-sidebar-panel: #fff;
  --wt-page-bg: #f4f7fb;
  --wt-code-bg: #eff6ff;
  --wt-code-text: #1e40af;
  --wt-code-block-bg: #0f172a;
  --wt-code-caption: #64748b;
  --wt-table-alt-bg: #f8fafc;
  --wt-scrollbar: #cbd5e1;
  --wt-scrollbar-hover: #94a3b8;
  --wt-brand-panel: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  --wt-brand-border: #dbe3ee;
  --wt-brand-title: #0f172a;
  --wt-brand-muted: #64748b;
  --wt-brand-mark: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --wt-brand-shadow: rgba(15,23,42,0.08);
  --theme-color: var(--wt-primary);
  --brand-color: var(--wt-primary);
  --brand-hover-color: var(--wt-primary-hover);
}
@media (prefers-color-scheme: dark) {
  :root {
    --wt-primary: #93c5fd;
    --wt-primary-hover: #bfdbfe;
    --wt-accent: #c4b5fd;
    --wt-accent-soft: rgba(196,181,253,0.12);
    --wt-primary-soft: rgba(147,197,253,0.18);
    --wt-primary-light: rgba(147,197,253,0.1);
    --wt-primary-shadow: rgba(96,165,250,0.24);
    --wt-text: #f1f5f9;
    --wt-body-text: #cbd5e1;
    --wt-muted: #94a3b8;
    --wt-menu-text: #cbd5e1;
    --wt-border: #23314a;
    --wt-bg: #0f172a;
    --wt-surface: #111827;
    --wt-sidebar-bg: #0b1120;
    --wt-sidebar-panel: #101827;
    --wt-page-bg: #0b1120;
    --wt-code-bg: rgba(96,165,250,0.16);
    --wt-code-text: #bfdbfe;
    --wt-code-block-bg: #020617;
    --wt-code-caption: #94a3b8;
    --wt-table-alt-bg: rgba(148,163,184,0.08);
    --wt-scrollbar: #334155;
    --wt-scrollbar-hover: #475569;
    --wt-brand-panel: linear-gradient(180deg, #111827 0%, #0f172a 100%);
    --wt-brand-border: #23314a;
    --wt-brand-title: #f8fafc;
    --wt-brand-muted: #94a3b8;
    --wt-brand-mark: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    --wt-brand-shadow: rgba(0,0,0,0.22);
    color-scheme: dark;
  }
}
html[data-theme="light"] {
  --wt-topbar-height: 64px;
  --wt-primary: #2563eb;
  --wt-primary-hover: #1d4ed8;
  --wt-accent: #7c3aed;
  --wt-accent-soft: rgba(124,58,237,0.12);
  --wt-primary-soft: rgba(37,99,235,0.14);
  --wt-primary-light: rgba(37,99,235,0.08);
  --wt-primary-shadow: rgba(37,99,235,0.18);
  --wt-text: #0f172a;
  --wt-body-text: #334155;
  --wt-muted: #64748b;
  --wt-menu-text: #475569;
  --wt-border: #dbe3ee;
  --wt-bg: #fff;
  --wt-surface: #fff;
  --wt-sidebar-bg: #f8fafc;
  --wt-sidebar-panel: #fff;
  --wt-page-bg: #f4f7fb;
  --wt-code-bg: #eff6ff;
  --wt-code-text: #1e40af;
  --wt-code-block-bg: #0f172a;
  --wt-code-caption: #64748b;
  --wt-table-alt-bg: #f8fafc;
  --wt-scrollbar: #cbd5e1;
  --wt-scrollbar-hover: #94a3b8;
  --wt-brand-panel: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  --wt-brand-border: #dbe3ee;
  --wt-brand-title: #0f172a;
  --wt-brand-muted: #64748b;
  --wt-brand-mark: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --wt-brand-shadow: rgba(15,23,42,0.08);
  color-scheme: light;
}
html[data-theme="dark"] {
  --wt-topbar-height: 64px;
  --wt-primary: #93c5fd;
  --wt-primary-hover: #bfdbfe;
  --wt-accent: #c4b5fd;
  --wt-accent-soft: rgba(196,181,253,0.12);
  --wt-primary-soft: rgba(147,197,253,0.18);
  --wt-primary-light: rgba(147,197,253,0.1);
  --wt-primary-shadow: rgba(96,165,250,0.24);
  --wt-text: #f1f5f9;
  --wt-body-text: #cbd5e1;
  --wt-muted: #94a3b8;
  --wt-menu-text: #cbd5e1;
  --wt-border: #23314a;
  --wt-bg: #0f172a;
  --wt-surface: #111827;
  --wt-sidebar-bg: #0b1120;
  --wt-sidebar-panel: #101827;
  --wt-page-bg: #0b1120;
  --wt-code-bg: rgba(96,165,250,0.16);
  --wt-code-text: #bfdbfe;
  --wt-code-block-bg: #020617;
  --wt-code-caption: #94a3b8;
  --wt-table-alt-bg: rgba(148,163,184,0.08);
  --wt-scrollbar: #334155;
  --wt-scrollbar-hover: #475569;
  --wt-brand-panel: linear-gradient(180deg, #111827 0%, #0f172a 100%);
  --wt-brand-border: #23314a;
  --wt-brand-title: #f8fafc;
  --wt-brand-muted: #94a3b8;
  --wt-brand-mark: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  --wt-brand-shadow: rgba(0,0,0,0.22);
  color-scheme: dark;
}
body {
  background: var(--wt-page-bg);
  color: var(--wt-text);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.main,
.main-inner,
.content-wrap,
.content {
  background: var(--wt-page-bg);
}
.site-brand-container,
.column .site-brand-container {
  background: var(--wt-brand-panel) !important;
  border-bottom: 1px solid var(--wt-brand-border);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.35);
  padding: 22px 18px 18px;
}
.site-meta {
  padding: 0;
}
.brand {
  align-items: center;
  color: var(--wt-brand-title) !important;
  display: inline-flex;
  gap: 10px;
  line-height: 1.2;
  max-width: 204px;
}
.brand:hover {
  color: var(--wt-primary) !important;
}
.brand .logo-line {
  display: none;
}
.brand::before {
  align-items: center;
  background: transparent url("/images/wisteria-mark.svg") center/contain no-repeat;
  content: "";
  display: inline-flex;
  flex: 0 0 42px;
  height: 34px;
  justify-content: center;
  width: 42px;
}
.site-title {
  color: var(--wt-brand-title);
  font-weight: 700;
  font-size: 1.03rem;
  letter-spacing: 0;
  line-height: 1.25;
}
.brand .site-title,
.brand:hover .site-title {
  color: inherit;
}
.site-subtitle {
  color: var(--wt-brand-muted);
  margin: 9px auto 0;
  max-width: 205px;
  font-size: 0.74rem;
  font-weight: 400;
  line-height: 1.55;
}
.site-tools {
  align-items: center;
  display: flex;
  gap: 8px;
  position: fixed;
  right: 18px;
  top: 14px;
  z-index: 20;
}
.site-tools-link,
.site-tools-button,
.ui-language-switch {
  backdrop-filter: blur(14px);
  background: var(--wt-sidebar-panel);
  border: 1px solid var(--wt-border);
  box-shadow: 0 10px 26px rgba(15,23,42,0.08);
}
.site-tools-link,
.site-tools-button {
  align-items: center;
  border-radius: 999px;
  color: var(--wt-muted);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 700;
  gap: 6px;
  height: 32px;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  padding: 0 12px;
  text-decoration: none;
}
.site-tools-link:hover,
.site-tools-button:hover {
  color: var(--wt-primary);
}
.site-tools-button {
  cursor: pointer;
}
.site-tools-theme-icon {
  font-size: 0.86rem;
}
.ui-language-switch {
  border-radius: 999px;
  display: flex;
  gap: 3px;
  justify-content: center;
  padding: 3px;
}
.ui-language-switch-button {
  appearance: none;
  background: transparent;
  border: 1px solid var(--wt-border);
  border-radius: 999px;
  color: var(--wt-muted);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  height: 24px;
  letter-spacing: 0;
  line-height: 1;
  min-width: 36px;
  padding: 0 9px;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}
.ui-language-switch-button:hover,
.ui-language-switch-button.is-active {
  background: var(--wt-primary-light);
  border-color: var(--wt-primary-soft);
  color: var(--wt-primary);
}
.ui-language-switch-button.is-active {
  box-shadow: inset 0 0 0 1px var(--wt-primary-soft);
}
html[data-theme="dark"] .site-tools-button .site-tools-theme-icon::before {
  content: "●";
}
html[data-theme="light"] .site-tools-button .site-tools-theme-icon::before {
  content: "○";
}
html[data-theme] .site-tools-theme-icon {
  font-size: 0;
}
html[data-theme] .site-tools-theme-icon::before {
  font-size: 0.78rem;
}
.site-nav {
  background: var(--wt-sidebar-panel);
  border-top: 1px solid var(--wt-border);
  padding: 14px 12px 0;
  margin-top: 10px;
}
.site-nav .main-menu {
  background: transparent;
  margin: 0;
  padding: 0 0 14px;
}
.site-nav .menu-item {
  margin: 1px 0;
}
.site-nav .menu-item a {
  color: var(--wt-menu-text);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 150ms ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-nav .menu-item a:hover {
  color: var(--wt-primary);
  background: var(--wt-primary-light);
}
.site-nav .menu-item-active a {
  color: var(--wt-primary);
  background: linear-gradient(90deg, var(--wt-primary-light), transparent);
  border-left: none;
  font-weight: 600;
}
.menu-item .badge {
  background: var(--wt-primary-soft);
  color: var(--wt-primary);
  font-weight: 500;
}
.sidebar-inner {
  background: var(--wt-sidebar-bg);
  border-radius: 0;
  box-shadow: none;
  border: none;
  border-right: 1px solid var(--wt-border);
  padding: 0;
  overflow: visible;
}
.sidebar {
  background: transparent;
}
.sidebar-panel {
  padding: 0 20px 22px 20px;
}
.site-overview-wrap {
  background: var(--wt-sidebar-panel);
}
.links-of-blogroll {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--wt-border);
}
.links-of-blogroll-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wt-muted);
  margin: 0 0 8px 0;
  padding: 0;
  text-align: left;
}
.links-of-blogroll-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.links-of-blogroll-item {
  margin: 0;
  padding: 0;
}
.links-of-blogroll-item a {
  display: block;
  color: var(--wt-menu-text);
  font-size: 0.825rem;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 120ms ease;
  line-height: 1.4;
  white-space: normal;
  overflow: visible;
  border-left: 2px solid transparent;
  border-bottom: 0 !important;
  text-align: left;
}
.links-of-blogroll-item a:hover {
  color: var(--wt-primary);
  background: var(--wt-primary-light);
  border-left-color: var(--wt-primary);
}
.sidebar-inner > .wt-related-posts {
  border-top: 1px solid var(--wt-border);
  margin: 16px 20px 0;
  padding-top: 14px;
}
.wt-related-posts .links-of-blogroll-title {
  margin-bottom: 8px;
}
.wt-related-posts .links-of-blogroll-item a {
  font-size: 0.8rem;
  line-height: 1.45;
  padding: 5px 8px;
}
.site-state {
  padding: 4px 0;
}
.site-state-item {
  padding: 0 8px;
}
.site-state-item a {
  color: var(--wt-menu-text);
  font-size: 0.8rem;
  border-bottom: none;
}
.site-state-item a:hover {
  color: var(--wt-primary);
}
.site-state-item-count {
  font-weight: 700;
  font-size: 1rem;
  color: var(--wt-text);
}
.post-block {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid var(--wt-border);
  margin-bottom: 0;
  padding: 28px 0;
  transition: none;
  text-align: left;
}
.post-block:hover {
  transform: none;
  box-shadow: none;
}
.post-block:first-child {
  padding-top: 8px;
}
.post-block + .post-block {
  margin-top: 0;
}
.post-title {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  text-align: left;
  margin-bottom: 6px;
}
.post-title a {
  color: var(--wt-text);
  transition: color 120ms ease;
  border-bottom: none;
}
.posts-collapse .post-title-link {
  color: var(--wt-text) !important;
  font-weight: 650;
}
.posts-collapse .post-title-link span {
  color: inherit;
}
.post-title a:hover {
  color: var(--wt-primary);
}
.posts-collapse .post-title-link:hover {
  color: var(--wt-primary) !important;
}
html[data-theme="dark"] .posts-expand .post-title-link,
html[data-theme="dark"] .posts-collapse .post-header a,
html[data-theme="dark"] .post-title a {
  color: var(--wt-text) !important;
}
html[data-theme="dark"] .posts-expand .post-title-link:hover,
html[data-theme="dark"] .posts-collapse .post-header a:hover,
html[data-theme="dark"] .post-title a:hover {
  color: var(--wt-primary-hover) !important;
}
.post-meta {
  color: var(--wt-muted);
  font-size: 0.8rem;
}
.post-meta-item,
.post-meta-item a {
  color: var(--wt-muted);
  transition: color 120ms ease;
  border-bottom: none;
}
.post-meta-item a:hover {
  color: var(--wt-primary);
}
html[data-theme="dark"] .post-meta,
html[data-theme="dark"] .post-meta-item,
html[data-theme="dark"] .post-meta-item a,
html[data-theme="dark"] .post-meta time {
  color: var(--wt-muted) !important;
}
html[data-theme="dark"] .post-meta-item a:hover {
  color: var(--wt-primary-hover) !important;
}
.post-body p {
  color: var(--wt-body-text);
  line-height: 1.65;
  font-size: 0.95rem;
}
.post-button {
  margin-top: 10px;
}
.post-button a {
  color: var(--wt-primary);
  border: none;
  background: none;
  border-radius: 0;
  padding: 0;
  transition: color 120ms ease;
  font-size: 0.85rem;
  font-weight: 500;
  border-bottom: none;
}
.post-button a:hover {
  color: var(--wt-primary-hover);
  background: none;
  border-color: transparent;
}
html[data-theme="dark"] .post-button a {
  color: var(--wt-primary) !important;
}
html[data-theme="dark"] .post-button a:hover {
  color: var(--wt-primary-hover) !important;
}
.post-footer .post-eof {
  display: none;
}
.pagination {
  margin-top: 32px;
  border-top: 1px solid var(--wt-border);
  padding-top: 24px;
}
.pagination .page-number {
  border-radius: 4px;
  color: var(--wt-muted);
  transition: all 120ms ease;
  min-width: 34px;
  height: 34px;
  line-height: 34px;
  font-size: 0.85rem;
  border: 1px solid transparent;
}
.pagination .page-number.current {
  background: var(--wt-primary);
  color: #fff;
  border-color: var(--wt-primary);
}
.pagination .page-number:hover:not(.current) {
  background: var(--wt-primary-light);
  color: var(--wt-primary);
  border-color: var(--wt-primary-soft);
}
.post-body {
  line-height: 1.8;
  color: var(--wt-text);
  font-size: 0.975rem;
}
.post-body h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--wt-text);
  border-bottom: 1px solid var(--wt-border);
  padding-bottom: 6px;
  margin-top: 40px;
  margin-bottom: 14px;
}
.post-body h3 {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--wt-text);
  margin-top: 28px;
  margin-bottom: 10px;
}
.post-body a {
  color: var(--wt-primary);
  transition: color 120ms ease;
  text-decoration: none;
  border-bottom: 1px solid var(--wt-primary-soft);
}
.post-body a:hover {
  color: var(--wt-primary-hover);
  border-bottom-color: var(--wt-primary);
}
.post-body code {
  background: var(--wt-code-bg);
  color: var(--wt-code-text);
  border-radius: 3px;
  padding: 1.5px 5px;
  font-size: 0.88em;
  border: none;
  font-family: "SF Mono", "Fira Code", "Fira Mono", "Roboto Mono", Menlo, Consolas, monospace;
}
.post-body pre,
figure.highlight,
.highlight {
  background: var(--wt-code-block-bg);
  border-radius: 6px;
  border: none;
  font-family: "SF Mono", "Fira Code", "Fira Mono", "Roboto Mono", Menlo, Consolas, monospace;
  font-size: 0.85rem;
  line-height: 1.65;
}
figure.highlight figcaption,
.highlight .gutter {
  color: var(--wt-code-caption);
}
.post-body blockquote {
  border-left: 3px solid var(--wt-primary);
  background: var(--wt-primary-light);
  color: var(--wt-body-text);
  padding: 12px 20px;
  margin: 20px 0;
  border-radius: 0 4px 4px 0;
}
.post-body table {
  border-collapse: collapse;
  width: 100%;
  margin: 20px 0;
  font-size: 0.875rem;
}
.post-body th {
  background: var(--wt-primary-light);
  color: var(--wt-text);
  font-weight: 600;
  padding: 8px 12px;
  border: 1px solid var(--wt-border);
  text-align: left;
  font-size: 0.85rem;
}
.post-body td {
  padding: 8px 12px;
  border: 1px solid var(--wt-border);
  font-size: 0.85rem;
}
.post-body tr:nth-child(even) td {
  background: var(--wt-table-alt-bg);
}
.post-body img {
  border-radius: 4px;
  border: 1px solid var(--wt-border);
  max-width: 100%;
  box-shadow: none;
}
.post-toc .nav .nav-item .nav-link {
  color: var(--wt-muted);
  transition: all 120ms ease;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 0.85rem;
  border-left: 2px solid transparent;
}
.post-toc .nav .nav-item .nav-link:hover {
  color: var(--wt-primary);
  background: transparent;
}
.post-toc .nav .active .nav-link {
  color: var(--wt-primary);
  background: var(--wt-primary-light);
  font-weight: 500;
  border-left-color: var(--wt-primary);
}
.post-toc .nav .nav-number {
  color: var(--wt-muted);
}
.footer {
  color: var(--wt-muted);
  font-size: 0.8rem;
  border-top: 1px solid var(--wt-border);
  padding-top: 24px;
  margin-top: 48px;
}
.footer a {
  color: var(--wt-muted);
  transition: color 120ms ease;
  border-bottom: none;
}
.footer a:hover {
  color: var(--wt-primary);
}
.tag-cloud a {
  color: var(--wt-menu-text);
  border-radius: 4px;
  transition: all 120ms ease;
  padding: 3px 8px;
  font-size: 0.85rem;
}
.tag-cloud a:hover {
  color: var(--wt-primary);
  background: var(--wt-primary-light);
  border-color: var(--wt-primary-soft);
}
.category-list a {
  color: var(--wt-text);
  transition: color 120ms ease;
  border-bottom: none;
  font-size: 0.95rem;
}
.category-list a:hover {
  color: var(--wt-primary);
}
.category-list-count {
  color: var(--wt-muted);
}
.posts-collapse .post-header a {
  color: var(--wt-text);
  transition: color 120ms ease;
  border-bottom: none;
}
.posts-collapse .post-header a:hover {
  color: var(--wt-primary);
}
.local-search-popup .search-result-list li {
  border-radius: 4px;
  transition: background 120ms ease;
}
.local-search-popup .search-result-list li:hover {
  background: var(--wt-primary-light);
}
.local-search-popup .search-keyword {
  color: var(--wt-primary);
  background: var(--wt-primary-soft);
  border-radius: 3px;
}
.back-to-top {
  background: var(--wt-primary);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px var(--wt-primary-shadow);
  transition: all 150ms ease;
}
.back-to-top:hover {
  background: var(--wt-primary-hover);
  transform: translateY(-2px);
}
.content-wrap {
  width: 73%;
}
.main-inner {
  max-width: 860px;
}
.main-inner .posts-expand .post-header {
  text-align: left;
}
.main-inner .post-meta {
  justify-content: flex-start;
}
.post-header h1 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.post-meta-divider {
  color: var(--wt-border);
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--wt-scrollbar);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--wt-scrollbar-hover);
}
@media (max-width: 768px) {
  .content-wrap {
    width: 100%;
  }
  .post-block {
    padding: 20px 0;
  }
  .site-brand-container,
  .column .site-brand-container {
    padding-bottom: 14px;
  }
  .site-tools {
    justify-content: center;
    margin: 12px auto 0;
    position: static;
  }
  .site-tools-link,
  .site-tools-button {
    height: 30px;
    padding: 0 10px;
  }
  .ui-language-switch-button {
    min-width: 32px;
    padding: 0 8px;
  }
}
.headband {
  display: none;
}
.header {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.header > .site-brand-container,
.header > .site-nav {
  display: none !important;
}
.main {
  padding-top: calc(var(--wt-topbar-height) + 18px);
}
.wt-topbar {
  background: rgba(255,255,255,0.86);
  border-bottom: 1px solid rgba(148,163,184,0.26);
  box-shadow: 0 1px 0 rgba(255,255,255,0.7), 0 18px 40px rgba(15,23,42,0.06);
  backdrop-filter: saturate(180%) blur(18px);
  left: 0;
  min-height: var(--wt-topbar-height);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 90;
}
.wt-topbar-inner {
  align-items: center;
  display: flex;
  gap: 22px;
  margin: 0 auto;
  max-width: 1240px;
  min-height: var(--wt-topbar-height);
  padding: 0 24px;
}
.wt-brand {
  align-items: center;
  border-bottom: 0;
  color: var(--wt-text);
  display: inline-flex;
  flex: 0 0 auto;
  gap: 10px;
  min-width: 190px;
  text-decoration: none;
}
.wt-brand:hover {
  color: var(--wt-primary);
}
.wt-brand-mark {
  background: transparent url("/images/wisteria-mark.svg") center/contain no-repeat;
  display: inline-flex;
  flex: 0 0 46px;
  height: 32px;
  width: 46px;
}
.wt-brand-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}
.wt-brand-name {
  color: var(--wt-text);
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.1;
  white-space: nowrap;
}
.wt-brand-subtitle {
  color: var(--wt-muted);
  font-size: 0.71rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}
.wt-nav {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  gap: 2px;
  min-width: 0;
}
.wt-nav-link {
  border-bottom: 0;
  border-radius: 7px;
  color: var(--wt-menu-text);
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1;
  padding: 10px 11px;
  text-decoration: none;
  transition: background 140ms ease, color 140ms ease;
  white-space: nowrap;
}
.wt-nav-link:hover {
  background: var(--wt-primary-light);
  color: var(--wt-primary);
}
.wt-actions {
  align-items: center;
  background: rgba(248,250,252,0.66);
  border: 1px solid rgba(148,163,184,0.22);
  border-radius: 8px;
  display: flex;
  flex: 0 0 auto;
  gap: 0;
  margin-left: auto;
  padding: 2px;
}
.wt-search-trigger,
.wt-tool,
.wt-icon-link {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: var(--wt-muted);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 6px;
  height: 32px;
  justify-content: center;
  line-height: 1;
  padding: 0 10px;
  text-decoration: none;
  transition: background 140ms ease, color 140ms ease;
  white-space: nowrap;
}
.wt-search-trigger,
.wt-tool {
  cursor: pointer;
}
.wt-search-trigger:hover,
.wt-tool:hover,
.wt-icon-link:hover {
  background: var(--wt-primary-light);
  color: var(--wt-primary);
}
.wt-search-trigger kbd {
  background: #fff;
  border: 1px solid rgba(148,163,184,0.36);
  border-radius: 5px;
  color: var(--wt-muted);
  font-family: inherit;
  font-size: 0.66rem;
  font-weight: 750;
  line-height: 1;
  padding: 3px 5px;
}
.wt-github-link i {
  color: var(--wt-text);
  font-size: 1.06rem;
}
.wt-github-link:hover i {
  color: var(--wt-primary);
}
.wt-language-toggle {
  min-width: 34px;
}
.wt-theme-toggle {
  appearance: none;
  min-width: 34px;
  padding: 0;
}
.wt-theme-icon {
  align-items: center;
  display: inline-flex;
  height: 22px;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.wt-theme-icon-sun,
.wt-theme-icon-moon {
  display: none;
}
html[data-theme="light"] .wt-theme-icon-sun,
html[data-theme="dark"] .wt-theme-icon-moon {
  display: inline-flex;
}
.wt-theme-icon svg {
  fill: none;
  height: 15px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 15px;
}
.wt-theme-icon-moon svg {
  fill: currentColor;
  stroke: currentColor;
}
html[data-theme="light"] .wt-theme-icon-sun,
html[data-theme="dark"] .wt-theme-icon-moon {
  color: var(--wt-primary);
}
html[data-theme="dark"] .wt-topbar {
  background: rgba(7,10,22,0.86);
  border-bottom-color: rgba(148,163,184,0.14);
  box-shadow: 0 1px 0 rgba(255,255,255,0.03), 0 18px 42px rgba(0,0,0,0.3);
}
html[data-theme="dark"] .wt-actions {
  background: rgba(15,23,42,0.58);
  border-color: rgba(148,163,184,0.14);
}
html[data-theme="dark"] .wt-search-trigger,
html[data-theme="dark"] .wt-tool,
html[data-theme="dark"] .wt-icon-link {
  background: transparent;
}
html[data-theme="dark"] .wt-search-trigger:hover,
html[data-theme="dark"] .wt-tool:hover,
html[data-theme="dark"] .wt-icon-link:hover {
  background: rgba(196,181,253,0.1);
}
html[data-theme="dark"] .wt-search-trigger kbd {
  background: #111827;
  border-color: rgba(148,163,184,0.18);
}
html[data-theme="dark"] .column,
html[data-theme="dark"] .sidebar,
html[data-theme="dark"] .sidebar-inner,
html[data-theme="dark"] .site-overview-wrap {
  background: var(--wt-sidebar-bg) !important;
}
html[data-theme="dark"] .sidebar-inner {
  border-right-color: transparent;
  box-shadow: none !important;
}
.sidebar {
  top: calc(var(--wt-topbar-height) + 14px) !important;
}
.sidebar-inner {
  max-height: calc(100vh - var(--wt-topbar-height) - 28px) !important;
  border-right-color: transparent;
}
.sidebar-toggle {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(148,163,184,0.28);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.12);
  color: var(--wt-text);
}
.sidebar-toggle .toggle-line {
  background: var(--wt-text);
}
.sidebar-toggle:hover,
.sidebar-active .sidebar-toggle {
  background: var(--wt-primary-light);
}
.sidebar-toggle:hover .toggle-line,
.sidebar-active .sidebar-toggle .toggle-line {
  background: var(--wt-primary);
}
html[data-theme="dark"] .sidebar-toggle {
  background: rgba(15,23,42,0.92);
  border-color: rgba(148,163,184,0.18);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
}
html[data-theme="dark"] .sidebar-toggle .toggle-line {
  background: var(--wt-body-text);
}
.search-pop-overlay {
  z-index: 120;
}
.search-popup {
  border: 1px solid var(--wt-border);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(15,23,42,0.22);
  height: 44vh;
  max-height: 440px;
  overflow: hidden;
  width: min(700px, calc(100vw - 32px));
}
.search-popup .search-header {
  background: var(--wt-surface);
  border-bottom: 1px solid var(--wt-border);
}
.search-popup .search-input {
  color: var(--wt-text);
}
.search-popup .search-result-container {
  height: calc(100% - 46px);
  min-height: 220px;
  overflow: auto;
}
.search-popup .search-result-icon:has(.fa-spinner),
.search-popup .search-result-icon:has(.fa-search) {
  display: none;
}
html[data-theme="dark"] .search-popup {
  background: var(--wt-surface);
  box-shadow: 0 30px 90px rgba(0,0,0,0.46);
}
@media (max-width: 1060px) {
  .wt-topbar-inner {
    gap: 12px;
    padding: 0 14px;
  }
  .wt-nav {
    overflow-x: auto;
    scrollbar-width: none;
  }
  .wt-nav::-webkit-scrollbar {
    display: none;
  }
  .wt-search-trigger kbd,
  .wt-icon-link span {
    display: none;
  }
  .wt-icon-link {
    padding: 0;
    width: 36px;
  }
}
@media (max-width: 768px) {
  :root,
  html[data-theme="light"],
  html[data-theme="dark"] {
    --wt-topbar-height: 150px;
  }
  .main {
    padding-top: calc(var(--wt-topbar-height) + 14px);
  }
  .wt-topbar-inner {
    align-content: center;
    display: grid;
    gap: 8px 10px;
    grid-template-columns: minmax(0, 1fr);
    padding: 8px 12px;
  }
  .wt-brand {
    min-width: 0;
  }
  .wt-brand-subtitle {
    display: none;
  }
  .wt-nav {
    grid-column: 1/-1;
    order: 3;
    padding-bottom: 2px;
  }
  .wt-nav-link {
    padding: 9px 10px;
  }
  .wt-actions {
    grid-column: 1/-1;
    justify-self: start;
    margin-left: 0;
    min-width: 0;
    order: 2;
  }
  .wt-search-trigger {
    padding: 0 9px;
  }
  .wt-search-trigger span {
    display: none;
  }
  .wt-tool,
  .wt-icon-link {
    padding: 0 9px;
  }
}
