/* ------------------------------------
 * Typecho Default Theme
 *
 * @author  Typecho Team
 * @link  http: //typecho.org/
 * @update  2013-10-28
 * --------------------------------- */

/* ------------------
 * Global style
 * --------------- */
body {
  background-color: #F5F1EA;
  color: #36322C;
  /*font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;*/
  font-family: "Source Han Serif SC", "Noto Serif CJK SC", "Songti SC", "STSong", "SimSun", serif;
  font-size: 87.5%;
}
html[data-platform="windows"] body {
  font-family: "Microsoft YaHei UI", "Microsoft YaHei", "Segoe UI", "Noto Sans CJK SC", sans-serif;
}
:root {
  --flow-hover-bg: rgba(229, 220, 208, .42);
  --flow-hover-line: rgba(124, 94, 61, .78);
}

a {
  color: #2E5B84;
  text-decoration: none;
}
a:hover, a:active {
  color: #1F3346;
}
pre, code { 
  background: #F3F3F3;
  font-family: Menlo, Monaco, Consolas, "Lucida Console", "Courier New", monospace;
  font-size: .92857em;
}
code { padding: 2px 4px; color: #B94A48; }
pre {
  padding: 8px;
  overflow: auto;
  max-height: 400px;
}
pre code {
  display: block;
  padding: 3px;
  color: #444;
}
.post-content pre[class*="language-"] {
  margin: 1.2em 0;
  padding: 1.15em 1.2em;
  border: 1px solid #E1E8F2;
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
  max-height: none;
}
.post-content pre[class*="language-"] code[class*="language-"] {
  padding: 0;
  color: inherit;
  background: transparent;
  font-size: .95em;
}
.post-content :not(pre) > code[class*="language-"] {
  padding: .2em .42em;
  border-radius: 6px;
}
.post-content div.code-toolbar > .toolbar {
  top: .6em;
  right: .55em;
}
.post-content div.code-toolbar > .toolbar .toolbar-item > button,
.post-content div.code-toolbar > .toolbar .toolbar-item > a,
.post-content div.code-toolbar > .toolbar .toolbar-item > span {
  border-radius: 999px;
  box-shadow: none;
}

blockquote {
  margin: 1em 0;
  padding-left: 1.5em;
  border-left: 4px solid #eee;
  color: #666;
}

table {
  border: 1px solid #ddd;
  width: 100%;
}
table th,
table td {
  padding: 5px 10px;
  border: 1px solid #eee;
}
table th {
  background: #f3f3f3;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "WenQuanYi Micro Hei","Microsoft Yahei", sans-serif;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
textarea {
  padding: 5px;
  border: 1px solid #E9E9E9;
  width: 100%;

  border-radius: 2px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
textarea {
  resize: vertical;
}


/* Special link style */
.post-meta a,
.post-content a,
.widget a,
.comment-content a {
  border-bottom: 1px solid #EEE;
}

.post-meta a:hover,
.post-content a:hover,
.widget a:hover,
.comment-content a:hover {
  border-bottom-color: transparent;
}

/* ------------------
 * Header
 * --------------- */

#header {
  padding-top: 35px;
  border-bottom: 1px solid #DED6CA;
  background: rgba(245, 241, 234, .9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
#body {
  background: rgba(255, 252, 247, .78);
}

#logo {
  color: #333;
  font-size: 2.5em;
}

.site-title {
  color: #333;
  font-size: 2em;
  line-height: 1.2;
  display: block;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-brand-text {
  display: flex;
  flex-direction: column;
}

#logo img {
    display: block;
    max-height: 64px;
    width: auto;
}

.site-brand .description {
  margin: .35em 0 0;
}

.description {
  margin: .5em 0 0;
  color: #90857A;
  font-style: italic;
}

/* Navigation menu */
#nav-menu {
  margin: 25px 0 0;
  padding: 0;
}
#nav-menu a {
  display: block;
  margin-right: -1px;
  padding: 0 16px 10px;
  border: none;
  border-bottom: none;
  height: 32px;
  line-height: 32px;
  color: #655C52;
  float: left;
}
#nav-menu a:hover,
#nav-menu .current {
  background: transparent;
  color: #1E1A17;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
}

/* Search */
#search {
  position: relative;
  margin-top: 15px;
}
#search input {
  padding-right: 30px;
}
#search button {
  position: absolute;
  right: 4px;
  top: 2px;
  border: none;
  padding: 0;
  width: 24px;
  height: 24px;
  background: transparent url(img/icon-search.png) no-repeat center center;
  direction: ltr; /* fix RTL language */
  text-indent: -9999em;
}

@media 
(-webkit-min-device-pixel-ratio: 2), 
(min-resolution: 192dpi) {
  #search button {
    background-image: url(img/icon-search@2x.png);
    -webkit-background-size: 24px 24px;
    -moz-background-size: 24px 24px;
    -o-background-size: 24px 24px;
    background-size: 24px 24px;
  }
}


/* ------------------
 * Main
 * --------------- */

