/* =====================================================================
   SNAG — Newsprint Ghost theme
   The locked look: Newsreader serif, paper #EBE9E2, ink-on-newsprint.
   The ONLY colour anywhere is the pine-green newsletter band (#1E3A28).
   ===================================================================== */

:root{
  --paper:#EBE9E2;
  --ink:#1A1916;
  --soft:#46433d;
  --faint:#645b50;
  --hair:#c2bdb1;
  --rule:#cdc9bd;
  --maxw:1180px;
  --measure:660px;
  /* green band */
  --pine:#1E3A28;
  --pine-sub:#c8d3c8;
  --pine-proof:#aebcae;
  --pine-border:#5d7a68;
  --pine-placeholder:#8aa093;
}

*{box-sizing:border-box;}
html{-webkit-text-size-adjust:100%;}
html,body{margin:0;padding:0;}

body{
  background:var(--paper);
  color:var(--ink);
  font-family:"Newsreader",Georgia,"Times New Roman",serif;
  font-optical-sizing:auto;
  font-size:18px;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
  /* sticky-footer: keep the subscribe band pinned to the bottom on short
     (filtered) pages */
  display:flex;
  flex-direction:column;
  min-height:100vh;
}

a{color:inherit;}

/* The content area grows to fill, pushing the subscribe band down. */
.site-main{ flex:1 0 auto; width:100%; }
.subscribe{ flex:0 0 auto; }

.wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 32px;
}
.wrap--post{
  max-width:var(--measure);
  padding:0 24px;
}

/* =====================================================================
   SLIM HEADER (homepage variant — small wordmark + minimal nav)
   ===================================================================== */
header.topbar{ /* no rule under the nav */ }
.topbar-inner{
  max-width:var(--maxw);
  margin:0 auto;
  padding:18px 32px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.brand{
  display:inline-flex;
  flex-direction:column;
  text-decoration:none;
  color:var(--ink);
}
.wordmark{
  font-size:24px;
  font-weight:600;
  letter-spacing:0.01em;
  line-height:1;
  margin:0;
}
.underline{
  display:block;
  width:62px;
  height:6px;
  margin-top:4px;
  color:var(--ink);
}
nav.mainnav{
  display:flex;
  align-items:center;
  gap:6px;
}
nav.mainnav a{
  display:inline-flex;
  align-items:center;
  min-height:44px;
  padding:0 10px;
  font-size:13px;
  text-decoration:none;
  color:var(--faint);
  letter-spacing:0.02em;
  transition:color .15s ease;
}
nav.mainnav a:hover{color:var(--ink);}
nav.mainnav a.active{
  color:var(--ink);
  position:relative;
}
nav.mainnav a.active::after{
  content:"";
  position:absolute;
  left:10px;right:10px;
  bottom:9px;
  border-top:1.5px solid var(--ink);
}

/* Post/page header reuses .topbar but constrains to the article measure. */
header.topbar--post .topbar-inner{
  max-width:var(--measure);
  padding-left:24px;
  padding-right:24px;
}

/* =====================================================================
   CATEGORY TAG CLOUD (browse control)
   ===================================================================== */
.browse{ padding:30px 0 8px; }
.browse-label{
  font-size:13px;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--faint);
  margin:0 0 14px;
}
.cloud{
  display:flex;
  flex-wrap:wrap;
  align-items:baseline;
  gap:6px 22px;
  margin:0;
  padding:0;
  list-style:none;
}
.tag{
  appearance:none;
  -webkit-appearance:none;
  background:transparent;
  border:0;
  padding:8px 0;
  min-height:44px;
  display:inline-flex;
  align-items:center;
  font-family:inherit;
  font-size:18px;
  font-weight:500;
  line-height:1;
  letter-spacing:0.005em;
  color:var(--faint);
  cursor:pointer;
  position:relative;
  transition:color .15s ease;
}
.tag:hover{color:var(--ink);}
.tag .dot{
  display:inline-block;
  width:7px;height:7px;
  border-radius:50%;
  background:var(--ink);
  margin-right:9px;
  opacity:0;
  transform:scale(0);
  transition:opacity .18s ease, transform .18s ease;
}
/* selected state: full INK + filled dot + hand-underline (never green) */
.tag.is-active{ color:var(--ink); }
.tag.is-active .dot{
  opacity:1;
  transform:scale(1);
}
.tag.is-active .tag-underline{ opacity:1; }
.tag-text{ position:relative; display:inline-block; }
.tag .tag-underline{
  position:absolute;
  left:0;right:0;
  bottom:-4px;
  height:6px;
  width:100%;
  color:var(--ink);
  opacity:0;
  transition:opacity .18s ease;
  pointer-events:none;
}

