@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&display=swap");
* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  color: #222;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12pt;
  line-height: 1.45;
  display: flex;
  flex-direction: column;
}

.wrap {
  position: relative;
  z-index: 1;
}

.tree-decoration {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  background-image: url("/assets/images/tree-branch.png");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.14;
}

.tree-decoration-left {
  top: 28px;
  left: -420px;
  width: 860px;
  height: 560px;
  transform: scaleX(-1) rotate(-8deg);
  transform-origin: center;
}

.tree-decoration-right {
  top: 18px;
  right: -380px;
  width: 920px;
  height: 600px;
  transform: rotate(7deg);
  transform-origin: center;
}

.tree-decoration-lower-left {
  bottom: -120px;
  left: -330px;
  width: 690px;
  height: 450px;
  opacity: 0.1;
  transform: scaleX(-1) rotate(17deg);
  transform-origin: center;
}

.tree-decoration-lower-right {
  right: -300px;
  bottom: -135px;
  width: 720px;
  height: 470px;
  opacity: 0.1;
  transform: rotate(-14deg);
  transform-origin: center;
}

img {
  max-width: 100%;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  color: #000;
  text-decoration: underline;
}

@media (max-width: 1300px) {
  .tree-decoration {
    display: none;
  }
}
.profile {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  scroll-margin-top: 36px;
}

.identity {
  max-width: 560px;
  min-width: 0;
}

.name {
  margin: 0 0 10px;
  text-align: center;
}

.desc {
  margin: 0;
  color: #616161;
}

.desc p {
  margin: 0 0 12px;
}

.desc p:last-child {
  margin-bottom: 0;
}

.profile-section {
  width: 100%;
  text-align: center;
}

.profile-section strong {
  display: block;
  margin-bottom: 12px;
}

.contact-line {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin: 0 8px;
  color: #333;
}

.contact-line:last-child {
  margin-bottom: 0;
}

.empty-note {
  margin: 8px 0 0;
  color: #666;
  font-size: 10.5pt;
}

@media (max-width: 768px) {
  .profile {
    max-width: 460px;
    text-align: center;
  }
  .contact-line {
    justify-content: center;
  }
}
.wrap {
  flex: 1;
  width: 100%;
  margin: 0;
  padding: 48px 40px;
}

.portfolio-shell {
  display: grid;
  grid-template-columns: 320px minmax(0, 720px);
  gap: 0 240px;
  align-items: flex-start;
  justify-content: flex-start;
}

.page-toc {
  position: fixed;
  top: 58px;
  left: 40px;
  width: 320px;
  max-height: calc(100vh - 82px);
  margin: 0;
  overflow-y: auto;
  color: #30343a;
  font-size: 10pt;
  line-height: 1.45;
  z-index: 10;
}

.toc-logo {
  display: block;
  width: 176px;
  margin-bottom: 6px;
}

.toc-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.page-toc strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}

.toc-list,
.toc-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc-list ul {
  padding-left: 22px;
}

.toc-list li {
  margin: 4px 0;
}

.toc-list a {
  color: #30343a;
  font-weight: 400;
  text-decoration: none;
}

.toc-list a.is-active {
  font-weight: 700;
}

.availability-week {
  width: 280px;
  margin-top: 58px;
  color: #30343a;
}

.availability-title {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.availability-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  width: 100%;
}

.availability-day {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid #d9d9d9;
  background: rgba(255, 255, 255, 0.52);
  border-radius: 4px;
  color: #30343a;
  font-size: 8pt;
  font-weight: 700;
  line-height: 1;
}

.availability-day.status-online,
.legend-swatch.status-online {
  border-color: #4c8d34;
  background: #5ca13d;
  color: #fff;
}

.availability-day.status-messages,
.legend-swatch.status-messages {
  border-color: #d69038;
  background: #eba552;
  color: #fff;
}

.availability-day.status-offline,
.legend-swatch.status-offline {
  background: rgba(255, 255, 255, 0.4);
}

.availability-legend {
  display: grid;
  gap: 5px;
  margin-top: 8px;
  font-size: 8.5pt;
  line-height: 1.2;
}

.availability-legend span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.legend-swatch {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border: 1px solid #d9d9d9;
}

.portfolio-home {
  display: flex;
  grid-column: 2;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.portfolio-feed {
  width: 100%;
  max-width: 720px;
  padding-bottom: 72px;
}

.project-category {
  margin-bottom: 52px;
  scroll-margin-top: 36px;
}

.project-category:last-child {
  margin-bottom: 0;
}

.project-category-title {
  margin: 0 0 8px;
  font-size: 18pt;
  line-height: 1.2;
}

.post {
  margin-bottom: 36px;
  padding-top: 28px;
  border-top: 1px solid #e8e8e8;
  scroll-margin-top: 36px;
}

.post h2,
.post h3 {
  margin: 0 0 8px;
}

.post-content > :first-child {
  margin-top: 0;
}

.post-content > :last-child {
  margin-bottom: 0;
}

.post-content > p > img,
.post-content > img,
.post-content figure:not(.slider-slide) > img,
.post-page > p > img,
.post-page > img,
.post-page figure:not(.slider-slide) > img {
  display: block;
  width: 100%;
  height: auto;
  padding: 7px;
  border: 1px solid #d6d6d6;
  border-radius: 0;
  background: #fff;
}

.image-slider {
  --slider-aspect: 16 / 9;
  width: 100%;
  margin: 24px 0;
}

.slider-frame {
  position: relative;
  width: 100%;
  aspect-ratio: var(--slider-aspect);
  padding: 7px;
  overflow: hidden;
  border: 1px solid #d6d6d6;
  border-radius: 0;
  background: #fff;
}

.slider-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 220ms ease;
}

