.blog-hero {
  padding: 20px 0 10px;
}

.blog-hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 3.2vw, 3.2rem);
  margin: 10px 0 12px;
}

.blog-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  padding: 10px 0 30px;
}

.blog-grid article {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(43, 39, 35, 0.08);
}

.post-card a {
  color: var(--ink);
  text-decoration: none;
}

.blog-grid h3 {
  margin: 0 0 8px;
}

.blog-grid p {
  margin: 0;
  color: var(--muted);
}

.post-card.featured {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  align-items: center;
}

.post-thumb {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(43, 39, 35, 0.12);
}

.post-thumb img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.post-content {
  display: grid;
  gap: 8px;
}

.post-meta-line {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.post-title {
  font-family: "Fraunces", serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  margin: 0;
}

.post-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 760px) {
  .post-card.featured {
    grid-template-columns: 1fr;
  }
  .post-thumb img {
    height: 200px;
  }
}

.post-block {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: center;
  margin-top: 24px;
}

.post-shot {
  margin: 0;
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(43, 39, 35, 0.08);
}

.post-shot img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}

.post-shot figcaption {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.post {
  max-width: 760px;
  margin: 0 auto;
  padding: 10px 0 30px;
}

.reader-post {
  font-family: "Source Serif 4", "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.7;
}

.reader-post h1,
.reader-post h2,
.reader-post h3 {
  font-family: "Fraunces", serif;
  letter-spacing: -0.01em;
}

.reader-post .post-kicker,
.reader-post .post-note,
.reader-post .post-summary,
.reader-post .post-callout,
.reader-post .faq-item,
.reader-post .post-meta {
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
}
.post-hero {
  margin-bottom: 24px;
}

.post-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff6ec;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}

.post h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 3.2vw, 3.2rem);
  margin: 10px 0 12px;
}

.post h2 {
  margin-top: 24px;
}

.post .lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.post-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.back-link {
  color: var(--muted);
  text-decoration: none;
}

.post-summary {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(43, 39, 35, 0.08);
}

.post-summary h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.post-summary ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.post-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.post-section {
  margin-top: 24px;
}

.post-note {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff6ec;
  border: 1px solid var(--border);
  color: var(--ink);
  font-size: 0.9rem;
}

.post-callout {
  margin-top: 24px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: #fff6ec;
  border: 1px solid var(--border);
}

.post-block.reverse {
  direction: rtl;
}

.post-block.reverse > div,
.post-block.reverse > figure {
  direction: ltr;
}

.qr-inline {
  margin-top: 14px;
}

.faq-item {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 22px rgba(43, 39, 35, 0.08);
}

.faq-item h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}