.browsediv{
  border:0;
  border-top:1px solid var(--hair);
  margin:18px 0 0;
}

/* =====================================================================
   FEATURE (3x) — spans both columns
   ===================================================================== */
.feature{
  padding:34px 0 32px;
  border-bottom:1px solid var(--hair);
}
.feature-grid{
  display:grid;
  grid-template-columns:1fr 220px;
  gap:34px;
  align-items:start;
}
.feature.no-shot .feature-grid{ grid-template-columns:1fr; }
.feature.no-shot .shot{ display:none; }
.feature-headline{
  display:block;
  text-decoration:none;
  color:var(--ink);
}
.feature h2{
  margin:0;
  font-size:52px;
  font-weight:600;
  line-height:1.04;
  letter-spacing:-0.01em;
}
.feature .deck{
  margin:16px 0 0;
  font-size:21px;
  line-height:1.45;
  color:var(--soft);
  max-width:42ch;
}

/* ink-ruled screenshot frame; real image when present */
.shot{
  border:1.5px solid var(--ink);
  aspect-ratio:4/3;
  width:100%;
  position:relative;
  overflow:hidden;
  background:var(--paper);
}
.shot img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.shot.is-placeholder::before,
.shot.is-placeholder::after{
  content:"";
  position:absolute;
  left:14px;right:14px;
  border-top:1px solid var(--hair);
}
.shot.is-placeholder::before{top:30%;}
.shot.is-placeholder::after{top:58%;}
.shot.is-placeholder span{
  position:absolute;
  left:14px;top:14px;
  width:46%;
  height:13%;
  border-top:1px solid var(--ink);
}
.shot em{
  position:absolute;
  left:14px;bottom:14px;
  font-style:italic;
  font-size:12px;
  color:var(--faint);
  letter-spacing:0.05em;
}
.shot img ~ em{ display:none; }

/* =====================================================================
   INDEX — two columns of headline + subhead items
   ===================================================================== */
.index{
  column-count:2;
  column-gap:48px;
  column-rule:1px solid var(--hair);
  margin:24px 0 0;
  padding:6px 0 4px;
}
.item{
  break-inside:avoid;
  padding:16px 0;
  border-bottom:1px solid var(--hair);
}
.item:first-child{padding-top:6px;}
.item a{
  text-decoration:none;
  color:var(--ink);
  display:block;
}
.item h3{
  margin:0;
  font-size:22px;
  font-weight:600;
  line-height:1.16;
  letter-spacing:-0.005em;
}
.item p{
  margin:5px 0 0;
  font-size:16px;
  line-height:1.4;
  color:var(--soft);
}

/* swap fade */
.swapzone{ transition:opacity .22s ease; }
.swapzone.fading{ opacity:0; }

.empty{
  padding:28px 0 8px;
  font-size:18px;
  font-style:italic;
  color:var(--faint);
}

/* =====================================================================
   SUBSCRIBE — the one colour moment: full-width pine-green band
   Used identically on home + post.
   ===================================================================== */
