@charset "utf-8";

/* Dark / Geek editorial skin for Tistory Poster markup */

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;600;700;800&display=swap");

:root {
  color-scheme: dark;
  --bg: #080b10;
  --surface: #0e131a;
  --surface-2: #141b24;
  --surface-3: #1b2530;
  --line: #26313d;
  --line-strong: #344454;
  --text: #eef4f8;
  --text-soft: #c5d0da;
  --muted: #8d9baa;
  --accent: #7dd3fc;
  --accent-strong: #38bdf8;
  --green: #a7f3d0;
  --danger: #fb7185;
  --content-width: 1120px;
  --reading-width: 820px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow: 0 18px 48px rgba(0, 0, 0, .28);
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Noto Sans KR", "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
  font-family: inherit;
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
figure,
figcaption {
  margin: 0;
  padding: 0;
}

header,
footer,
section,
article,
aside,
nav,
hgroup,
details,
menu,
figure,
figcaption {
  display: block;
}

ul,
ol {
  list-style: none;
}

img,
fieldset {
  max-width: 100%;
  border: 0;
  vertical-align: top;
}

img {
  height: auto;
}

button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  overflow: visible;
  cursor: pointer;
}

button,
input,
select,
textarea {
  font-size: 100%;
  border-radius: 0;
}

button {
  border: 0;
  background: transparent;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="submit"],
textarea {
  appearance: none;
}

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

a:hover {
  color: var(--accent);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

hr {
  display: none;
}

/* Accessibility */

#acc-nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 0;
}

#acc-nav a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px 0 0 -1px;
  color: var(--text);
  text-align: center;
  white-space: nowrap;
}

#acc-nav a:focus,
#acc-nav a:hover,
#acc-nav a:active {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 12px;
  background: var(--surface-3);
  color: var(--text);
}

/* Global shell */

#wrap {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -20%, rgba(56, 189, 248, .08), transparent 34rem),
    var(--bg);
}

#header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 76px;
  border-bottom: 1px solid rgba(125, 211, 252, .12);
  background: rgba(8, 11, 16, .82);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  backdrop-filter: blur(18px);
}

#header h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 76px;
  padding: 0 80px;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -.03em;
  text-align: center;
}

#header h1 a {
  display: inline-block;
  color: var(--text);
}

#header h1 a:before {
  content: "// ";
  color: var(--accent);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-weight: 500;
  letter-spacing: 0;
}

#header .mobile-menu {
  position: absolute;
  top: 18px;
  left: max(18px, calc(50% - 624px));
  z-index: 500;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(20, 27, 36, .72);
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}

#header .mobile-menu:hover {
  border-color: var(--accent);
  background: var(--surface-3);
}

#header .mobile-menu span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  margin: -1px 0 0 -9px;
  background: var(--text-soft);
  text-indent: -999em;
  transition: opacity .2s ease;
}

#header .mobile-menu:before,
#header .mobile-menu:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  margin-left: -9px;
  background: var(--text-soft);
  transition: transform .2s ease, margin-top .2s ease;
}

#header .mobile-menu:before {
  margin-top: -7px;
}

#header .mobile-menu:after {
  margin-top: 5px;
}

#header .mobile-menu.on {
  position: fixed;
  top: 18px;
  left: 18px;
}

#header .mobile-menu.on span {
  opacity: 0;
}

#header .mobile-menu.on:before,
#header .mobile-menu.on:after {
  margin-top: -1px;
}

#header .mobile-menu.on:before {
  transform: rotate(-45deg);
}

#header .mobile-menu.on:after {
  transform: rotate(45deg);
}

#header .menu {
  position: fixed;
  top: 0;
  left: min(-360px, calc(-100vw + 24px));
  z-index: 400;
  overflow-y: auto;
  width: min(360px, calc(100vw - 24px));
  height: 100dvh;
  padding: 104px 32px 132px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(125, 211, 252, .06), transparent 28rem),
    var(--surface);
  box-shadow: 18px 0 60px rgba(0, 0, 0, .32);
  transition: left .35s ease;
}

#header .menu.on {
  left: 0;
}

#gnb {
  overflow: auto;
  height: 100%;
  margin-bottom: 20px;
}

#gnb ul li {
  margin-bottom: 9px;
  font-size: 1rem;
  line-height: 1.45;
}

#gnb ul li a {
  display: block;
  padding: 4px 0;
  color: var(--text-soft);
  transition: color .2s ease, padding-left .2s ease;
}

#gnb ul li a:hover {
  padding-left: 5px;
  color: var(--accent);
}

