/* =========================================================
   EXPECTACLE — Blog
   Self-contained (same convention as /studio/guide/).
   Does NOT load the root style.css — brand tokens are mirrored below.

   Themes:  html[data-theme="dark"]   main site   #000 / #FF4D4D   (default)
            html[data-theme="light"]  guide page  #fffaf5 / #E8825A
   ========================================================= */

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

/* ---------- Tokens ---------- */
:root,
html[data-theme="dark"]{
  --bg:#000000;
  --bg-subtle:#0A0A0A;
  --bg-hover:rgba(255,255,255,.06);
  --nav-bg:rgba(0,0,0,.72);
  --text:#FFFFFF;
  --text-body:rgba(255,255,255,.80);   /* long-form copy — softer than pure white */
  --text-secondary:#888888;
  --text-muted:#555555;
  --text-tertiary:#9a9a9a;   /* small labels — keeps AA contrast on black */
  --accent:#FF4D4D;
  --accent-text:#FF4D4D;   /* accent when it carries meaning as text */
  --accent-rgb:255,77,77;
  --accent-2:#ff8a4d;
  --border:rgba(255,255,255,.08);
  --border-light:rgba(255,255,255,.12);
  --ghost:rgba(255,255,255,.05);       /* huge faint index numerals */
  --code-bg:#0E0E0E;
  --grain-opacity:.035;
  color-scheme:dark;
}
html[data-theme="light"]{
  --bg:#fffaf5;
  --bg-subtle:#fff5eb;
  --bg-hover:rgba(45,37,32,.04);
  --nav-bg:rgba(255,250,245,.82);
  --text:#2d2520;
  --text-body:#4a3f36;
  --text-secondary:#6e5f52;
  --text-muted:#BBA898;
  --text-tertiary:#806e5e;
  --accent:#E8825A;
  --accent-text:#B44A28;   /* #E8825A is only 2.6:1 on cream — too weak for text */
  --accent-rgb:232,130,90;
  --accent-2:#F5A623;
  --border:rgba(45,37,32,.10);
  --border-light:rgba(45,37,32,.18);
  --ghost:rgba(45,37,32,.07);
  --code-bg:#f6efe7;
  --grain-opacity:.022;
  color-scheme:light;
}

:root{
  --en:'Space Grotesk',sans-serif;
  --kr:'Noto Sans KR',sans-serif;
  --measure:39rem;        /* reading column, ~70 characters */
  --measure-wide:58rem;   /* .figure-wide breakout          */
  --gut:2.5rem;           /* page gutter, matches main site */
}

html{overflow-x:hidden;max-width:100vw;scroll-behavior:smooth}
body{
  background:var(--bg);color:var(--text);
  font-family:var(--en);line-height:1.6;
  overflow-x:hidden;max-width:100vw;
  -webkit-font-smoothing:antialiased;
  transition:background .35s ease,color .35s ease;
}
img{max-width:100%;height:auto}
::selection{background:var(--accent-text);color:#fff}
a:focus-visible,button:focus-visible{outline:1px solid var(--accent);outline-offset:5px}

/* Desktop uses the custom cursor, same as the main site — but the article
   body keeps the native I-beam so text selection stays usable. */
@media(hover:hover) and (min-width:769px){
  body{cursor:none}
  .article-body,.article-body *{cursor:auto}
}

.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* ---------- Chrome: progress / grain / cursor ---------- */
.scroll-progress{
  position:fixed;top:0;left:0;height:2px;width:0%;
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  z-index:10000;pointer-events:none;
}
/* Static grain (the homepage animates it; a reading page should not shimmer) */
.grain-overlay{
  position:fixed;inset:0;z-index:9998;pointer-events:none;
  opacity:var(--grain-opacity);
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cursor-dot{
  position:fixed;top:0;left:0;width:6px;height:6px;
  background:var(--text);border-radius:50%;
  pointer-events:none;z-index:9999;
  transform:translate(-50%,-50%);
  transition:width .2s ease,height .2s ease,background .2s ease,opacity .2s ease;
  mix-blend-mode:difference;
}
.cursor-dot.hovering{width:40px;height:40px;background:rgba(255,255,255,.15)}
.cursor-dot.hidden{opacity:0}
@media(max-width:768px){.cursor-dot{display:none}}

/* ---------- Nav ---------- */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  display:flex;justify-content:space-between;align-items:center;
  gap:1rem;padding:1.1rem var(--gut);
  background:var(--nav-bg);backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);
  transition:background .35s ease,border-color .35s ease;
}
.nav-wordmark{font-size:.7rem;font-weight:600;letter-spacing:.2em;color:var(--text);text-decoration:none;transition:opacity .3s}
.nav-wordmark:hover{opacity:.6}
.nav-right{display:flex;align-items:center;gap:1.3rem}

