/* ============================================================
   BLOG — List and single post styles
   ============================================================ */

/* Featured image — single post */
.post-featured-image {
  margin-bottom: 36px;
  border-radius: var(--radius-md, 12px);
  overflow: hidden;
}

.post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 440px;
}

/* Post card image — blog listing */
.post-card.has-image {
  display: flex;
  flex-direction: column;
}

.post-card-image {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md, 12px) var(--radius-md, 12px) 0 0;
}

.post-card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.post-card-image:hover img {
  transform: scale(1.04);
}

/* Blog post detail */
.blog-post { padding: 60px 0 80px; }

.post-header {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gold-light);
}

.post-header h1 {
  font-size: 2.4rem;
  margin: 16px 0;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.post-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: var(--warm-gray-light);
  font-size: 0.88rem;
}

.post-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--dark);
}

.post-body p { margin-bottom: 24px; }
.post-body h2 { font-size: 1.5rem; margin: 40px 0 16px; }
.post-body h3 { font-size: 1.25rem; margin: 32px 0 12px; }

.post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.95rem;
}

.post-body th,
.post-body td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--gold-light, #e8dcc8);
}

.post-body th {
  font-weight: 700;
  background: rgba(200,165,90,0.08);
}

.post-body ul,
.post-body ol {
  margin: 0 0 24px 24px;
  padding: 0;
}

.post-body li {
  margin-bottom: 10px;
}

.post-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--warm-gray);
  font-style: italic;
}

.post-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 40px 0;
  padding-top: 32px;
  border-top: 1px solid var(--gold-light);
}

.tag {
  padding: 4px 14px;
  background: rgba(200,165,90,0.12);
  color: var(--gold);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
}

.post-nav {
  margin-top: 40px;
  text-align: center;
}