.blog-shell {
  min-height: 100vh;
  background: var(--bg-color);
  color: var(--text-color);
  scrollbar-color: var(--theme-color-bright) transparent;
  scrollbar-width: thin;
}

.blog-shell a {
  text-decoration: none;
}

.blog-shell::-webkit-scrollbar {
  width: 10px;
}

.blog-shell::-webkit-scrollbar-track {
  background: transparent;
}

.blog-shell::-webkit-scrollbar-thumb {
  background: var(--theme-color-bright);
}

.blog-nav {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  background: rgba(15, 18, 23, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  transform: translateY(0);
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.blog-nav.is-fixed {
  color: var(--text-color);
  background: color-mix(in srgb, var(--bg-color) 86%, transparent);
  border-bottom-color: var(--border-color);
  backdrop-filter: blur(14px);
  transform: translateY(-100%);
}

.blog-nav.is-fixed.is-visible,
.blog-nav.is-top {
  transform: translateY(0);
}

.blog-brand,
.blog-kicker,
.blog-hero-content p,
.blog-sidebar h3,
.blog-toc button {
  font-family: var(--mono-font);
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.blog-brand {
  color: inherit;
  font-size: clamp(14px, 1.35vw, 20px);
  letter-spacing: 1.6px;
  white-space: nowrap;
}

.blog-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.blog-links a,
.blog-links button {
  color: inherit;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 14px;
  opacity: 0.78;
  cursor: pointer;
  transition: color 0.16s ease, opacity 0.16s ease;
}

.blog-links a:hover,
.blog-links button:hover {
  color: var(--theme-color-bright);
  opacity: 1;
}

.blog-search-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-search-icon {
  position: relative;
  width: 13px;
  height: 13px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.blog-search-icon::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 1.5px;
  right: -5px;
  bottom: -3px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.blog-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.blog-nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease, background-color 0.18s ease;
}

.blog-nav-toggle:hover span {
  background: var(--theme-color-bright);
}

.blog-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.blog-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.blog-nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.blog-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #11151b;
}

.blog-hero.compact {
  min-height: 360px;
}

.blog-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06);
  transform: translate3d(0, 0, 0) scale(1.08);
  will-change: transform;
}

.blog-hero-mask {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 12, 16, 0.78), rgba(10, 12, 16, 0.38) 48%, rgba(10, 12, 16, 0.68)),
    linear-gradient(0deg, rgba(10, 12, 16, 0.76), rgba(10, 12, 16, 0.12) 58%);
}

.blog-hero-content {
  position: relative;
  z-index: 1;
  width: calc(100% - 64px);
  max-width: 1120px;
  margin: 0 auto;
  padding: 150px 0 76px;
  color: #fff;
}

.blog-hero-content p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.72);
}

.blog-hero-content h1 {
  max-width: 860px;
  margin: 0 0 22px;
  color: #fff;
  font-family: var(--mono-font);
  font-size: clamp(42px, 8vw, 90px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.blog-hero-content span {
  display: block;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.6;
}

.blog-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.blog-hero-tags a {
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--mono-font);
  font-size: 12px;
}

.blog-main {
  width: calc(100% - 64px);
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 0 112px;
}

.blog-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 56px;
  align-items: start;
}

.blog-feed {
  min-width: 0;
}

.blog-list {
  display: grid;
  gap: 16px;
}

.blog-list[data-blog-paginated-list]:not(.is-ready) .blog-card:nth-child(n + 26) {
  display: none;
}

.blog-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--surface-color);
  transition: border-color 0.16s ease, background-color 0.16s ease, transform 0.16s ease;
}

.blog-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 136px;
  background:
    linear-gradient(rgba(6, 10, 15, 0.68), rgba(6, 10, 15, 0.68)),
    var(--blog-card-image);
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}

.blog-card:hover {
  border-color: var(--border-strong);
  background: var(--surface-hover);
  transform: translateY(-1px);
}

.blog-card a {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
  color: inherit;
}