.lang{display:flex;align-items:center;gap:.4rem;font-size:.65rem;font-weight:600;letter-spacing:.14em}
.lang a{color:var(--text-tertiary);text-decoration:none;transition:color .3s}
.lang a:hover{color:var(--text)}
.lang a[aria-current="true"]{color:var(--accent-text)}
.lang i{font-style:normal;color:var(--border-light)}

.theme-toggle{
  display:inline-flex;align-items:center;justify-content:center;
  width:26px;height:26px;padding:0;
  background:none;border:1px solid var(--border-light);border-radius:50%;
  color:var(--text-secondary);cursor:none;
  transition:color .3s,border-color .3s,transform .3s;
}
.theme-toggle:hover{color:var(--accent-text);border-color:var(--accent);transform:rotate(25deg)}
.theme-toggle svg{width:13px;height:13px;display:block}
.theme-toggle .icon-sun{display:none}
html[data-theme="light"] .theme-toggle .icon-sun{display:block}
html[data-theme="light"] .theme-toggle .icon-moon{display:none}

.nav-menu-toggle{
  background:none;border:none;
  font-family:var(--en);font-size:.7rem;font-weight:600;letter-spacing:.2em;
  color:var(--text);cursor:none;padding:.4rem 0;outline:none;
  transition:opacity .3s,color .3s;
}
.nav-menu-toggle:hover{opacity:.6}
@media(hover:none){.theme-toggle,.nav-menu-toggle{cursor:pointer}}

/* ---------- Fullscreen menu ---------- */
.menu-overlay{
  position:fixed;inset:0;z-index:99;background:var(--bg);
  display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;transition:opacity .4s ease;
}
.menu-overlay.open{opacity:1;pointer-events:auto}
.menu-overlay-inner{display:flex;flex-direction:column;gap:1.6rem}
.menu-link{
  font-size:clamp(1.6rem,5vw,4rem);font-weight:700;
  color:var(--text);text-decoration:none;text-transform:uppercase;letter-spacing:.04em;
  opacity:0;transform:translateY(30px);
  transition:opacity .4s ease,transform .4s ease,color .3s;
}
.menu-overlay.open .menu-link{opacity:1;transform:translateY(0)}
.menu-overlay.open .menu-link[data-index="0"]{transition-delay:.10s,.10s,0s}
.menu-overlay.open .menu-link[data-index="1"]{transition-delay:.15s,.15s,0s}
.menu-overlay.open .menu-link[data-index="2"]{transition-delay:.20s,.20s,0s}
.menu-overlay.open .menu-link[data-index="3"]{transition-delay:.25s,.25s,0s}
.menu-overlay.open .menu-link[data-index="4"]{transition-delay:.30s,.30s,0s}
.menu-overlay.open .menu-link[data-index="5"]{transition-delay:.35s,.35s,0s}
.menu-link:hover,.menu-link[aria-current="page"]{color:var(--accent-text)}
.menu-num{font-size:.7rem;font-weight:600;letter-spacing:.15em;color:var(--text-tertiary);vertical-align:super;margin-right:.8rem}