#gnb ul li ul {
  margin: 14px 0 0;
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

#gnb ul li ul li {
  margin-bottom: 4px;
  font-size: .94rem;
}

#gnb ul li ul li ul {
  margin: 5px 0 10px;
  padding-left: 12px;
  border-left: 0;
}

#gnb ul li ul li ul li {
  margin: 0;
  font-size: .85rem;
  line-height: 1.7;
}

#gnb ul li ul li ul li a:before {
  content: "—";
  margin-right: 7px;
  color: var(--accent);
}

#header .menu .social-link,
.cover-footer .social-link {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

#header .menu .social-link {
  position: absolute;
  right: 32px;
  bottom: 82px;
  left: 32px;
}

#header .menu .social-link a,
.cover-footer .social-link a {
  color: var(--muted);
  font-size: .82rem;
}

#header .menu .social-link a:hover,
.cover-footer .social-link a:hover {
  color: var(--accent);
}

#header .menu p {
  position: absolute;
  right: 32px;
  bottom: 38px;
  left: 32px;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: .7rem;
  letter-spacing: .08em;
}

#header .search {
  position: absolute;
  top: 18px;
  right: max(18px, calc(50% - 624px));
  width: 40px;
  min-height: 40px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: width .25s ease, border-color .2s ease, background .2s ease;
}

#header .search:hover {
  border-color: var(--line);
  background: var(--surface-2);
}

#header .search input {
  display: none;
  width: 100%;
  height: 40px;
  padding: 0 8px 0 14px;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: .88rem;
  line-height: 40px;
}

#header .search input::placeholder {
  color: var(--muted);
}

#header .search button {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  width: 40px;
  height: 40px;
  background: url(./images/ico_package.png) no-repeat 0 0;
  filter: invert(1);
  text-indent: -999em;
  outline: none;
}

#header .search:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 20;
  width: 40px;
  height: 40px;
  background: url(./images/ico_package.png) no-repeat 0 0;
  filter: invert(1);
  opacity: .86;
  cursor: pointer;
}

#header .search.on {
  width: min(320px, calc(100vw - 36px));
  border-color: var(--line-strong);
  background: var(--surface-2);
}

#header .search.on input,
#header .search.on button {
  display: block;
}

#header .search.on:before {
  display: none;
}

/* Main list layout */

#content {
  min-height: 42vh;
}

#content .inner,
#content > .post-header,
#content > .pagination {
  width: min(var(--content-width), calc(100% - 48px));
  max-width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
}

#content .inner:after {
  display: block;
  clear: both;
  height: 0;
  content: "";
  visibility: hidden;
}

.post-header {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  overflow: hidden;
  min-height: 116px;
  margin-bottom: 34px;
  padding: 56px 0 18px;
  border-bottom: 1px solid var(--line);
}

.post-header > span:first-child {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.post-header h1 {
  color: var(--text);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.4;
}

.post-header > span:nth-child(2) {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: .78rem;
}

.post-header .list-type {
  display: flex;
  gap: 6px;
  margin-left: auto;
}

.post-header .list-type button {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface-2);
  color: var(--muted);
  text-indent: -999em;
  outline: none;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.post-header .list-type button:hover,
.post-header .list-type button.current {
  border-color: var(--accent);
  background: rgba(125, 211, 252, .08);
  color: var(--accent);
}

.post-header .list-type .thum:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 3px;
  box-shadow: 5px 0 0 -2px var(--surface-2), 5px 0 0 0 currentColor;
}

.post-header .list-type .list:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 8px;
  width: 14px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor, 0 10px 0 currentColor;
}

.post-item {
  width: 100%;
  border-bottom: 1px solid var(--line);
}

.post-item a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  grid-template-rows: auto 1fr;
  gap: 10px 32px;
  min-height: 164px;
  padding: 32px 0;
  color: var(--text);
}

.post-item:first-child a {
  padding-top: 0;
}

.post-item a:hover .title {
  color: var(--accent);
}

.post-item a:hover .thum {
  border-color: rgba(125, 211, 252, .62);
  box-shadow: 0 0 0 4px rgba(125, 211, 252, .08);
}

.post-item .thum {
  display: block;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
  overflow: hidden;
  width: 180px;
  height: 135px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(125, 211, 252, .12), transparent),
    var(--surface-2);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.post-item .thum:empty:before {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--accent);
  content: "//";
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 1.4rem;
}

.post-item .thum img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
}

