.blog-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 64px clamp(20px, 4vw, 56px) 80px;
}
.blog-hero {
  margin-bottom: 56px;
}
.blog-hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 14px 0 16px;
}
.blog-hero p {
  color: var(--ink-2);
  font-size: 17px;
  max-width: 620px;
}

.post-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}
.post-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 28px;
  color: var(--ink);
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.post-card:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
  background: rgba(0,217,255,0.04);
  color: var(--ink);
}
.post-cat {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}
.post-card h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px; font-weight: 600; letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 12px;
}
.post-card p {
  color: var(--ink-2); font-size: 14.5px; margin: 0 0 18px; flex: 1;
}
.post-card footer {
  font-size: 12px; color: var(--ink-4);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.06em;
}

/* Article view */
.post-shell {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px clamp(20px, 4vw, 56px) 80px;
}
.post-shell .post-cat { margin-bottom: 18px; }
.post-shell h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 12px;
}
.post-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-3);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.post-body {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink);
}
.post-body p { margin: 0 0 22px; color: var(--ink); }
.post-body h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px; font-weight: 600; letter-spacing: -0.02em;
  margin: 48px 0 18px;
}
.post-body h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 21px; font-weight: 600;
  margin: 36px 0 12px;
}
.post-body ul, .post-body ol { padding-left: 22px; color: var(--ink); margin: 0 0 22px; }
.post-body ul li, .post-body ol li { margin-bottom: 8px; }
.post-body blockquote {
  border-left: 3px solid var(--cyan);
  padding: 4px 0 4px 22px;
  margin: 28px 0;
  color: var(--ink-2);
  font-style: italic;
}
.post-body a { color: var(--cyan); border-bottom: 1px dashed var(--cyan); }
.post-body strong { color: var(--ink); font-weight: 600; font-family: 'Inter', sans-serif; font-size: 17px; }

.post-cta {
  margin-top: 56px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(0,217,255,0.08), rgba(255,184,107,0.05));
  border: 1px solid rgba(0,217,255,0.3);
  border-radius: var(--rad);
  text-align: center;
}
.post-cta h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px; margin: 0 0 8px;
}
.post-cta p { color: var(--ink-2); margin: 0 0 18px; font-size: 15px; }

@media (max-width: 720px) {
  .post-grid { grid-template-columns: 1fr; }
}