/* ---------- Layout ---------- */
.wrap{max-width:1100px;margin:0 auto;padding:0 var(--gut)}
.read{max-width:var(--measure);margin-inline:auto}
.blog-main{padding-top:3.6rem}

.section-label{
  display:inline-flex;align-items:baseline;gap:.5rem;
  font-size:.7rem;font-weight:600;letter-spacing:.25em;text-transform:uppercase;
  color:var(--text-secondary);
}
.section-label-num{color:var(--accent-text);font-weight:700;letter-spacing:.15em}

/* ---------- List: masthead ---------- */
.blog-head{padding-top:5rem;padding-bottom:3rem}
.blog-head h1{
  margin-top:1.6rem;
  font-size:clamp(3rem,9vw,6.5rem);font-weight:700;
  letter-spacing:.03em;line-height:.95;text-transform:uppercase;color:var(--text);
}
.blog-head .lead{
  margin-top:1.6rem;max-width:38rem;
  font-size:clamp(.85rem,1.3vw,1rem);line-height:1.85;
  color:var(--text-secondary);letter-spacing:.02em;
}

/* ---------- List: category filter (revealed by blog.js) ---------- */
.post-filter{display:flex;flex-wrap:wrap;align-items:center;gap:.4rem;padding-bottom:2.2rem}
.post-filter[hidden]{display:none}
.post-filter button{
  border:1px solid var(--border);border-radius:999px;background:none;padding:.42rem .95rem;
  font-family:var(--en);font-size:.6rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;
  color:var(--text-tertiary);cursor:none;
  transition:color .25s,background .25s,border-color .25s;
}
.post-filter button:hover{color:var(--text);border-color:var(--border-light)}
.post-filter button[aria-pressed="true"]{color:var(--text);background:var(--bg-hover);border-color:var(--border-light)}
.post-filter .count{margin-left:.5rem;font-family:var(--en);font-size:.6rem;font-weight:500;letter-spacing:.16em;color:var(--text-tertiary)}
@media(hover:none){.post-filter button{cursor:pointer}}
.post-item[hidden]{display:none}
.post-empty{padding:3.5rem 0;font-size:.9rem;line-height:1.8;color:var(--text-secondary)}
.post-empty[hidden]{display:none}

/* ---------- List: rows ---------- */
.post-list{padding-bottom:2rem}
.post-item{
  position:relative;display:grid;grid-template-columns:6.5rem 1fr 2rem;
  gap:2.5rem;align-items:start;padding:3rem 0;
  text-decoration:none;color:inherit;
}
.post-item::after{
  content:'';position:absolute;bottom:0;left:0;right:0;height:1px;
  background:linear-gradient(90deg,transparent,var(--border-light) 15%,var(--border-light) 85%,transparent);
}
.post-number{font-size:clamp(2rem,3.5vw,3rem);font-weight:700;line-height:1;color:var(--ghost);transition:color .4s}
.post-item:hover .post-number{color:rgba(var(--accent-rgb),.22)}
.post-category{display:block;margin-top:.7rem;font-size:.6rem;font-weight:600;letter-spacing:.22em;text-transform:uppercase;color:var(--text-tertiary)}
.post-title{font-size:clamp(1.25rem,2.4vw,1.9rem);font-weight:600;line-height:1.25;letter-spacing:-.005em;color:var(--text);transition:color .3s}
.post-item:hover .post-title{color:var(--accent-text)}
.post-status{
  display:flex;align-items:center;flex-wrap:wrap;column-gap:.55rem;row-gap:.3rem;margin-top:.75rem;
  font-size:.62rem;font-weight:600;letter-spacing:.22em;text-transform:uppercase;color:var(--text-secondary);
}
.post-status .dot{width:5px;height:5px;border-radius:50%;background:var(--accent);flex-shrink:0}
.post-status .sep{color:var(--text-tertiary)}
.post-excerpt{margin-top:1.1rem;max-width:46rem;font-size:.88rem;line-height:1.85;color:var(--text-secondary);letter-spacing:.01em}
.post-tags{list-style:none;display:flex;flex-wrap:wrap;gap:.4rem .5rem;margin-top:1.1rem;font-size:.58rem;font-weight:600;letter-spacing:.22em;text-transform:uppercase;color:var(--text-tertiary)}
.post-tags li{display:inline-flex;align-items:center}
.post-tags li+li::before{content:'';width:3px;height:3px;border-radius:50%;background:currentColor;opacity:.6;margin-right:.5rem}
.post-arrow{justify-self:end;font-size:1.1rem;line-height:1;color:var(--text-tertiary);transition:color .3s,transform .3s}
.post-item:hover .post-arrow{color:var(--accent-text);transform:translate(3px,-3px)}