.post-item .title {
  display: -webkit-box;
  grid-column: 1;
  grid-row: 1;
  overflow: hidden;
  margin: 2px 0 0;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -.025em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.post-item .excerpt {
  display: -webkit-box;
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  overflow: hidden;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.post-item .excerpt.protected:before {
  content: "LOCK";
  display: inline-block;
  margin-right: 8px;
  color: var(--accent);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: .7rem;
  letter-spacing: .08em;
}

.post-item .date {
  display: block;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: .75rem;
}

/* Thumbnail / grid list selected by the original skin script */

body.post-type-thumbnail #content > .inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

body.post-type-thumbnail .post-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

body.post-type-thumbnail .post-item:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

body.post-type-thumbnail .post-item a,
body.post-type-thumbnail .post-item:first-child a {
  display: flex;
  min-height: 0;
  gap: 16px;
  padding: 18px;
  flex-direction: column;
}

body.post-type-thumbnail .post-item .thum {
  order: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
}

body.post-type-thumbnail .post-item .title,
body.post-type-thumbnail .post-item .excerpt {
  display: -webkit-box;
  grid-column: auto;
  grid-row: auto;
  order: 1;
}

body.post-type-thumbnail .post-item .title {
  margin: 0;
  font-size: 1rem;
  -webkit-line-clamp: 2;
}

body.post-type-thumbnail .post-item .excerpt {
  order: 2;
  font-size: .88rem;
  -webkit-line-clamp: 3;
}

/* Cover components */

.cover-thumbnail-list,
.cover-slider,
.cover-masonry,
.cover-list,
.cover-gallery {
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.cover-thumbnail-list,
.cover-masonry,
.cover-list,
.cover-gallery {
  padding: 70px 0;
}

.cover-thumbnail-list .inner,
.cover-masonry .inner,
.cover-list .inner,
.cover-gallery .inner,
.cover-footer {
  width: min(var(--content-width), calc(100% - 48px));
  max-width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
}

.cover-thumbnail-list h2,
.cover-masonry h2,
.cover-list h2,
.cover-gallery h2 {
  margin-bottom: 24px;
  color: var(--text);
  font-size: 1.1rem;
  letter-spacing: -.03em;
}

.cover-thumbnail-list h2:before,
.cover-masonry h2:before,
.cover-list h2:before,
.cover-gallery h2:before {
  content: "#";
  margin-right: 7px;
  color: var(--accent);
  font-family: "SFMono-Regular", Consolas, monospace;
}

.cover-thumbnail-list ul,
.cover-list ul {
  display: grid;
  gap: 18px;
}

.cover-thumbnail-list ul {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cover-thumbnail-list li,
.cover-list li {
  min-width: 0;
}

.cover-thumbnail-list li a,
.cover-list li a {
  display: block;
}

.cover-thumbnail-list .thum {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
}

.cover-thumbnail-list .thum img,
.cover-list figure img,
.cover-gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-thumbnail-list .title,
.cover-list .title,
.cover-gallery .title {
  display: -webkit-box;
  overflow: hidden;
  color: var(--text-soft);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.cover-thumbnail-list .category,
.cover-list .category,
.cover-masonry .category,
.cover-gallery .category {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--accent);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: .7rem;
  letter-spacing: .04em;
}

.cover-slider {
  overflow: hidden;
  min-height: 420px;
  padding: 0;
}

.cover-slider ul,
.cover-slider li {
  min-height: 420px;
}

.cover-slider li {
  position: relative;
  background-position: center;
  background-size: cover;
}

.cover-slider li:before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 11, 16, .92), rgba(8, 11, 16, .22));
  content: "";
}

.cover-slider .text-box {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(var(--content-width), calc(100% - 48px));
  min-height: 420px;
  margin: 0 auto;
  padding: 80px 0;
  justify-content: center;
  flex-direction: column;
}

.cover-slider .title {
  max-width: 680px;
  color: var(--text);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.06em;
}

.cover-slider .btn.view {
  display: inline-flex;
  width: fit-content;
  margin-top: 24px;
  padding: 9px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: .8rem;
}

.cover-masonry ul {
  columns: 3 260px;
  column-gap: 18px;
}

.cover-masonry li {
  break-inside: avoid;
  margin-bottom: 18px;
}

.cover-masonry li a {
  display: block;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.cover-masonry .thum {
  display: block;
  overflow: hidden;
  margin: -16px -16px 15px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.cover-masonry .thum img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.cover-masonry .title {
  display: block;
  color: var(--text);
  font-weight: 700;
}

.cover-masonry .excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 8px;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.cover-list ul {
  gap: 0;
}

.cover-list li {
  border-bottom: 1px solid var(--line);
}

.cover-list li a {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  padding: 20px 0;
}

.cover-list figure {
  overflow: hidden;
  width: 190px;
  height: 125px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-2);
}

.cover-list .title {
  align-self: center;
  font-size: 1.05rem;
}

.cover-list .excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 8px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.cover-gallery ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.cover-gallery li a {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.cover-gallery figure {
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--surface-2);
}

.cover-gallery .title {
  padding: 14px;
}

/* Article, pages, tags and forms */

.hgroup,
.entry-content,
.tags,
.related-articles,
.comments,
.guest_inner,
.pagination {
  width: min(var(--reading-width), calc(100% - 48px));
  max-width: var(--reading-width);
  margin-right: auto;
  margin-left: auto;
}

.hgroup {
  padding: 74px 0 34px;
  border-bottom: 1px solid var(--line);
}

.hgroup .category {
  margin-bottom: 13px;
  color: var(--accent);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: .78rem;
  letter-spacing: .04em;
}

.hgroup h1 {
  color: var(--text);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.06em;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 20px;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: .75rem;
}

.post-meta .date:before {
  content: "·";
  margin-right: 16px;
  color: var(--line-strong);
}

.entry-content {
  overflow-wrap: anywhere;
  padding: 42px 0 64px;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.9;
}

.entry-content > * + * {
  margin-top: 1.35em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 2.2em;
  color: var(--text);
  line-height: 1.35;
  letter-spacing: -.04em;
}

.entry-content h2 {
  padding-left: 14px;
  border-left: 3px solid var(--accent);
  font-size: 1.5rem;
}

.entry-content h3 {
  font-size: 1.25rem;
}

.entry-content a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(125, 211, 252, .4);
  text-underline-offset: 3px;
}

.entry-content img,
.entry-content video,
.entry-content iframe {
  display: block;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.entry-content blockquote {
  padding: 18px 22px;
  border-left: 3px solid var(--accent);
  background: var(--surface-2);
  color: var(--text-soft);
}

.entry-content pre,
.entry-content code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.entry-content code {
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface-2);
  color: var(--green);
  font-size: .88em;
}

.entry-content pre {
  overflow: auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #06080c;
  color: #d5e5ef;
  line-height: 1.65;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--line-strong);
}

