@charset "UTF-8";
:root {
  --mono: 'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;
  --sans: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --bg: #fafaf7;
  --surface: #ffffff;
  --surface-alt: #f4f3ee;
  --surface-code: #f6f5ef;
  --surface-code-header: #ebeae2;
  --surface-inline: #f0eee6;
  --ink: #0e1014;
  --text: #2c2f36;
  --text-soft: #4a4f58;
  --muted: #7a7f88;
  --hair: #e6e3d8;
  --hair-strong: #d4d0c2;
  --accent: #1f4d80;
  --accent-soft: #3d6fa8;
  --sel-bg: #dee8f5;
  --line-num: #bab5a4;
  --syn-keyword: #9a2860;
  --syn-func: #5a3996;
  --syn-var: #0a4a7a;
  --syn-comment: #86826f;
  --syn-string: #2a6a3a;
  --syn-num: #a0581f;
}

[data-theme=dark] {
  --bg: #0d0f14;
  --surface: #151821;
  --surface-alt: #1c1f29;
  --surface-code: #0a0c12;
  --surface-code-header: #1a1d27;
  --surface-inline: #1a1d27;
  --ink: #f4f6fa;
  --text: #d8dbe2;
  --text-soft: #aeb3bf;
  --muted: #7a8090;
  --hair: #222630;
  --hair-strong: #2d3240;
  --accent: #7cc4ff;
  --accent-soft: #5fa8e8;
  --sel-bg: #1a3550;
  --line-num: #3d4250;
  --syn-keyword: #ff85a8;
  --syn-func: #c8a8ff;
  --syn-var: #9fd4ff;
  --syn-comment: #7a8090;
  --syn-string: #a6e0b6;
  --syn-num: #ffb079;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) {
    --bg: #0d0f14;
    --surface: #151821;
    --surface-alt: #1c1f29;
    --surface-code: #0a0c12;
    --surface-code-header: #1a1d27;
    --surface-inline: #1a1d27;
    --ink: #f4f6fa;
    --text: #d8dbe2;
    --text-soft: #aeb3bf;
    --muted: #7a8090;
    --hair: #222630;
    --hair-strong: #2d3240;
    --accent: #7cc4ff;
    --accent-soft: #5fa8e8;
    --sel-bg: #1a3550;
    --line-num: #3d4250;
    --syn-keyword: #ff85a8;
    --syn-func: #c8a8ff;
    --syn-var: #9fd4ff;
    --syn-comment: #7a8090;
    --syn-string: #a6e0b6;
    --syn-num: #ffb079;
  }
}
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

::-moz-selection {
  background: var(--sel-bg);
  color: var(--ink);
}

::selection {
  background: var(--sel-bg);
  color: var(--ink);
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font: inherit;
  cursor: pointer;
}

/* テーブル全体 */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

/* ヘッダー行 */
thead th {
  background: #f0effe;
  padding: 10px 16px;
  text-align: left;
  font-size: 0.9em;
  color: #534ab7;
  border-bottom: 2px solid #7f77dd;
}

/* データ行 */
tbody td {
  padding: 10px 16px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 0.9em;
  vertical-align: middle;
}

/* 1列目（メソッド列）を少し広めに */
tbody td:first-child {
  width: 55%;
}

/* 最後の行のボーダーを消す */
tbody tr:last-child td {
  border-bottom: none;
}

/* 行ホバー */
tbody tr:hover {
  background: #fafafa;
}

.l-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.l-container--wide {
  max-width: 1000px;
}
@media (max-width: 720px) {
  .l-container {
    padding: 0 20px;
  }
}

