/* ─── Blog Styles ─── */
.blog-page {
  max-width: 900px; margin: 0 auto;
  padding: 120px 24px 80px;
}
.blog-page h1 {
  font-size: 42px; font-weight: 800;
  font-family: 'Playfair Display', serif;
  margin-bottom: 8px;
}
.blog-subtitle {
  font-size: 16px; color: rgba(255,255,255,0.4);
  font-family: 'Inter', sans-serif;
  margin-bottom: 48px;
}

/* Blog listing grid */
.blog-grid {
  display: flex; flex-direction: column;
  gap: 24px;
}
.blog-card {
  display: block; padding: 28px 32px;
  background: #0A0A0A;
  border: 1px solid rgba(255,215,0,0.08);
  border-radius: 14px;
  transition: border-color .3s, transform .2s;
  text-decoration: none;
}
.blog-card:hover {
  border-color: rgba(255,215,0,0.25);
  transform: translateY(-3px);
}
.blog-card-tag {
  font-size: 11px; font-weight: 800; letter-spacing: 3px;
  font-family: 'Inter', sans-serif;
  margin-bottom: 10px;
}
.blog-card h2 {
  font-size: 22px; font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: #fff; margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card p {
  font-size: 14px; color: rgba(255,255,255,0.45);
  line-height: 1.7; margin-bottom: 12px;
}
.blog-card time {
  font-size: 12px; color: rgba(255,255,255,0.2);
  font-family: 'Inter', sans-serif;
}

/* Article page */
.article-page {
  max-width: 720px; margin: 0 auto;
  padding: 120px 24px 80px;
}
.article-page .article-meta {
  font-size: 13px; color: rgba(255,255,255,0.3);
  font-family: 'Inter', sans-serif;
  margin-bottom: 32px;
}
.article-page .article-meta time { color: rgba(255,255,255,0.4); }
.article-page h1 {
  font-size: 36px; font-weight: 800;
  font-family: 'Playfair Display', serif;
  line-height: 1.2; margin-bottom: 12px;
}
.article-page h2 {
  font-size: 22px; font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin-top: 36px; margin-bottom: 14px;
  color: #FFD700;
}
.article-page h3 {
  font-size: 17px; font-weight: 700;
  margin-top: 24px; margin-bottom: 10px;
}
.article-page p {
  font-size: 15px; color: rgba(255,255,255,0.6);
  line-height: 1.8; margin-bottom: 16px;
}
.article-page ul, .article-page ol {
  padding-left: 24px; margin-bottom: 16px;
}
.article-page li {
  font-size: 15px; color: rgba(255,255,255,0.55);
  line-height: 1.8; margin-bottom: 8px;
}
.article-page strong { color: #fff; }
.article-page em { color: rgba(255,215,0,0.8); font-style: italic; }

/* Rarity table in articles */
.rarity-table {
  width: 100%; border-collapse: collapse;
  margin: 20px 0 28px;
}
.rarity-table th, .rarity-table td {
  padding: 10px 16px; text-align: left;
  font-size: 14px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rarity-table th {
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  color: rgba(255,255,255,0.3); font-family: 'Inter', sans-serif;
  text-transform: uppercase;
}
.rarity-table td { color: rgba(255,255,255,0.6); }
.rarity-table td:first-child { font-weight: 700; }

/* CTA banner in articles */
.article-cta {
  margin: 40px 0; padding: 24px 28px;
  background: #0A0A0A;
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 14px; text-align: center;
}
.article-cta p { color: rgba(255,255,255,0.5); margin: 0 0 12px; }
.article-cta .btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FFD700; color: #000;
  padding: 12px 24px; border-radius: 10px;
  font-weight: 700; font-size: 14px;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: transform .2s;
}
.article-cta .btn-primary:hover { transform: translateY(-2px); }

/* Back to blog link */
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: rgba(255,255,255,0.3);
  font-family: 'Inter', sans-serif;
  margin-bottom: 20px; transition: color .2s;
}
.back-link:hover { color: #FFD700; }

@media (max-width: 600px) {
  .blog-page h1 { font-size: 32px; }
  .article-page h1 { font-size: 28px; }
  .blog-card { padding: 20px; }
}