.entry-content th,
.entry-content td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.entry-content th {
  color: var(--text);
  background: var(--surface-2);
}

.tags {
  padding: 24px 0 60px;
  border-top: 1px solid var(--line);
}

.tags h2 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 1rem;
}

.tags .items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags .items a {
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: .8rem;
}

.tags .items a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.related-articles {
  padding: 28px 0 60px;
  border-top: 1px solid var(--line);
}

.related-articles h2 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: 1rem;
}

.related-articles h2 strong {
  color: var(--accent);
}

.related-articles ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.related-articles li a {
  display: flex;
  min-height: 76px;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.related-articles .thum {
  display: block;
  overflow: hidden;
  width: 72px;
  height: 56px;
  flex: 0 0 auto;
  border-radius: 5px;
  background: var(--surface-2);
}

.related-articles .thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-articles .title {
  display: -webkit-box;
  overflow: hidden;
  color: var(--text-soft);
  font-size: .82rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.comments,
.guest_inner {
  padding: 28px 0 70px;
  border-top: 1px solid var(--line);
}

.comments h2,
.comments h3 {
  color: var(--text);
}

.comments a,
.guest_inner a {
  color: var(--accent);
}

.comments input,
.comments textarea,
.guest_inner input,
.guest_inner textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  outline: none;
  background: var(--surface);
  color: var(--text);
}

.comments input:focus,
.comments textarea:focus,
.guest_inner input:focus,
.guest_inner textarea:focus {
  border-color: var(--accent);
}

.protected_form {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  text-align: center;
}

.protected_form input {
  max-width: 220px;
  margin-top: 18px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--text);
}

.protected_form .btn {
  margin-left: 6px;
  padding: 10px 16px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  color: var(--accent);
}

/* Pagination */

.pagination {
  margin-top: 58px;
  margin-bottom: 110px;
  text-align: center;
}

.pagination .view-more {
  display: inline-flex;
  min-width: 170px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-soft);
  font-size: .84rem;
}

.pagination .view-more:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pagination a {
  display: inline-flex;
  width: 32px;
  height: 32px;
  margin: 0 3px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: .82rem;
}

.pagination a:hover,
.pagination .selected {
  background: rgba(125, 211, 252, .1);
  color: var(--accent);
}