/* ---------- Marquee (list page only) ---------- */
.marquee-strip{position:relative;width:100%;overflow:hidden;padding:1.6rem 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border);display:flex}
.marquee-track{display:flex;align-items:center;white-space:nowrap;animation:marqueeScroll 30s linear infinite;flex-shrink:0}
@keyframes marqueeScroll{0%{transform:translateX(0)}100%{transform:translateX(-100%)}}
.marquee-text{font-size:clamp(1.4rem,3.5vw,2.6rem);font-weight:700;letter-spacing:.08em;color:var(--text);opacity:.08;padding:0 1.6rem;flex-shrink:0}
.marquee-dot{width:7px;height:7px;border-radius:50%;background:var(--accent);opacity:.3;flex-shrink:0;margin:0 1.2rem}

/* ---------- Article ---------- */
.article-head{padding:4rem 0 2rem}
.back-link{display:inline-block;font-size:.65rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;color:var(--text-secondary);text-decoration:none;transition:color .3s,gap .3s}
.back-link:hover{color:var(--accent-text)}
.article-head h1{
  margin-top:1.5rem;
  font-size:clamp(1.9rem,4.6vw,3.1rem);font-weight:700;
  line-height:1.16;letter-spacing:-.015em;color:var(--text);
}
.article-lead{margin-top:1.4rem;font-size:1.08rem;line-height:1.8;color:var(--text-secondary);letter-spacing:.01em}
.article-status{
  display:flex;align-items:center;flex-wrap:wrap;column-gap:.6rem;row-gap:.35rem;margin-top:1.8rem;
  padding-top:1.4rem;border-top:1px solid var(--border);
  font-size:.62rem;font-weight:600;letter-spacing:.22em;text-transform:uppercase;color:var(--text-secondary);
}
.article-status .dot{width:5px;height:5px;border-radius:50%;background:var(--accent);flex-shrink:0}
.article-status .sep{color:var(--text-tertiary)}

/* ---------- Article body ---------- */
.article-body{padding-bottom:1rem;font-size:1.0625rem;line-height:1.9;color:var(--text-body);letter-spacing:.005em}
.article-body>*{max-width:100%}
.article-body p{margin:0 0 1.6rem}
.article-body h2{font-size:1.4rem;font-weight:600;line-height:1.35;letter-spacing:-.005em;color:var(--text);margin:3.4rem 0 1.1rem}
.article-body h3{font-size:1.02rem;font-weight:600;letter-spacing:.01em;color:var(--text);margin:2.4rem 0 .8rem}
.article-body h2+p,.article-body h3+p{margin-top:0}
.article-body ul,.article-body ol{margin:0 0 1.7rem;padding-left:1.4rem}
.article-body li{margin-bottom:.7rem;padding-left:.25rem}
.article-body li::marker{color:var(--accent);font-weight:600}
.article-body li>ul,.article-body li>ol{margin-top:.7rem;margin-bottom:0}
.article-body strong{font-weight:600;color:var(--text)}
.article-body em{font-style:italic;color:var(--text)}
.article-lead a,.article-body a{color:var(--text);text-decoration:none;border-bottom:1px solid rgba(var(--accent-rgb),.55);transition:color .25s,border-color .25s}
.article-lead a:hover,.article-body a:hover{color:var(--accent-text);border-color:var(--accent)}