.slider-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  margin: 0;
}

.slider-slide img,
.slider-slide video {
  display: block;
  width: 100%;
  height: 100%;
}

.slider-slide img {
  object-fit: cover;
}

.slider-slide video {
  background: #000;
  object-fit: contain;
}

.slider-button {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.22);
  background: rgba(255, 255, 255, 0.82);
  color: #222;
  font: inherit;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.slider-button:hover {
  background: #fff;
}

.slider-button-prev {
  left: 8px;
}

.slider-button-next {
  right: 8px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid #777;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.slider-dots button.is-active {
  border-color: #222;
  background: #222;
}

.image-slider-with-text {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
  gap: 20px;
  align-items: start;
  margin: 24px 0;
}

.image-slider-with-text .image-slider {
  margin: 0;
}

.slider-side-text > :first-child {
  margin-top: 0;
}

.slider-side-text > :last-child {
  margin-bottom: 0;
}

.date {
  margin: 0 0 8px;
  color: #666;
  font-weight: 700;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
  margin: 0 0 12px;
  color: #666;
  font-size: 10pt;
  line-height: 1.35;
}

.meta-date,
.meta-tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

.post-meta i {
  color: #8a929b;
  font-size: 0.95em;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  min-height: 16px;
  padding: 2px 6px;
  border-radius: 2px;
  background: #3d85c6;
  color: #fff;
  font-size: 8.5pt;
  font-weight: 700;
  line-height: 1.1;
}

.post-page {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.post-page h1 {
  margin: 0 0 8px;
  font-size: 24pt;
  line-height: 1.2;
}

.back {
  display: inline-block;
  margin-bottom: 16px;
  font-weight: 700;
}

@media (max-width: 1300px) {
  .wrap {
    max-width: 1150px;
    margin: 0 auto;
    padding: 48px 20px;
  }
  .portfolio-shell {
    display: block;
  }
  .page-toc {
    position: static;
    width: 100%;
    max-width: 720px;
    margin: 0 auto 36px;
    overflow: visible;
  }
  .availability-week {
    width: min(100%, 320px);
    margin-top: 28px;
  }
}
@media (max-width: 768px) {
  .portfolio-home {
    grid-column: auto;
    gap: 42px;
  }
  .wrap {
    padding: 30px 15px;
  }
}
@media (max-width: 720px) {
  .image-slider-with-text {
    grid-template-columns: 1fr;
  }
}
.highlight {
  margin: 22px 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.highlight::before {
  content: none;
}

.highlight::after {
  content: none;
}

.highlight pre {
  margin: 0;
  padding: 8px 0 8px 22px;
  overflow-x: auto;
  background: transparent;
  color: #151922;
  font-family: "JetBrains Mono", "Cascadia Code", Consolas, "Liberation Mono", monospace;
  font-size: 11.5pt;
  font-weight: 500;
  line-height: 1.45;
}

.highlight code {
  font-family: inherit;
  font-size: inherit;
}

.highlight table {
  width: 100%;
  margin: 0;
  border-spacing: 0;
}

.highlight td {
  padding: 0;
  vertical-align: top;
}

.highlight .rouge-gutter {
  width: 1%;
  border-right: 3px solid #57e05d;
  color: #999;
  text-align: right;
  user-select: none;
}

.highlight .rouge-gutter pre {
  padding: 16px 8px 16px 12px;
}

.highlight .rouge-code pre {
  padding: 16px 36px 16px 14px;
}

.highlight .k,
.highlight .kd,
.highlight .kt {
  color: #0074a6;
  font-weight: 700;
}

.highlight .n,
.highlight .nf,
.highlight .nx,
.highlight .nc {
  color: #111;
}

.highlight .s,
.highlight .s1,
.highlight .s2,
.highlight .sb {
  color: #b14f00;
}

.highlight .m,
.highlight .mi,
.highlight .mf {
  color: #7a4bc2;
}

.highlight .c,
.highlight .c1,
.highlight .cm,
.highlight .cp {
  color: #6b7280;
  font-style: italic;
}

.highlight .o,
.highlight .p {
  color: #333;
}

.highlight .nb,
.highlight .bp {
  color: #0f766e;
}

/*# sourceMappingURL=Styles.css.map */