.l-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--hair);
  padding: 18px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 720px) {
  .l-header {
    padding: 14px 20px;
  }
}
.l-header__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.l-header__brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.l-header__brand-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.1px;
  line-height: 1.1;
}
.l-header__brand-sub {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.3px;
  line-height: 1.1;
}
.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__nav a {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 400;
}
.l-header__nav a:hover {
  color: var(--ink);
  background: var(--surface-alt);
  font-weight: 500;
}
@media (max-width: 720px) {
  .l-header__nav a:not(.c-btn--menu) {
    display: none;
  }
}
.l-header__nav-link--active {
  color: var(--ink) !important;
  background: var(--surface-alt);
  font-weight: 500 !important;
}
.l-header__nav-divider {
  width: 1px;
  height: 18px;
  background: var(--hair);
  margin: 0 6px;
}
@media (max-width: 720px) {
  .l-header__nav-divider {
    display: none;
  }
}

.l-footer {
  border-top: 1px solid var(--hair);
  padding: 24px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 80px;
}
@media (max-width: 720px) {
  .l-footer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }
}
.l-footer__copy {
  font-size: 12px;
  color: var(--muted);
}
.l-footer__name {
  color: var(--text);
  font-weight: 500;
  margin-bottom: 2px;
}
.l-footer__stamp {
  font-family: var(--mono);
  font-size: 11px;
}
.l-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}
.l-footer__social a:hover {
  color: var(--ink);
}

.c-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--hair);
  background: var(--surface-alt);
  color: var(--text);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 14px;
}
.c-btn--menu {
  display: none;
}
@media (max-width: 720px) {
  .c-btn--menu {
    display: grid;
  }
}
.c-tag {
  font-family: var(--mono);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--hair);
  color: var(--text-soft);
  background: transparent;
  white-space: nowrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.c-tag--active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--sel-bg);
}
.c-tag__count {
  color: var(--muted);
  font-size: 10px;
}

.c-tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--surface-alt);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.c-thumb--16-10 {
  aspect-ratio: 16/10;
}
.c-thumb--16-8 {
  aspect-ratio: 16/8;
}
.c-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-thumb__fallback {
  display: grid;
  place-items: center;
  height: 100%;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  background: linear-gradient(135deg, var(--surface-alt), color-mix(in srgb, var(--accent) 8%, var(--surface-alt)));
}
.c-thumb__fallback span {
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--bg);
  border: 1px solid var(--hair);
}

.c-section-head {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.c-section-head__rule {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background: var(--hair);
}
.c-section-head__more {
  color: var(--accent);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

.c-code-block {
  background: var(--surface-code);
  border: 1px solid var(--hair);
  border-radius: 8px;
  margin: 1.4em 0;
  overflow: hidden;
}
.c-code-block__head {
  font-size: 11px;
  color: var(--muted);
  padding: 8px 14px;
  background: var(--surface-code-header);
  border-bottom: 1px solid var(--hair);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-code-block__lang {
  font-size: 9px;
  padding: 1px 6px;
  border-radius: 3px;
  background: var(--surface-alt);
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.c-code-block__copy {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-code-block__copy:hover {
  color: var(--text);
  background: var(--surface-alt);
}
.c-code-block pre {
  margin: 0;
  border: 0;
  border-radius: 0;
}

.c-callout {
  margin: 2em 0 0;
  padding: 20px 24px;
  border-radius: 10px;
  background: var(--surface-alt);
  border: 1px solid var(--hair);
}
.c-callout__label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.c-callout p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text);
}

.c-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px 0;
}
.c-pagination a,
.c-pagination span, .c-pagination__item {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--hair);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-soft);
  background: var(--surface);
}
.c-pagination a:hover {
  border-color: var(--hair-strong);
  color: var(--ink);
}
.c-pagination .current, .c-pagination__item--current {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px 0;
}
.nav-links .page-numbers {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--hair);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-soft);
  background: var(--surface);
}
.nav-links .page-numbers:hover {
  border-color: var(--hair-strong);
  color: var(--ink);
}
.nav-links .page-numbers.current {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.c-breadcrumb {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-hero {
  padding-top: 64px;
  margin-bottom: 56px;
}
@media (max-width: 720px) {
  .p-hero {
    padding-top: 32px;
    margin-bottom: 40px;
  }
}
.p-hero__eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.p-hero__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.p-hero__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 16px;
  letter-spacing: -0.6px;
  color: var(--ink);
}
@media (max-width: 720px) {
  .p-hero__title {
    font-size: 26px;
  }
}
.p-hero__body {
  font-size: 16px;
  color: var(--text-soft);
  margin: 0;
  max-width: 580px;
}

.p-featured {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--hair);
  -webkit-transition: border-color 0.15s, -webkit-transform 0.15s;
  transition: border-color 0.15s, -webkit-transform 0.15s;
  transition: transform 0.15s, border-color 0.15s;
  transition: transform 0.15s, border-color 0.15s, -webkit-transform 0.15s;
}
.p-featured:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  border-color: var(--hair-strong);
}
.p-featured__thumb-wrap {
  padding: 12px 12px 0;
}
.p-featured__body {
  padding: 24px;
}
.p-featured__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-featured__date {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}
.p-featured__title {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 10px;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.3px;
}
.p-featured__excerpt {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft);
}
.p-featured__more {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
}

