/* ns-hugo-imp:/opt/build/repo/assets/css/modern-normalize.css */
*,
::before,
::after {
  box-sizing: border-box;
}
html {
  font-family:
    system-ui,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
}
body {
  margin: 0;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp,
pre {
  font-family:
    ui-monospace,
    SFMono-Regular,
    Consolas,
    "Liberation Mono",
    Menlo,
    monospace;
  font-size: 1em;
}
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;
}
table {
  border-color: currentcolor;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
legend {
  padding: 0;
}
progress {
  vertical-align: baseline;
}
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
summary {
  display: list-item;
}

/* ns-hugo-vars:hugo:vars */

/* <stdin> */
:root {
  --primary-color: var(--link-color, #0044cc);
  --radius: 0px;
  --font-main:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  --font-serif:
    Georgia,
    "Times New Roman",
    serif;
  --font-mono:
    ui-monospace,
    SFMono-Regular,
    "SF Mono",
    Menlo,
    Monaco,
    Consolas,
    monospace;
  --success-color: #059669;
  --overlay-color: rgba(0, 0, 0, 0.5);
}
html {
  overflow-y: scroll;
}
html.light {
  --bg-color: #ffffff;
  --card-bg: #ffffff;
  --text-main: #1a1a1a;
  --text-muted: #5f5f5f;
  --border-color: #d8d8d8;
  --link-color: #0044cc;
  --link-rgb:
    0,
    68,
    204;
  --link-underline: rgba(var(--link-rgb), 0.3);
  --danger-color: #b91c1c;
  --danger-rgb:
    185,
    28,
    28;
  --danger-soft: rgba(var(--danger-rgb), 0.08);
  --primary-soft: rgba(var(--link-rgb), 0.05);
  --primary-faint: rgba(var(--link-rgb), 0.08);
  --primary-border: rgba(var(--link-rgb), 0.1);
  --scrollbar-track: #f8fafc;
  --scrollbar-thumb: #cbd5e1;
  --shadow: none;
}
html.dark {
  --bg-color: #141414;
  --card-bg: #141414;
  --text-main: #f2f2f2;
  --text-muted: #a0a0a0;
  --border-color: #383838;
  --link-color: #60a5fa;
  --link-rgb:
    96,
    165,
    250;
  --link-underline: rgba(var(--link-rgb), 0.3);
  --danger-color: #f87171;
  --danger-rgb:
    248,
    113,
    113;
  --danger-soft: rgba(var(--danger-rgb), 0.12);
  --primary-soft: rgba(var(--link-rgb), 0.14);
  --primary-faint: rgba(var(--link-rgb), 0.2);
  --primary-border: rgba(var(--link-rgb), 0.18);
  --scrollbar-track: #1e293b;
  --scrollbar-thumb: #334155;
  --shadow: none;
}
html.theme-transitioning,
html.theme-transitioning * {
  transition: none !important;
  animation: none !important;
}
*,
*::before,
*::after {
  accent-color: var(--primary-color);
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}
::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}
* {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}
body {
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  line-height: clamp(1.5rem, calc(1.4rem + 0.5vw), 1.65rem);
  color: var(--text-main);
  background: var(--bg-color);
  text-rendering: optimizeLegibility;
  font-variant-ligatures: normal;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow-x: hidden;
}
.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.container--outer {
  margin: 40px auto;
}
.wrapper {
  padding: 0 0 40px;
}
.flex {
  display: flex;
  width: 100%;
  justify-content: center;
}
.primary {
  flex: 0 1 760px;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.sidebar {
  display: none;
}
.sidebar.sidebar--active {
  display: block;
}
@media (max-width: 900px) {
  .flex {
    flex-direction: column;
  }
  .primary {
    flex-basis: auto;
    width: 100%;
  }
  .sidebar {
    display: block;
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    z-index: 1001;
    overflow-y: auto;
    transition: right 0.3s ease;
    background: var(--bg-color);
    border-left: 1px solid var(--border-color);
    padding: 20px;
  }
  .sidebar.sidebar--active {
    display: block;
    right: 0;
  }
  .sidebar .widget {
    margin-bottom: 30px;
  }
  .wrapper {
    padding: 0 0 30px;
  }
}
@media (min-width: 901px) {
  .sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    z-index: 1001;
    overflow-y: auto;
    transition: right 0.3s ease;
    background: var(--bg-color);
    border-left: 1px solid var(--border-color);
    padding: 20px;
  }
  .sidebar.sidebar--active {
    right: 0;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem;
  font-weight: 700;
  line-height: clamp(1.2rem, calc(1.1rem + 0.3vw), 1.3rem);
  color: var(--text-main);
}
h1 {
  font-size: clamp(1.75rem, 1.4rem + 3vw, 3rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(1.5rem, 1.2rem + 2vw, 2.25rem);
}
h3 {
  font-size: clamp(1.25rem, 1rem + 1.5vw, 1.75rem);
}
h4 {
  font-size: clamp(1.125rem, 0.9rem + 1vw, 1.375rem);
}
h5 {
  font-size: clamp(1rem, 0.85rem + 0.75vw, 1.125rem);
}
h6 {
  font-size: clamp(0.875rem, 0.75rem + 0.5vw, 1rem);
}
a {
  color: var(--link-color);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: var(--link-underline);
  transition: all 0.2s ease;
}
a:hover {
  color: var(--link-color);
  text-decoration-color: var(--link-color);
  opacity: 1;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  font-weight: 600;
  border-radius: 0;
  color: var(--text-main);
  background: transparent;
  border: 1px solid var(--border-color);
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  min-height: 48px;
  min-width: 48px;
  text-decoration: none;
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
}
.btn:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background: transparent;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  overflow: clip;
}
.header__toggles {
  display: flex;
  align-items: center;
  gap: 0;
}
.theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: none;
  background: transparent;
  color: var(--text-main);
  cursor: pointer;
  border-radius: 0;
  min-width: 48px;
  min-height: 48px;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.theme-toggle::after {
  display: none;
}
.theme-toggle:hover {
  background: var(--primary-border);
  color: var(--primary-color);
}
.sun-and-moon > :is(.moon, .sun, .sun-beams) {
  transform-origin: center center;
}
@media (prefers-reduced-motion: no-preference) {
  html.dark .sun-and-moon {
    transform: rotate(0deg);
  }
  html.dark .sun-and-moon > .sun {
    transform: scale(1.75);
  }
  html.dark .sun-and-moon > .sun-beams {
    opacity: 0;
    transform: rotate(-25deg);
  }
  html.dark .sun-and-moon > .moon > circle {
    transform: translateX(-7px);
  }
}
.header {
  background: var(--card-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
  margin-bottom: 40px;
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (prefers-reduced-motion: no-preference) {
}
.logo__link {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
}
.logo__img {
  border-radius: 50%;
  border: 1px solid var(--border-color);
}
.logo__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}
.logo__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0;
  letter-spacing: -0.02em;
}
.logo__tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}
.sidebar-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: none;
  background: transparent;
  color: var(--text-main);
  cursor: pointer;
  border-radius: 0;
  min-width: 48px;
  min-height: 48px;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.sidebar-toggle:hover {
  background: var(--primary-border);
  color: var(--primary-color);
}
.sidebar-toggle--active {
  color: var(--primary-color);
}
.authorbox {
  background: transparent;
  border: none;
  border-top: 1px solid var(--border-color);
  border-radius: 0;
  padding: 40px 0 0;
  margin: 40px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.authorbox__avatar {
  margin: 0;
}
.authorbox__avatar img {
  border-radius: 50%;
  border: 1px solid var(--border-color);
  box-shadow: none;
}
.authorbox__name {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 5px;
  display: block;
}
.authorbox__description {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.5;
  max-width: 600px;
}
.authorbox__social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.authorbox__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s;
}
.authorbox__social-link:hover {
  color: var(--primary-color);
}
.authorbox__social-icon {
  width: 22px;
  height: 22px;
}
.authorbox__name {
  color: var(--text-main);
  text-decoration: none;
}
.authorbox__name:hover {
  color: var(--link-color);
  text-decoration: underline;
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
.avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}
.reading-time-header {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.8125rem;
}
.reading-time-header .meta__icon {
  margin-right: 4px;
  color: var(--text-muted);
}
.reading-time-header .meta__text {
  font-weight: 500;
}
.reading-time-header .meta__separator {
  margin: 0 0.5rem;
  color: var(--text-muted);
}
.post__tags {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.tags__badge {
  width: 18px;
  height: 18px;
  fill: var(--primary-color);
}
.tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 5px 0;
  margin: 0;
  list-style: none;
  flex: 1;
  min-width: 0;
}
.tags__item {
  flex: 0 0 auto;
}
.tags__link,
.widget-taglist__link {
  display: inline-block;
  position: relative;
  white-space: nowrap;
  background: transparent;
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: 0;
  font-size: 0.8125rem;
  color: var(--text-main);
  font-weight: 500;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}
.tags__link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 44px;
  min-height: 48px;
  transform: translate(-50%, -50%);
}
.tags__link:hover,
.widget-taglist__link:hover {
  color: var(--link-color);
  border-color: var(--primary-color);
  background: transparent;
}
.breadcrumbs {
  margin-bottom: 1.5rem;
  padding: 0.75rem 0;
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.breadcrumbs__link {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}
.breadcrumbs__link:hover {
  color: var(--link-color);
}
.breadcrumbs__separator {
  color: var(--text-muted);
  font-size: 0.75rem;
}
.breadcrumbs__current {
  color: var(--text-main);
  font-size: 0.875rem;
  font-weight: 500;
}
.list__item {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}
.list__item:last-child {
  border-bottom: none;
}
.title-content {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 8px;
}
.featured-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--primary-color);
  color: var(--bg-color);
  vertical-align: middle;
}
.post__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2rem;
}
.post__title {
  font-size: 2.25rem;
  margin-bottom: 0;
  line-height: 1.2;
}
.post__title a {
  display: inline-block;
  padding: 8px 0;
  min-height: 48px;
}
.list__footer-readmore {
  text-decoration: underline !important;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: var(--link-underline) !important;
}
.list__footer-readmore:hover {
  text-decoration-color: var(--link-color) !important;
}
.meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.meta__item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.meta__icon {
  width: 16px;
  height: 16px;
  fill: var(--primary-color);
}
.meta a {
  display: inline-flex;
  align-items: center;
  padding: 4px 0;
  min-height: 24px;
  line-height: 1.2;
}
.error-page {
  text-align: center;
  padding: 3rem 1rem;
  max-width: 500px;
  margin: 0 auto;
}
.error-page__title {
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary-color);
  margin: 0 0 1rem;
}
.error-page__message {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 0 0 0.5rem;
}
.error-page__help {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
  line-height: 1.6;
}
.error-page__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.error-page__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  background: transparent;
  color: var(--link-color);
  border: 1px solid var(--primary-color);
  text-decoration: none;
  border-radius: 0;
  font-weight: 600;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.error-page__link:hover {
  background: var(--primary-soft);
}
.error-page__suggestions {
  text-align: left;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}