.post {
  padding: 0 0 26px;
  border-bottom: 1px solid #E2DAD0;
}
.post-detail {
  padding: 0 0 1.65em;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.post-title {
  margin: .75em 0;
  font-size: 1.55em;
}
.post-detail .post-title {
  margin: .05em 0 .48em;
  font-size: 2.3em;
  line-height: 1.22;
  letter-spacing: .015em;
}
.post-detail .post-title a {
  border-bottom: none;
  color: #181411;
}
.post-detail .post-title a:hover {
  color: #000;
}
.post-meta {
  margin-top: -.25em;
  padding: 0;
  color: #8B8074;
  font-size: .92857em;
}
.post-detail .post-meta {
  margin: 0 0 1.28em;
  display: flex;
  flex-wrap: wrap;
  gap: .3em .85em;
  font-size: .92em;
  color: #7B7066;
}
.post-meta li {
  display: inline-block;
  margin: 0 8px 0 0;
  padding-left: 0;
  border-left: none;
}
.post-detail .post-meta li {
  margin: 0;
  padding: 0;
  border: none;
  border-left: none;
  border-radius: 0;
  background: transparent;
}
.post-meta li:first-child {
  margin-left: 0;
  padding-left: 0;
  border: none;
}
.post-detail .post-meta li:first-child {
  padding-left: 0;
  border: none;
}
.post-content {
  line-height: 1.5;
}
.post .tags {
  clear: both;
}
.post-detail .tags {
  margin: 1.55em 0 0;
  padding-top: 1.1em;
  border-top: 1px solid #E2DAD0;
  color: #7C7267;
  font-size: .93em;
}
.post-detail .tags a {
  display: inline-block;
  margin: .2em .7em .2em 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #5D6F82;
}
.post-detail .tags a:hover {
  border: none;
  background: transparent;
  color: #23384D;
}

.home-post-list {
  margin-top: 1.8em;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.home-post-list .home-post-card,
.archive-card-list .home-post-card {
  position: relative;
  margin: 0;
  padding: 1.45em 0 1.65em;
  border: none;
  border-bottom: 1px solid #E2DAD0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transition: color .2s ease, opacity .2s ease, background-color .22s ease, padding-left .22s ease, padding-right .22s ease;
}
.home-post-list .home-post-card:before,
.feel-item:before,
.archive-card-item:before,
.archive-timeline-item:after {
  content: "";
  position: absolute;
  left: -12px;
  top: 1.2em;
  bottom: 1.2em;
  width: 2px;
  background: var(--flow-hover-line);
  opacity: 0;
  transform: scaleY(.72);
  transform-origin: center top;
  transition: opacity .22s ease, transform .22s ease;
}
.home-post-list .home-post-card:hover,
.archive-card-list .home-post-card:hover,
.home-post-list .home-post-card:focus-within,
.archive-card-list .home-post-card:focus-within {
  border-color: #D8CFC2;
  box-shadow: none;
  transform: none;
  background: var(--flow-hover-bg);
  padding-left: 14px;
  padding-right: 14px;
}
.home-post-list .home-post-card:hover:before,
.archive-card-list .home-post-card:hover:before,
.home-post-list .home-post-card:focus-within:before,
.archive-card-list .home-post-card:focus-within:before {
  opacity: 1;
  transform: scaleY(1);
}
.home-mixed-list .home-post-card {
  border-width: 0 0 1px;
}
.home-post-list .home-post-card .post-title,
.archive-card-list .home-post-card .post-title {
  margin: .18em 0 .55em;
  font-size: 1.6em;
  line-height: 1.4;
  letter-spacing: .015em;
}
.home-post-list .home-post-card .post-title a,
.archive-card-list .home-post-card .post-title a {
  border-bottom: none;
  color: #201B17;
}
.home-post-list .home-post-card .post-title a:hover,
.archive-card-list .home-post-card .post-title a:hover {
  color: #000;
}
.home-post-list .home-post-card .post-meta,
.archive-card-list .home-post-card .post-meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .25em .9em;
  font-size: .9em;
  color: #887C71;
}
.home-post-list .home-post-card .post-meta li,
.archive-card-list .home-post-card .post-meta li {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}
.home-post-list .home-post-card .post-meta a,
.archive-card-list .home-post-card .post-meta a {
  border-bottom: 1px solid transparent;
}
.home-mixed-list {
  gap: 0;
}
.home-mixed-card {
  padding: 1.55em 0 1.7em;
}
.home-mixed-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 .42em;
  padding: 0;
  border: none;
  border-radius: 0;
  font-size: .8em;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .88;
}
.home-mixed-badge-post {
  background: transparent;
  border-color: transparent;
  color: #5E7E9B;
  letter-spacing: .12em;
}
.home-mixed-badge-feel {
  background: transparent;
  border-color: transparent;
  color: #9B6C40;
  letter-spacing: .12em;
}
.home-mixed-title {
  margin-top: 0;
  margin-bottom: .6em;
}
.feel-list .home-mixed-title {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: .12em;
}
.post-detail .post-content .feel-list .home-mixed-title {
  margin-top: 0;
  margin-bottom: .12em;
  padding-bottom: 0;
  border-bottom: none;
}
.home-mixed-title span {
  color: #201B17;
}
.home-post-list .home-post-card .home-mixed-meta {
  margin-bottom: .82em;
}
.home-mixed-excerpt {
  margin: 0;
  color: #5D554C;
  line-height: 1.9;
  white-space: pre-line;
}
.home-mixed-actions {
  margin: .85em 0 0;
}
.home-mixed-actions a {
  border-bottom-color: #D4C8B6;
  color: #5B7188;
  font-weight: 500;
}
.home-mixed-actions a:hover {
  color: #243A50;
  text-decoration: none;
}

.post-near {
  list-style: none;
  margin: 30px 0;
  padding: 0;
  color: #999;
}
.post-near li {
  margin: 10px 0;
}

.archive-title {
  margin: 1em 0 -1em;
  padding-top: 20px;
  color: #8B8074;
  font-size: 1em;
}
.more {
  text-align: center;
}
.more a {
  border: none;
}
.protected .text {
  width: 50%;
}

/* Page nav */

.page-navigator {
  list-style: none;
  margin: 2.2em 0 1.2em;
  padding: 0;
  text-align: center;
}
.page-navigator li {
  display: inline-block;
  margin: 0 8px 0 0;
}
.page-navigator a {
  display: inline-block;
  padding: 0 0 2px;
  height: auto;
  line-height: 1.55;
  color: #7C7267;
  border-bottom: 1px solid transparent;
}
.page-navigator .more span {
  display: inline-block;
  padding: 0;
  height: auto;
  line-height: 1.55;
  color: #A19487;
}
.page-navigator a:hover {
  background: transparent;
  border-bottom-color: #CDBEAB;
  color: #3A3128;
  text-decoration: none;
}

.page-navigator .current a {
  color: #1F1B18;
  background: transparent;
  border-bottom-color: #6B5B4A;
}
.feel-page-navigator a {
  border-bottom: none;
}
.archive-page-navigator a {
  border-bottom: none;
}

/* ------------------
 * Comment list
 * --------------- */
#comments {
  padding-top: 15px;
}
.comment-list, .comment-list ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.comment-list li {
  padding: 14px 0;
  margin-top: 0;
  border: none;
  border-bottom: 1px solid #E2DAD0;
}
.comment-list .comment-children {
  margin: .95em 0 0 1.35em;
  padding-left: 1.05em;
  border-left: 1px solid #E2DAD0;
}
.comment-list .comment-children .comment-list li {
  padding: .85em 0 .95em;
}
.comment-list li.comment-child {
  border-bottom-color: #E8DED1;
}
.comment-list li.comment-child:last-child {
  border-bottom: none;
}
.comment-list li.comment-level-odd {
  background: transparent;
}
.comment-list li.comment-level-even {
  background: transparent;
}
.comment-list li.comment-by-author {
  background: rgba(236, 220, 196, .22);
}
.comment-list li .comment-reply {
  text-align: right;
  font-size: .92857em;
}
.comment-meta a {
  color: #999;
  font-size: .92857em;
}
.comment-author {
  display: block;
  margin-bottom: 3px;
  color: #444;
}
.comment-author .avatar {
  float: left;
  margin-right: 10px;
}
.comment-author cite {
  font-weight: bold;
  font-style: normal;
}

/* Comment reply */
.comment-list .respond {
  margin-top: 15px;
  border-top: 1px solid #EEE;
}
.respond .cancel-comment-reply {
  float: right;
  margin-top: 15px;
  font-size: .92857em;
}
#comment-form label {
  display: block;
  margin-bottom: .5em;
  font-weight: bold;
}
#comment-form .required:after {
  content: " *";
  color: #C00;
}

/* ------------------
 * secondary
 * --------------- */
#secondary {
  padding-top: 15px;
  word-wrap: break-word;
  position: relative;
}
.widget {
  margin-bottom: 2.1em;
  padding-top: 1em;
  border-top: 1px solid #E2DAD0;
}
.widget-notice {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.widget-notice .widget-title {
  margin: 0 0 .75em;
  padding-bottom: 0;
  border-bottom: none;
  color: #251F1A;
  font-size: 1em;
  line-height: 1.35;
  letter-spacing: .08em;
}
.widget-list {
  list-style: none;
  padding: 0;
}
.widget-list li {
  margin: 5px 0;
  line-height: 1.6;
}

.widget-list li ul {
  margin-left: 15px;
}

#secondary .widget a,
#secondary .widget a:hover,
#secondary .widget a:active {
  border-bottom: none;
}

.widget-notice-content {
  padding: .1em 0 0;
  border: none;
  background: transparent;
  color: #62584D;
  line-height: 1.82;
  font-size: .97em;
}
.widget-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .7em;
  margin-bottom: .55em;
}
.widget-title-row .widget-title {
  margin: 0;
}
.theme-toggle-wrap {
  display: inline-flex;
  align-items: center;
  gap: .45em;
}
.site-theme-toggle {
  margin-top: .75em;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .45em;
}
.theme-toggle-label {
  color: #7E7368;
  font-size: .98em;
  font-weight: 500;
  letter-spacing: .01em;
  white-space: nowrap;
}

