.blog-content {
  font-family: system-ui, sans-serif;
  line-height: 1.75;
  font-size: 1.05rem;
  color: #374151; /* gray-700 */
}

.blog-content h1 {
  font-size: 2rem;   /* 32px */
}
.blog-content h2 {
  font-size: 1.75rem; /* 28px */
}
.blog-content h3 {
  font-size: 1.5rem; /* 24px */
}
.blog-content h4 {
  font-size: 1.25rem; /* 20px */
}
.blog-content h5 {
  font-size: 1.125rem; /* 18px */
}
.blog-content h6 {
  font-size: 1rem; /* 16px */
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  color: #111827; /* gray-900 */
}

.blog-content p {
  margin: 1em 0;
}

.blog-content a {
  color: #2563eb; /* blue-600 */
  text-decoration: underline;
}
.blog-content a:hover {
  color: #1d4ed8; /* blue-700 */
}

.blog-content ul,
.blog-content ol {
  margin: 1em 0 1em 1.5em;
}
.blog-content ul {
  list-style: disc;
}
.blog-content ol {
  list-style: decimal;
}

.blog-content blockquote {
  border-left: 4px solid #3b82f6; /* blue-500 */
  padding-left: 1em;
  margin: 1.5em 0;
  font-style: italic;
  color: #4b5563; /* gray-600 */
  background: #f9fafb; /* gray-50 */
  border-radius: 0.25rem;
}

.blog-content pre,
.blog-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  background: #f3f4f6; /* gray-100 */
  border-radius: 0.25rem;
}
.blog-content pre {
  padding: 1em;
  overflow-x: auto;
}
.blog-content code {
  padding: 0.2em 0.4em;
}

.blog-content img,
.blog-content video,
.blog-content iframe {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1.5em auto;
  display: block;
}

/* Table */
.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}
.blog-content th,
.blog-content td {
  border: 1px solid #e5e7eb; /* gray-200 */
  padding: 0.75em;
  text-align: left;
}
.blog-content th {
  background: #f3f4f6; /* gray-100 */
  font-weight: 600;
}

/* DARK THEME */
.dark .blog-content {
  color: #d1d5db; /* gray-300 */
}

.dark .blog-content h1,
.dark .blog-content h2,
.dark .blog-content h3,
.dark .blog-content h4,
.dark .blog-content h5,
.dark .blog-content h6 {
  color: #f9fafb; /* gray-50 */
}

.dark .blog-content a {
  color: #60a5fa; /* blue-400 */
}
.dark .blog-content a:hover {
  color: #3b82f6; /* blue-500 */
}

.dark .blog-content blockquote {
  border-left-color: #60a5fa; /* blue-400 */
  background: #1f2937; /* gray-800 */
  color: #d1d5db; /* gray-300 */
}

.dark .blog-content pre,
.dark .blog-content code {
  background: #111827; /* gray-900 */
  color: #f3f4f6; /* gray-100 */
}

.dark .blog-content th {
  background: #1f2937; /* gray-800 */
}
.dark .blog-content th,
.dark .blog-content td {
  border-color: #374151; /* gray-700 */
}