.subscribe{
  background:var(--pine);
  color:var(--paper);
  margin:48px 0 0;
}
.subscribe-inner{
  max-width:var(--maxw);
  margin:0 auto;
  padding:46px 32px 48px;
}
.subscribe h2{
  margin:0;
  font-size:38px;
  font-weight:600;
  line-height:1.08;
  letter-spacing:-0.01em;
  color:var(--paper);
}
.subscribe .sub{
  margin:12px 0 0;
  font-size:19px;
  line-height:1.45;
  color:var(--pine-sub);
  max-width:50ch;
  font-style:italic;
}
form.signup{
  margin:26px 0 0;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:stretch;
  max-width:640px;
}
.signup input[type="email"]{
  flex:1 1 260px;
  min-width:0;
  min-height:52px;
  padding:12px 16px;
  font-family:inherit;
  font-size:17px;
  color:var(--paper);
  background:transparent;
  border:1px solid var(--pine-border);
  border-radius:0;
}
.signup input[type="email"]::placeholder{color:var(--pine-placeholder);}
.signup input[type="email"]:focus{
  outline:none;
  border-color:var(--paper);
}
.signup button{
  flex:0 0 auto;
  min-height:52px;
  padding:12px 26px;
  font-family:inherit;
  font-size:17px;
  font-weight:600;
  color:var(--pine);
  background:var(--paper);
  border:1px solid var(--paper);
  border-radius:0;
  cursor:pointer;
  transition:opacity .15s ease;
}
.signup button:hover{opacity:0.86;}
.proof{
  margin:18px 0 0;
  font-size:15px;
  color:var(--pine-proof);
  font-style:italic;
  letter-spacing:0.02em;
}
.signup-error{
  margin:14px 0 0;
  font-size:15px;
  font-style:italic;
  color:var(--paper);
}
.signup-error:empty{ margin:0; min-height:0; }

/* =====================================================================
   FOOTER
   ===================================================================== */
footer.site-footer{ padding:34px 0 56px; }
.footer-wrap{ max-width:var(--maxw); margin:0 auto; padding:0 32px; }
.footrule{
  border:0;
  border-top:1px solid var(--hair);
  margin:0 0 20px;
}
.footer-line{
  display:flex;
  flex-wrap:wrap;
  gap:8px 18px;
  align-items:baseline;
  font-size:15px;
  color:var(--faint);
}
.footer-line .sig{
  color:var(--ink);
  font-weight:500;
  font-size:17px;
  font-style:italic;
}
.footer-line a{
  text-decoration:none;
  box-shadow:inset 0 -1px 0 0 var(--hair);
}

/* =====================================================================
   POST / ARTICLE (Newsprint essay)
   ===================================================================== */
article.post,
article.page{ padding-top:48px; }

.post .kicker,
.article-kicker{
  font-size:13px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--faint);
  font-weight:500;
  margin:0 0 20px;
}
h1.title{
  font-size:clamp(38px,9.5vw,54px);
  line-height:1.05;
  font-weight:500;
  letter-spacing:-0.018em;
  margin:0;
}
.post .deck{
  margin:20px 0 0;
  font-size:22px;
  line-height:1.45;
  color:var(--soft);
  font-weight:300;
  max-width:none;
}
.post .meta{
  margin:24px 0 0;
  font-size:14px;
  color:var(--faint);
  letter-spacing:0.05em;
  border-bottom:1px solid var(--rule);
  padding-bottom:32px;
}

/* feature image under the headline */
figure.feature-image{ margin:40px 0 0; }
figure.feature-image img{
  display:block;
  width:100%;
  height:auto;
  border:1px solid var(--ink);
}
figure.feature-image figcaption{
  margin-top:12px;
  font-size:13px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--faint);
  font-weight:500;
}

/* ---- Body (Ghost content) ---- */
.gh-content{
  padding-top:34px;
  font-size:19px;
  line-height:1.66;
}
.gh-content > p{margin:0 0 24px;}
.gh-content > p:first-of-type{font-size:21px;line-height:1.55;}
.gh-content > p:first-of-type::first-letter{
  font-size:64px;
  line-height:0.78;
  font-weight:500;
  float:left;
  margin:6px 10px 0 0;
}
.gh-content em{font-style:italic;}
.gh-content strong{font-weight:600;}
.gh-content a{box-shadow:inset 0 -1px 0 0 var(--rule);text-decoration:none;}