.article-body blockquote{margin:2.8rem 0;padding:.1rem 0 .1rem 1.8rem;border-left:2px solid var(--accent)}
.article-body blockquote p{margin-bottom:0;font-size:1.22rem;line-height:1.65;font-weight:500;letter-spacing:-.008em;color:var(--text)}
.article-body blockquote cite{display:block;margin-top:1rem;font-style:normal;font-size:.62rem;font-weight:600;letter-spacing:.22em;text-transform:uppercase;color:var(--text-tertiary)}

.article-body hr{position:relative;border:0;height:1px;margin:3.6rem 0;background:linear-gradient(90deg,transparent,var(--border-light) 20%,var(--border-light) 80%,transparent)}
.article-body hr::after{content:'';position:absolute;left:50%;top:-3px;transform:translateX(-50%);width:7px;height:7px;border-radius:50%;background:var(--accent);box-shadow:0 0 0 6px var(--bg)}

.article-body figure{margin:3rem 0}
.article-body figure img{display:block;width:100%;border:1px solid var(--border)}
.article-body figcaption{margin-top:.8rem;font-size:.68rem;line-height:1.6;letter-spacing:.06em;color:var(--text-tertiary)}
.article-body .figure-wide{width:min(var(--measure-wide),90vw);max-width:none;margin-left:50%;transform:translateX(-50%)}

.article-body code{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;font-size:.87em;background:var(--code-bg);border:1px solid var(--border);padding:.12em .42em;border-radius:2px;color:var(--text)}
.article-body pre{background:var(--code-bg);border:1px solid var(--border);padding:1.2rem 1.4rem;overflow-x:auto;font-size:.84rem;line-height:1.75;margin:0 0 1.8rem;color:var(--text-body)}
.article-body pre code{background:none;border:0;padding:0;font-size:1em}

/* ---------- Optional body components ---------- */
/* Cover image — sits between the article head and the body, wider than the text column */
.article-cover{max-width:var(--measure-wide);margin:0 auto 3.2rem}
.article-cover img{display:block;width:100%;border:1px solid var(--border)}
.article-cover figcaption{margin-top:.8rem;font-family:var(--en);font-size:.68rem;line-height:1.6;letter-spacing:.06em;color:var(--text-tertiary)}

/* Two or three images side by side */
.article-body .figure-row{
  width:min(var(--measure-wide),90vw);max-width:none;margin:3rem 0 3rem 50%;transform:translateX(-50%);
  display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));gap:1rem;
}
.article-body .figure-row figure{margin:0}

/* Key/value block — release date, platform, price, credits */
.article-body .specs{margin:2.6rem 0;border-top:1px solid var(--border)}
.article-body .specs > div{display:grid;grid-template-columns:8.5rem 1fr;gap:1.2rem;padding:.85rem 0;border-bottom:1px solid var(--border)}
.article-body .specs dt{font-family:var(--en);font-size:.62rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;color:var(--text-tertiary);padding-top:.3rem}
.article-body .specs dd{font-size:.95rem;line-height:1.7;color:var(--text)}

/* Interview / Q&A */
.article-body .qa{margin:2.4rem 0;padding-left:1.6rem;border-left:1px solid var(--border-light)}
.article-body .qa + .qa{margin-top:-.4rem}
.article-body .qa .q{font-weight:600;color:var(--text);margin-bottom:.7rem}
.article-body .qa .a{margin-bottom:0;color:var(--text-body)}
.article-body .qa .q::before,.article-body .qa .a::before{font-family:var(--en);font-weight:700;margin-right:.55rem}
.article-body .qa .q::before{content:'Q.';color:var(--accent-text)}
.article-body .qa .a::before{content:'A.';color:var(--text-tertiary)}