.blog-card time,
.blog-meta,
.blog-archive time,
.blog-archive article span {
  color: var(--text-muted);
  font-family: var(--mono-font);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-card time {
  color: rgba(255, 255, 255, 0.78);
}

.blog-card h2 {
  margin: 0 0 8px;
  color: var(--text-color);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
}

.blog-card p {
  margin: 0;
  color: var(--text-secondary);
}

.blog-card-body {
  min-width: 0;
}

.blog-sidebar {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 32px;
  max-height: calc(100vh - 112px);
  overflow-y: auto;
  padding-right: 8px;
  color: var(--text-secondary);
  scrollbar-width: none;
}

.blog-search::-webkit-scrollbar {
  width: 8px;
}

.blog-search::-webkit-scrollbar-track {
  background: transparent;
}

.blog-search::-webkit-scrollbar-thumb {
  background: var(--theme-color-bright);
}

.blog-sidebar::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.blog-sidebar section {
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.blog-sidebar .blog-profile {
  padding-top: 0;
  border-top: 0;
}

.blog-profile .image.avatar {
  display: inline-block;
  width: 132px;
  height: 132px;
  margin-bottom: 32px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  background: var(--surface-color);
  overflow: hidden;
}

.blog-profile .image.avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-profile h2 {
  margin: 0 0 24px;
  color: var(--text-color);
  font-family: var(--mono-font);
  font-size: clamp(48px, 4.8vw, 76px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0;
  white-space: nowrap;
}

.blog-profile position,
.blog-profile email,
.blog-profile autocolor {
  color: var(--text-secondary);
}

.blog-profile position,
.blog-profile email {
  display: block;
  font-family: var(--body-font);
  font-size: 14px !important;
  line-height: 1.5;
}

.blog-profile email {
  color: var(--text-muted);
  font-family: var(--mono-font);
}

.blog-profile .social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.blog-profile .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: 0;
  background: transparent;
  color: var(--text-color) !important;
  font-size: 1rem;
}

.blog-profile .social-icons a:hover {
  background: var(--surface-hover);
  color: var(--interactive-hover) !important;
}

.blog-stats {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  color: var(--text-muted);
  font-family: var(--mono-font);
  font-size: 12px;
  letter-spacing: 0.5px;
}

.blog-sidebar h3 {
  margin: 0 0 16px;
  color: var(--text-color);
}

.blog-sidebar h3 a {
  color: inherit;
}

.blog-tag-cloud,
.blog-archive-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-tag-cloud[data-blog-tags-collapsed] a:nth-child(n + 11) {
  display: none;
}

.blog-tag-cloud[data-blog-tags-collapsed].is-expanded a {
  display: inline-flex;
}

.blog-tag-cloud a,
.blog-archive-tags button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 9px;
  border: 1px solid var(--border-color);
  border-radius: 0;
  color: var(--text-secondary);
  background: var(--surface-color);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.blog-tags-toggle {
  margin-top: 12px;
  padding: 6px 0;
  border: 0;
  color: var(--theme-color-bright);
  background: transparent;
  font-family: var(--mono-font);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}

.blog-tag-cloud a:hover,
.blog-archive-tags button:hover,
.blog-archive-tags button.is-active {
  border-color: var(--border-strong);
  color: var(--theme-color-bright);
  background: var(--surface-hover);
}

.blog-friends {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-friends a {
  color: var(--text-secondary);
}

.blog-friends a:hover {
  color: var(--theme-color-bright);
}

.blog-post-main {
  max-width: 1180px;
}

.blog-post-frame {
  display: grid;
  grid-template-columns: minmax(0, 820px) 220px;
  gap: 56px;
  align-items: start;
}

.blog-post {
  min-width: 0;
}

.blog-content {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.76;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4 {
  position: relative;
  margin: 48px 0 16px;
  color: var(--text-color);
  font-weight: 400;
  line-height: 1.25;
}

.blog-content h1 {
  font-size: 36px;
}

.blog-content h2 {
  font-size: 30px;
}

.blog-content h3 {
  font-size: 24px;
}

.blog-content p,
.blog-content ul,
.blog-content ol,
.blog-content blockquote,
.blog-content table,
.blog-content pre {
  margin: 0 0 24px;
}

.blog-content a,
.blog-about a,
.blog-archive a {
  color: var(--theme-color-bright);
}

.blog-content img {
  display: block;
  max-width: 100%;
  margin: 32px auto;
  border: 1px solid var(--border-color);
}

.blog-content blockquote {
  padding-left: 24px;
  border-left: 1px solid var(--border-strong);
  color: var(--text-muted);
}

.blog-content table {
  width: 100%;
  border-collapse: collapse;
  display: block;
  overflow-x: auto;
}

.blog-content th,
.blog-content td {
  padding: 8px 12px;
  border: 1px solid var(--border-color);
}

.blog-content code {
  font-family: var(--mono-font);
}

.blog-content :not(pre) > code {
  padding: 2px 5px;
  background: var(--surface-color);
  color: var(--text-color);
  border-radius: 4px;
}

.blog-content .highlighter-rouge,
.blog-content figure.highlight {
  margin: 0 0 24px;
}

.blog-content .highlight,
.blog-content pre.highlight,
.blog-content .highlight pre {
  background: #282c34;
  color: #abb2bf;
}

.blog-content .highlight {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

.blog-content .highlight pre {
  margin: 0;
  padding: 16px;
  overflow-x: auto;
  line-height: 1.55;
}

.blog-content .highlight table {
  width: auto;
  min-width: 100%;
  margin: 0;
  border: 0;
}

.blog-content .highlight td {
  border: 0;
  padding: 0;
}

.blog-content .highlight .rouge-gutter pre {
  min-width: 48px;
  padding-right: 12px;
  color: #5c6370;
  text-align: right;
  user-select: none;
}

.blog-content .highlight .rouge-code pre {
  padding-left: 12px;
}

.highlight .c,
.highlight .cm,
.highlight .c1,
.highlight .cs {
  color: #5c6370;
  font-style: italic;
}

.highlight .k,
.highlight .kc,
.highlight .kd,
.highlight .kn,
.highlight .kp,
.highlight .kr,
.highlight .kt {
  color: #c678dd;
}

.highlight .s,
.highlight .s1,
.highlight .s2,
.highlight .sb,
.highlight .sc,
.highlight .sd,
.highlight .se,
.highlight .sh,
.highlight .si,
.highlight .sx {
  color: #98c379;
}

.highlight .m,
.highlight .mf,
.highlight .mh,
.highlight .mi,
.highlight .mo {
  color: #d19a66;
}

.highlight .na,
.highlight .nb,
.highlight .nc,
.highlight .no,
.highlight .nd,
.highlight .ne,
.highlight .nl,
.highlight .nv {
  color: #e5c07b;
}

.highlight .nt,
.highlight .err {
  color: #e06c75;
}

.highlight .sr,
.highlight .ss {
  color: #56b6c2;
}

.blog-toc {
  position: sticky;
  top: 88px;
  max-height: calc(100vh - 112px);
  overflow: auto;
  color: var(--text-muted);
}

.blog-toc button {
  width: 100%;
  margin: 0 0 12px;
  padding: 0 0 12px;
  border: 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-color);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.blog-toc button::before {
  content: "-";
  margin-right: 6px;
}

.blog-toc.is-folded button::before {
  content: "+";
}

.blog-toc ol {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-toc.is-folded ol {
  display: none;
}

.blog-toc a {
  display: block;
  max-width: 220px;
  overflow: hidden;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.blog-toc a.is-active,
.blog-toc a:hover {
  color: var(--theme-color-bright);
}

.blog-toc .toc-h3 {
  padding-left: 12px;
}

.blog-toc .toc-h4 {
  padding-left: 24px;
}

.blog-post-pager {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 64px;
}

.blog-post-pager a {
  min-height: 88px;
  padding: 16px;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-family: var(--mono-font);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-post-pager span {
  color: var(--text-color);
  font-family: var(--body-font);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
}

.blog-pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.blog-pagination button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--border-color);
  border-radius: 0;
  color: var(--text-secondary);
  background: var(--surface-color);
  font-family: var(--mono-font);
  cursor: pointer;
}

.blog-pagination button:hover:not(:disabled) {
  border-color: var(--border-strong);
  color: var(--theme-color-bright);
  background: var(--surface-hover);
}

.blog-pagination button:disabled {
  color: var(--text-faint);
  cursor: not-allowed;
}

.blog-page-previous {
  justify-self: start;
}

.blog-page-next {
  justify-self: end;
}

.blog-page-indicator {
  color: var(--text-muted);
  font-family: var(--mono-font);
  font-size: 13px;
  letter-spacing: 1px;
}

.blog-archive-tags {
  margin-bottom: 48px;
}

.blog-archive {
  display: grid;
  gap: 0;
}

.blog-archive-year {
  padding-top: 48px;
}

.blog-archive-year + .blog-archive-year {
  border-top: 1px solid var(--border-color);
  margin-top: 48px;
}

.blog-archive-year article:last-child {
  border-bottom: 0;
}

.blog-archive-year h2 {
  margin: 0 0 24px;
  color: var(--text-color);
  font-family: var(--mono-font);
  font-size: 30px;
  font-weight: 300;
}

.blog-archive article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(0, 220px);
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.blog-archive article[hidden],
.blog-archive-year[hidden] {
  display: none !important;
}

.blog-comments {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.blog-backtop {
  --scroll-progress: 0;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-strong);
  background: var(--surface-color);
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
}

.blog-backtop.is-visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.blog-backtop:hover {
  background: var(--surface-hover);
}

.blog-backtop .scroll-fill {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: calc(var(--scroll-progress, 0) * 100%);
  background: var(--scroll-fill-color, var(--scroll-fill-start));
  transition: height 0.08s linear, background-color 0.08s linear;
}

.blog-backtop .blog-backtop-icon {
  position: relative;
  z-index: 1;
  color: #16191f;
  font-size: 16px;
  transition: color 0.12s ease;
}

@media (prefers-color-scheme: light) {
  .blog-backtop.is-past-half .blog-backtop-icon {
    color: #fff;
  }
}

@media (prefers-color-scheme: dark) {
  .blog-backtop .blog-backtop-icon {
    color: #fff;
  }
}

.blog-search-open {
  overflow: hidden;
}

.blog-search {
  position: fixed;
  z-index: 1001;
  inset: 0;
  overflow-y: auto;
  background: color-mix(in srgb, var(--bg-color) 92%, transparent);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.blog-search[hidden] {
  display: none;
}

.blog-search.is-open {
  opacity: 1;
  visibility: visible;
}

.blog-search-close {
  position: fixed;
  top: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-color);
  border-radius: 0;
  color: var(--text-color);
  background: var(--surface-color);
  font-size: 24px;
  cursor: pointer;
}

.blog-search-panel {
  width: calc(100% - 48px);
  max-width: 760px;
  margin: 12vh auto 0;
  transform: translateY(14px);
  transition: transform 180ms ease;
}

.blog-search.is-open .blog-search-panel {
  transform: translateY(0);
}

.blog-search-panel label {
  display: block;
  margin-bottom: 16px;
  color: var(--theme-color-bright);
  font-family: var(--mono-font);
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.blog-search-panel input {
  width: 100%;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid var(--border-strong);
  border-radius: 0;
  color: var(--text-color);
  background: transparent;
  font: 30px/1.2 var(--mono-font);
  outline: 0;
}

.blog-search-results {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.blog-search-results p {
  color: var(--text-muted);
}

.blog-search-result {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 8px 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
  color: inherit;
}

.blog-search-result time {
  grid-row: span 2;
  color: var(--text-muted);
  font-family: var(--mono-font);
  font-size: 12px;
}

.blog-search-result strong {
  color: var(--text-color);
  font-weight: 400;
}

.blog-search-result span {
  color: var(--text-secondary);
}

@media print, screen and (max-width: 1000px) {
  .blog-page-grid,
  .blog-post-frame {
    grid-template-columns: 1fr;
  }

  .blog-sidebar,
  .blog-toc {
    position: static;
  }

  .blog-profile h2 {
    font-size: clamp(48px, 12vw, 72px);
  }

  .blog-toc {
    order: -1;
    max-height: none;
  }

  .blog-toc a {
    max-width: none;
  }
}

@media print, screen and (max-width: 760px) {
  .blog-nav {
    min-height: 60px;
    height: 60px;
    padding: 0 16px;
    align-items: center;
  }

  .blog-nav-toggle {
    display: block;
  }

  .blog-links {
    position: absolute;
    top: 60px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    max-height: 0;
    padding: 0 14px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-color);
    color: var(--text-color);
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 0.22s ease, padding 0.22s ease, opacity 0.18s ease, transform 0.18s ease;
  }

  .blog-links.is-open {
    max-height: 220px;
    padding: 8px 14px;
    opacity: 1;
    transform: translateY(0);
  }

  .blog-links a,
  .blog-links button {
    padding: 11px 0;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
  }

  .blog-links a:last-child,
  .blog-links button:last-child {
    border-bottom: 0;
  }

  .blog-hero {
    min-height: 420px;
  }

  .blog-hero-content,
  .blog-main {
    width: calc(100% - 32px);
  }

  .blog-hero-content {
    padding-bottom: 52px;
  }

  .blog-card a,
  .blog-archive article,
  .blog-post-pager {
    display: block;
  }

  .blog-card::before {
    width: 100%;
    height: 56px;
    bottom: auto;
  }

  .blog-card a {
    padding-top: 76px;
  }

  .blog-card time,
  .blog-archive time,
  .blog-archive article span {
    display: block;
    margin-bottom: 8px;
  }

  .blog-post-pager a + a {
    margin-top: 16px;
  }

  .blog-pagination {
    grid-template-columns: 1fr;
  }

  .blog-page-previous,
  .blog-page-next {
    justify-self: stretch;
  }

  .blog-backtop {
    right: 16px;
    bottom: 16px;
  }

  .blog-profile .image.avatar {
    width: 112px;
    height: 112px;
  }

  .blog-search-result {
    grid-template-columns: 1fr;
  }
}