.widget-personal-links .widget-list,
.widget-categories .widget-list,
.widget-other .widget-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -4px;
}
.widget-personal-links .widget-list li,
.widget-categories .widget-list > li,
.widget-other .widget-list li {
  width: 50%;
  box-sizing: border-box;
  padding: 0 4px;
  margin: 5px 0;
}
.widget-personal-links .widget-list li a,
.widget-categories .widget-list > li > a,
.widget-other .widget-list li > a {
  border-bottom: none;
  padding-bottom: 3px;
}
.widget-personal-links .widget-list li a:hover,
.widget-categories .widget-list > li > a:hover,
.widget-other .widget-list li > a:hover {
  border-bottom: none;
}
.widget-personal-links .widget-list li a {
  display: flex;
  align-items: center;
  gap: .45em;
  width: 100%;
}
.widget-personal-links .widget-list li a,
.widget-categories .widget-list > li > a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.widget-personal-link-icon {
  min-width: 1.4em;
  color: #8E8275;
  font-size: .92em;
  text-align: center;
}
.widget-categories .widget-list > li > a {
  display: block;
}
.widget-categories .widget-list > li ul {
  margin-left: 0;
}
.widget-other .widget-list li > a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.widget-post-toc {
  position: sticky;
  top: 18px;
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  padding: 0 6px 0 0;
  border-top: none;
  scrollbar-width: thin;
  background: transparent;
}
.widget-post-toc.is-fixed {
  position: fixed;
  z-index: 20;
}
.widget-post-toc.is-bottom {
  position: absolute;
  left: 10px;
  right: 10px;
}
.post-toc-list {
  margin: .35em 0 0;
  padding: 0;
  list-style: none;
  border-left: 1px solid #DED6CA;
}
.post-toc-item {
  margin: .2em 0;
  padding-left: .8em;
  line-height: 1.55;
}
.post-toc-item a {
  display: block;
  color: #6D645B;
  border-bottom: none;
  transition: color .2s ease;
}
.post-toc-item a:hover {
  color: #231D19;
  text-decoration: none;
}
.post-toc-item a.is-active {
  color: #2E5B84;
  font-weight: 700;
}
.post-toc-item.level-h3 {
  padding-left: 1.4em;
  font-size: .95em;
}
.post-toc-item.level-h4 {
  padding-left: 2em;
  font-size: .92em;
}
.post-toc-empty {
  margin: .5em 0 0;
  color: #999;
  font-size: .92em;
}
.theme-toggle-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #D7CCBE;
  background: rgba(255, 253, 249, .72);
  color: #71665A;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.theme-toggle-btn:hover {
  border-color: #C0B19E;
  color: #3B3128;
  background: #F0E7DB;
  transform: translateY(-1px);
}


/* ------------------
 * Footer 
 * --------------- */
#footer {
  padding: 3em 0;
  line-height: 1.5;
  text-align: center;
  color: #8B8074;
}
.footer-runtime {
  margin-top: .45em;
}


/* -----------------
 * Error page
 * -------------- */
.error-page {
  margin-top: 100px;
  margin-bottom: 100px;
}


/* -----------------
 * Content format
 *--------------- */
.post-content, .comment-content {
  line-height: 1.5;
  word-wrap: break-word;
}
.post-detail .post-content {
  margin-top: 1.5em;
  color: #39342F;
  font-size: 1.03em;
  line-height: 1.9;
}
.post-detail .post-content > *:first-child {
  margin-top: 0;
}
.post-detail .post-content > *:last-child {
  margin-bottom: 0;
}
.post-detail .post-content p,
.post-detail .post-content ul,
.post-detail .post-content ol,
.post-detail .post-content blockquote,
.post-detail .post-content pre,
.post-detail .post-content table,
.post-detail .post-content .table-wrapper,
.post-detail .post-content img,
.post-detail .post-content hr {
  margin-top: 1.1em;
  margin-bottom: 1.1em;
}
.post-detail .post-content h2,
.post-detail .post-content h3,
.post-detail .post-content h4,
.post-detail .post-content h5,
.post-detail .post-content h6 {
  margin-top: 1.8em;
  margin-bottom: .75em;
  color: #1E1814;
  line-height: 1.35;
  letter-spacing: .01em;
}
.post-detail .post-content h2 {
  font-size: 1.68em;
  padding-bottom: .4em;
  border-bottom: 1px solid #E2DAD0;
}
.post-detail .post-content h3 {
  font-size: 1.34em;
}
.post-detail .post-content h4 {
  font-size: 1.14em;
}
.post-detail .post-content p + h2,
.post-detail .post-content p + h3,
.post-detail .post-content p + h4,
.post-detail .post-content ul + h2,
.post-detail .post-content ul + h3,
.post-detail .post-content ol + h2,
.post-detail .post-content ol + h3,
.post-detail .post-content blockquote + h2,
.post-detail .post-content blockquote + h3,
.post-detail .post-content pre + h2,
.post-detail .post-content pre + h3 {
  margin-top: 2em;
}
.post-detail .post-content ul,
.post-detail .post-content ol {
  padding-left: 1.5em;
}
.post-detail .post-content li {
  margin: .42em 0;
}
.post-detail .post-content li > ul,
.post-detail .post-content li > ol {
  margin-top: .45em;
  margin-bottom: .45em;
}
.post-detail .post-content blockquote {
  margin-left: 0;
  padding: .65em 0 .65em 1.15em;
  border-left: 2px solid #C8BBAA;
  border-radius: 0;
  background: transparent;
  color: #6A6056;
}
.post-detail .post-content blockquote p:last-child {
  margin-bottom: 0;
}
.post-detail .post-content img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0;
  box-shadow: none;
}
.post-detail .post-content table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}
.post-detail .post-content th,
.post-detail .post-content td {
  padding: .72em .84em;
}
.post-detail .post-content th {
  background: #EEE7DD;
  color: #2A221C;
}
.post-detail .post-content hr {
  width: 100%;
  border-width: 1px 0 0 0;
  border-color: #E2DAD0;
}
.post-detail .post-content strong {
  color: #1D1713;
}
.post-detail .post-content p,
.post-detail .post-content li {
  text-align: justify;
}
.post-content h2, .comment-content h2 {
  font-size: 1.28571em;
}
.post-content img, .comment-content img,
.post-content video, .comment-content video {
  max-width: 100%;
}
.post-content a img,
.comment-content a img {
  background: #FFF;
  position: relative;
  bottom: -4px;  /* hidden img parent link border  */
}
.post-content hr, .comment-content hr {
  margin: 2em auto;
  width: 100px;
  border: 1px solid #E9E9E9;
  border-width: 2px 0 0 0;
}

/* -----------------
 * Archive timeline
 *--------------- */
