@charset "UTF-8";
:root {
  --bg: #f7f3ea;
  --surface: #fffdf8;
  --surface-strong: #fff9ef;
  --ink: #1f2a37;
  --ink-soft: #52606d;
  --line: #d7d9d4;
  --brand: #eb5e28;
  --brand-strong: #c63d0f;
  --accent: #0f8b8d;
  --accent-soft: #74b9b6;
  --shadow-soft: 0 16px 36px rgba(36, 42, 48, 0.08);
  --shadow-strong: 0 24px 52px rgba(33, 37, 41, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Space Grotesk", "Sora", system-ui, sans-serif;
  background: radial-gradient(circle at top left, #fff8ef 0%, #f4f0e6 45%, #f7f3ea 100%);
  line-height: 1.6;
}

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

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

.site-shell {
  min-height: 100vh;
  position: relative;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.narrow {
  max-width: 900px;
}

.section-space {
  padding: 6.5rem 0;
}

.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
  opacity: 0.45;
  animation: drift 18s ease-in-out infinite;
}

.orb-a {
  width: 34rem;
  height: 34rem;
  top: -14rem;
  left: -10rem;
  background: radial-gradient(circle at 30% 30%, #ffd49d 0%, #f4b07a 45%, transparent 72%);
}

.orb-b {
  width: 30rem;
  height: 30rem;
  bottom: -12rem;
  right: -8rem;
  animation-delay: -6s;
  background: radial-gradient(circle at 40% 40%, #b7ede8 0%, #95d8d3 45%, transparent 72%);
}

.orb-c {
  width: 20rem;
  height: 20rem;
  top: 26%;
  right: 16%;
  animation-delay: -10s;
  background: radial-gradient(circle at 50% 50%, #ffd1bc 0%, #f9ab86 44%, transparent 70%);
}

.ambient-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(31, 42, 55, 0.045) 1px, transparent 1px), linear-gradient(to bottom, rgba(31, 42, 55, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 44%, transparent 100%);
}

.site-header {
  position: sticky;
  top: 1.15rem;
  z-index: 40;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled .nav-shell {
  box-shadow: var(--shadow-strong);
}

.nav-shell {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(31, 42, 55, 0.1);
  border-radius: 1rem;
  background: rgba(255, 253, 248, 0.78);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #ff9f68);
  box-shadow: 0 0 0 6px rgba(235, 94, 40, 0.18);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 600;
  transition: all 180ms ease;
}

.nav-link:hover {
  color: var(--ink);
  background: rgba(15, 139, 141, 0.1);
}

.nav-link.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #f18d5f);
}

.nav-link-ext {
  border: 1px dashed rgba(15, 139, 141, 0.45);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(31, 42, 55, 0.2);
  background: var(--surface);
  color: var(--ink);
  padding: 0.45rem 0.85rem;
  border-radius: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

.site-main {
  padding-top: 2.1rem;
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--accent);
}

.home-hero {
  padding-top: 4.2rem;
}

.hero-shell {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 236, 0.86));
  border: 1px solid rgba(31, 42, 55, 0.1);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
  padding: clamp(2rem, 3vw + 1rem, 3.2rem);
}

.hero-title {
  margin: 0.7rem 0 0;
  font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-copy {
  max-width: 65ch;
  margin: 1.25rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.9rem;
}

.hero-metrics {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.metric-card {
  border: 1px solid rgba(31, 42, 55, 0.1);
  border-radius: 1rem;
  background: rgba(255, 253, 249, 0.72);
  padding: 1rem;
}

.metric-value {
  display: block;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--brand-strong);
}

.metric-label {
  display: block;
  margin-top: 0.2rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.section-head {
  max-width: 62ch;
  margin-bottom: 1.9rem;
}

.section-head h1,
.section-head h2 {
  margin: 0.55rem 0 0;
  font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 2.7vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.section-head p {
  margin: 1rem 0 0;
  color: var(--ink-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  border-radius: 0.8rem;
  padding: 0.7rem 1.15rem;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 170ms ease, box-shadow 170ms ease, background-color 170ms ease, color 170ms ease, border-color 170ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #f08f60);
  box-shadow: 0 10px 24px rgba(198, 61, 15, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 14px 28px rgba(198, 61, 15, 0.28);
}

.btn-ghost {
  color: var(--ink);
  border-color: rgba(31, 42, 55, 0.2);
  background: rgba(255, 255, 255, 0.54);
}

.btn-outline {
  color: var(--accent);
  border-color: rgba(15, 139, 141, 0.45);
  background: rgba(116, 185, 182, 0.12);
}

.btn-sm {
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
  border-radius: 0.65rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.project-card {
  background: var(--surface);
  border: 1px solid rgba(31, 42, 55, 0.11);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(15, 139, 141, 0.35);
}

.project-card:focus-visible {
  outline: 3px solid rgba(15, 139, 141, 0.45);
  outline-offset: 2px;
}

.project-media {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #ffd8b8, #b8ebe6);
  overflow: hidden;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.project-card:hover .project-media img {
  transform: scale(1.04);
}

.project-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(235, 94, 40, 0.22), rgba(15, 139, 141, 0.25));
}

.project-fallback span {
  font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(31, 42, 55, 0.66);
}

.project-body {
  padding: 1rem;
}

.project-body h3 {
  margin: 0;
  font-size: 1.25rem;
  font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif;
}

.project-body p {
  margin: 0.55rem 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 0.85rem;
}

.project-tags span {
  border: 1px solid rgba(15, 139, 141, 0.25);
  color: #106d6f;
  background: rgba(116, 185, 182, 0.13);
  border-radius: 999px;
  padding: 0.26rem 0.58rem;
  font-size: 0.74rem;
  font-weight: 600;
}

.project-tags.large span {
  font-size: 0.8rem;
  padding: 0.36rem 0.7rem;
}

.project-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.project-page {
  padding-top: 3rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--accent);
  font-weight: 700;
}

.project-hero {
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(31, 42, 55, 0.1);
  border-radius: 1.2rem;
  padding: clamp(1.3rem, 1.5vw + 1rem, 2.1rem);
  box-shadow: var(--shadow-soft);
}

.project-hero h1 {
  margin: 0.45rem 0 0;
  font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.05rem);
  line-height: 1.08;
}

.project-summary {
  margin: 0.95rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.project-actions-top {
  margin-top: 1.2rem;
}

.project-image {
  margin: 1.1rem auto 0;
  width: fit-content;
  max-width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(31, 42, 55, 0.12);
  box-shadow: var(--shadow-soft);
}

.project-content {
  margin-top: 1.2rem;
  background: rgba(255, 255, 255, 0.77);
  border: 1px solid rgba(31, 42, 55, 0.1);
  border-radius: 1.2rem;
  padding: clamp(1.2rem, 1.2vw + 1rem, 1.9rem);
  box-shadow: var(--shadow-soft);
}

.project-content h2,
.project-content h3,
.project-content h4 {
  margin: 1.5rem 0 0.7rem;
  font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif;
  line-height: 1.22;
}

.project-content p,
.project-content li {
  color: #334155;
}

.project-content ul,
.project-content ol {
  padding-left: 1.15rem;
}

.project-content a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.about-panels {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.about-panel {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(31, 42, 55, 0.1);
  border-radius: 1rem;
  padding: 1.1rem;
  box-shadow: var(--shadow-soft);
}

.about-panel h2 {
  margin: 0;
  font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.about-panel p {
  margin: 0.65rem 0 0;
  color: var(--ink-soft);
}

.about-bottom {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr auto;
  align-items: end;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 42, 55, 0.1);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  padding: 1.1rem;
}

.about-bottom h2 {
  margin: 0;
  font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.resume-page {
  padding-top: 3rem;
}

.resume-hero,
.resume-section,
.resume-panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 42, 55, 0.1);
  border-radius: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.resume-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  align-items: end;
  padding: clamp(1.5rem, 2vw + 1rem, 2.5rem);
}

.resume-hero h1 {
  margin: 0.55rem 0 0;
  font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.resume-copy {
  max-width: 64ch;
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.resume-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
}

.resume-section {
  margin-top: 1rem;
  padding: clamp(1.2rem, 1.3vw + 1rem, 2rem);
}

.resume-section-head h2,
.resume-panel h2,
.resume-item-body h3 {
  margin: 0;
  font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif;
  line-height: 1.2;
}

.resume-section-head h2 {
  margin-top: 0.45rem;
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
}

.resume-section-head p {
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
}

.resume-timeline {
  margin-top: 1.3rem;
  display: grid;
  gap: 1rem;
}

.resume-item {
  display: grid;
  grid-template-columns: minmax(7.5rem, 0.22fr) 1fr;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(31, 42, 55, 0.1);
}

.resume-item-meta {
  color: var(--accent);
  font-weight: 800;
}

.resume-item-body h3 {
  font-size: 1.25rem;
}

.resume-item-body p,
.resume-item-body li,
.resume-panel p,
.resume-panel li {
  color: #334155;
}

.resume-item-body p {
  margin: 0.55rem 0 0;
}

.resume-item-body ul,
.resume-panel ul {
  margin: 0.75rem 0 0;
  padding-left: 1.15rem;
}

.resume-project-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.resume-project {
  border: 1px solid rgba(31, 42, 55, 0.1);
  border-radius: 1rem;
  background: rgba(255, 253, 248, 0.72);
  padding: 1rem;
}

.resume-project h3 {
  margin: 0;
  font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif;
  font-size: 1.15rem;
}

.resume-project h3 a {
  color: var(--accent);
}

.resume-project h3 a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.resume-project p {
  margin: 0.55rem 0 0;
  color: #334155;
  font-size: 0.95rem;
}

.resume-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr;
  gap: 1rem;
}

.resume-panel {
  padding: 1.1rem;
}

.resume-panel h2 {
  font-size: 1.15rem;
}

.resume-panel p {
  margin: 0.55rem 0 0;
}

.resume-panel a {
  color: var(--accent);
  font-weight: 700;
}

.resume-panel a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.resume-bottom-link {
  margin-top: 1rem;
  text-align: center;
}

.resume-bottom-link a {
  color: var(--accent);
  font-weight: 800;
}

.resume-bottom-link a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid rgba(31, 42, 55, 0.1);
  background: rgba(255, 253, 248, 0.8);
}

.footer-shell {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
  }
  50% {
    transform: translateY(-18px) translateX(8px) scale(1.04);
  }
}
@media (max-width: 1024px) {
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-panels {
    grid-template-columns: 1fr;
  }
  .about-bottom {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .resume-hero,
  .resume-grid,
  .resume-project-list {
    grid-template-columns: 1fr;
  }
  .resume-actions {
    justify-content: flex-start;
  }
}
@media (max-width: 760px) {
  .section-space {
    padding: 4.8rem 0;
  }
  .site-main {
    padding-top: 1.35rem;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .primary-nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    width: min(240px, 100vw - 1.25rem);
    flex-direction: column;
    align-items: stretch;
    padding: 0.6rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(31, 42, 55, 0.14);
    background: rgba(255, 253, 248, 0.95);
    box-shadow: var(--shadow-soft);
    transform-origin: top right;
    transform: scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }
  .primary-nav.is-open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }
  .project-grid {
    grid-template-columns: 1fr;
  }
  .hero-metrics {
    grid-template-columns: 1fr;
  }
  .project-actions {
    gap: 0.4rem;
  }
  .project-actions .btn {
    flex: 1;
  }
  .resume-item {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
}
/* ---------------------------------------------------------------- */
/* Blog index                                                        */
/* ---------------------------------------------------------------- */
.blog-section {
  padding-block: 5rem 4rem;
}

.blog-filter {
  display: flex;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
}

.blog-filter-btn {
  font-family: "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 0.45rem;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.blog-filter-btn:hover {
  border-color: rgba(15, 139, 141, 0.4);
  color: var(--ink);
}

.blog-filter-btn.is-active {
  background: rgba(15, 139, 141, 0.1);
  color: var(--accent);
  border-color: rgba(15, 139, 141, 0.45);
}

.blog-filter-btn[data-filter=ko].is-active {
  background: rgba(235, 94, 40, 0.1);
  color: var(--brand);
  border-color: rgba(235, 94, 40, 0.45);
}

.blog-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
}

.blog-list[data-active=en] .blog-card[data-lang]:not([data-lang=en]),
.blog-list[data-active=ko] .blog-card[data-lang]:not([data-lang=ko]) {
  display: none;
}

.blog-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(235, 94, 40, 0.35);
}

.blog-card-link {
  display: block;
  padding: 1.5rem 1.75rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 0 0.4rem;
}

.blog-card-date {
  color: var(--ink-soft);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-card-lang {
  font-family: "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 0.35rem;
  background: rgba(15, 139, 141, 0.1);
  color: var(--accent);
}

.blog-card-lang[data-lang=ko] {
  background: rgba(235, 94, 40, 0.1);
  color: var(--brand);
}

.blog-card-title {
  font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  line-height: 1.25;
  margin: 0 0 0.4rem;
  color: var(--ink);
}

.blog-card-subtitle {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

.blog-empty {
  color: var(--ink-soft);
  text-align: center;
  padding: 3rem 0;
}

/* ---------------------------------------------------------------- */
/* Post                                                              */
/* ---------------------------------------------------------------- */
.post-article {
  padding: 4rem 0 6rem;
}

.post-header {
  margin-bottom: 2.5rem;
}

.post-header .eyebrow {
  margin-bottom: 0.5rem;
}

.post-title {
  font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--ink);
}

.post-subtitle {
  font-size: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

.post-translations {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.post-translation-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: var(--surface);
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.post-translation-link:hover {
  border-color: rgba(235, 94, 40, 0.45);
  color: var(--brand);
  background: rgba(235, 94, 40, 0.05);
}

.post-content {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
}

.post-content > * + * {
  margin-top: 1.1rem;
}

.post-content h2 {
  font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  line-height: 1.25;
  margin-top: 2.75rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.post-content h3 {
  font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  line-height: 1.3;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.post-content p,
.post-content ul,
.post-content ol {
  margin: 0;
}

.post-content ul,
.post-content ol {
  padding-left: 1.5rem;
}

.post-content li + li {
  margin-top: 0.4rem;
}

.post-content a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.post-content a:hover {
  color: var(--brand-strong);
}

.post-content strong {
  font-weight: 700;
  color: var(--ink);
}

.post-content code {
  font-family: "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.9em;
  background: rgba(15, 139, 141, 0.1);
  color: var(--accent);
  padding: 0.15em 0.4em;
  border-radius: 0.3rem;
}

.post-content pre {
  background: #0f1419;
  color: #e6edf3;
  padding: 1.25rem 1.5rem;
  border-radius: 0.85rem;
  overflow-x: auto;
  font-size: 0.92em;
  line-height: 1.55;
}

.post-content pre code {
  background: transparent;
  color: inherit;
  padding: 0;
  font-size: inherit;
}

.post-content blockquote {
  border-left: 3px solid var(--brand);
  padding: 0.6rem 1.1rem;
  margin: 0;
  color: var(--ink-soft);
  background: rgba(235, 94, 40, 0.05);
  border-radius: 0 0.4rem 0.4rem 0;
}

.post-content blockquote p {
  margin: 0;
}

.post-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95em;
  display: block;
  overflow-x: auto;
}

.post-content th,
.post-content td {
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.post-content th {
  background: var(--surface-strong);
  font-weight: 600;
}

.post-content hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2.5rem 0;
}

.post-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

/* Rouge syntax highlighting (dark code block — github-dark inspired) */
.post-content div.highlight {
  background: transparent;
  padding: 0;
}

.post-content div.highlight pre {
  margin: 0;
}

.highlight .c, .highlight .cm, .highlight .c1, .highlight .cs, .highlight .cd {
  color: #8b949e;
  font-style: italic;
}

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

.highlight .s, .highlight .s1, .highlight .s2, .highlight .sb, .highlight .sc, .highlight .sd, .highlight .se, .highlight .sh, .highlight .si, .highlight .sx, .highlight .sr, .highlight .ss {
  color: #a5d6ff;
}

.highlight .nf, .highlight .nc, .highlight .nn {
  color: #d2a8ff;
}

.highlight .nb, .highlight .bp {
  color: #79c0ff;
}

.highlight .mi, .highlight .mf, .highlight .il, .highlight .mh, .highlight .mo {
  color: #79c0ff;
}

.highlight .o, .highlight .ow {
  color: #ff7b72;
}

.highlight .nt {
  color: #7ee787;
}

.highlight .na {
  color: #79c0ff;
}

.highlight .nv, .highlight .vc, .highlight .vg, .highlight .vi {
  color: #ffa657;
}

.highlight .err {
  color: #f85149;
}

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