/* ─── Blog Index ──────────────────────────────────────── */
.blog-hero { text-align: center; padding: 40px 0 20px; }
.blog-hero h1 { font-size: 42px; font-weight: 800; color: #222; letter-spacing: -1px; }
.blog-hero p { font-size: 15px; color: #888; margin-top: 4px; }

.blog-list { max-width: 700px; margin: 0 auto; padding: 0 24px; }

.blog-card {
  border: 2px dashed #ddd;
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 20px;
  transition: border-color 0.2s;
  display: block;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover { border-color: #1976d2; }
.blog-card-date { font-size: 12px; color: #999; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.blog-card-title { font-size: 22px; font-weight: 800; color: #222; margin: 6px 0 8px; line-height: 1.3; }
.blog-card-desc { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 10px; }
.blog-card-link { font-size: 13px; font-weight: 700; color: #1976d2; }

/* ─── Article Page ────────────────────────────────────── */
.article-container { max-width: 700px; margin: 0 auto; padding: 40px 24px 60px; }
.article-back { font-size: 14px; color: #1976d2; text-decoration: none; font-weight: 600; display: inline-block; margin-bottom: 24px; }
.article-back:hover { text-decoration: underline; }
.article-title { font-size: 36px; font-weight: 800; color: #222; letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 12px; }
.article-meta { font-size: 13px; color: #999; margin-bottom: 32px; }
.article-meta span { margin-right: 16px; }

/* ─── Article Content ─────────────────────────────────── */
.article-content { font-size: 16px; line-height: 1.75; color: #333; }
.article-content h2 { font-size: 22px; font-weight: 800; color: #222; margin: 36px 0 12px; padding-bottom: 8px; border-bottom: 2px dashed #e0e0e0; }
.article-content h3 { font-size: 18px; font-weight: 700; color: #222; margin: 28px 0 8px; }
.article-content p { margin-bottom: 16px; }
.article-content a { color: #1976d2; font-weight: 600; }
.article-content a:hover { text-decoration: underline; }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 16px; }
.article-content li { margin-bottom: 6px; }
.article-content blockquote { border-left: 3px solid #1976d2; margin: 20px 0; padding: 12px 20px; background: #f8f9fa; border-radius: 0 4px 4px 0; font-style: italic; color: #555; }
.article-content code { background: #f5f5f5; padding: 2px 6px; border-radius: 3px; font-size: 14px; }
.article-content pre { background: #f5f5f5; padding: 16px; border-radius: 4px; overflow-x: auto; margin-bottom: 16px; }
.article-content pre code { background: none; padding: 0; }
.article-content hr { border: none; border-top: 2px dashed #e0e0e0; margin: 32px 0; }
.article-content strong { color: #222; }
.article-content img { max-width: 100%; border-radius: 4px; margin: 16px 0; }

/* ─── CTA Section ─────────────────────────────────────── */
.article-cta { text-align: center; max-width: 500px; margin: 48px auto 0; padding: 32px; border: 2px dashed #1976d2; border-radius: 4px; }
.article-cta h3 { font-size: 22px; font-weight: 800; color: #222; margin-bottom: 8px; }
.article-cta p { font-size: 14px; color: #888; margin-bottom: 16px; }
.article-cta a { display: inline-block; padding: 12px 28px; background: #1976d2; color: #fff; text-decoration: none; border-radius: 4px; font-size: 14px; font-weight: 700; }
.article-cta a:hover { background: #1565c0; }

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 700px) {
  .blog-hero h1 { font-size: 32px; }
  .article-title { font-size: 28px; }
  .blog-card-title { font-size: 18px; }
  .article-content { font-size: 15px; }
}