.archive-section {
  margin-top: 2.3em;
}
.archive-section-title {
  margin: 0 0 .9em;
  color: #5F5A53;
  font-size: 1.32em;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .14em;
}
.post-detail .post-content .archive-section-title {
  margin: 0 0 .9em;
  padding-bottom: 0;
  border-bottom: none;
  color: #5F5A53;
  font-size: 1.56em;
  line-height: 1.3;
  letter-spacing: .14em;
}
.post-detail .post-content .archive-section-pinned .archive-section-title,
.post-detail .post-content .archive-section-latest .archive-section-title,
.post-detail .post-content .archive-section-timeline .archive-section-title,
.archive-section-pinned .archive-section-title,
.archive-section-latest .archive-section-title,
.archive-section-timeline .archive-section-title {
  color: #5E7488;
}
.archive-section-shell {
  padding: .2em 0 0;
  border: none;
  border-top: 1px solid #E2DAD0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.archive-section-shell-timeline {
  padding-top: .7em;
  padding-bottom: .2em;
}
.archive-card-list {
  display: grid;
  gap: 0;
}
.archive-section-pinned .archive-card-list,
.archive-section-latest .archive-card-list {
  width: min(100%, 38rem);
}
.archive-card-item {
  margin: 0;
  padding: .88em 0 .94em;
  border-bottom: 1px solid #E2DAD0;
  position: relative;
  transition: background-color .22s ease, padding-left .22s ease, padding-right .22s ease;
}
.archive-section-pinned .archive-card-item,
.archive-section-latest .archive-card-item {
  padding: .62em 0 .68em;
}
.archive-card-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.archive-card-item-pinned {
  position: relative;
}
.archive-card-head {
  display: block;
}
.archive-card-title {
  margin: 0;
}
.archive-card-list .home-post-card .archive-card-title {
  margin-bottom: .34em;
  font-size: 1.08em;
  line-height: 1.38;
}
.archive-section-pinned .archive-card-list .home-post-card .archive-card-title,
.archive-section-latest .archive-card-list .home-post-card .archive-card-title {
  margin-bottom: .24em;
  font-size: .98em;
  line-height: 1.34;
}
.archive-card-meta {
  margin: 0;
}
.archive-card-list .home-post-card .archive-card-meta {
  justify-content: flex-start;
  gap: .18em .72em;
  text-align: left;
  white-space: normal;
  font-size: .86em;
}
.archive-section-pinned .archive-card-list .home-post-card .archive-card-meta,
.archive-section-latest .archive-card-list .home-post-card .archive-card-meta {
  gap: .12em .6em;
  font-size: .8em;
}
.archive-card-categories a {
  margin-right: .4em;
}
.archive-card-label {
  margin-bottom: .42em;
}
.archive-card-label-pinned {
  color: #8C6D46;
}
.archive-card-label-latest {
  color: #7B6A55;
}
.archive-timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.archive-timeline:before {
  content: "";
  position: absolute;
  left: 9.6em;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #DED6CA;
}
.archive-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 8.5em 1fr;
  column-gap: 2.2em;
  align-items: start;
  padding: .8em 0;
  transition: background-color .22s ease, padding-left .22s ease, padding-right .22s ease;
}
.archive-timeline-item:before {
  content: "";
  position: absolute;
  left: 9.32em;
  top: 1.25em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid #F5F1EA;
  background: #9B866C;
}
.archive-timeline-item:after {
  left: 0;
  top: .55em;
  bottom: .55em;
}
.archive-timeline-date {
  text-align: right;
  color: #8D8175;
  font-size: .93em;
  letter-spacing: .03em;
}
.archive-timeline-title {
  color: #27211C;
  text-decoration: none;
}
.archive-timeline-title:hover {
  color: #000;
  text-decoration: none;
}
.archive-timeline-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55em .95em;
}
.archive-timeline-categories {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #86796D;
  font-size: .9em;
}
.archive-timeline-comments {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #86796D;
  font-size: .9em;
}
.archive-timeline-categories a {
  margin-right: .4em;
}

/* -----------------
 * Feel page
 *--------------- */
