/* ────────── BLOG POST — typography optimised for long-form reading ────────── */

.post{
  background: var(--bg);
  color: var(--fg);
  min-height: 100vh;
  padding: 80px 0 96px;
}
.post-inner{
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gut);
}

/* Top mark row */
.post-marks{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 56px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232,228,218,0.5);
}
.post-back{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .18s;
}
.post-back:hover{ color: var(--fg); }

/* Article header */
.post-head{
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(232,228,218,0.12);
}
.post-eyebrow{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}
.post-h1{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--fg);
  margin: 0 0 36px;
  max-width: 18ch;
}
.post-h1 .dot{ color: var(--red); }

.post-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  font-size: 13px;
}
.post-meta-item{ display: flex; flex-direction: column; gap: 2px; }
.post-meta-k{
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232,228,218,0.4);
}
.post-meta-v{ color: rgba(232,228,218,0.85); }

/* Article body */
.post-body{
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
  color: rgba(232,228,218,0.88);
}
.post-lede{
  font-size: 21px;
  line-height: 1.55;
  color: var(--fg);
  font-weight: 400;
  margin: 0 0 36px;
  letter-spacing: -0.005em;
}
.post-body p{ margin: 0 0 24px; }
.post-body p:last-child{ margin-bottom: 0; }
.post-body strong{ color: var(--fg); font-weight: 600; }
.post-body em{ font-style: italic; color: rgba(232,228,218,0.95); }

.post-body h2{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--fg);
  margin: 56px 0 20px;
  max-width: 24ch;
}
.post-body h3{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.005em;
  color: var(--fg);
  margin: 36px 0 12px;
}

.post-body .post-ul{
  margin: 0 0 28px;
  padding-left: 0;
  list-style: none;
}
.post-body .post-ul li{
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  line-height: 1.65;
}
.post-body .post-ul li::before{
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 600;
}

.post-body a{ color: var(--red); border-bottom: 1px solid rgba(229,57,53,0.3); transition: border-color .18s; }
.post-body a:hover{ border-bottom-color: var(--red); }

/* Post-bottom CTA */
.post-cta{
  margin-top: 80px;
  padding: 40px;
  border: 1px solid rgba(232,228,218,0.15);
  border-radius: 12px;
  background: rgba(232,228,218,0.02);
}
.post-cta-eyebrow{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.post-cta-h3{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--fg);
  margin: 0 0 16px;
  max-width: 18ch;
}
.post-cta p{
  color: rgba(232,228,218,0.7);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 28px;
}
.post-cta .btn-primary{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  border: 0;
  padding: 16px 28px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background .18s;
}
.post-cta .btn-primary:hover{ background: var(--red-hi); }
.post-cta .btn-primary .arr{ display: inline-block; transition: transform .25s ease; }
.post-cta .btn-primary:hover .arr{ transform: translateX(4px); }

@media (max-width: 720px){
  .post{ padding: 32px 0 64px; }
  .post-marks{ margin-bottom: 32px; }
  .post-head{ margin-bottom: 36px; padding-bottom: 24px; }
  .post-lede{ font-size: 18px; }
  .post-body{ font-size: 16px; line-height: 1.7; }
  .post-body h2{ margin: 40px 0 16px; }
  .post-cta{ padding: 28px 24px; margin-top: 56px; }
  .post-meta{ gap: 18px; }
}