.gh-content h2{
  font-size:30px;
  line-height:1.15;
  font-weight:500;
  letter-spacing:-0.012em;
  margin:46px 0 18px;
}
.gh-content h3{
  font-size:24px;
  line-height:1.2;
  font-weight:500;
  letter-spacing:-0.01em;
  margin:40px 0 14px;
}
.gh-content ul,
.gh-content ol{ margin:0 0 24px; padding-left:1.3em; }
.gh-content li{ margin:0 0 8px; }

/* ---- Framed screenshots (Ghost image cards) ---- */
.gh-content figure.kg-image-card,
.gh-content figure.kg-card{ margin:40px 0; }
.gh-content .kg-image{
  display:block;
  width:100%;
  height:auto;
  border:1px solid var(--ink);
}
.gh-content figure figcaption{
  margin-top:12px;
  font-size:13px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--faint);
  font-weight:500;
  text-align:left;
}

/* Koenig wide / full-bleed image cards */
.gh-content .kg-width-wide{
  position:relative;
  width:calc(100% + 120px);
  margin-left:-60px;
  max-width:none;
}
.gh-content .kg-width-full{
  position:relative;
  width:100vw;
  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;
  max-width:none;
}
.gh-content .kg-width-full img{ border-left:0; border-right:0; }
@media (max-width:760px){
  .gh-content .kg-width-wide{ width:100%; margin-left:0; }
}

/* ---- Pull quote (blockquote → pull) ---- */
.gh-content blockquote{
  margin:46px 0;
  padding:0;
  border:0;
}
.gh-content blockquote p{
  margin:0 0 8px;
  font-size:clamp(26px,6.5vw,32px);
  line-height:1.25;
  font-weight:400;
  font-style:italic;
  letter-spacing:-0.01em;
  color:var(--ink);
}

/* ---- Psychology-principle aside (Ghost callout card → principle) ---- */
.gh-content .kg-callout-card{
  margin:38px 0;
  border:1px solid var(--rule);
  border-left:2px solid var(--ink);
  padding:22px 24px;
  background:rgba(26,25,22,0.015);
  border-radius:0;
  display:block;
}
.gh-content .kg-callout-emoji{
  float:left;
  margin-right:10px;
  font-size:17px;
}
.gh-content .kg-callout-text{
  margin:0;
  font-size:17px;
  line-height:1.55;
  color:var(--soft);
}
.gh-content .kg-callout-text strong{color:var(--ink);}

/* standalone principle aside (used in static preview markup) */
aside.principle{
  margin:38px 0;
  border:1px solid var(--rule);
  border-left:2px solid var(--ink);
  padding:22px 24px;
  background:rgba(26,25,22,0.015);
}
aside.principle .label{
  font-size:13px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--faint);
  font-weight:600;
  margin:0 0 8px;
}
aside.principle p{
  margin:0;
  font-size:17px;
  line-height:1.55;
  color:var(--soft);
}
aside.principle p strong{color:var(--ink);}

/* margin note on screenshots */
.gh-content .note,
figure .note{
  margin-top:14px;
  padding-left:18px;
  border-left:2px solid var(--ink);
  font-size:16px;
  line-height:1.5;
  color:var(--soft);
  font-style:italic;
}
.note b{
  font-style:normal;
  font-weight:600;
  display:block;
  font-size:12px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  margin-bottom:4px;
  color:var(--faint);
}

/* preview-only ink-hatch frame placeholder */
.frame{
  border:1px solid var(--ink);
  background:
    repeating-linear-gradient(135deg,
      rgba(26,25,22,0.04) 0,
      rgba(26,25,22,0.04) 1px,
      transparent 1px,
      transparent 11px);
  aspect-ratio:4 / 3;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:24px;
}
.frame .ph{
  font-size:13px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--faint);
  font-weight:500;
}
figure.shot{ margin:40px 0; }
figure.shot figcaption{
  margin-top:12px;
  font-size:13px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--faint);
  font-weight:500;
}

/* ---- STEAL THIS verdict box ---- */
.steal{
  margin:50px 0 44px;
  border:1.5px solid var(--ink);
  padding:26px 26px 28px;
}
.steal .tag{
  display:inline-block;
  font-size:12px;
  letter-spacing:0.2em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--paper);
  background:var(--ink);
  padding:5px 10px;
  margin:0 0 16px;
  min-height:0;
}
.steal h3{
  font-size:22px;
  line-height:1.25;
  font-weight:500;
  margin:0 0 10px;
  letter-spacing:-0.01em;
}
.steal p{
  margin:0;
  font-size:17px;
  line-height:1.55;
  color:var(--soft);
}

