/* ── Blog pages ───────────────────────────────────────────── */

.breadcrumbs {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted); margin-bottom: 28px;
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--text); }
.breadcrumbs .sep { color: var(--text-dim); }

.blog-wrap,
.blog-post-wrap { position: relative; z-index: 1; padding-top: 80px; padding-bottom: 80px; }

.blog-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Hero ── */
.blog-hero { margin-bottom: 52px; }
.blog-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700;
  margin-bottom: 16px; line-height: 1.1;
}
.blog-title em { font-style: normal; color: var(--gold); }
.blog-sub { font-size: 16px; color: var(--text-muted); line-height: 1.7; max-width: 580px; }

/* ── Blog listing grid ── */
.blog-grid { display: flex; flex-direction: column; gap: 14px; }

.blog-card {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--bg3);
  border: 1px solid var(--border-s);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  transition: border-color .2s, background .2s, transform .18s;
  color: var(--text);
  text-decoration: none;
}
.blog-card:hover {
  border-color: rgba(196,162,78,.3);
  background: rgba(196,162,78,.025);
  transform: translateY(-1px);
  color: var(--text);
}

.blog-card-top {
  display: flex; align-items: center; gap: 14px;
}
.blog-cat {
  font-size: 10px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(196,162,78,.2);
  border-radius: 20px;
  padding: 3px 12px;
  white-space: nowrap;
}
.blog-date {
  font-size: 12px;
  color: var(--text-muted);
}

.blog-card-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(15px, 2.2vw, 19px);
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.35;
}
.blog-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.blog-card-link {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: .03em;
  margin-top: 4px;
  transition: opacity .15s;
}
.blog-card:hover .blog-card-link { opacity: .7; }

/* ── Post page ── */
.post-header { margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--border-s); }
.post-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.post-date { font-size: 13px; color: var(--text-muted); }

.post-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.post-lead {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Article content ── */
.post-content { margin-bottom: 56px; }

.post-content h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(16px, 2.4vw, 22px);
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--gold-l);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-s);
}
.post-content h2:first-child { margin-top: 0; }

.post-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.post-content p:last-child { margin-bottom: 0; }

/* ── CTA ── */
.post-cta {
  background: linear-gradient(135deg, rgba(116,84,188,.08) 0%, rgba(196,162,78,.05) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.post-cta::before {
  content: '';
  position: absolute;
  top: -1px; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: .5;
}
.post-cta-text { flex: 1; }
.post-cta-text h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  margin-bottom: 10px; line-height: 1.3;
}
.post-cta-text p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── Post navigation ── */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.post-nav-btn {
  display: flex; flex-direction: column; gap: 6px;
  background: var(--bg3);
  border: 1px solid var(--border-s);
  border-radius: var(--r);
  padding: 16px 20px;
  transition: border-color .2s, background .2s;
  color: var(--text);
  text-decoration: none;
}
.post-nav-btn:hover {
  border-color: rgba(196,162,78,.3);
  background: rgba(196,162,78,.025);
  color: var(--text);
}
.post-nav-next { text-align: right; }
.post-nav-dir {
  font-size: 10px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .08em;
}
.post-nav-title {
  font-size: 13px; color: var(--text-muted); line-height: 1.4;
}

.post-back {
  text-align: center;
  padding-bottom: 20px;
}
.post-back a { font-size: 13px; color: var(--text-muted); }
.post-back a:hover { color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 640px) {
  .blog-card { padding: 22px 20px; }
  .blog-inner { padding: 0 16px; }
  .post-cta { flex-direction: column; padding: 28px 22px; gap: 24px; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav-next { text-align: left; }
}