.feel-list {
  margin-top: 1.7em;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.feel-publish {
  margin: 1.2em 0 1.6em;
  padding: 1em 1.1em;
  border: 1px solid #EEE;
  background: #FCFCFC;
}
.feel-publish-title {
  margin: 0 0 .6em;
  font-size: 1.1em;
}
.feel-form-field {
  margin: 0 0 .8em;
}
.feel-form-field label {
  display: block;
  margin-bottom: .35em;
  color: #555;
  font-size: .95em;
}
.feel-form-actions {
  margin: .2em 0 0;
}
.feel-form-actions button {
  border: 1px solid #DDD;
  background: #FFF;
  color: #333;
  padding: .45em 1.1em;
  border-radius: 2px;
  cursor: pointer;
}
.feel-form-actions button:hover {
  background: #F3F3F3;
}
.feel-alert {
  margin: 0 0 .8em;
  padding: .45em .65em;
  border-radius: 2px;
  font-size: .93em;
}
.feel-alert-success {
  background: #EEF9F0;
  border: 1px solid #CFE8D3;
  color: #2F6E3A;
}
.feel-alert-error {
  background: #FFF3F1;
  border: 1px solid #F0D2CE;
  color: #8A3A2F;
}
.feel-item {
  padding: 1.4em 0 1.55em;
  border: none;
  border-bottom: 1px solid #E2DAD0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  position: relative;
  transition: color .2s ease, opacity .2s ease, background-color .22s ease, padding-left .22s ease, padding-right .22s ease;
}
.feel-item:hover {
  border-color: #D5CBBD;
  box-shadow: none;
  transform: none;
  background: var(--flow-hover-bg);
  padding-left: 14px;
  padding-right: 14px;
}
.feel-item:hover:before,
.feel-item:focus-within:before,
.archive-card-item:hover:before,
.archive-card-item:focus-within:before,
.archive-timeline-item:hover:after,
.archive-timeline-item:focus-within:after {
  opacity: 1;
  transform: scaleY(1);
}
.feel-item:focus-within,
.archive-card-item:hover,
.archive-card-item:focus-within,
.archive-timeline-item:hover,
.archive-timeline-item:focus-within {
  background: var(--flow-hover-bg);
  padding-left: 14px;
  padding-right: 14px;
}
.feel-item p:last-child {
  margin-bottom: 0;
}
.feel-title {
  margin: 0 0 .45em;
  font-size: 1.48em;
}
.feel-title a {
  border-bottom: none;
}
.feel-meta {
  margin: .18em 0 .78em;
  color: #8B8074;
  font-size: .91em;
}
.feel-meta span {
  margin-right: .8em;
}
.feel-summary {
  margin: 0 0 .9em;
  color: #5E564E;
  line-height: 1.85;
}
.feel-detail-title {
  margin: .12em 0 .55em;
  font-size: 2.1em;
  line-height: 1.28;
  color: #191410;
}
.feel-detail {
  padding: .2em 0 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.feel-content {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #39342F;
  font-size: 1.02em;
  line-height: 1.88;
}
.feel-content > *:first-child {
  margin-top: 0;
}
.feel-content > *:last-child {
  margin-bottom: 0;
}
.feel-content p,
.feel-content ul,
.feel-content ol,
.feel-content blockquote,
.feel-content pre,
.feel-content table,
.feel-content img,
.feel-content hr {
  margin-top: 1.05em;
  margin-bottom: 1.05em;
}
.feel-content h2,
.feel-content h3,
.feel-content h4 {
  margin-top: 1.65em;
  margin-bottom: .72em;
  line-height: 1.34;
  color: #1D1713;
}
.feel-content h2 {
  font-size: 1.56em;
  padding-bottom: .38em;
  border-bottom: 1px solid #E2DAD0;
}
.feel-content h3 {
  font-size: 1.26em;
}
.feel-content h4 {
  font-size: 1.1em;
}
.feel-content ul,
.feel-content ol {
  padding-left: 1.5em;
}
.feel-content li {
  margin: .38em 0;
}
.feel-content blockquote {
  margin-left: 0;
  padding: .65em 0 .65em 1.12em;
  border-left: 2px solid #C8BBAA;
  border-radius: 0;
  background: transparent;
  color: #6A6056;
}
.feel-content blockquote p:last-child {
  margin-bottom: 0;
}
.feel-content img {
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0;
  box-shadow: none;
}
.feel-content hr {
  width: 100%;
  border-width: 1px 0 0 0;
  border-color: #E2DAD0;
}
.feel-content strong {
  color: #1D1713;
}
.feel-back {
  margin: 0 0 1.1em;
  font-size: .95em;
}
.feel-back a {
  display: inline-flex;
  align-items: center;
  gap: .32em;
  border-bottom: none;
  color: #5A6981;
}
.feel-comments {
  margin-top: 2em;
  padding-top: 1.25em;
  border-top: 1px solid #E2DAD0;
}
.feel-comments > h3 {
  margin: 0 0 1em;
  font-size: 1.22em;
}
.feel-empty {
  color: #999;
}
.feel-comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.feel-comment-item {
  margin: 0 0 .9em;
  padding: .95em 0;
  border: none;
  border-bottom: 1px solid #E2DAD0;
  border-radius: 0;
  background: transparent;
}
.feel-comment-item .feel-comment-list {
  margin-top: .8em;
  margin-left: 1em;
  padding-left: 1em;
  border-left: 1px solid #DED6CA;
}
.feel-comment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .35em .9em;
  margin-bottom: .45em;
  font-size: .92em;
  color: #999;
}
.feel-comment-meta a {
  border-bottom: none;
}
.feel-comment-content {
  color: #494138;
  line-height: 1.75;
}
.feel-comment-reply {
  margin-left: auto;
  border-bottom: none;
  font-size: .92em;
}
.feel-comment-form-wrap {
  margin-top: 1.4em;
  padding: 1.15em 0 0;
  border: none;
  border-top: 1px solid #E2DAD0;
  border-radius: 0;
  background: transparent;
}
.feel-comment-form-wrap h4 {
  margin: 0 0 .7em;
  font-size: 1.08em;
}
.feel-replying-to {
  margin: 0 0 .8em;
  color: #777;
  font-size: .93em;
}
.feel-replying-to a {
  margin-left: .6em;
  border-bottom: none;
}
.feel-comment-login {
  margin: 0 0 .7em;
  color: #777;
}
.feel-comment-form .feel-form-grid {
  margin: 0 0 .8em;
}
.feel-comment-form .feel-form-grid label {
  display: block;
  margin-bottom: .32em;
  color: #555;
  font-size: .95em;
}
.feel-detail .feel-meta {
  margin: 0 0 1.05em;
  display: flex;
  flex-wrap: wrap;
  gap: .3em .85em;
  color: #7E7267;
}
.feel-detail .feel-meta span,
.feel-detail .feel-meta time {
  display: inline-flex;
  align-items: center;
  margin-right: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

/* -----------------
 * Links page
 *--------------- */
.links-list {
  list-style: none;
  margin: 1.35em 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8em .9em;
}
.links-item {
  border: none;
  border-bottom: 1px solid #E2DAD0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: border-color .2s ease, color .2s ease;
  overflow: hidden;
}
.links-item:hover {
  border-color: #D2C6B7;
  box-shadow: none;
  transform: none;
}
.post-content .links-card {
  display: flex;
  align-items: center;
  gap: .9em;
  padding: 1.05em 0;
  color: inherit;
  border-bottom: none;
}
.post-content .links-card:hover,
.post-content .links-card:focus,
.post-content .links-card:active {
  border-bottom: none;
  text-decoration: none;
}
.links-avatar {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EFE5D8 0%, #E2D2BF 100%);
  box-shadow: inset 0 0 0 1px rgba(147, 120, 92, .14);
}
.links-avatar img,
.links-avatar-fallback {
  width: 100%;
  height: 100%;
}
.links-avatar img {
  display: block;
  object-fit: cover;
}
.links-avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  font-weight: 600;
  color: #765941;
}
.links-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.links-name {
  margin: 0;
  font-size: 1.08em;
  line-height: 1.35;
  color: #251F1A;
}
.links-desc {
  margin: .45em 0 0;
  color: #62584E;
  line-height: 1.62;
  font-size: .93em;
}
.links-empty {
  color: #8B8074;
  padding: .8em 0;
}

/* -----------------
 * Sponsor page
 *--------------- */
.sponsor-wrapper {
  width: 100%;
  margin: 1.3em auto 0;
  font-size: 15px;
}
.sponsor-hero {
  margin-bottom: 16px;
}
.sponsor-alert {
  background: linear-gradient(135deg, #EEF6FF, #F4FBFF);
  color: #295A88;
  padding: 12px 14px;
  border: 1px solid #CFE3F9;
  margin-bottom: 14px;
  border-radius: 10px;
  font-weight: 600;
}
.sponsor-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  margin-bottom: 16px;
}
.sponsor-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background-color: #FFF;
  border: 1px solid #D7E4F4;
  box-shadow: 0 8px 22px rgba(50, 101, 153, 0.12);
}
.sponsor-table thead {
  background: #F3F6FA;
  color: #111111;
}
.sponsor-table th,
.sponsor-table td {
  padding: 12px 10px;
  text-align: center;
  border-bottom: 1px solid #E7EFF8;
}
.sponsor-table th {
  color: #111111;
  font-weight: 700;
  letter-spacing: .02em;
  text-shadow: none;
}
.sponsor-table td {
  color: #111111;
  font-weight: 500;
}
.sponsor-table td:last-child {
  color: #111111;
}
.sponsor-rank {
  color: #111111;
  font-weight: 600;
  width: 68px;
}
.sponsor-table a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}
.sponsor-table a:hover {
  text-decoration: underline;
}
.sponsor-amount {
  color: #111111;
  font-weight: 700;
  white-space: nowrap;
}
.sponsor-table tbody tr:nth-child(even) {
  background-color: #F8FBFF;
}
.sponsor-table tbody tr:hover {
  background-color: #EEF5FF;
}
.sponsor-note {
  text-align: center;
  color: #60768F;
  font-size: .92em;
  margin: 14px 0;
  padding: 11px;
  background: rgba(242, 248, 255, .9);
  border: 1px dashed #CFDEF0;
  border-radius: 9px;
}
.sponsor-btn-container {
  text-align: center;
  margin-top: 15px;
}
.sponsor-btn {
  background: linear-gradient(135deg, #3F7FC4, #2F669E);
  color: #FFF !important;
  border: none;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
  transition: .25s;
  box-shadow: 0 8px 16px rgba(45, 102, 158, 0.32);
}
.sponsor-btn:hover {
  background: linear-gradient(135deg, #4A8ED8, #356FAE);
  transform: translateY(-2px);
}
#sponsorImage {
  max-width: 100%;
  width: 300px;
  height: auto;
  margin-top: 15px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  display: none;
}
#sponsorImage.show {
  display: inline-block;
  animation: sponsorFadeIn .45s;
}
@keyframes sponsorFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* -----------------
 * Misc
 *--------------- */
.aligncenter, div.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.alignleft {
  float: left;
}
.alignright {
  float: right;
}
img.alignleft {
  margin: 0 15px 0 0;
}
img.alignright {
  margin: 0 0 0 15px;
}

/* -----------------
 * Dark theme
 *--------------- */
