/* ═══════════════════════════════════════════
   TAO LIN HERITAGE — Blog Styles
   Matches main site aesthetic
   ═══════════════════════════════════════════ */

/* ─── Blog Header ─── */
.blog-header {
  text-align: center;
  padding: 100px 40px 70px;
  background: var(--parchment);
  position: relative;
  overflow: hidden;
}

.blog-header::before {
  content: '文';
  position: absolute;
  font-family: 'Noto Serif SC', serif;
  font-size: 350px;
  color: rgba(28,25,23,0.015);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-header-chinese {
  font-family: 'Noto Serif SC', serif;
  font-size: 13px;
  color: var(--ink-faded);
  letter-spacing: 8px;
  display: block;
  margin-bottom: 16px;
}

.blog-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.blog-header-sub {
  font-size: 18px;
  color: var(--ink-faded);
  font-style: italic;
  font-weight: 300;
}

/* ─── Blog Grid ─── */
.blog-grid-section {
  padding: 80px 70px;
  background: var(--ivory);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.blog-card {
  display: block;
  text-decoration: none;
  color: var(--ink);
  padding: 48px 40px;
  border: 1px solid rgba(28,25,23,0.06);
  background: var(--ivory);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.blog-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 3px;
  background: var(--vermillion);
  transition: width 0.5s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(28,25,23,0.08);
  border-color: rgba(28,25,23,0.12);
}

.blog-card:hover::before { width: 100%; }

.blog-card-tag {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--vermillion);
  margin-bottom: 16px;
}

.blog-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-faded);
  font-weight: 300;
  margin-bottom: 16px;
}

.blog-card-meta {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  color: var(--ink-faded);
  letter-spacing: 2px;
}

/* First card spans full width */
.blog-card:first-child {
  grid-column: 1 / -1;
}

/* ─── Article Page ─── */
.article-header {
  text-align: center;
  padding: 100px 40px 60px;
  background: var(--parchment);
  position: relative;
  overflow: hidden;
}

.article-header::before {
  content: '道';
  position: absolute;
  font-family: 'Noto Serif SC', serif;
  font-size: 350px;
  color: rgba(28,25,23,0.015);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.article-tag {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--vermillion);
  display: block;
  margin-bottom: 18px;
}

.article-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 1px;
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto 16px;
}

.article-header-meta {
  font-size: 14px;
  color: var(--ink-faded);
  font-style: italic;
  font-weight: 300;
}

/* ─── Article Body ─── */
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 30px 100px;
}

.article-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.85;
  color: var(--ink-light);
  margin-bottom: 22px;
  font-weight: 400;
}

.article-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--ink);
  margin-top: 50px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.article-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  font-weight: 500;
  color: var(--ink);
  margin-top: 36px;
  margin-bottom: 14px;
}

.article-body em {
  color: var(--ink);
}

.article-body blockquote {
  border-left: 3px solid var(--vermillion);
  margin: 36px 0;
  padding: 20px 30px;
  background: var(--parchment);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-light);
  line-height: 1.7;
}

.article-body ul, .article-body ol {
  margin: 20px 0;
  padding-left: 24px;
}

.article-body li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink-light);
  margin-bottom: 10px;
}

/* ─── Divider ─── */
.article-divider {
  width: 60px;
  height: 2px;
  background: var(--vermillion);
  margin: 50px auto;
}

/* ─── CTA Box ─── */
.article-cta {
  background: var(--ink);
  color: var(--ivory);
  padding: 50px 40px;
  text-align: center;
  margin: 50px 0;
}

.article-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: rgba(250,248,244,0.7) !important;
  margin-bottom: 24px !important;
  font-weight: 300;
}

.article-cta .btn-primary {
  background: var(--vermillion);
}

/* ─── FAQ Section ─── */
.article-faq {
  background: var(--parchment);
  padding: 50px 40px;
  margin: 50px 0;
}

.article-faq h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  text-align: center;
  margin-bottom: 36px;
  margin-top: 0;
}

.faq-item {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(28,25,23,0.06);
}

.faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
  margin-top: 0;
}

.faq-item p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-light);
  font-weight: 300;
}

/* ─── Back Link ─── */
.back-to-blog {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--ink-faded);
  text-decoration: none;
  text-transform: uppercase;
  margin-bottom: 30px;
  transition: color 0.3s;
}

.back-to-blog:hover { color: var(--vermillion); }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card:first-child { grid-column: auto; }
  .blog-grid-section { padding: 50px 20px; }
  .blog-header { padding: 70px 20px 50px; }
  .article-header { padding: 70px 20px 40px; }
  .article-body { padding: 40px 20px 60px; }
  .article-body p { font-size: 17px; }
  .article-cta, .article-faq { padding: 35px 20px; }
}