.pagination .prev,
.pagination .next {
  width: auto;
  padding: 0 10px;
  border: 1px solid var(--line);
}

/* Footer */

#footer {
  position: relative;
  width: 100%;
  padding: 30px 24px 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

#footer .copyright {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: .7rem;
  letter-spacing: .04em;
}

#footer a {
  color: var(--text-soft);
}

#footer a:hover {
  color: var(--accent);
}

#tt-body-index .cover-footer {
  padding: 0 0 80px;
}

/* Tablet */

@media screen and (max-width: 900px) {
  :root {
    --content-width: 760px;
  }

  #content .inner,
  #content > .post-header,
  #content > .pagination,
  .cover-thumbnail-list .inner,
  .cover-masonry .inner,
  .cover-list .inner,
  .cover-gallery .inner,
  .cover-footer {
    width: min(var(--content-width), calc(100% - 40px));
  }

  .cover-thumbnail-list ul,
  .cover-gallery ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cover-list li a {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .cover-list figure {
    width: 150px;
    height: 105px;
  }

  #header .mobile-menu {
    left: 18px;
  }

  #header .search {
    right: 18px;
  }
}

/* Mobile */

@media screen and (max-width: 640px) {
  html,
  body {
    font-size: 15px;
  }

  #header,
  #header h1 {
    height: 64px;
  }

  #header h1 {
    padding: 0 68px;
    font-size: 1rem;
  }

  #header .mobile-menu,
  #header .mobile-menu.on {
    top: 12px;
    left: 16px;
  }

  #header .search {
    top: 12px;
    right: 16px;
  }

  #header .menu {
    padding: 88px 24px 116px;
  }

  #header .menu .social-link {
    right: 24px;
    bottom: 70px;
    left: 24px;
  }

  #header .menu p {
    right: 24px;
    bottom: 30px;
    left: 24px;
  }

  #content .inner,
  #content > .post-header,
  #content > .pagination,
  .cover-thumbnail-list .inner,
  .cover-masonry .inner,
  .cover-list .inner,
  .cover-gallery .inner,
  .cover-footer {
    width: calc(100% - 32px);
  }

  .post-header {
    min-height: 94px;
    margin-bottom: 24px;
    padding-top: 42px;
  }

  .post-item a,
  .post-item:first-child a {
    grid-template-columns: minmax(0, 1fr) 104px;
    gap: 8px 16px;
    min-height: 120px;
    padding: 24px 0;
  }

  .post-item:first-child a {
    padding-top: 0;
  }

  .post-item .thum {
    width: 104px;
    height: 78px;
    border-radius: 10px;
  }

  .post-item .title {
    margin-top: 0;
    font-size: .98rem;
    line-height: 1.45;
    -webkit-line-clamp: 2;
  }

  .post-item .excerpt {
    font-size: .82rem;
    line-height: 1.6;
    -webkit-line-clamp: 2;
  }

  body.post-type-thumbnail #content > .inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cover-thumbnail-list,
  .cover-masonry,
  .cover-list,
  .cover-gallery {
    padding: 48px 0;
  }

  .cover-thumbnail-list ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .cover-list li a {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
  }

  .cover-list figure {
    width: 104px;
    height: 78px;
  }

  .cover-gallery ul {
    gap: 12px;
  }

  .cover-slider,
  .cover-slider ul,
  .cover-slider li,
  .cover-slider .text-box {
    min-height: 340px;
  }

  .cover-slider .text-box {
    width: calc(100% - 32px);
    padding: 48px 0;
  }

  .cover-slider .title {
    font-size: 2rem;
  }

  .cover-masonry ul {
    columns: 1;
  }

  .hgroup {
    width: calc(100% - 32px);
    padding: 50px 0 26px;
  }

  .entry-content,
  .tags,
  .related-articles,
  .comments,
  .guest_inner {
    width: calc(100% - 32px);
  }

  .entry-content {
    padding-top: 30px;
    font-size: .98rem;
    line-height: 1.85;
  }

  .related-articles ul {
    grid-template-columns: 1fr;
  }

  .pagination {
    width: calc(100% - 32px);
    margin-top: 42px;
    margin-bottom: 74px;
  }

  #footer {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media screen and (max-width: 380px) {
  .post-item a,
  .post-item:first-child a {
    grid-template-columns: minmax(0, 1fr) 88px;
    gap: 8px 12px;
  }

  .post-item .thum {
    width: 88px;
    height: 68px;
  }

  .post-item .excerpt {
    font-size: .78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* v2 visual polish: identity, contrast, and homepage hero */
.hero-banner {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  align-items: stretch;
  width: min(var(--content-width), calc(100% - 48px));
  min-height: 334px;
  margin: 52px auto 64px;
  overflow: hidden;
  border: 1px solid rgba(84, 221, 255, .24);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 20%, rgba(84, 221, 255, .16), transparent 28%),
    radial-gradient(circle at 68% 84%, rgba(200, 243, 107, .08), transparent 23%),
    linear-gradient(135deg, #101b28 0%, #0b1119 62%, #0a0e15 100%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

.hero-banner:before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: .34;
  background-image:
    linear-gradient(rgba(84, 221, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 221, 255, .08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .7) 48%, transparent 100%);
}

.hero-banner:after {
  position: absolute;
  z-index: -1;
  top: -160px;
  right: 14%;
  width: 420px;
  height: 420px;
  content: "";
  border: 1px solid rgba(84, 221, 255, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 26px rgba(84, 221, 255, .025), 0 0 0 52px rgba(84, 221, 255, .018);
  transform: rotate(-18deg);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 48px 24px 48px 52px;
}

.hero-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font: 700 .72rem/1.4 "SFMono-Regular", Consolas, monospace;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-banner h1 {
  max-width: 620px;
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: 1.08;
}

.hero-banner h1 strong {
  color: var(--accent);
  font-weight: 800;
}

.hero-description {
  max-width: 540px;
  margin: 22px 0 28px;
  color: var(--text-soft);
  font-size: .98rem;
  line-height: 1.8;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border: 1px solid rgba(84, 221, 255, .42);
  border-radius: 999px;
  background: rgba(84, 221, 255, .08);
  color: var(--text);
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.hero-link span {
  color: var(--accent);
  font-size: 1.05rem;
  line-height: 1;
}

.hero-link:hover,
.hero-link:focus-visible {
  border-color: var(--accent);
  background: rgba(84, 221, 255, .16);
  transform: translateY(-2px);
}

.hero-art {
  position: relative;
  min-height: 334px;
  overflow: hidden;
}

.hero-art-image {
  position: absolute;
  z-index: -1;
  top: 12%;
  right: -8%;
  width: 94%;
  max-width: none;
  height: 76%;
  border: 0 !important;
  border-radius: 18px;
  object-fit: cover;
  opacity: .23;
  filter: grayscale(.22) saturate(1.35) contrast(1.1);
  mask-image: linear-gradient(90deg, transparent 0%, #000 35%, #000 100%);
}

.hero-grid {
  position: absolute;
  top: 12%;
  right: 5%;
  width: 72%;
  height: 76%;
  border: 1px solid rgba(84, 221, 255, .24);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(84, 221, 255, .1), transparent 48%),
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(84, 221, 255, .08) 29px 30px),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(84, 221, 255, .08) 29px 30px);
  transform: perspective(680px) rotateY(-16deg) rotateX(4deg) rotateZ(2deg);
  box-shadow: inset 0 0 70px rgba(0, 0, 0, .34), 0 18px 42px rgba(0, 0, 0, .32);
}

.hero-orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(200, 243, 107, .56);
  border-radius: 50%;
  transform: rotate(-24deg);
}