/* =====================================================================
   PAGINATION
   ===================================================================== */
.pagination{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin:28px 0 0;
  font-size:15px;
  color:var(--faint);
}
.pagination a{
  text-decoration:none;
  box-shadow:inset 0 -1px 0 0 var(--hair);
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width:760px){
  body{font-size:17px;}
  .wrap{padding:0 22px;}
  .topbar-inner{padding:16px 22px 14px;}
  .footer-wrap{padding:0 22px;}
  nav.mainnav{gap:2px;}
  nav.mainnav a{padding:0 9px;font-size:13px;}
  .browse{padding:24px 0 6px;}
  .feature-grid{grid-template-columns:1fr;gap:22px;}
  .feature h2{font-size:38px;}
  .feature .deck{font-size:19px;}
  .shot{max-width:340px;}
  .index{column-count:1;column-rule:0;}
  .subscribe-inner{padding:38px 22px 40px;}
  .subscribe h2{font-size:30px;}
  .subscribe .sub{font-size:18px;}
  .signup button{flex:1 1 100%;}
}
@media (max-width:480px){
  .gh-content{font-size:18px;}
  .gh-content > p:first-of-type{font-size:19px;}
  .post .deck{font-size:20px;}
}
@media (max-width:420px){
  .wordmark{font-size:22px;}
  .feature h2{font-size:32px;}
}

/* =====================================================================
   EXPERIMENTS PAGE (page-experiments.hbs) — metrics + notebook cards
   ===================================================================== */
.pagehead{ padding:26px 0 6px; }
.pagehead h1{
  margin:0;
  font-size:46px;
  font-weight:600;
  line-height:1.03;
  letter-spacing:-0.015em;
}
.pagehead .intro{
  margin:12px 0 0;
  font-size:20px;
  line-height:1.45;
  color:var(--soft);
  max-width:48ch;
}
.sectionhead{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:14px;
  margin:38px 0 18px;
  padding-bottom:8px;
  border-bottom:1.5px solid var(--ink);
}
.sectionhead h2{
  margin:0;
  font-size:14px;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--ink);
  font-weight:600;
}
.sectionhead .count{
  font-size:13px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--faint);
}
.streaks{ margin-top:2px; }
.streakrow{
  display:flex;
  flex-wrap:wrap;
  gap:20px 44px;
  padding:20px 0;
  border-top:1px solid var(--hair);
  border-bottom:1px solid var(--hair);
}
.streak{ flex:0 0 auto; }
.streak-num{
  font-size:38px;
  font-weight:600;
  line-height:1;
  letter-spacing:-0.02em;
  color:var(--ink);
  display:flex;
  align-items:baseline;
  gap:8px;
  white-space:nowrap;
}
.streak-num .sub{
  font-size:13px;
  font-weight:400;
  color:var(--faint);
  letter-spacing:0.03em;
  white-space:nowrap;
}
.streak-name{
  margin-top:7px;
  font-size:14px;
  color:var(--soft);
  letter-spacing:0.01em;
  display:flex;
  align-items:center;
  gap:7px;
}
.board{
  column-count:2;
  column-gap:26px;
  margin-top:2px;
}
.entry{
  break-inside:avoid;
  display:inline-block;
  width:100%;
  margin:0 0 26px;
  border:1.5px solid var(--ink);
  background:var(--paper);
  padding:22px 22px 20px;
  vertical-align:top;
}
.entry-meta{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px 12px;
  margin-bottom:8px;
}
.dot-ongoing{
  flex:0 0 auto;
  width:9px;height:9px;
  border-radius:50%;
  background:var(--pine);
}
.tag-cadence{
  font-size:12px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--faint);
}
.check-done{
  flex:0 0 auto;
  color:var(--pine);
  font-size:15px;
  line-height:1;
  display:inline-flex;
}
.entry h3{
  margin:0;
  font-size:25px;
  font-weight:600;
  line-height:1.16;
  letter-spacing:-0.008em;
}
.entry .dates{
  margin:6px 0 0;
  font-size:14px;
  color:var(--faint);
  letter-spacing:0.02em;
}
.log{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid var(--hair);
}
.logline{
  display:flex;
  gap:12px;
  align-items:baseline;
  padding:7px 0;
  border-bottom:1px solid var(--hair);
  font-size:16px;
  line-height:1.4;
}
.logline:last-child{ border-bottom:0; }
.logline .lbl{
  flex:0 0 58px;
  font-size:12px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--faint);
  padding-top:1px;
}
.logline .txt{ flex:1 1 auto; color:var(--soft); }
.logline.await .txt{ color:var(--faint); }
.running{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid var(--hair);
}
.running .bignum{
  font-size:34px;
  font-weight:600;
  line-height:1;
  letter-spacing:-0.01em;
}
.running .bignum small{
  font-size:14px;
  font-weight:400;
  color:var(--faint);
  letter-spacing:0.04em;
  margin-left:8px;
}
.running .note{
  margin:10px 0 0;
  font-size:16px;
  line-height:1.45;
  color:var(--soft);
}
.entry.done{ padding:18px 22px 16px; }
.entry.done h3{ font-size:21px; }
.review{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid var(--hair);
}
.review .rl{
  font-size:12px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--faint);
  margin:0 0 4px;
}
.review .rt{
  margin:0;
  font-size:17px;
  line-height:1.5;
  color:var(--ink);
}
@media (max-width:760px){
  .pagehead h1{font-size:34px;}
  .pagehead .intro{font-size:18px;}
  .board{ column-count:1; }
  .sectionhead{ margin:30px 0 16px; }
}
@media (max-width:420px){
  .pagehead h1{font-size:30px;}
  .entry h3{font-size:22px;}
}