/* Big numbers — postmortems, milestones */
.article-body .stat-row{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(115px,1fr));gap:1.5rem;
  margin:2.8rem 0;padding:1.9rem 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border);
}
.article-body .stat-row > div{text-align:center}
.article-body .stat-row .num{display:block;font-family:var(--en);font-size:clamp(1.7rem,3.4vw,2.5rem);font-weight:700;line-height:1;color:var(--text)}
.article-body .stat-row .lab{display:block;margin-top:.75rem;font-family:var(--en);font-size:.58rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;color:var(--text-tertiary)}

/* Side note — a quieter aside than .note: no box, no label, smaller type.
   Good for a preface, a caveat, or a remark that is not part of the argument. */
.article-body .side-note{
  position:relative;margin:0 0 2.8rem;padding-top:1.1rem;
  font-size:.9rem;line-height:1.8;color:var(--text-secondary);
}
.article-body .side-note::before{
  content:'';position:absolute;top:0;left:0;width:28px;height:1px;background:var(--accent);
}
.article-body .side-note + h2{margin-top:2.6rem}

/* Callout — dev notes, spoilers, asides */
.note{margin:2.6rem 0;padding:1.3rem 1.5rem;background:var(--bg-subtle);border:1px solid var(--border);border-left:2px solid var(--accent)}
.note .note-label{display:block;margin-bottom:.6rem;font-size:.58rem;font-weight:600;letter-spacing:.24em;text-transform:uppercase;color:var(--accent-text)}
.note p{margin-bottom:0;font-size:.93rem;line-height:1.85;color:var(--text-secondary)}
.note p+p{margin-top:.8rem}

/* Spoiler — click to reveal */
.spoiler{background:var(--text-muted);color:transparent;border-radius:2px;transition:background .25s,color .25s;cursor:pointer}
.spoiler.revealed{background:transparent;color:inherit;box-shadow:inset 0 -1px 0 var(--border-light)}

/* ---------- Article footer ---------- */
.post-end{margin-top:3.6rem;padding:2.4rem 0 5rem;border-top:1px solid var(--border)}
.post-end-row{display:flex;flex-wrap:wrap;gap:1.4rem;justify-content:space-between;align-items:center}
.work-cta{
  display:inline-flex;align-items:center;gap:.7rem;padding:.5rem 0;
  font-size:.7rem;font-weight:600;letter-spacing:.22em;text-transform:uppercase;
  color:var(--text);text-decoration:none;background:none;border:none;
  border-bottom:1px solid var(--border-light);
  transition:color .3s,border-color .3s,gap .3s;
}
.work-cta:hover{color:var(--accent-text);border-bottom-color:var(--accent);gap:1.1rem}
.work-cta .arrow{font-size:1rem;line-height:1;transform:translateY(-1px);transition:transform .3s}
.work-cta:hover .arrow{transform:translate(2px,-3px)}

/* ---------- Footer ---------- */
.footer{width:100%;padding:3rem var(--gut) 1.5rem;border-top:1px solid var(--border)}
.footer-inner{display:flex;justify-content:space-between;align-items:center;gap:1.5rem;padding-bottom:1.5rem;max-width:1100px;margin:0 auto}
.footer-wordmark{font-size:.65rem;font-weight:600;letter-spacing:.2em;color:var(--text-tertiary)}
.footer-tagline{font-size:.62rem;letter-spacing:.18em;text-transform:uppercase;color:var(--text-tertiary)}
.footer-links{display:flex;gap:1.1rem;justify-content:flex-end;flex-wrap:wrap}
.footer-links a{font-size:.62rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;color:var(--text-tertiary);text-decoration:none;transition:color .3s}
.footer-links a:hover{color:var(--accent-text)}
.footer-bottom-line{max-width:1100px;margin:0 auto;height:1px;background:linear-gradient(90deg,transparent,var(--border-light) 30%,var(--border-light) 70%,transparent)}