.hero-orbit-one {
  top: 22%;
  right: 13%;
  width: 210px;
  height: 110px;
}

.hero-orbit-two {
  top: 34%;
  right: 7%;
  width: 230px;
  height: 84px;
  border-color: rgba(84, 221, 255, .65);
  transform: rotate(34deg);
}

.hero-terminal {
  position: absolute;
  z-index: 3;
  right: 16%;
  bottom: 18%;
  width: min(260px, 66%);
  padding: 18px 20px;
  border: 1px solid rgba(238, 244, 248, .2);
  border-radius: 13px;
  background: rgba(8, 11, 16, .82);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .42);
  backdrop-filter: blur(10px);
  transform: rotate(-4deg);
}

.terminal-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font: 600 .62rem/1.3 "SFMono-Regular", Consolas, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.terminal-top:before,
.terminal-top:after {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 13px 0 var(--green), 26px 0 var(--danger);
}

.terminal-top:after {
  display: none;
}

.hero-code {
  color: var(--text-soft);
  font: 600 .76rem/1.9 "SFMono-Regular", Consolas, monospace;
}

.hero-code span {
  display: inline-block;
  width: 24px;
  color: var(--accent);
}

.hero-status {
  margin-top: 15px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 600 .62rem/1.3 "SFMono-Regular", Consolas, monospace;
  letter-spacing: .08em;
}

