/* ============================================
   BLOG INDEX
   ============================================ */
.blog-index {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 5% 80px;
}

.blog-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--ink-deep, #1a2f4a);
  margin: 0 0 12px;
}

.blog-header p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: var(--gray-600, #6b7280);
  margin: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.blog-card {
  border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  background: #fff;
}

.blog-card:hover {
  border-color: var(--gold, #d4a828);
  box-shadow: 0 8px 32px rgba(212, 168, 40, 0.12);
  transform: translateY(-4px);
}

.blog-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card-content {
  padding: 32px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.blog-category {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, rgba(212, 168, 40, 0.1), rgba(212, 168, 40, 0.05));
  border: 1px solid rgba(212, 168, 40, 0.25);
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-dark, #b08e1e);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-date {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--gray-500, #9ca3af);
}

.blog-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--ink-deep, #1a2f4a);
  margin: 0 0 12px;
  line-height: 1.3;
}

.blog-card p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-600, #6b7280);
  margin: 0 0 20px;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-author {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-medium, #24405f);
}

.blog-read-time {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--gray-500, #9ca3af);
}

/* ============================================
   BLOG POST
   ============================================ */
.blog-post {
  max-width: 780px;
  margin: 0 auto;
  padding: 120px 5% 80px;
}

.post-header {
  margin-bottom: 48px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.back-to-blog {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--gold-dark, #b08e1e);
  text-decoration: none;
  transition: color 0.2s;
}

.back-to-blog:hover {
  color: var(--gold, #d4a828);
}

.post-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--ink-deep, #1a2f4a);
  line-height: 1.2;
  margin: 0 0 20px;
}

.post-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--gray-500, #9ca3af);
}

.post-author {
  font-weight: 500;
  color: var(--ink-medium, #24405f);
}

.post-separator {
  color: var(--gray-300, #d1d5db);
}

/* ============================================
   POST CONTENT (article body)
   ============================================ */
.post-content {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray-700, #374151);
}

.post-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--ink-deep, #1a2f4a);
  margin: 48px 0 16px;
  line-height: 1.3;
}

.post-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink-medium, #24405f);
  margin: 32px 0 12px;
}

.post-content p {
  margin: 0 0 20px;
}

.post-content a {
  color: var(--gold-dark, #b08e1e);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.post-content a:hover {
  color: var(--gold, #d4a828);
}

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

.post-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.post-content strong {
  color: var(--ink-deep, #1a2f4a);
}

.post-content em {
  background: rgba(212, 168, 40, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-style: italic;
}

.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}

.post-content thead {
  background: var(--ink-deep, #1a2f4a);
  color: #fff;
}

.post-content th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}

.post-content td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-200, #e5e7eb);
}

.post-content tbody tr:hover {
  background: rgba(212, 168, 40, 0.04);
}

/* ============================================
   POST CTA
   ============================================ */
.post-cta {
  margin: 64px 0;
  padding: 40px;
  background: linear-gradient(135deg, #1a2f4a 0%, #24405f 100%);
  border-radius: 16px;
  text-align: center;
  color: #fff;
}

.post-cta-icon {
  margin-bottom: 16px;
}

.post-cta-icon svg {
  stroke: var(--gold, #d4a828);
}

.post-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 8px;
}

.post-cta p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  opacity: 0.85;
  margin: 0 0 24px;
}

.post-cta .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--gold, #d4a828);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.post-cta .btn-cta:hover {
  background: var(--gold-dark, #b08e1e);
  transform: translateY(-2px);
}

/* ============================================
   RELATED POSTS
   ============================================ */
.related-posts {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--gray-200, #e5e7eb);
}

.related-posts h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--ink-deep, #1a2f4a);
  margin: 0 0 32px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-card {
  padding: 24px;
  border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.related-card:hover {
  border-color: var(--gold, #d4a828);
  box-shadow: 0 4px 16px rgba(212, 168, 40, 0.1);
}

.related-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-deep, #1a2f4a);
  line-height: 1.3;
  margin: 0;
  flex-grow: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .blog-index {
    padding: 100px 5% 60px;
  }

  .blog-header h1 {
    font-size: 36px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-card-content {
    padding: 24px;
  }

  .blog-card h2 {
    font-size: 20px;
  }

  .blog-post {
    padding: 100px 5% 60px;
  }

  .post-header h1 {
    font-size: 30px;
  }

  .post-content {
    font-size: 16px;
  }

  .post-content h2 {
    font-size: 24px;
  }

  .post-cta {
    padding: 28px 20px;
  }

  .post-cta h3 {
    font-size: 22px;
  }

  .related-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .post-info {
    flex-wrap: wrap;
  }
}
