/* Blog breadcrumb override */
.breadcrumb { max-width: 800px; }

/* Blog content */
.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 24px 60px;
}
.content h1 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  line-height: 1.2;
}
.content .post-date {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 32px;
}
.content h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin-top: 36px;
  margin-bottom: 12px;
  color: #1a1a2e;
}
.content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 10px;
  color: #1a1a2e;
}
.content p, .content ul, .content ol {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 16px;
}
.content ul, .content ol { padding-left: 24px; }
.content li { margin-bottom: 8px; }
.content a { color: #4361ee; text-decoration: none; }
.content a:hover { text-decoration: underline; }
.content strong { color: #1a1a2e; }
.content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 15px;
}
.content table th,
.content table td {
  padding: 10px 14px;
  border: 1px solid #e5e7eb;
  text-align: left;
}
.content table th {
  background: #f3f4f6;
  font-weight: 700;
  color: #1a1a2e;
}
.content table td { color: #4b5563; }
.content .cta-box {
  background: linear-gradient(135deg, #4361ee 0%, #4cc9f0 100%);
  border-radius: 12px;
  padding: 32px;
  margin: 36px 0;
  text-align: center;
}
.content .cta-box h3 {
  color: #fff;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 8px;
}
.content .cta-box p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}
.content .cta-box a {
  display: inline-block;
  background: #fff;
  color: #4361ee;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.15s;
}
.content .cta-box a:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

/* Blog index */
.blog-hero {
  text-align: center;
  padding: 40px 0 24px;
}
.blog-hero h1 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.blog-hero p {
  font-size: 16px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}
.post-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 32px auto 60px;
  padding: 0 24px;
}
.post-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s, transform 0.15s;
}
.post-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.post-card h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 8px;
}
.post-card p {
  font-size: 15px;
  color: #6b7280;
  margin: 0 0 8px;
  line-height: 1.5;
}
.post-card .date {
  font-size: 13px;
  color: #9ca3af;
}
@media (max-width: 768px) {
  .content h1 { font-size: 26px; }
  .content h2 { font-size: 19px; }
  .blog-hero h1 { font-size: 26px; }
}