/* =====================================================================
   THOUGHTS PAGE (page-thoughts.hbs) — sticky-note wall
   Each note grows to fit its text; first line bold, the rest in body type.
   ===================================================================== */
.thoughts-wall{
  column-count:3;
  column-gap:22px;
  margin-top:26px;
  padding-bottom:8px;
}
.sticky{
  break-inside:avoid;
  display:inline-block;
  width:100%;
  margin:0 0 22px;
  padding:20px 20px 22px;
  background:#F0E6BE;
  box-shadow:0 1px 0 rgba(26,25,22,.10), 0 10px 22px rgba(26,25,22,.12);
  transform:rotate(var(--rot,-1deg));
  transition:transform .18s ease, box-shadow .18s ease;
}
.sticky:hover{
  transform:rotate(0) translateY(-3px);
  box-shadow:0 1px 0 rgba(26,25,22,.10), 0 16px 30px rgba(26,25,22,.16);
}
/* cfg:sticky-colors */
.sticky:nth-child(5n+1){ --rot:-1.5deg; background:#F0E6BE; }
.sticky:nth-child(5n+2){ --rot:1.2deg; background:#E4ECDD; }
.sticky:nth-child(5n+3){ --rot:-0.7deg; background:#EFE0D2; }
.sticky:nth-child(5n+4){ --rot:1.7deg; background:#E2E5EB; }
.sticky:nth-child(5n+5){ --rot:-1.1deg; background:#EDE7DA; }
/* /cfg */
.sticky-title{
  display:block;
  margin:0 0 9px;
  font-weight:600;
  font-size:19px;
  line-height:1.28;
  letter-spacing:-0.005em;
  color:var(--ink);
}
.sticky-body{
  font-size:16px;
  line-height:1.5;
  color:var(--soft);
}
.sticky-body p{ margin:0 0 10px; }
.sticky-body p:last-child{ margin:0; }
.sticky-body a{
  color:var(--ink);
  box-shadow:inset 0 -1px 0 0 rgba(26,25,22,.3);
  text-decoration:none;
}
@media (max-width:900px){ .thoughts-wall{ column-count:2; } }
@media (max-width:560px){ .thoughts-wall{ column-count:1; } }