html[data-theme="dark"] {
  color-scheme: dark;
  --dark-bg: #1A1A1A;
  --dark-bg-deep: #141414;
  --dark-surface: rgba(34, 34, 34, 0.94);
  --dark-surface-strong: rgba(43, 43, 43, 0.97);
  --dark-surface-soft: rgba(74, 74, 74, 0.42);
  --dark-line: rgba(255, 255, 255, 0.09);
  --dark-line-strong: rgba(255, 255, 255, 0.16);
  --dark-text-primary: #F1F1F1;
  --dark-text-secondary: #D6D6D6;
  --dark-text-tertiary: #A8A8A8;
  --dark-text-quaternary: #808080;
  --dark-accent: #C9B28B;
  --dark-accent-strong: #DCC39A;
  --dark-accent-soft: rgba(201, 178, 139, 0.12);
  --dark-accent-warm: rgba(201, 178, 139, 0.18);
  --dark-shadow: none;
  --flow-hover-bg: rgba(58, 58, 58, .34);
  --flow-hover-line: rgba(220, 195, 154, .82);
}
html[data-theme="dark"] body {
  background-color: var(--dark-bg);
  background-image:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04), transparent 30%),
    linear-gradient(180deg, #151515 0%, #1A1A1A 24%, #1D1D1D 100%);
  color: var(--dark-text-secondary);
}
html[data-theme="dark"] #body {
  background: linear-gradient(180deg, rgba(35, 35, 35, 0.96) 0%, rgba(38, 38, 38, 0.96) 18%, rgba(33, 33, 33, 0.97) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .015);
}
html[data-theme="dark"] a {
  color: var(--dark-accent);
}
html[data-theme="dark"] a:hover,
html[data-theme="dark"] a:active {
  color: var(--dark-accent-strong);
}
html[data-theme="dark"] pre,
html[data-theme="dark"] code {
  background: var(--dark-surface-strong);
}
html[data-theme="dark"] code {
  color: #E7C08F;
}
html[data-theme="dark"] pre code {
  color: var(--dark-text-secondary);
}
html[data-theme="dark"] .post-content pre[class*="language-"] {
  border-color: var(--dark-line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}
html[data-theme="dark"] .post-detail .post-content {
  color: var(--dark-text-secondary);
}
html[data-theme="dark"] .post-detail .post-content h2,
html[data-theme="dark"] .post-detail .post-content h3,
html[data-theme="dark"] .post-detail .post-content h4,
html[data-theme="dark"] .post-detail .post-content h5,
html[data-theme="dark"] .post-detail .post-content h6,
html[data-theme="dark"] .post-detail .post-content strong {
  color: var(--dark-text-primary);
}
html[data-theme="dark"] .post-detail .post-content h2 {
  border-bottom-color: var(--dark-line);
}
html[data-theme="dark"] .post-detail .post-content blockquote {
  border-left-color: var(--dark-accent);
  background: linear-gradient(180deg, var(--dark-accent-soft) 0%, rgba(39, 39, 39, 0.9) 100%);
  color: var(--dark-text-tertiary);
}
html[data-theme="dark"] .post-detail .post-content img {
  box-shadow: 0 18px 42px rgba(0, 0, 0, .26);
}
html[data-theme="dark"] .post-detail .post-content table {
  background: rgba(40, 40, 40, 0.82);
}
html[data-theme="dark"] .post-detail .post-content th {
  background: rgba(52, 52, 52, 0.88);
  color: var(--dark-text-primary);
}
html[data-theme="dark"] .post-detail .post-content hr {
  border-color: var(--dark-line);
}
html[data-theme="dark"] blockquote {
  border-left-color: var(--dark-line-strong);
  color: var(--dark-text-tertiary);
}
html[data-theme="dark"] table {
  border-color: var(--dark-line);
}
html[data-theme="dark"] table th,
html[data-theme="dark"] table td {
  border-color: var(--dark-line);
}
html[data-theme="dark"] table th {
  background: rgba(52, 52, 52, 0.78);
}
html[data-theme="dark"] input[type="text"],
html[data-theme="dark"] input[type="email"],
html[data-theme="dark"] input[type="url"],
html[data-theme="dark"] input[type="password"],
html[data-theme="dark"] textarea {
  border-color: var(--dark-line);
  background: rgba(42, 42, 42, 0.82);
  color: var(--dark-text-secondary);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}
html[data-theme="dark"] input[type="text"]:focus,
html[data-theme="dark"] input[type="email"]:focus,
html[data-theme="dark"] input[type="url"]:focus,
html[data-theme="dark"] input[type="password"]:focus,
html[data-theme="dark"] textarea:focus {
  outline: none;
  border-color: rgba(201, 178, 139, 0.42);
  box-shadow: 0 0 0 3px rgba(201, 178, 139, 0.1);
}
html[data-theme="dark"] #header {
  border-bottom-color: var(--dark-line);
  background: rgba(46, 46, 46, 0.88);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .03);
}
html[data-theme="dark"] #logo,
html[data-theme="dark"] .site-title {
  color: var(--dark-text-primary);
}
html[data-theme="dark"] .description {
  color: #909090;
}
html[data-theme="dark"] #search input {
  background: rgba(52, 52, 52, 0.84);
  border-color: var(--dark-line);
  color: var(--dark-text-secondary);
}
html[data-theme="dark"] #search input::placeholder,
html[data-theme="dark"] textarea::placeholder {
  color: var(--dark-text-quaternary);
}
html[data-theme="dark"] #search button {
  filter: brightness(0) invert(1) opacity(.74);
  top: 6px;
  right: 8px;
}
html[data-theme="dark"] #nav-menu a {
  color: var(--dark-text-tertiary);
  background: transparent;
}
html[data-theme="dark"] #nav-menu a:hover,
html[data-theme="dark"] #nav-menu .current {
  border-color: transparent;
  background: transparent;
  color: var(--dark-text-primary);
  text-decoration-color: rgba(220, 195, 154, .8);
}
html[data-theme="dark"] .post {
  border-bottom-color: var(--dark-line);
}
html[data-theme="dark"] .post-detail {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}
html[data-theme="dark"] .post-detail .post-title a {
  color: var(--dark-text-primary);
}
html[data-theme="dark"] .post-detail .post-title a:hover {
  color: #FFFFFF;
}
html[data-theme="dark"] .post-meta,
html[data-theme="dark"] .post-near,
html[data-theme="dark"] .archive-title,
html[data-theme="dark"] .comment-meta a,
html[data-theme="dark"] .feel-meta,
html[data-theme="dark"] .feel-empty,
html[data-theme="dark"] .links-empty,
html[data-theme="dark"] .post-toc-empty {
  color: var(--dark-text-quaternary);
}
html[data-theme="dark"] .post-meta li {
  border-left-color: var(--dark-line);
}
html[data-theme="dark"] .post-detail .post-meta {
  color: var(--dark-text-tertiary);
}
html[data-theme="dark"] .post-detail .post-meta li,
html[data-theme="dark"] .post-detail .post-meta li:first-child {
  border-color: transparent;
  background: transparent;
}
html[data-theme="dark"] .post-detail .tags {
  border-top-color: var(--dark-line);
  color: var(--dark-text-tertiary);
}
html[data-theme="dark"] .post-detail .tags a {
  border-color: transparent;
  background: transparent;
  color: var(--dark-text-secondary);
}
html[data-theme="dark"] .post-detail .tags a:hover {
  border-color: transparent;
  background: transparent;
  color: var(--dark-text-primary);
}
html[data-theme="dark"] .feel-content {
  color: var(--dark-text-secondary);
}
html[data-theme="dark"] .feel-summary,
html[data-theme="dark"] .feel-comment-content {
  color: var(--dark-text-secondary);
}
html[data-theme="dark"] .feel-detail-title,
html[data-theme="dark"] .feel-title a {
  color: var(--dark-text-primary);
}
html[data-theme="dark"] .feel-title a:hover {
  color: #FFFFFF;
}
html[data-theme="dark"] .sponsor-alert {
  background: linear-gradient(135deg, var(--dark-accent-soft), rgba(45, 45, 45, 0.9));
  border-color: rgba(201, 178, 139, 0.24);
  color: var(--dark-text-secondary);
}
html[data-theme="dark"] .sponsor-table {
  background: transparent;
  border-color: var(--dark-line);
  box-shadow: none;
}
html[data-theme="dark"] .sponsor-table th,
html[data-theme="dark"] .sponsor-table td {
  border-bottom-color: var(--dark-line);
}
html[data-theme="dark"] .sponsor-table th {
  color: var(--dark-text-primary);
}
html[data-theme="dark"] .sponsor-table thead {
  background: rgba(52, 52, 52, 0.78);
}
html[data-theme="dark"] .sponsor-table td {
  color: var(--dark-text-primary);
}
html[data-theme="dark"] .sponsor-table td:last-child {
  color: var(--dark-text-primary);
}
html[data-theme="dark"] .sponsor-rank {
  color: var(--dark-text-primary);
}
html[data-theme="dark"] .sponsor-amount {
  color: var(--dark-text-primary);
}
html[data-theme="dark"] .sponsor-table tbody tr:nth-child(even) {
  background: rgba(52, 52, 52, 0.24);
}
html[data-theme="dark"] .sponsor-table tbody tr:hover {
  background: rgba(201, 178, 139, 0.08);
}
html[data-theme="dark"] .sponsor-note {
  color: var(--dark-text-tertiary);
  background: rgba(42, 42, 42, .84);
  border-color: var(--dark-line);
}
html[data-theme="dark"] .sponsor-btn {
  background: linear-gradient(135deg, #5E5E5E, #4E4E4E);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}
html[data-theme="dark"] .sponsor-btn:hover {
  background: linear-gradient(135deg, #6A6A6A, #595959);
}
html[data-theme="dark"] #sponsorImage {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
}
html[data-theme="dark"] .home-post-list .home-post-card,
html[data-theme="dark"] .archive-card-list .home-post-card,
html[data-theme="dark"] .feel-item {
  border-color: var(--dark-line);
  background: transparent;
  box-shadow: none;
}
html[data-theme="dark"] .home-post-list .home-post-card-post {
  border-radius: 0;
}
html[data-theme="dark"] .home-post-list .home-post-card:hover,
html[data-theme="dark"] .archive-card-list .home-post-card:hover,
html[data-theme="dark"] .feel-item:hover,
html[data-theme="dark"] .home-post-list .home-post-card:focus-within,
html[data-theme="dark"] .archive-card-list .home-post-card:focus-within,
html[data-theme="dark"] .feel-item:focus-within,
html[data-theme="dark"] .archive-card-item:hover,
html[data-theme="dark"] .archive-card-item:focus-within,
html[data-theme="dark"] .archive-timeline-item:hover,
html[data-theme="dark"] .archive-timeline-item:focus-within {
  border-color: rgba(201, 178, 139, 0.28);
  box-shadow: none;
  background: var(--flow-hover-bg);
}
html[data-theme="dark"] .home-post-list .home-post-card .post-title a,
html[data-theme="dark"] .archive-card-list .home-post-card .post-title a {
  color: var(--dark-text-primary);
}
html[data-theme="dark"] .home-mixed-title span {
  color: var(--dark-text-primary);
}
html[data-theme="dark"] .home-post-list .home-post-card .post-title a:hover,
html[data-theme="dark"] .archive-card-list .home-post-card .post-title a:hover {
  color: #FFFFFF;
}
html[data-theme="dark"] .home-post-list .home-post-card .post-meta,
html[data-theme="dark"] .archive-card-list .home-post-card .post-meta {
  color: var(--dark-text-tertiary);
}
html[data-theme="dark"] .home-mixed-badge-post {
  background: transparent;
  border-color: transparent;
  color: #9FBAD3;
}
html[data-theme="dark"] .home-mixed-badge-feel {
  background: transparent;
  border-color: transparent;
  color: var(--dark-accent);
}
html[data-theme="dark"] .home-mixed-excerpt {
  color: var(--dark-text-secondary);
}
html[data-theme="dark"] .home-mixed-actions a {
  color: var(--dark-accent-strong);
}
html[data-theme="dark"] .home-mixed-actions a:hover {
  color: #FFFFFF;
}
html[data-theme="dark"] .home-post-list .home-post-card .post-meta li,
html[data-theme="dark"] .archive-card-list .home-post-card .post-meta li,
html[data-theme="dark"] .archive-card-list .home-post-card .post-meta li {
  border-color: transparent;
  background: transparent;
}
html[data-theme="dark"] .page-navigator a {
  border-radius: 0;
  background: transparent;
  color: var(--dark-text-tertiary);
}
html[data-theme="dark"] .page-navigator a:hover,
html[data-theme="dark"] .page-navigator .current a {
  background: transparent;
  color: var(--dark-text-primary);
}
html[data-theme="dark"] .page-navigator .more span {
  color: var(--dark-text-quaternary);
}
html[data-theme="dark"] .comment-list li {
  border-color: var(--dark-line);
}
html[data-theme="dark"] .comment-list .comment-children {
  border-left-color: var(--dark-line);
}
html[data-theme="dark"] .comment-list li.comment-level-odd {
  background: transparent;
}
html[data-theme="dark"] .comment-list li.comment-level-even {
  background: transparent;
}
html[data-theme="dark"] .comment-list li.comment-by-author {
  background: var(--dark-accent-soft);
}
html[data-theme="dark"] .comment-list li.comment-child {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
html[data-theme="dark"] .comment-list .respond,
html[data-theme="dark"] .feel-comments,
html[data-theme="dark"] .feel-comment-form-wrap {
  border-top-color: var(--dark-line);
}
html[data-theme="dark"] .feel-comment-item,
html[data-theme="dark"] .links-item {
  border-color: var(--dark-line);
  background: transparent;
}
html[data-theme="dark"] .widget-notice,
html[data-theme="dark"] .widget-post-toc {
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
html[data-theme="dark"] .widget-post-toc {
  padding: 0 6px 0 0;
}
html[data-theme="dark"] .widget-notice .widget-title,
html[data-theme="dark"] .widget-post-toc .widget-title {
  padding-bottom: 0;
  border-bottom: none;
  color: var(--dark-text-primary);
}
html[data-theme="dark"] .widget-notice-content {
  color: var(--dark-text-tertiary);
}
html[data-theme="dark"] .feel-detail {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}
html[data-theme="dark"] .feel-detail-title,
html[data-theme="dark"] .feel-content h2,
html[data-theme="dark"] .feel-content h3,
html[data-theme="dark"] .feel-content h4,
html[data-theme="dark"] .feel-content strong {
  color: var(--dark-text-primary);
}
html[data-theme="dark"] .feel-detail .feel-meta,
html[data-theme="dark"] .feel-back a {
  color: var(--dark-text-tertiary);
}
html[data-theme="dark"] .feel-detail .feel-meta span,
html[data-theme="dark"] .feel-detail .feel-meta time {
  border-color: transparent;
  background: transparent;
}
html[data-theme="dark"] .feel-content {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  color: var(--dark-text-secondary);
}
html[data-theme="dark"] .feel-content h2 {
  border-bottom-color: var(--dark-line);
}
html[data-theme="dark"] .feel-content blockquote {
  border-left-color: var(--dark-accent);
  background: linear-gradient(180deg, var(--dark-accent-soft) 0%, rgba(39, 39, 39, 0.9) 100%);
  color: var(--dark-text-tertiary);
}
html[data-theme="dark"] .feel-content img {
  box-shadow: 0 18px 42px rgba(0, 0, 0, .26);
}
html[data-theme="dark"] .feel-content hr {
  border-color: var(--dark-line);
}
html[data-theme="dark"] .feel-comment-form-wrap {
  border-color: var(--dark-line);
  background: transparent;
}
html[data-theme="dark"] .widget-personal-link-icon {
  color: var(--dark-text-tertiary);
}
html[data-theme="dark"] .widget-personal-links .widget-list li a,
html[data-theme="dark"] .widget-categories .widget-list > li > a,
html[data-theme="dark"] .widget-other .widget-list li > a {
  border-bottom-color: var(--dark-line);
}
html[data-theme="dark"] .widget-personal-links .widget-list li a:hover,
html[data-theme="dark"] .widget-categories .widget-list > li > a:hover,
html[data-theme="dark"] .widget-other .widget-list li > a:hover {
  border-bottom-color: rgba(201, 178, 139, 0.28);
}
html[data-theme="dark"] .links-card {
  color: var(--dark-text-primary);
}
html[data-theme="dark"] .links-avatar {
  background: linear-gradient(135deg, rgba(78, 78, 78, 0.92) 0%, rgba(55, 55, 55, 0.94) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}
html[data-theme="dark"] .links-avatar-fallback {
  color: var(--dark-text-secondary);
}
html[data-theme="dark"] .links-name {
  color: var(--dark-text-primary);
}
html[data-theme="dark"] .links-desc {
  color: var(--dark-text-secondary);
}
html[data-theme="dark"] .widget-post-toc .post-toc-list,
html[data-theme="dark"] .feel-comment-item .feel-comment-list {
  border-left-color: var(--dark-line);
}
html[data-theme="dark"] .post-toc-item a {
  color: var(--dark-text-tertiary);
}
html[data-theme="dark"] .post-toc-item a.is-active {
  color: var(--dark-accent-strong);
}
html[data-theme="dark"] .archive-timeline:before {
  background: var(--dark-line);
}
html[data-theme="dark"] .archive-section-title {
  color: var(--dark-text-tertiary);
}
html[data-theme="dark"] .post-detail .post-content .archive-section-title {
  border-bottom: none;
  color: var(--dark-text-tertiary);
}
html[data-theme="dark"] .post-detail .post-content .archive-section-pinned .archive-section-title,
html[data-theme="dark"] .post-detail .post-content .archive-section-latest .archive-section-title,
html[data-theme="dark"] .post-detail .post-content .archive-section-timeline .archive-section-title,
html[data-theme="dark"] .archive-section-pinned .archive-section-title,
html[data-theme="dark"] .archive-section-latest .archive-section-title,
html[data-theme="dark"] .archive-section-timeline .archive-section-title {
  color: #9FB1C1;
}
html[data-theme="dark"] .archive-section-shell {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}
html[data-theme="dark"] .archive-card-item-pinned {
  background: transparent;
}
html[data-theme="dark"] .archive-card-item {
  border-bottom-color: var(--dark-line);
}
html[data-theme="dark"] .archive-card-label-pinned {
  color: var(--dark-accent);
}
html[data-theme="dark"] .archive-card-label-latest {
  color: var(--dark-text-tertiary);
}
html[data-theme="dark"] .archive-timeline-categories {
  color: var(--dark-text-tertiary);
}
html[data-theme="dark"] .archive-timeline-categories,
html[data-theme="dark"] .archive-timeline-comments {
  border-color: transparent;
  background: transparent;
  color: var(--dark-text-tertiary);
}
html[data-theme="dark"] .archive-timeline-date {
  color: var(--dark-text-quaternary);
}
html[data-theme="dark"] .archive-timeline-item:before {
  border-color: var(--dark-bg);
  background: var(--dark-accent);
}
html[data-theme="dark"] .archive-timeline-title {
  color: var(--dark-text-secondary);
}
html[data-theme="dark"] .archive-timeline-title:hover {
  color: #FFFFFF;
}
html[data-theme="dark"] #footer {
  color: var(--dark-text-quaternary);
  border-top: 1px solid var(--dark-line);
}
html[data-theme="dark"] .theme-toggle-btn {
  border-color: var(--dark-line);
  background: rgba(52, 52, 52, 0.84);
  color: var(--dark-text-primary);
}
html[data-theme="dark"] .theme-toggle-btn:hover {
  border-color: rgba(201, 178, 139, 0.28);
  background: rgba(62, 62, 62, 0.9);
}
html[data-theme="dark"] .theme-toggle-label {
  color: var(--dark-text-tertiary);
}
html[data-theme="dark"] .site-theme-toggle {
  color: var(--dark-text-tertiary);
}


/* -----------------
 * Responsive
 *--------------- */
@media (max-width: 767px) {
  body {
    font-size: 81.25%;
  }
  #nav-menu a {
    float: none;
    display: inline-block;
    margin: 0 -2px;
  }
  .archive-timeline:before {
    left: .36em;
  }
  .archive-timeline-item {
    grid-template-columns: 1fr;
    row-gap: .35em;
    padding: .6em 0 .9em 1.4em;
  }
  .archive-timeline-item:before {
    left: 0;
    top: .95em;
  }
  .archive-timeline-date {
    text-align: left;
  }
  .archive-section-shell {
    padding: .7em 0 0;
    border-radius: 0;
  }
  .archive-card-item {
    padding: .1em 0 .8em;
  }
  .archive-section-pinned .archive-card-list,
  .archive-section-latest .archive-card-list {
    width: 100%;
  }
  .archive-card-head {
    flex-direction: column;
    align-items: stretch;
    gap: .5em;
  }
  .archive-card-meta {
    justify-content: flex-start;
    text-align: left;
    white-space: normal;
  }
  .home-post-list {
    gap: .8em;
  }
  .home-post-list .home-post-card,
  .archive-card-list .home-post-card {
    padding: 1.15em 0 1.3em;
    border-radius: 0;
  }
  .home-post-list .home-post-card:hover,
  .archive-card-list .home-post-card:hover,
  .home-post-list .home-post-card:focus-within,
  .archive-card-list .home-post-card:focus-within,
  .feel-item:hover,
  .feel-item:focus-within,
  .archive-card-item:hover,
  .archive-card-item:focus-within,
  .archive-timeline-item:hover,
  .archive-timeline-item:focus-within {
    padding-left: 10px;
    padding-right: 10px;
  }
  .home-mixed-card {
    padding: 1.15em 0 1.3em;
  }
  .home-post-list .home-post-card .post-title,
  .archive-card-list .home-post-card .post-title {
    margin-bottom: .7em;
    font-size: 1.26em;
  }
  .archive-card-list .home-post-card .archive-card-title {
    margin-bottom: .38em;
    font-size: .98em;
  }
  .archive-section-pinned .archive-card-list .home-post-card .archive-card-title,
  .archive-section-latest .archive-card-list .home-post-card .archive-card-title {
    margin-bottom: .3em;
    font-size: .92em;
  }
  .home-mixed-badge {
    margin-bottom: .42em;
    padding: 0;
    font-size: .82em;
  }
  .home-mixed-badge-post {
    border-radius: 0;
  }
  .feel-comment-item {
    padding: .8em 0;
  }
  .feel-item {
    padding: 1.1em 0 1.25em;
    border-radius: 0;
  }
  .feel-comment-item .feel-comment-list {
    margin-left: .6em;
    padding-left: .6em;
  }
  .comment-list .comment-children {
    margin-left: .85em;
    padding-left: .75em;
  }
  .links-list {
    grid-template-columns: 1fr;
    gap: .7em;
  }
  .links-card {
    gap: .78em;
    padding: .95em 0;
  }
  .links-avatar {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }
  .sponsor-wrapper {
    font-size: 14px;
  }
  .sponsor-table {
    min-width: 500px;
  }
  .sponsor-table th,
  .sponsor-table td {
    padding: 10px 8px;
  }
}

@media (max-width: 768px) {
  #header,
  .post-title,
  .post-meta {
    text-align: center;
  }
}

@media (min-width: 992px) {
  #main.col-9 {
    width: 80%;
  }

  #secondary.col-3 {
    width: 20%;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1024px;
  }
}


/*
* Hide from both screenreaders and browsers: h5bp.com/u
*/
.hidden {
  display: none !important;
  visibility: hidden; }

/*
* Hide only visually, but have it available for screenreaders: h5bp.com/v
*/
.sr-only {
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

/*
* Extends the .sr-only class to allow the element to be focusable
* when navigated to via the keyboard: h5bp.com/p
*/
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

/*
* Hide visually and from screenreaders, but maintain layout
*/
.invisible {
  visibility: hidden; }
