/* ============================================================
   BLOG — listing + single post
   ============================================================ */

/* ── Page header ── */
.blog-header {
  background: var(--ink);
  padding: 140px var(--pad) 72px;
  text-align: center;
}
.blog-header h1 {
  font-family: 'Cormorant', serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-top: 12px;
}

/* ── Blog listing grid ── */
.blog-listing {
  background: var(--cream);
  padding: 72px var(--pad) 96px;
}
.blog-listing__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
}

/* loading / empty state */
.blog-status {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--stone);
  text-align: center;
  padding: 48px 0;
  grid-column: 1 / -1;
}

/* ── Post card ── */
.post-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--T), transform var(--T);
}
.post-card:hover {
  box-shadow: 0 12px 40px rgba(20,20,20,0.10);
  transform: translateY(-3px);
}
.post-card__img-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--cream);
}
.post-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.post-card:hover .post-card__img-wrap img {
  transform: scale(1.04);
}
.post-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ECEAE4 0%, #dbd9d3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-card__body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.post-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.post-card__category {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}
.post-card__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--stone);
  flex-shrink: 0;
}
.post-card__date {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--stone);
}
.post-card__title {
  font-family: 'Cormorant', serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 12px;
}
.post-card__excerpt {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--stone);
  flex: 1;
  margin-bottom: 20px;
}
.post-card__link {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  align-self: flex-start;
  border-bottom: 1px solid rgba(42,61,92,0.3);
  padding-bottom: 2px;
  transition: border-color var(--T);
}
.post-card__link:hover { border-color: var(--accent); }

/* ── Single post ── */
.post-hero {
  background: var(--ink);
  padding: 120px var(--pad) 0;
}
.post-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-d);
}
.post-hero__back {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 36px;
  transition: color var(--T);
}
.post-hero__back:hover { color: var(--white); }
.post-hero__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.post-hero__category {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}
.post-hero__date {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--stone);
}.post-hero__title {
  font-family: 'Cormorant', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.post-hero__excerpt {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--stone);
}

.post-main-image {
  background: var(--ink);
  padding: 0 var(--pad);
}
.post-main-image__inner {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 48px;
}
.post-main-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Post body ── */
.post-body {
  background: var(--cream);
  padding: 64px var(--pad) 96px;
}
.post-body__inner {
  max-width: 680px;
  margin: 0 auto;
}

.post-body__content p {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1.4em;
}
.post-body__content h2 {
  font-family: 'Cormorant', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--ink);
  margin: 2em 0 0.6em;
  line-height: 1.2;
}
.post-body__content h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 2em 0 0.4em;
}
.post-body__content strong { font-weight: 400; }
.post-body__content em { font-style: italic; }

.post-body__content ul,
.post-body__content ol {
  margin: 0 0 1.4em 1.4em;
  padding: 0;
}
.post-body__content li {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 0.4em;
}
.post-body__content ul li { list-style-type: disc; }
.post-body__content ol li { list-style-type: decimal; }

.post-body__img {
  margin: 2em 0;
}
.post-body__img img {
  width: 100%;
  height: auto;
  display: block;
}
.post-body__caption {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--stone);
  margin-top: 10px;
}

.post-back-footer {
  background: var(--cream);
  padding: 0 var(--pad) 64px;
}
.post-back-footer__inner {
  max-width: 680px;
  margin: 0 auto;
  border-top: 1px solid var(--border-l);
  padding-top: 36px;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .blog-header { padding: 120px 24px 56px; }
  .blog-listing { padding: 48px 24px 72px; }
  .blog-grid { grid-template-columns: 1fr; gap: 28px; }
  .post-hero { padding: 100px 24px 0; }
  .post-main-image { padding: 0 24px; }
  .post-body { padding: 48px 24px 72px; }
  .post-back-footer { padding: 0 24px 48px; }
}