.p-recent-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px) {
  .p-recent-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.p-recent-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--hair);
  background: var(--surface);
  -webkit-transition: border-color 0.15s, -webkit-transform 0.15s;
  transition: border-color 0.15s, -webkit-transform 0.15s;
  transition: transform 0.15s, border-color 0.15s;
  transition: transform 0.15s, border-color 0.15s, -webkit-transform 0.15s;
}
.p-recent-card:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  border-color: var(--hair-strong);
}
.p-recent-card__body {
  padding: 4px 4px 8px;
}
.p-recent-card__date {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
}
.p-recent-card__title {
  font-size: 15.5px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--ink);
  line-height: 1.45;
}
.p-recent-card__excerpt {
  font-size: 13px;
  color: var(--text-soft);
  margin: 0 0 10px;
  line-height: 1.65;
}

.p-archive-header {
  padding-top: 64px;
  margin-bottom: 36px;
}
@media (max-width: 720px) {
  .p-archive-header {
    padding-top: 32px;
    margin-bottom: 24px;
  }
}
.p-archive-header__eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.p-archive-header__title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink);
  letter-spacing: -0.5px;
}
@media (max-width: 720px) {
  .p-archive-header__title {
    font-size: 24px;
  }
}
.p-archive-header__desc {
  font-size: 14px;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.7;
}

.p-search-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border: 1px solid var(--hair);
  background: var(--surface);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
}
.p-search-box__input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
}
.p-search-box__input::-webkit-input-placeholder {
  color: var(--muted);
}
.p-search-box__input::-moz-placeholder {
  color: var(--muted);
}
.p-search-box__input:-ms-input-placeholder {
  color: var(--muted);
}
.p-search-box__input::-ms-input-placeholder {
  color: var(--muted);
}
.p-search-box__input::placeholder {
  color: var(--muted);
}
.p-search-box__kbd {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  border: 1px solid var(--hair);
  padding: 2px 6px;
  border-radius: 4px;
}

.p-tag-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  margin-bottom: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-year-head {
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}
.p-year-head__rule {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background: var(--hair);
}
.p-year-head__count {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}

.p-archive-row {
  display: grid;
  grid-template-columns: 96px 60px 1fr auto;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hair);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-archive-row:hover {
  background: color-mix(in srgb, var(--surface-alt) 50%, transparent);
}
.p-archive-row__date {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}
.p-archive-row__title {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.5;
  font-weight: 500;
}
.p-archive-row__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
@media (max-width: 720px) {
  .p-archive-row {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 4px;
    padding: 12px 0;
  }
  .p-archive-row .c-thumb {
    display: none;
  }
  .p-archive-row__date {
    grid-row: 1;
  }
  .p-archive-row__title {
    grid-row: 2;
    font-size: 14px;
  }
  .p-archive-row__tags {
    margin-top: 4px;
  }
}