.error-page__suggestions h2 {
  font-size: 1.1rem;
  margin: 0 0 1rem;
}
.error-page__suggestions ul {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.error-page__suggestions a {
  color: var(--link-color);
}
.error-page__recent {
  display: grid;
  gap: 1rem;
}
.error-page__post {
  padding: 0.75rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-color);
  border-radius: 0;
}
.error-page__post h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}
.error-page__post p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.content {
  color: var(--text-main);
  font-family: var(--font-serif);
  line-height: clamp(1.7rem, calc(1.55rem + 0.5vw), 1.8rem);
}
.content p {
  margin: 0 0 1.5rem;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
}
.content p:last-child {
  margin-bottom: 0;
}
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  margin: 2.5rem 0 1rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: clamp(1.2rem, calc(1.1rem + 0.3vw), 1.3rem);
}
.content h1 {
  font-size: clamp(1.75rem, 1.4rem + 3vw, 3rem);
  font-weight: 800;
}
.content h2 {
  font-size: clamp(1.5rem, 1.2rem + 2vw, 2.25rem);
}
.content h3 {
  font-size: clamp(1.25rem, 1rem + 1.5vw, 1.75rem);
}
.content h4 {
  font-size: clamp(1.125rem, 0.9rem + 1vw, 1.375rem);
}
.content h5 {
  font-size: clamp(1rem, 0.85rem + 0.75vw, 1.125rem);
}
.content h6 {
  font-size: clamp(0.875rem, 0.75rem + 0.5vw, 1rem);
}
.content h1:first-child,
.content h2:first-child,
.content h3:first-child,
.content h4:first-child,
.content h5:first-child,
.content h6:first-child {
  margin-top: 0;
}
.content ul,
.content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}
.content li {
  margin: 0.5rem 0;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
}
.content li > ul,
.content li > ol {
  margin: 0.5rem 0;
}
.content dl {
  margin: 1.5rem 0;
}
.content dt {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.content dd {
  margin: 0 0 1rem 1.5rem;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
}
.content hr {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 2.5rem 0;
}
.content form {
  margin: 1.5rem 0 0;
}
.content form p {
  margin-bottom: 1rem;
}
.content label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.content input[type=text],
.content input[type=email],
.content input[type=url],
.content input[type=password],
.content input[type=search],
.content input[type=number],
.content input[type=tel],
.content textarea,
.content select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-color);
  border-radius: 0;
  background: var(--bg-color);
  color: var(--text-main);
  font-size: 0.95rem;
  font-family: var(--font-main);
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.content input:focus,
.content textarea:focus,
.content select:focus {
  border-color: var(--primary-color);
  outline: 2px solid var(--primary-color);
  outline-offset: 0;
  box-shadow: none;
}
.content button[type=submit] {
  display: inline-block;
  padding: 14px 24px;
  font-weight: 600;
  border-radius: 0;
  color: var(--primary-color);
  background: transparent;
  border: 1px solid var(--primary-color);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  min-height: 48px;
  font-size: 1rem;
  font-family: var(--font-main);
  transition: background-color 0.2s ease;
}
.content button[type=submit]:hover {
  background: var(--primary-soft);
}
.content a,
.meta__link,
.warning a {
  font-weight: 500;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: var(--link-underline);
}
.content a:hover,
.meta__link:hover,
.warning a:hover {
  text-decoration-color: var(--link-color);
}
.content img,
figure img,
picture img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
figure {
  margin: 2rem 0;
  text-align: center;
}
figure img {
  margin-top: 0;
  margin-bottom: 0;
}
.figure__caption {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}
blockquote {
  margin: 2.5rem 0;
  padding: 0.25rem 0 0.25rem 1.5rem;
  background: transparent;
  border-left: 4px solid var(--primary-color);
  border-radius: 0;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.7;
  position: relative;
}
blockquote p {
  margin: 0;
}
blockquote p:not(:last-child) {
  margin-bottom: 1rem;
}
.table-wrapper {
  margin: 2rem 0;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  background: var(--bg-color);
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--border-color);
}
.table-wrapper::-webkit-scrollbar {
  height: 8px;
}
.table-wrapper::-webkit-scrollbar-track {
  background: var(--border-color);
  border-radius: 4px;
}
.table-wrapper::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 4px;
}
.table-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}
.content table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(0.875rem, 0.8rem + 0.25vw, 1rem);
  line-height: 1.5;
}
.content th,
.content td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  text-align: left;
}
.content th:last-child,
.content td:last-child {
  border-right: none;
}
.content tr:last-child td {
  border-bottom: none;
}
.content th {
  background: var(--primary-soft);
  font-weight: 700;
  color: var(--text-main);
}
code {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  background: var(--bg-color);
  padding: 2px 6px;
  border-radius: 2px;
  border: 1px solid var(--border-color);
  word-break: break-word;
  overflow-wrap: break-word;
}
pre {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 20px;
  margin: 1.5rem 0;
  overflow-x: auto;
  overflow-y: hidden;
  line-height: 1.5;
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--border-color);
}
pre code {
  background: transparent;
  border: none;
  padding: 0;
  font-size: 0.875rem;
  display: block;
  white-space: pre-wrap;
  overflow-wrap: break-word;
}
pre::-webkit-scrollbar {
  height: 8px;
}
pre::-webkit-scrollbar-track {
  background: var(--border-color);
  border-radius: 4px;
}
pre::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 4px;
}
pre::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}
.code-block-wrapper {
  position: relative;
  margin: 1.5rem 0;
}
.code-block-wrapper pre {
  margin: 0;
}
.code-copy-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 6px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0;
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  cursor: pointer;
  opacity: 0;
  transition:
    opacity 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
  z-index: 10;
}
.code-block-wrapper:hover .code-copy-btn {
  opacity: 1;
}
.code-copy-btn:hover {
  background: var(--primary-soft);
}
.code-copy-btn.copied {
  color: var(--success-color);
  border-color: var(--success-color);
}
.post__share {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 600px) {
  .post__share {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
.share-link-btn {
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0;
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.share-link-btn:hover {
  background: var(--primary-soft);
}
.share-link-btn.copied {
  color: var(--success-color);
  border-color: var(--success-color);
}
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-color);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.sidebar-overlay.sidebar-overlay--active {
  display: block;
  opacity: 1;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border-width: 0;
}
.skip-link {
  position: absolute;
  top: -60px;
  left: 20px;
  background: var(--primary-color);
  color: var(--bg-color);
  padding: 10px 20px;
  border-radius: 0;
  z-index: 2000;
  text-decoration: none;
  font-weight: 700;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: none;
}
html.dark .skip-link {
  background: var(--primary-color);
  color: var(--bg-color);
}
:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: 2px;
}
:focus:not(:focus-visible) {
  outline: none;
}
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .btn:hover,
  .widget:hover,
  .pager__link:hover {
    transform: none !important;
  }
}
.progressive-image {
  display: block;
}
.progressive-image__img {
  max-width: 100%;
  height: auto;
  display: block;
}
.progressive-image picture {
  display: block;
}
/*! modern-normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize */
