/* ============================================================
   thinking hands — Journal (Blog) editorial layer
   Distinct magazine/editorial system, same brand palette.
   Serif: Spectral (headlines + longform). UI/labels: Nunito Sans.
   ============================================================ */
:root {
  --serif: "Spectral", Georgia, "Times New Roman", serif;
  --rule: 1px solid rgba(28,28,28,.14);
  --rule-soft: 1px solid rgba(28,28,28,.09);
  --measure: 68ch;
}

/* ---------- Journal masthead ---------- */
.journal-mast {
  border-top: 2px solid var(--ink);
  padding-top: 18px;
  margin-top: 8px;
}
.mast-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  font-family: var(--font); font-size: 13px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}
.mast-row .mast-issue { color: var(--olive); }
.journal-hero { padding-block: clamp(36px, 6vw, 72px) clamp(28px, 4vw, 44px); }
.journal-hero h1 {
  font-family: var(--serif); font-weight: 500; letter-spacing: -.015em;
  font-size: clamp(40px, 7vw, 78px); line-height: 1.02; max-width: 16ch;
}
.journal-hero h1 em { font-style: italic; color: var(--olive); }
.journal-hero .dek {
  font-family: var(--serif); font-size: clamp(19px, 2.2vw, 23px); line-height: 1.5;
  color: var(--muted); max-width: 56ch; margin-top: 26px;
}

/* ---------- Featured (lead) article ---------- */
.lead-article {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 56px);
  align-items: stretch; padding-block: clamp(32px, 4vw, 48px);
  border-top: var(--rule); border-bottom: var(--rule);
}
@media (max-width: 860px) { .lead-article { grid-template-columns: 1fr; gap: 26px; } }
.lead-media { position: relative; order: 2; }
.lead-media image-slot { width: 100%; height: 100%; min-height: 320px; border-radius: 4px; border: 1px solid var(--sage-light); background: var(--cream); }
@media (max-width: 860px) { .lead-media { order: 0; } .lead-media image-slot { min-height: 240px; aspect-ratio: 16/10; } }
.lead-body { order: 1; display: flex; flex-direction: column; }
.kicker {
  font-family: var(--font); font-size: 12.5px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--olive);
  display: inline-flex; align-items: center; gap: 10px;
}
.kicker::before { content: "No. 01"; color: var(--moss); font-variant-numeric: tabular-nums; }
.lead-body .kicker { margin-bottom: 18px; }
.lead-body h2 {
  font-family: var(--serif); font-weight: 600; letter-spacing: -.01em;
  font-size: clamp(28px, 3.8vw, 46px); line-height: 1.08;
}
.lead-body h2 a { transition: color .2s; }
.lead-body h2 a:hover { color: var(--olive); }
.lead-excerpt {
  font-family: var(--serif); font-size: clamp(17px, 1.9vw, 20px); line-height: 1.6;
  color: var(--muted); margin-top: 18px; max-width: 46ch;
}
.article-meta {
  font-family: var(--font); font-size: 13.5px; font-weight: 600; color: var(--muted);
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 22px;
}
.article-meta .dot-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--sage); }
.read-more {
  margin-top: auto; padding-top: 26px;
  font-family: var(--font); font-weight: 800; font-size: 15px; color: var(--olive);
  display: inline-flex; align-items: center; gap: 9px; letter-spacing: .01em;
}
.read-more svg { transition: transform .25s var(--ease); }
.lead-body a:hover .read-more svg, .read-more:hover svg { transform: translateX(4px); }

/* ---------- Index list (magazine entries, hairline rules — not cards) ---------- */
.entry-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(36px, 5vw, 72px); row-gap: 0;
  margin-top: 8px;
}
@media (max-width: 760px) { .entry-grid { grid-template-columns: 1fr; } }

.entry {
  display: grid; grid-template-columns: auto 1fr; gap: 22px;
  padding-block: clamp(28px, 3vw, 38px); border-bottom: var(--rule);
  text-decoration: none; color: inherit; align-items: start;
}
.entry .entry-no {
  font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--sage);
  font-variant-numeric: tabular-nums; padding-top: 4px; line-height: 1;
}
.entry-cat {
  font-family: var(--font); font-size: 12px; font-weight: 800; letter-spacing: .13em;
  text-transform: uppercase; color: var(--moss); margin-bottom: 10px; display: block;
}
.entry h3 {
  font-family: var(--serif); font-weight: 600; letter-spacing: -.005em;
  font-size: clamp(22px, 2.5vw, 27px); line-height: 1.14; transition: color .2s;
}
.entry:hover h3 { color: var(--olive); }
.entry p {
  font-family: var(--serif); font-size: 16.5px; line-height: 1.55; color: var(--muted);
  margin-top: 12px; max-width: 42ch;
}
.entry .entry-meta {
  font-family: var(--font); font-size: 12.5px; font-weight: 600; color: var(--sage);
  margin-top: 14px; display: flex; align-items: center; gap: 9px;
}
.entry .arrow-ico { color: var(--olive); opacity: 0; transform: translateX(-4px); transition: all .25s var(--ease); }
.entry:hover .arrow-ico { opacity: 1; transform: translateX(0); }

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.article-wrap { background: var(--white); }
.article-head { padding-block: clamp(40px, 6vw, 80px) clamp(20px, 3vw, 32px); text-align: center; }
.back-journal {
  font-family: var(--font); font-size: 13.5px; font-weight: 700; color: var(--moss);
  letter-spacing: .04em; display: inline-flex; align-items: center; gap: 8px; margin-bottom: clamp(28px, 4vw, 44px);
  transition: gap .2s, color .2s;
}
.back-journal:hover { color: var(--olive); gap: 12px; }
.article-cat {
  font-family: var(--font); font-size: 13px; font-weight: 800; letter-spacing: .15em;
  text-transform: uppercase; color: var(--olive); display: block; margin-bottom: 20px;
}
.article-head h1 {
  font-family: var(--serif); font-weight: 500; letter-spacing: -.018em;
  font-size: clamp(34px, 5.4vw, 60px); line-height: 1.06; margin-inline: auto; max-width: 18ch;
}
.article-head .standfirst {
  font-family: var(--serif); font-style: italic; font-size: clamp(19px, 2.3vw, 25px);
  line-height: 1.5; color: var(--muted); margin: 26px auto 0; max-width: 40ch;
}
.article-head .article-meta { justify-content: center; margin-top: 30px; }

.article-lead-img { margin-block: clamp(24px, 4vw, 44px); }
.article-lead-img image-slot {
  width: 100%; aspect-ratio: 16 / 8.5; border-radius: 6px; border: 1px solid var(--sage-light); background: var(--cream);
}
.img-caption {
  font-family: var(--font); font-size: 13px; color: var(--sage); margin-top: 12px; text-align: center;
}

/* body longform */
.article-body { max-width: var(--measure); margin-inline: auto; }
.article-body > * { margin-inline: auto; }
.article-body p, .article-body li {
  font-family: var(--serif); font-size: clamp(18px, 1.35vw, 20px); line-height: 1.72; color: #2a2c22;
}
.article-body p { margin-bottom: 26px; }
.article-body p.drop::first-letter {
  font-family: var(--serif); font-weight: 600; font-size: 4.2em; line-height: .82;
  float: left; padding: 6px 14px 0 0; color: var(--olive);
}
.article-body h2 {
  font-family: var(--serif); font-weight: 600; letter-spacing: -.01em;
  font-size: clamp(26px, 3vw, 34px); line-height: 1.15; margin: clamp(40px, 5vw, 60px) auto 18px;
}
.article-body h3 {
  font-family: var(--serif); font-weight: 600; font-size: clamp(21px, 2.2vw, 25px);
  margin: 38px auto 12px; color: var(--ink);
}
.article-body a:not(.btn) {
  color: var(--olive); text-decoration: underline; text-decoration-color: var(--sage);
  text-underline-offset: 3px; text-decoration-thickness: 1.5px; transition: text-decoration-color .2s, color .2s;
}
.article-body a:not(.btn):hover { color: var(--moss); text-decoration-color: var(--olive); }
.article-body strong { font-weight: 700; color: var(--ink); }
.article-body ul, .article-body ol { padding-left: 1.3em; margin-bottom: 26px; }
.article-body li { margin-bottom: 10px; }
.article-body li::marker { color: var(--sage); }

/* pull quote */
.pullquote {
  margin: clamp(36px, 5vw, 52px) auto; padding: 6px 0 6px 28px; border-left: 3px solid var(--olive);
  max-width: var(--measure);
}
.pullquote p {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(23px, 2.8vw, 31px); line-height: 1.34; color: var(--olive); margin: 0;
}
.pullquote cite { display: block; font-family: var(--font); font-style: normal; font-size: 14px; font-weight: 700; color: var(--muted); margin-top: 14px; letter-spacing: .02em; }

/* figure inside article */
.article-figure { margin: clamp(32px, 4vw, 48px) auto; max-width: 860px; }
.article-figure image-slot { width: 100%; aspect-ratio: 16/9; border-radius: 6px; border: 1px solid var(--sage-light); background: var(--cream); }

/* "Auf einen Blick" aside */
.takeaways {
  max-width: var(--measure); margin: clamp(36px, 5vw, 52px) auto;
  background: var(--cream); border: 1px solid var(--sage-light); border-radius: 12px;
  padding: clamp(26px, 3.4vw, 36px);
}
.takeaways h4 {
  font-family: var(--font); font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--olive); margin: 0 0 18px; display: flex; align-items: center; gap: 10px;
}
.takeaways ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.takeaways li {
  font-family: var(--font); font-size: 16.5px; line-height: 1.5; color: var(--ink); font-weight: 600;
  display: flex; gap: 13px; align-items: flex-start; margin: 0;
}
.takeaways li::before {
  content: ""; flex: 0 0 auto; width: 22px; height: 22px; margin-top: 1px; border-radius: 6px;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233F5526' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4 4 10-10'/%3E%3C/svg%3E") center / 15px no-repeat;
  border: 1px solid var(--sage);
}

/* method callout (olive) */
.method-call {
  max-width: var(--measure); margin: clamp(40px, 5vw, 56px) auto; position: relative; overflow: hidden;
  background: var(--olive); color: #fff; border-radius: 14px; padding: clamp(28px, 3.6vw, 40px);
}
.method-call h4 { font-family: var(--serif); font-weight: 600; font-size: clamp(21px, 2.4vw, 26px); margin: 0 0 12px; color: #fff; }
.method-call p { font-family: var(--font); font-size: 16.5px; line-height: 1.6; color: rgba(233,231,220,.92); margin: 0 0 22px; }
.method-call .btn { background: #fff; color: var(--olive); }
.method-call .btn:hover { background: var(--cream); transform: translateY(-2px); }

/* sources / Quellen */
.sources {
  max-width: var(--measure); margin: clamp(40px,5vw,56px) auto 0; padding-top: 26px; border-top: var(--rule);
}
.sources h4 {
  font-family: var(--font); font-size: 12.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 16px;
}
.sources ol { margin: 0; padding-left: 1.4em; display: flex; flex-direction: column; gap: 10px; }
.sources li { font-family: var(--font); font-size: 14.5px; line-height: 1.5; color: var(--muted); }
.sources li::marker { color: var(--sage); font-variant-numeric: tabular-nums; }
.sources a { color: var(--olive); text-decoration: underline; text-decoration-color: var(--sage-light); text-underline-offset: 2px; word-break: break-word; }
.sources a:hover { color: var(--moss); }

/* author / sign-off */
.article-signoff {
  max-width: var(--measure); margin: clamp(36px,4vw,48px) auto 0; padding-top: 26px; border-top: var(--rule);
  display: flex; gap: 18px; align-items: center;
}
.article-signoff .ava {
  width: 54px; height: 54px; border-radius: 50%; flex: 0 0 auto; background: var(--cream);
  border: 1px solid var(--sage-light); display: grid; place-items: center; color: var(--olive);
}
.article-signoff .ava svg { width: 26px; height: 26px; }
.article-signoff .by { font-family: var(--font); }
.article-signoff .by b { display: block; font-size: 15.5px; color: var(--ink); }
.article-signoff .by span { font-size: 13.5px; color: var(--muted); }

/* related posts */
.related { border-top: 2px solid var(--ink); padding-top: 22px; }
.related-h {
  font-family: var(--font); font-size: 13px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 clamp(32px,4vw,56px); }
@media (max-width: 760px) { .related-grid { grid-template-columns: 1fr; } }
.related-grid .entry { grid-template-columns: 1fr; }
.related-grid .entry .entry-no { display: none; }

/* progress bar (reading) */
.read-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--olive); z-index: 300; transition: width .1s linear; }

@media (prefers-reduced-motion: reduce) { .read-progress { transition: none; } }
