/* ============================================================
   BLOG — listing, cards, filters, and single article
   ============================================================ */

/* Page hero (shared simple hero) */
.page-hero {
  padding: calc(9rem + var(--topbar-h)) 0 4rem;
  color: var(--white);
}
.page-hero .eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.8rem;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin: 0 0 0.8rem;
  color: var(--white);
}
.page-hero .breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.page-hero .breadcrumb a { color: var(--yellow); text-decoration: none; }
.page-hero .breadcrumb span { margin: 0 0.4rem; opacity: 0.6; }

/* ── Filter ── */
.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.blog-filter-btn {
  padding: 0.55rem 1.1rem;
  border: 1px solid #d8d8d4;
  background: var(--white);
  border-radius: 100px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all 0.2s ease;
}
.blog-filter-btn:hover { border-color: var(--brand-color); color: var(--brand-color); }
.blog-filter-btn.is-active {
  background: var(--brand-color);
  border-color: var(--brand-color);
  color: var(--white);
}

/* ── Grid + cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid #ececea;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -24px rgba(20,30,50,0.3);
}
.blog-card-link { text-decoration: none; color: inherit; display: block; }
.blog-card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-cat {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: rgba(7,14,26,0.82);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.blog-card-body { padding: 1.4rem 1.4rem 1.6rem; }
.blog-card-date {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 0.5rem;
}
.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--brand-color);
  margin: 0 0 0.6rem;
}
.blog-card-excerpt {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
  margin: 0 0 1rem;
}
.blog-card-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-color);
}
.blog-card-more svg { transition: transform 0.2s ease; }
.blog-card:hover .blog-card-more svg { transform: translate(2px, -2px); }

.blog-empty { text-align: center; color: #888; padding: 2rem 0; }

/* ── Single article ── */
.post-hero {
  padding: calc(9rem + var(--topbar-h)) 0 3.5rem;
  color: var(--white);
}
.post-hero-content { max-width: 820px; }
.post-hero-cat { position: static; display: inline-block; margin-bottom: 1rem; }
.post-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--white);
  margin: 0 0 1rem;
}
.post-hero .breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.78); }
.post-hero .breadcrumb a { color: var(--yellow); text-decoration: none; }
.post-hero .breadcrumb span { margin: 0 0.4rem; opacity: 0.6; }

.post-body-section .container { max-width: 820px; }
.post-body {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #3a3a3a;
}
.post-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brand-color);
  margin: 2.2rem 0 0.8rem;
}
.post-body p { margin: 0 0 1.2rem; }
.post-body ul { margin: 0 0 1.4rem; padding-left: 1.3rem; }
.post-body li { margin-bottom: 0.5rem; }
.post-body a { color: var(--brand-color); font-weight: 600; text-decoration: underline; }
.post-body a:hover { color: var(--yellow); }

.post-cta {
  margin-top: 2.5rem;
  padding: 2rem;
  border-radius: 10px;
  background: var(--light-bg, #f5f5f2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.post-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--brand-color);
  margin: 0 0 0.3rem;
}
.post-cta p { margin: 0; color: #666; }
.post-cta .btn-explore-dark { color: var(--white); flex: none; }

.post-related-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--brand-color);
  margin: 0 0 1.8rem;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .post-cta { flex-direction: column; align-items: flex-start; }
}