.p-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  gap: 40px;
  padding-top: 56px;
}
@media (max-width: 720px) {
  .p-post-layout {
    grid-template-columns: 1fr;
    padding-top: 24px;
    gap: 24px;
  }
}

.p-post {
  max-width: 680px;
  min-width: 0;
}
.p-post__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 16px;
  letter-spacing: -0.6px;
  color: var(--ink);
}
@media (max-width: 720px) {
  .p-post__title {
    font-size: 22px;
  }
}
.p-post__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-post__date {
  font-family: var(--mono);
}
.p-post__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--muted);
}
.p-post__divider {
  border: 0;
  border-top: 1px solid var(--hair);
  margin: 24px 0 32px;
}
.p-post__content {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
}
@media (max-width: 720px) {
  .p-post__content {
    font-size: 16px;
  }
}
.p-post__content > * + * {
  margin-top: 1.1em;
}
.p-post__content p {
  margin: 0 0 1.1em;
}
.p-post__content h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 2.4em 0 0.6em;
  color: var(--ink);
  letter-spacing: -0.3px;
  line-height: 1.4;
}
@media (max-width: 720px) {
  .p-post__content h2 {
    font-size: 20px;
  }
}
.p-post__content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 2em 0 0.6em;
  color: var(--ink);
  letter-spacing: -0.2px;
}
@media (max-width: 720px) {
  .p-post__content h3 {
    font-size: 17px;
  }
}
.p-post__content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.p-post__content a:hover {
  text-decoration-thickness: 2px;
}
.p-post__content ul,
.p-post__content ol {
  padding-left: 1.4em;
  margin: 0 0 1.1em;
}
.p-post__content li {
  margin-bottom: 0.4em;
}
.p-post__content blockquote {
  margin: 1.4em 0;
  padding: 16px 20px;
  background: var(--surface-alt);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  color: var(--text-soft);
  font-style: normal;
}
.p-post__content blockquote p:last-child {
  margin-bottom: 0;
}
.p-post__content hr {
  border: 0;
  border-top: 1px solid var(--hair);
  margin: 2em 0;
}
.p-post__content img,
.p-post__content figure img {
  border-radius: 8px;
  border: 1px solid var(--hair);
}
.p-post__content figure {
  margin: 1.6em 0;
}
.p-post__content figcaption {
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
  font-family: var(--mono);
}
.p-post__content :not(pre) > code {
  font-family: var(--mono);
  font-size: 0.88em;
  background: var(--surface-inline);
  border: 1px solid var(--hair);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--accent);
}
.p-post__content pre,
.p-post__content .wp-block-code {
  background: var(--surface-code);
  border: 1px solid var(--hair);
  border-radius: 8px;
  padding: 14px 18px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
  overflow-x: auto;
  margin: 1.4em 0;
  color: var(--text);
  position: relative;
}
.p-post__content pre code,
.p-post__content .wp-block-code code {
  font-family: inherit;
  background: none;
  border: 0;
  padding: 0;
}
.p-post__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 720px) {
  .p-post__nav {
    grid-template-columns: 1fr;
  }
}
.p-post__nav a {
  padding: 16px;
  border-radius: 10px;
  border: 1px solid var(--hair);
  background: var(--surface);
  display: block;
}
.p-post__nav a:hover {
  border-color: var(--hair-strong);
}
.p-post__nav-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 4px;
}
.p-post__nav-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}
.p-post__nav-item--next {
  text-align: right;
}

.p-toc {
  position: sticky;
  top: 90px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media (max-width: 720px) {
  .p-toc {
    display: none;
  }
}
.p-toc__head {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}
.p-toc__link {
  display: block;
  padding: 6px 10px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-soft);
  border-left: 2px solid var(--hair);
}
.p-toc__link:hover {
  color: var(--ink);
}
.p-toc__link--active {
  color: var(--accent);
  font-weight: 500;
  border-left-color: var(--accent);
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.u-mono {
  font-family: var(--mono);
}