/* Blog prose styles */
.blog-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.blog-content p {
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.blog-content ul,
.blog-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
  color: #4b5563;
}

.blog-content ul {
  list-style-type: disc;
}

.blog-content ol {
  list-style-type: decimal;
}

.blog-content li {
  margin-bottom: 0.5rem;
  line-height: 1.625;
}

.blog-content table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
}

.blog-content table th {
  background-color: #f3f4f6;
  font-weight: 600;
  text-align: left;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
}

.blog-content table td {
  padding: 0.75rem;
  border: 1px solid #d1d5db;
}

.blog-content blockquote {
  border-left: 4px solid #22c55e;
  padding-left: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin: 1.5rem 0;
  background-color: #f9fafb;
  font-style: italic;
  color: #4b5563;
}

.blog-content strong {
  font-weight: 600;
  color: #111827;
}

.blog-content a {
  color: #16a34a;
}

.blog-content a:hover {
  text-decoration: underline;
}

.blog-content code {
  background-color: #f3f4f6;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  color: #15803d;
}

.blog-content pre {
  background-color: #111827;
  color: #f3f4f6;
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.blog-content pre code {
  background-color: transparent;
  padding: 0;
  color: inherit;
}

.blog-content hr {
  margin: 2rem 0;
  border-color: #e5e7eb;
}

.blog-content img {
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin: 1.5rem 0;
}

/* Dark mode */
.dark .blog-content h2,
.dark .blog-content h3,
.dark .blog-content strong {
  color: #fff;
}

.dark .blog-content p,
.dark .blog-content ul,
.dark .blog-content ol,
.dark .blog-content li {
  color: #d1d5db;
}

.dark .blog-content table th {
  background-color: #1f2937;
  border-color: #4b5563;
}

.dark .blog-content table td {
  border-color: #4b5563;
}

.dark .blog-content blockquote {
  background-color: #1f2937;
  color: #d1d5db;
}

.dark .blog-content code {
  background-color: #1f2937;
  color: #4ade80;
}

.dark .blog-content a {
  color: #4ade80;
}

.dark .blog-content hr {
  border-color: #374151;
}