.hero-status b {
  float: right;
  color: var(--green);
  font-weight: 700;
}

:root {
  --bg: #070a0f;
  --surface: #101821;
  --surface-2: #151f2b;
  --surface-3: #1d2a38;
  --line: #273545;
  --line-strong: #3a4d60;
  --text: #f5f7fa;
  --text-soft: #d1d9e1;
  --muted: #91a4b8;
  --accent: #54ddff;
  --accent-strong: #1dc9f5;
  --green: #c8f36b;
}

.post-item a:has(.thum:empty) {
  grid-template-columns: minmax(0, 1fr);
}

.post-item a:has(.thum:empty) .thum {
  display: none;
}

.hgroup {
  padding-left: 22px;
  border-left: 2px solid var(--accent);
}

.entry-content img {
  border-radius: 14px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, .24);
}

.entry-content blockquote {
  border-left-color: var(--accent);
  background: linear-gradient(90deg, rgba(84, 221, 255, .08), transparent);
}

@media screen and (max-width: 900px) {
  .hero-banner {
    width: calc(100% - 32px);
    min-height: 0;
    margin-top: 34px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 34px 28px 12px;
  }

  .hero-banner h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-description {
    max-width: 620px;
    margin-top: 18px;
  }

  .hero-art {
    min-height: 260px;
  }

  .hero-art-image {
    top: 4%;
    right: 4%;
    width: 92%;
    height: 88%;
  }

  .hero-grid {
    top: 4%;
    right: 6%;
    width: 88%;
    height: 88%;
    transform: perspective(680px) rotateY(-10deg) rotateX(3deg) rotateZ(1deg);
  }

  .hero-terminal {
    right: 16%;
    bottom: 15%;
  }

  .hgroup {
    padding-left: 16px;
  }
}

@media screen and (max-width: 640px) {
  .hero-banner {
    width: calc(100% - 24px);
    margin-top: 24px;
    margin-bottom: 42px;
    border-radius: 16px;
  }

  .hero-copy {
    padding: 28px 22px 8px;
  }

  .hero-kicker {
    margin-bottom: 14px;
    font-size: .63rem;
  }

  .hero-description {
    margin-bottom: 22px;
    font-size: .86rem;
    line-height: 1.7;
  }

  .hero-art {
    min-height: 214px;
  }

  .hero-terminal {
    right: 11%;
    bottom: 12%;
    width: 68%;
    padding: 14px 16px;
  }

  .hero-code {
    font-size: .68rem;
  }

  .entry-content img {
    border-radius: 10px;
  }
}



/* Homepage-only visibility: Tistory exposes the page type on body#tt-body-index */
body:not(#tt-body-index) .hero-banner {
  display: none;
}

.desktop-only {
  display: inline;
}

@media screen and (max-width: 640px) {
  .desktop-only {
    display: none;
  }
}



/* v3 injected dark surface reset: Tistory React widgets and form controls */
html,
body,
#wrap,
#content,
.container {
  color-scheme: dark;
}

input,
textarea,
select,
button {
  color-scheme: dark;
}

.comments [data-tistory-react-app="Comment"],
.comments .tt-comment-cont,
.comments .tt-box-total,
.comments .tt-area-write,
.comments .tt_wrap_write,
.comments .tt-box-write {
  color: var(--text) !important;
}

.comments .tt-box-account input,
.comments .tt-box-textarea,
.comments .tt-inner-g,
.comments .tt-cmt {
  background: var(--surface) !important;
  color: var(--text) !important;
  border-color: var(--line) !important;
}

.comments .tt-box-account input {
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-sm);
}

.comments .tt-box-account input::placeholder,
.comments .tt-cmt:empty:before {
  color: var(--muted) !important;
}

.comments .tt-box-textarea {
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-sm);
}

.comments .tt-cmt {
  min-height: 112px;
  padding: 15px 16px;
  outline: 0;
}

.comments .tt-cmt:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(84, 221, 255, .1);
}

.comments .tt-xe-label-text {
  color: var(--muted) !important;
}

.comments .tt-xe-input-helper {
  border-color: var(--line-strong) !important;
  background: var(--surface-2) !important;
}

.comments input[type="checkbox"] {
  accent-color: var(--accent);
}

.comments .tt-btn_register {
  min-width: 68px;
  border: 1px solid var(--line-strong) !important;
  border-radius: var(--radius-sm);
  background: var(--surface-2) !important;
  color: var(--text-soft) !important;
}

.comments .tt-btn_register:disabled {
  border-color: var(--line) !important;
  background: var(--surface) !important;
  color: var(--muted) !important;
  opacity: .72;
}