/* ---------- Reveal ---------- */
.reveal{opacity:0;transform:translateY(30px);transition:opacity .8s cubic-bezier(.16,1,.3,1),transform .8s cubic-bezier(.16,1,.3,1)}
.reveal.visible{opacity:1;transform:translateY(0)}

/* ---------- Korean ---------- */
.kr{font-family:var(--kr);word-break:keep-all;overflow-wrap:break-word}
.kr .article-body{font-size:1.02rem;line-height:2.0;letter-spacing:-.002em}
.kr .article-body h2{font-size:1.32rem;line-height:1.5;letter-spacing:-.015em}
.kr .article-body h3{font-size:1rem;line-height:1.6}
.kr .article-body blockquote p{font-size:1.14rem;line-height:1.75}
.kr .article-head h1{font-size:clamp(1.7rem,4.2vw,2.7rem);line-height:1.35;letter-spacing:-.025em}
.kr .article-lead{font-size:.99rem;line-height:1.9}
.kr .blog-head h1{font-size:clamp(2.6rem,8vw,5.5rem);letter-spacing:.02em}
.kr .blog-head .lead{font-size:.92rem;line-height:1.9}
.kr .post-title{font-size:clamp(1.15rem,2.2vw,1.7rem);line-height:1.45}
.kr .post-excerpt{font-size:.86rem;line-height:1.9}
.kr .note p{line-height:1.9}
.kr .article-body .side-note{font-size:.92rem;line-height:1.9}
.kr .article-body .specs dd,.kr .article-body .qa .a{line-height:1.9}
/* Latin-only chrome keeps Space Grotesk */
.kr .section-label,.kr .post-category,.kr .post-status,.kr .post-tags,
.kr .article-status,.kr .back-link,.kr .work-cta,.kr .note-label,
.kr .marquee-text,.kr blockquote cite,.kr .specs dt,.kr .post-filter button,
.kr .stat-row .num,.kr .stat-row .lab,.kr .article-cover figcaption{font-family:var(--en)}

/* ---------- Responsive ---------- */
@media(max-width:768px){
  :root{--gut:1.5rem}
  .blog-main{padding-top:3.2rem}
  .blog-head{padding-top:3.2rem;padding-bottom:2rem}
  .post-filter{padding-bottom:1.6rem}
  .post-filter button{font-size:.56rem;padding:.38rem .75rem;letter-spacing:.14em}
  .post-item{grid-template-columns:1fr;gap:.5rem;padding:2.4rem 0}
  .post-number{font-size:1.8rem}
  .post-category{margin-top:.25rem}
  .post-arrow{display:none}
  .post-excerpt,.post-tags,.post-status{margin-top:.9rem}
  .article-head{padding:2.6rem 0 1.6rem}
  .article-body{font-size:1.01rem;line-height:1.85}
  .article-body .figure-wide{width:100%;margin-left:0;transform:none}
  .article-body .figure-row{width:100%;margin-left:0;transform:none;grid-template-columns:1fr;gap:1.6rem}
  .article-cover{margin-bottom:2.2rem}
  .article-body .specs > div{grid-template-columns:1fr;gap:.3rem;padding:.9rem 0}
  .article-body .specs dt{padding-top:0}
  .article-body .stat-row{grid-template-columns:repeat(2,1fr);gap:1.6rem}
  .article-body .side-note{margin-bottom:2.2rem}
  .article-body blockquote{padding-left:1.2rem}
  .article-body blockquote p{font-size:1.08rem}
  .post-end-row{flex-direction:column;align-items:flex-start;gap:1rem}
  .footer-inner{flex-direction:column;text-align:center;gap:1rem}
  .footer-links{justify-content:center}
  .menu-overlay-inner{gap:1.1rem}
}

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