/* Blog Content Styles */
.blog-content h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--pp-header, #1a1a2e);
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pp-header, #1a1a2e);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.blog-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--pp-header, #1a1a2e);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.blog-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--pp-header, #1a1a2e);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.blog-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--pp-text, #4a4a68);
  margin-bottom: 1.25rem;
}

.blog-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  list-style-type: disc;
}

.blog-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  list-style-type: decimal;
}

.blog-content li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--pp-text, #4a4a68);
  margin-bottom: 0.5rem;
}

.blog-content a {
  color: var(--pp-theme, #258EA6);
  text-decoration: underline;
  font-weight: 500;
}

.blog-content a:hover {
  opacity: 0.8;
}

.blog-content blockquote {
  border-left: 4px solid var(--pp-theme, #258EA6);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--pp-text, #4a4a68);
  background: #f8f9fa;
  border-radius: 0 8px 8px 0;
}

.blog-content code {
  background: #f1f5f9;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
  font-family: monospace;
  color: #e11d48;
}

.blog-content pre {
  background: #1e293b;
  color: #e2e8f0;
  padding: 1.25rem;
  border-radius: 8px;
  overflow-x: auto;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.blog-content pre code {
  background: none;
  padding: 0;
  color: inherit;
  font-size: inherit;
}

.blog-content hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 2rem 0;
}

.blog-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.blog-content thead {
  background: #f8f9fa;
}

.blog-content th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--pp-header, #1a1a2e);
  border-bottom: 2px solid #e5e7eb;
}

.blog-content td {
  padding: 0.75rem 1rem;
  color: var(--pp-text, #4a4a68);
  border-bottom: 1px solid #e5e7eb;
}

.blog-content img {
  display: block;
  max-width: 100%;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #f8f9fa;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.blog-content strong {
  font-weight: 600;
  color: var(--pp-header, #1a1a2e);
}

.blog-content em {
  font-style: italic;
}

/* Table responsive wrapper */
.blog-content .table-responsive {
  overflow-x: auto;
  margin-bottom: 1.5rem;
}