[data-tistory-react-app="Namecard"] {
  color: var(--text) !important;
}

.tt_box_namecard {
  display: flex !important;
  align-items: center;
  min-height: 154px;
  padding: 26px 30px !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--surface-2), var(--surface)) !important;
  color: var(--text) !important;
  box-shadow: var(--shadow);
}

.tt_box_namecard .tt_cont {
  color: var(--text) !important;
}

.tt_box_namecard .tt_tit_cont {
  color: var(--text) !important;
  font-weight: 800;
}

.tt_box_namecard .tt_desc {
  color: var(--muted) !important;
}

.tt_box_namecard .tt_wrap_thumb {
  border: 1px solid var(--line-strong) !important;
  border-radius: 50%;
  background: var(--surface-3) !important;
}

.tt_box_namecard .tt_thumb_g {
  opacity: .72;
  filter: grayscale(1) contrast(1.15);
}

.tt_box_namecard .tt_btn_subscribe {
  border: 1px solid var(--accent) !important;
  border-radius: 999px;
  background: rgba(84, 221, 255, .08) !important;
  color: var(--text) !important;
}

.tt_box_namecard .tt_btn_subscribe:hover,
.tt_box_namecard .tt_btn_subscribe:focus-visible {
  background: rgba(84, 221, 255, .16) !important;
}

.tt_box_namecard .tt_txt_g {
  color: inherit !important;
}

.layer_post {
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-md);
  background: var(--surface) !important;
  color: var(--text) !important;
  box-shadow: var(--shadow);
}

.layer_post a,
.layer_post button {
  color: var(--text-soft) !important;
}

@media screen and (max-width: 640px) {
  .tt_box_namecard {
    min-height: 132px;
    padding: 22px 20px !important;
  }
}



/* v3b global form fallback for any remaining light widget */
body input:not([type="checkbox"]):not([type="radio"]),
body textarea,
body select {
  border: 1px solid var(--line) !important;
  background: var(--surface) !important;
  color: var(--text) !important;
  caret-color: var(--accent);
}

body input::placeholder,
body textarea::placeholder,
body select {
  color: var(--muted) !important;
}

body button:disabled {
  border-color: var(--line) !important;
  background: var(--surface) !important;
  color: var(--muted) !important;
}



/* v4 editorial cleanup: neutral tech art, empty media, and article rhythm */
.hero-art-image {
  opacity: .38;
  filter: saturate(1.1) contrast(1.12);
}

.post-item a:not(:has(.thum img)) {
  grid-template-columns: minmax(0, 1fr);
}

.post-item a:not(:has(.thum img)) .thum,
.related-articles li a:not(:has(.thum img)) .thum {
  display: none;
}

.related-articles li a:not(:has(.thum img)) {
  grid-template-columns: minmax(0, 1fr);
}

.related-articles li a:not(:has(.thum img)) .title {
  grid-column: 1;
}

.entry-content .tt_article_useless_p_margin > p {
  margin: 0 0 1.4rem;
}

.entry-content .tt_article_useless_p_margin > p:has(.imageblock) {
  margin: 2.7rem auto;
}

.article-section-title {
  margin: 3.5rem 0 1.25rem !important;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
  color: var(--text);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.35;
}

@media screen and (max-width: 640px) {
  .entry-content .tt_article_useless_p_margin > p {
    margin-bottom: 1.15rem;
  }

  .entry-content .tt_article_useless_p_margin > p:has(.imageblock) {
    margin: 1.9rem auto;
  }

  .article-section-title {
    margin-top: 2.6rem !important;
    padding-left: 12px;
    font-size: 1.2rem;
  }
}

/* v5 footer identity */
#footer {
  margin-top: 4rem;
  padding: 2.2rem 1rem 3rem;
  border-top: 1px solid var(--line);
  text-align: center;
}
#footer .copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 0;
  color: var(--text-soft);
  font: 600 .82rem/1.5 "SFMono-Regular", Consolas, monospace;
  letter-spacing: .05em;
}
#footer .copyright-mark {
  color: var(--text-soft);
}
#footer .brand-link {
  color: var(--accent);
  font-weight: 800;
}
#footer .footer-meta {
  margin: .55rem 0 0;
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .08em;
}
#footer .footer-meta a {
  color: var(--muted);
}
@media screen and (max-width: 640px) {
  #footer {
    margin-top: 3rem;
    padding: 1.8rem 1rem 2.5rem;
  }
  #footer .copyright {
    font-size: .74rem;
  }
}
\n
